-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectorG.net
More file actions
6731 lines (6731 loc) · 135 KB
/
Copy pathDirectorG.net
File metadata and controls
6731 lines (6731 loc) · 135 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
*vertices 2460
1 "immortal beloved" 0.0 0.0 ellipse
2 "never die alone" 0.0 0.0 ellipse
3 juice 0.0 0.0 ellipse
4 bulletproof 0.0 0.0 ellipse
5 "something's gotta give" 0.0 0.0 ellipse
6 "what women want" 0.0 0.0 ellipse
7 "the parent trap" 0.0 0.0 ellipse
8 "the weather underground" 0.0 0.0 ellipse
9 dragonheart 0.0 0.0 ellipse
10 "dragon: the bruce lee story" 0.0 0.0 ellipse
11 "the fast and the furious" 0.0 0.0 ellipse
12 daylight 0.0 0.0 ellipse
13 "the skulls" 0.0 0.0 ellipse
14 congo 0.0 0.0 ellipse
15 arachnophobia 0.0 0.0 ellipse
16 alive 0.0 0.0 ellipse
17 "jingle all the way" 0.0 0.0 ellipse
18 "the flintstones" 0.0 0.0 ellipse
19 beethoven 0.0 0.0 ellipse
20 "snow dogs" 0.0 0.0 ellipse
21 "are we there yet?" 0.0 0.0 ellipse
22 silkwood 0.0 0.0 ellipse
23 wolf 0.0 0.0 ellipse
24 "regarding henry" 0.0 0.0 ellipse
25 "postcards from the edge" 0.0 0.0 ellipse
26 "biloxi blues" 0.0 0.0 ellipse
27 "primary colors" 0.0 0.0 ellipse
28 "working girl" 0.0 0.0 ellipse
29 "carnal knowledge" 0.0 0.0 ellipse
30 "the graduate" 0.0 0.0 ellipse
31 "the birdcage" 0.0 0.0 ellipse
32 closer 0.0 0.0 ellipse
33 "who's afraid of virginia woolf?" 0.0 0.0 ellipse
34 spartan 0.0 0.0 ellipse
35 "the spanish prisoner" 0.0 0.0 ellipse
36 "the winslow boy" 0.0 0.0 ellipse
37 "state and main" 0.0 0.0 ellipse
38 "house of games" 0.0 0.0 ellipse
39 heist 0.0 0.0 ellipse
40 "rambo: first blood part ii" 0.0 0.0 ellipse
41 cobra 0.0 0.0 ellipse
42 tombstone 0.0 0.0 ellipse
43 "the game" 0.0 0.0 ellipse
44 "fight club" 0.0 0.0 ellipse
45 "panic room" 0.0 0.0 ellipse
46 "sweet november" 0.0 0.0 ellipse
47 "circle of friends" 0.0 0.0 ellipse
48 "inventing the abbotts" 0.0 0.0 ellipse
49 "a little princess" 0.0 0.0 ellipse
50 "harry potter and the prisoner of azkaban" 0.0 0.0 ellipse
51 "great expectations" 0.0 0.0 ellipse
52 "husbands and wives" 0.0 0.0 ellipse
53 "small time crooks" 0.0 0.0 ellipse
54 bananas 0.0 0.0 ellipse
55 "manhattan murder mystery" 0.0 0.0 ellipse
56 "melinda and melinda" 0.0 0.0 ellipse
57 "mighty aphrodite" 0.0 0.0 ellipse
58 "everyone says i love you" 0.0 0.0 ellipse
59 "the curse of the jade scorpion" 0.0 0.0 ellipse
60 "annie hall" 0.0 0.0 ellipse
61 "the purple rose of cairo" 0.0 0.0 ellipse
62 "hannah and her sisters" 0.0 0.0 ellipse
63 "crimes and misdemeanors" 0.0 0.0 ellipse
64 manhattan 0.0 0.0 ellipse
65 "bullets over broadway" 0.0 0.0 ellipse
66 "anything else" 0.0 0.0 ellipse
67 sleeper 0.0 0.0 ellipse
68 "deconstructing harry" 0.0 0.0 ellipse
69 "radio days" 0.0 0.0 ellipse
70 "sweet and lowdown" 0.0 0.0 ellipse
71 "take the money and run" 0.0 0.0 ellipse
72 "love and death" 0.0 0.0 ellipse
73 zelig 0.0 0.0 ellipse
74 fame 0.0 0.0 ellipse
75 "mississippi burning" 0.0 0.0 ellipse
76 "the commitments" 0.0 0.0 ellipse
77 "midnight express" 0.0 0.0 ellipse
78 "the life of david gale" 0.0 0.0 ellipse
79 "pink floyd: the wall" 0.0 0.0 ellipse
80 "angela's ashes" 0.0 0.0 ellipse
81 evita 0.0 0.0 ellipse
82 "the chorus" 0.0 0.0 ellipse
83 "funny face" 0.0 0.0 ellipse
84 charade 0.0 0.0 ellipse
85 "singin' in the rain" 0.0 0.0 ellipse
86 "reservoir dogs" 0.0 0.0 ellipse
87 "kill bill: vol. 2" 0.0 0.0 ellipse
88 "sin city" 0.0 0.0 ellipse
89 "four rooms" 0.0 0.0 ellipse
90 "pulp fiction" 0.0 0.0 ellipse
91 "kill bill: vol. 1" 0.0 0.0 ellipse
92 "death to smoochy" 0.0 0.0 ellipse
93 "the war of the roses" 0.0 0.0 ellipse
94 "throw momma from the train" 0.0 0.0 ellipse
95 "airplane ii: the sequel" 0.0 0.0 ellipse
96 "x2: x-men united" 0.0 0.0 ellipse
97 "the usual suspects" 0.0 0.0 ellipse
98 "apt pupil" 0.0 0.0 ellipse
99 x-men 0.0 0.0 ellipse
100 "taking lives" 0.0 0.0 ellipse
101 "the salton sea" 0.0 0.0 ellipse
102 "the deer hunter" 0.0 0.0 ellipse
103 "the cookout" 0.0 0.0 ellipse
104 "gross anatomy" 0.0 0.0 ellipse
105 "captain ron" 0.0 0.0 ellipse
106 "woman of the year" 0.0 0.0 ellipse
107 shane 0.0 0.0 ellipse
108 giant 0.0 0.0 ellipse
109 "the diary of anne frank" 0.0 0.0 ellipse
110 "a place in the sun" 0.0 0.0 ellipse
111 "north by northwest" 0.0 0.0 ellipse
112 "to catch a thief" 0.0 0.0 ellipse
113 "the man who knew too much" 0.0 0.0 ellipse
114 notorious 0.0 0.0 ellipse
115 "dial m for murder" 0.0 0.0 ellipse
116 "rear window" 0.0 0.0 ellipse
117 rebecca 0.0 0.0 ellipse
118 psycho 0.0 0.0 ellipse
119 spellbound 0.0 0.0 ellipse
120 "the birds" 0.0 0.0 ellipse
121 "shadow of a doubt" 0.0 0.0 ellipse
122 suspicion 0.0 0.0 ellipse
123 vertigo 0.0 0.0 ellipse
124 "the 39 steps" 0.0 0.0 ellipse
125 "stuart little 2" 0.0 0.0 ellipse
126 "stuart little" 0.0 0.0 ellipse
127 "the haunted mansion" 0.0 0.0 ellipse
128 "a night at the opera" 0.0 0.0 ellipse
129 "charlotte's web" 0.0 0.0 ellipse
130 "the final countdown" 0.0 0.0 ellipse
131 "damien: omen ii" 0.0 0.0 ellipse
132 "escape from the planet of the apes" 0.0 0.0 ellipse
133 parenthood 0.0 0.0 ellipse
134 "a beautiful mind" 0.0 0.0 ellipse
135 "the missing" 0.0 0.0 ellipse
136 cocoon 0.0 0.0 ellipse
137 "night shift" 0.0 0.0 ellipse
138 "apollo 13" 0.0 0.0 ellipse
139 willow 0.0 0.0 ellipse
140 "gung ho" 0.0 0.0 ellipse
141 "far and away" 0.0 0.0 ellipse
142 edtv 0.0 0.0 ellipse
143 backdraft 0.0 0.0 ellipse
144 ransom 0.0 0.0 ellipse
145 taxi 0.0 0.0 ellipse
146 barbershop 0.0 0.0 ellipse
147 evelyn 0.0 0.0 ellipse
148 "driving miss daisy" 0.0 0.0 ellipse
149 "tender mercies" 0.0 0.0 ellipse
150 "double jeopardy" 0.0 0.0 ellipse
151 "the devil's own" 0.0 0.0 ellipse
152 "presumed innocent" 0.0 0.0 ellipse
153 "all the president's men" 0.0 0.0 ellipse
154 "the pelican brief" 0.0 0.0 ellipse
155 "sophie's choice" 0.0 0.0 ellipse
156 klute 0.0 0.0 ellipse
157 "ace ventura: when nature calls" 0.0 0.0 ellipse
158 "nothing to lose" 0.0 0.0 ellipse
159 "bridget jones's diary" 0.0 0.0 ellipse
160 jack 0.0 0.0 ellipse
161 "bram stoker's dracula" 0.0 0.0 ellipse
162 "apocalypse now" 0.0 0.0 ellipse
163 "the conversation" 0.0 0.0 ellipse
164 "peggy sue got married" 0.0 0.0 ellipse
165 "the rainmaker" 0.0 0.0 ellipse
166 "the outsiders" 0.0 0.0 ellipse
167 "the godfather" 0.0 0.0 ellipse
168 "tucker: the man and his dream" 0.0 0.0 ellipse
169 "ed wood" 0.0 0.0 ellipse
170 "planet of the apes" 0.0 0.0 ellipse
171 "mars attacks!" 0.0 0.0 ellipse
172 "sleepy hollow" 0.0 0.0 ellipse
173 "edward scissorhands" 0.0 0.0 ellipse
174 "pee-wee's big adventure" 0.0 0.0 ellipse
175 "batman returns" 0.0 0.0 ellipse
176 "big fish" 0.0 0.0 ellipse
177 batman 0.0 0.0 ellipse
178 beetlejuice 0.0 0.0 ellipse
179 "high fidelity" 0.0 0.0 ellipse
180 "the grifters" 0.0 0.0 ellipse
181 "dirty pretty things" 0.0 0.0 ellipse
182 "mary reilly" 0.0 0.0 ellipse
183 "dangerous liaisons" 0.0 0.0 ellipse
184 "pay it forward" 0.0 0.0 ellipse
185 "deep impact" 0.0 0.0 ellipse
186 "the peacemaker" 0.0 0.0 ellipse
187 dogma 0.0 0.0 ellipse
188 "chasing amy" 0.0 0.0 ellipse
189 clerks 0.0 0.0 ellipse
190 "jay and silent bob strike back" 0.0 0.0 ellipse
191 mallrats 0.0 0.0 ellipse
192 "jersey girl" 0.0 0.0 ellipse
193 "wild things" 0.0 0.0 ellipse
194 "the pacifier" 0.0 0.0 ellipse
195 "the wedding planner" 0.0 0.0 ellipse
196 "bringing down the house" 0.0 0.0 ellipse
197 "a walk to remember" 0.0 0.0 ellipse
198 "the last temptation of christ" 0.0 0.0 ellipse
199 "bringing out the dead" 0.0 0.0 ellipse
200 "the color of money" 0.0 0.0 ellipse
201 "mean streets" 0.0 0.0 ellipse
202 "after hours" 0.0 0.0 ellipse
203 "gangs of new york" 0.0 0.0 ellipse
204 "taxi driver" 0.0 0.0 ellipse
205 kundun 0.0 0.0 ellipse
206 "the age of innocence" 0.0 0.0 ellipse
207 "the aviator" 0.0 0.0 ellipse
208 "raging bull" 0.0 0.0 ellipse
209 "the last waltz" 0.0 0.0 ellipse
210 "life or something like it" 0.0 0.0 ellipse
211 "holy man" 0.0 0.0 ellipse
212 "mr. holland's opus" 0.0 0.0 ellipse
213 "don't tell mom the babysitter's dead" 0.0 0.0 ellipse
214 "man of the house" 0.0 0.0 ellipse
215 "rock star" 0.0 0.0 ellipse
216 "bill & ted's excellent adventure" 0.0 0.0 ellipse
217 "the mighty ducks" 0.0 0.0 ellipse
218 "house of sand and fog" 0.0 0.0 ellipse
219 "party monster" 0.0 0.0 ellipse
220 "the eyes of tammy faye" 0.0 0.0 ellipse
221 "out for justice" 0.0 0.0 ellipse
222 "the santa clause 2" 0.0 0.0 ellipse
223 "connie and carla" 0.0 0.0 ellipse
224 "the fan" 0.0 0.0 ellipse
225 "the replacement killers" 0.0 0.0 ellipse
226 "training day" 0.0 0.0 ellipse
227 "tears of the sun" 0.0 0.0 ellipse
228 "king arthur" 0.0 0.0 ellipse
229 bait 0.0 0.0 ellipse
230 "wings of desire" 0.0 0.0 ellipse
231 "buena vista social club" 0.0 0.0 ellipse
232 hostage 0.0 0.0 ellipse
233 "igby goes down" 0.0 0.0 ellipse
234 elephant 0.0 0.0 ellipse
235 "to die for" 0.0 0.0 ellipse
236 "my own private idaho" 0.0 0.0 ellipse
237 "finding forrester" 0.0 0.0 ellipse
238 "good will hunting" 0.0 0.0 ellipse
239 "drugstore cowboy" 0.0 0.0 ellipse
240 "the unsinkable molly brown" 0.0 0.0 ellipse
241 happiness 0.0 0.0 ellipse
242 storytelling 0.0 0.0 ellipse
243 "untamed heart" 0.0 0.0 ellipse
244 "my bodyguard" 0.0 0.0 ellipse
245 "rabbit-proof fence" 0.0 0.0 ellipse
246 "the saint" 0.0 0.0 ellipse
247 "patriot games" 0.0 0.0 ellipse
248 "dead calm" 0.0 0.0 ellipse
249 "the bone collector" 0.0 0.0 ellipse
250 "the quiet american" 0.0 0.0 ellipse
251 "clear and present danger" 0.0 0.0 ellipse
252 "michael collins" 0.0 0.0 ellipse
253 "the end of the affair" 0.0 0.0 ellipse
254 basquiat 0.0 0.0 ellipse
255 "before night falls" 0.0 0.0 ellipse
256 "princess mononoke" 0.0 0.0 ellipse
257 "my neighbor totoro" 0.0 0.0 ellipse
258 "castle in the sky" 0.0 0.0 ellipse
259 "kiki's delivery service" 0.0 0.0 ellipse
260 frida 0.0 0.0 ellipse
261 titus 0.0 0.0 ellipse
262 "rush hour 2" 0.0 0.0 ellipse
263 "the family man" 0.0 0.0 ellipse
264 "rush hour" 0.0 0.0 ellipse
265 "after the sunset" 0.0 0.0 ellipse
266 "money talks" 0.0 0.0 ellipse
267 "red dragon" 0.0 0.0 ellipse
268 "return to paradise" 0.0 0.0 ellipse
269 "the forgotten" 0.0 0.0 ellipse
270 "sleeping with the enemy" 0.0 0.0 ellipse
271 "money train" 0.0 0.0 ellipse
272 "the good son" 0.0 0.0 ellipse
273 "under suspicion" 0.0 0.0 ellipse
274 "predator 2" 0.0 0.0 ellipse
275 "the ghost and the darkness" 0.0 0.0 ellipse
276 "lost in space" 0.0 0.0 ellipse
277 "blown away" 0.0 0.0 ellipse
278 "a nightmare on elm street 5: the dream child" 0.0 0.0 ellipse
279 "three days of the condor" 0.0 0.0 ellipse
280 "the way we were" 0.0 0.0 ellipse
281 "random hearts" 0.0 0.0 ellipse
282 "out of africa" 0.0 0.0 ellipse
283 "jeremiah johnson" 0.0 0.0 ellipse
284 "absence of malice" 0.0 0.0 ellipse
285 "the interpreter" 0.0 0.0 ellipse
286 sabrina 0.0 0.0 ellipse
287 "the firm" 0.0 0.0 ellipse
288 tootsie 0.0 0.0 ellipse
289 "monsoon wedding" 0.0 0.0 ellipse
290 "vanity fair" 0.0 0.0 ellipse
291 "two can play that game" 0.0 0.0 ellipse
292 mumford 0.0 0.0 ellipse
293 "the accidental tourist" 0.0 0.0 ellipse
294 "the big chill" 0.0 0.0 ellipse
295 "grand canyon" 0.0 0.0 ellipse
296 silverado 0.0 0.0 ellipse
297 dreamcatcher 0.0 0.0 ellipse
298 "french kiss" 0.0 0.0 ellipse
299 "body heat" 0.0 0.0 ellipse
300 "the hitchhiker's guide to the galaxy" 0.0 0.0 ellipse
301 "drop dead fred" 0.0 0.0 ellipse
302 "the alamo" 0.0 0.0 ellipse
303 "the green berets" 0.0 0.0 ellipse
304 "big jake" 0.0 0.0 ellipse
305 "hudson hawk" 0.0 0.0 ellipse
306 "the truth about cats & dogs" 0.0 0.0 ellipse
307 airheads 0.0 0.0 ellipse
308 "40 days and 40 nights" 0.0 0.0 ellipse
309 "first knight" 0.0 0.0 ellipse
310 "top secret!" 0.0 0.0 ellipse
311 ghost 0.0 0.0 ellipse
312 "rat race" 0.0 0.0 ellipse
313 airplane! 0.0 0.0 ellipse
314 "ruthless people" 0.0 0.0 ellipse
315 "the santa clause" 0.0 0.0 ellipse
316 "joe somebody" 0.0 0.0 ellipse
317 solaris 0.0 0.0 ellipse
318 "jimmy neutron: boy genius" 0.0 0.0 ellipse
319 "american beauty" 0.0 0.0 ellipse
320 "road to perdition" 0.0 0.0 ellipse
321 "sea of love" 0.0 0.0 ellipse
322 "domestic disturbance" 0.0 0.0 ellipse
323 taps 0.0 0.0 ellipse
324 "city hall" 0.0 0.0 ellipse
325 malice 0.0 0.0 ellipse
326 "mercury rising" 0.0 0.0 ellipse
327 speed 0.0 0.0 ellipse
328 "speed 2: cruise control" 0.0 0.0 ellipse
329 twister 0.0 0.0 ellipse
330 "the haunting" 0.0 0.0 ellipse
331 "an ideal husband" 0.0 0.0 ellipse
332 "the importance of being earnest" 0.0 0.0 ellipse
333 armageddon 0.0 0.0 ellipse
334 "the medallion" 0.0 0.0 ellipse
335 "fist of legend" 0.0 0.0 ellipse
336 firestarter 0.0 0.0 ellipse
337 commando 0.0 0.0 ellipse
338 unleashed 0.0 0.0 ellipse
339 "the transporter" 0.0 0.0 ellipse
340 "stir crazy" 0.0 0.0 ellipse
341 "dear frankie" 0.0 0.0 ellipse
342 "marvin's room" 0.0 0.0 ellipse
343 "robin hood: prince of thieves" 0.0 0.0 ellipse
344 waterworld 0.0 0.0 ellipse
345 "the count of monte cristo" 0.0 0.0 ellipse
346 "saving grace" 0.0 0.0 ellipse
347 "calendar girls" 0.0 0.0 ellipse
348 "a lot like love" 0.0 0.0 ellipse
349 "rob roy" 0.0 0.0 ellipse
350 "city by the sea" 0.0 0.0 ellipse
351 "doc hollywood" 0.0 0.0 ellipse
352 "the jackal" 0.0 0.0 ellipse
353 "memphis belle" 0.0 0.0 ellipse
354 "this boy's life" 0.0 0.0 ellipse
355 "hellbound: hellraiser ii" 0.0 0.0 ellipse
356 "the mighty" 0.0 0.0 ellipse
357 serendipity 0.0 0.0 ellipse
358 bedazzled 0.0 0.0 ellipse
359 "national lampoon's vacation" 0.0 0.0 ellipse
360 "analyze this" 0.0 0.0 ellipse
361 caddyshack 0.0 0.0 ellipse
362 "groundhog day" 0.0 0.0 ellipse
363 "analyze that" 0.0 0.0 ellipse
364 multiplicity 0.0 0.0 ellipse
365 "one true thing" 0.0 0.0 ellipse
366 "devil in a blue dress" 0.0 0.0 ellipse
367 "high crimes" 0.0 0.0 ellipse
368 "out of time" 0.0 0.0 ellipse
369 "the hand that rocks the cradle" 0.0 0.0 ellipse
370 "wonder boys" 0.0 0.0 ellipse
371 "the river wild" 0.0 0.0 ellipse
372 "l.a. confidential" 0.0 0.0 ellipse
373 "8 mile" 0.0 0.0 ellipse
374 "last man standing" 0.0 0.0 ellipse
375 "the warriors" 0.0 0.0 ellipse
376 undisputed 0.0 0.0 ellipse
377 "another 48 hrs." 0.0 0.0 ellipse
378 "brewster's millions" 0.0 0.0 ellipse
379 "red heat" 0.0 0.0 ellipse
380 "major league" 0.0 0.0 ellipse
381 "down periscope" 0.0 0.0 ellipse
382 "major league ii" 0.0 0.0 ellipse
383 "the perfect storm" 0.0 0.0 ellipse
384 "das boot" 0.0 0.0 ellipse
385 outbreak 0.0 0.0 ellipse
386 "in the line of fire" 0.0 0.0 ellipse
387 "the neverending story" 0.0 0.0 ellipse
388 "enemy mine" 0.0 0.0 ellipse
389 troy 0.0 0.0 ellipse
390 "air force one" 0.0 0.0 ellipse
391 "roger & me" 0.0 0.0 ellipse
392 "bowling for columbine" 0.0 0.0 ellipse
393 "fahrenheit 9/11" 0.0 0.0 ellipse
394 "curly sue" 0.0 0.0 ellipse
395 "sixteen candles" 0.0 0.0 ellipse
396 "she's having a baby" 0.0 0.0 ellipse
397 "the breakfast club" 0.0 0.0 ellipse
398 "ferris bueller's day off" 0.0 0.0 ellipse
399 "weird science" 0.0 0.0 ellipse
400 "uncle buck" 0.0 0.0 ellipse
401 "woman thou art loosed" 0.0 0.0 ellipse
402 indochine 0.0 0.0 ellipse
403 "mean girls" 0.0 0.0 ellipse
404 "freaky friday" 0.0 0.0 ellipse
405 "head over heels" 0.0 0.0 ellipse
406 "the house of yes" 0.0 0.0 ellipse
407 "pooh's heffalump movie" 0.0 0.0 ellipse
408 "the poseidon adventure" 0.0 0.0 ellipse
409 "boyz n the hood" 0.0 0.0 ellipse
410 "2 fast 2 furious" 0.0 0.0 ellipse
411 "higher learning" 0.0 0.0 ellipse
412 shaft 0.0 0.0 ellipse
413 rosewood 0.0 0.0 ellipse
414 "poetic justice" 0.0 0.0 ellipse
415 jaws 0.0 0.0 ellipse
416 hook 0.0 0.0 ellipse
417 "the lost world: jurassic park" 0.0 0.0 ellipse
418 "empire of the sun" 0.0 0.0 ellipse
419 "minority report" 0.0 0.0 ellipse
420 "catch me if you can" 0.0 0.0 ellipse
421 "raiders of the lost ark" 0.0 0.0 ellipse
422 "indiana jones and the temple of doom" 0.0 0.0 ellipse
423 "a.i. artificial intelligence" 0.0 0.0 ellipse
424 "schindler's list" 0.0 0.0 ellipse
425 "jurassic park" 0.0 0.0 ellipse
426 amistad 0.0 0.0 ellipse
427 "close encounters of the third kind" 0.0 0.0 ellipse
428 "indiana jones and the last crusade" 0.0 0.0 ellipse
429 always 0.0 0.0 ellipse
430 "saving private ryan" 0.0 0.0 ellipse
431 "the terminal" 0.0 0.0 ellipse
432 "the lawnmower man" 0.0 0.0 ellipse
433 virtuosity 0.0 0.0 ellipse
434 "logan's run" 0.0 0.0 ellipse
435 "the faculty" 0.0 0.0 ellipse
436 "spy kids" 0.0 0.0 ellipse
437 "once upon a time in mexico" 0.0 0.0 ellipse
438 "from dusk till dawn" 0.0 0.0 ellipse
439 "bill cosby: himself" 0.0 0.0 ellipse
440 mannequin 0.0 0.0 ellipse
441 "white squall" 0.0 0.0 ellipse
442 "black hawk down" 0.0 0.0 ellipse
443 "g.i. jane" 0.0 0.0 ellipse
444 "kingdom of heaven" 0.0 0.0 ellipse
445 "black rain" 0.0 0.0 ellipse
446 gladiator 0.0 0.0 ellipse
447 hannibal 0.0 0.0 ellipse
448 "blade runner" 0.0 0.0 ellipse
449 "matchstick men" 0.0 0.0 ellipse
450 "mansfield park" 0.0 0.0 ellipse
451 "back to the future part iii" 0.0 0.0 ellipse
452 "death becomes her" 0.0 0.0 ellipse
453 "back to the future part ii" 0.0 0.0 ellipse
454 "what lies beneath" 0.0 0.0 ellipse
455 "romancing the stone" 0.0 0.0 ellipse
456 "back to the future" 0.0 0.0 ellipse
457 "forrest gump" 0.0 0.0 ellipse
458 contact 0.0 0.0 ellipse
459 "cast away" 0.0 0.0 ellipse
460 creepshow 0.0 0.0 ellipse
461 "night of the living dead" 0.0 0.0 ellipse
462 "dawn of the dead" 0.0 0.0 ellipse
463 "day of the dead" 0.0 0.0 ellipse
464 "land of the dead" 0.0 0.0 ellipse
465 "tuck everlasting" 0.0 0.0 ellipse
466 "ladder 49" 0.0 0.0 ellipse
467 "my dog skip" 0.0 0.0 ellipse
468 "seven samurai" 0.0 0.0 ellipse
469 yojimbo 0.0 0.0 ellipse
470 "throne of blood" 0.0 0.0 ellipse
471 rashomon 0.0 0.0 ellipse
472 ran 0.0 0.0 ellipse
473 ikiru 0.0 0.0 ellipse
474 sanjuro 0.0 0.0 ellipse
475 ray 0.0 0.0 ellipse
476 "an officer and a gentleman" 0.0 0.0 ellipse
477 "proof of life" 0.0 0.0 ellipse
478 "the devil's advocate" 0.0 0.0 ellipse
479 "the muse" 0.0 0.0 ellipse
480 "defending your life" 0.0 0.0 ellipse
481 "lost in america" 0.0 0.0 ellipse
482 "dangerous minds" 0.0 0.0 ellipse
483 "eat drink man woman" 0.0 0.0 ellipse
484 "the ice storm" 0.0 0.0 ellipse
485 "the wedding banquet" 0.0 0.0 ellipse
486 "sense and sensibility" 0.0 0.0 ellipse
487 hulk 0.0 0.0 ellipse
488 "animal crackers" 0.0 0.0 ellipse
489 comedian 0.0 0.0 ellipse
490 fallen 0.0 0.0 ellipse
491 "hart's war" 0.0 0.0 ellipse
492 frequency 0.0 0.0 ellipse
493 "primal fear" 0.0 0.0 ellipse
494 hercules 0.0 0.0 ellipse
495 "the great mouse detective" 0.0 0.0 ellipse
496 "treasure planet" 0.0 0.0 ellipse
497 "the little mermaid" 0.0 0.0 ellipse
498 "fahrenheit 451" 0.0 0.0 ellipse
499 "i capture the castle" 0.0 0.0 ellipse
500 "ice princess" 0.0 0.0 ellipse
501 "i spy" 0.0 0.0 ellipse
502 "private parts" 0.0 0.0 ellipse
503 "28 days" 0.0 0.0 ellipse
504 "a streetcar named desire" 0.0 0.0 ellipse
505 "splendor in the grass" 0.0 0.0 ellipse
506 "on the waterfront" 0.0 0.0 ellipse
507 "the mummy" 0.0 0.0 ellipse
508 "the mummy returns" 0.0 0.0 ellipse
509 "van helsing" 0.0 0.0 ellipse
510 "the door in the floor" 0.0 0.0 ellipse
511 "the cowboys" 0.0 0.0 ellipse
512 "on golden pond" 0.0 0.0 ellipse
513 "the rose" 0.0 0.0 ellipse
514 "children of the corn" 0.0 0.0 ellipse
515 "blow dry" 0.0 0.0 ellipse
516 "all the right moves" 0.0 0.0 ellipse
517 "13 ghosts" 0.0 0.0 ellipse
518 "silver bullet" 0.0 0.0 ellipse
519 "rising sun" 0.0 0.0 ellipse
520 "the right stuff" 0.0 0.0 ellipse
521 "invasion of the body snatchers" 0.0 0.0 ellipse
522 twisted 0.0 0.0 ellipse
523 "henry & june" 0.0 0.0 ellipse
524 quills 0.0 0.0 ellipse
525 disclosure 0.0 0.0 ellipse
526 sphere 0.0 0.0 ellipse
527 "tin men" 0.0 0.0 ellipse
528 "rain man" 0.0 0.0 ellipse
529 sleepers 0.0 0.0 ellipse
530 diner 0.0 0.0 ellipse
531 "the natural" 0.0 0.0 ellipse
532 "wag the dog" 0.0 0.0 ellipse
533 toys 0.0 0.0 ellipse
534 envy 0.0 0.0 ellipse
535 bugsy 0.0 0.0 ellipse
536 avalon 0.0 0.0 ellipse
537 bandits 0.0 0.0 ellipse
538 "outrageous fortune" 0.0 0.0 ellipse
539 "love story" 0.0 0.0 ellipse
540 "uptown girls" 0.0 0.0 ellipse
541 "remember the titans" 0.0 0.0 ellipse
542 "king's ransom" 0.0 0.0 ellipse
543 ringu 0.0 0.0 ellipse
544 "the ring two" 0.0 0.0 ellipse
545 "coach carter" 0.0 0.0 ellipse
546 "swing kids" 0.0 0.0 ellipse
547 "save the last dance" 0.0 0.0 ellipse
548 metro 0.0 0.0 ellipse
549 tape 0.0 0.0 ellipse
550 "before sunrise" 0.0 0.0 ellipse
551 "waking life" 0.0 0.0 ellipse
552 "before sunset" 0.0 0.0 ellipse
553 "dazed and confused" 0.0 0.0 ellipse
554 "nicholas nickleby" 0.0 0.0 ellipse
555 emma 0.0 0.0 ellipse
556 "harlem nights" 0.0 0.0 ellipse
557 "dr. t & the women" 0.0 0.0 ellipse
558 popeye 0.0 0.0 ellipse
559 "the player" 0.0 0.0 ellipse
560 "gosford park" 0.0 0.0 ellipse
561 "short cuts" 0.0 0.0 ellipse
562 nashville 0.0 0.0 ellipse
563 "the company" 0.0 0.0 ellipse
564 krull 0.0 0.0 ellipse
565 suspect 0.0 0.0 ellipse
566 bullitt 0.0 0.0 ellipse
567 "breaking away" 0.0 0.0 ellipse
568 "secondhand lions" 0.0 0.0 ellipse
569 "mutiny on the bounty" 0.0 0.0 ellipse
570 "freddy vs. jason" 0.0 0.0 ellipse
571 "fried green tomatoes" 0.0 0.0 ellipse
572 "up close & personal" 0.0 0.0 ellipse
573 "for your eyes only" 0.0 0.0 ellipse
574 "the living daylights" 0.0 0.0 ellipse
575 "licence to kill" 0.0 0.0 ellipse
576 valentine 0.0 0.0 ellipse
577 "urban legend" 0.0 0.0 ellipse
578 "2010: the year we make contact" 0.0 0.0 ellipse
579 "end of days" 0.0 0.0 ellipse
580 timecop 0.0 0.0 ellipse
581 outland 0.0 0.0 ellipse
582 "the musketeer" 0.0 0.0 ellipse
583 "the relic" 0.0 0.0 ellipse
584 "running scared" 0.0 0.0 ellipse
585 "the presidio" 0.0 0.0 ellipse
586 "the sandlot" 0.0 0.0 ellipse
587 "repo man" 0.0 0.0 ellipse
588 "the devil's backbone" 0.0 0.0 ellipse
589 mimic 0.0 0.0 ellipse
590 hellboy 0.0 0.0 ellipse
591 "teaching mrs. tingle" 0.0 0.0 ellipse
592 "man on fire" 0.0 0.0 ellipse
593 "true romance" 0.0 0.0 ellipse
594 "beverly hills cop ii" 0.0 0.0 ellipse
595 "top gun" 0.0 0.0 ellipse
596 "crimson tide" 0.0 0.0 ellipse
597 "spy game" 0.0 0.0 ellipse
598 "enemy of the state" 0.0 0.0 ellipse
599 "the last boy scout" 0.0 0.0 ellipse
600 "days of thunder" 0.0 0.0 ellipse
601 "the ghost and mrs. muir" 0.0 0.0 ellipse
602 "guys and dolls" 0.0 0.0 ellipse
603 "all about eve" 0.0 0.0 ellipse
604 threesome 0.0 0.0 ellipse
605 "the in-laws" 0.0 0.0 ellipse
606 "the craft" 0.0 0.0 ellipse
607 dick 0.0 0.0 ellipse
608 "brassed off" 0.0 0.0 ellipse
609 "little voice" 0.0 0.0 ellipse
610 "hope springs" 0.0 0.0 ellipse
611 "dead men don't wear plaid" 0.0 0.0 ellipse
612 "all of me" 0.0 0.0 ellipse
613 "summer school" 0.0 0.0 ellipse
614 "the jerk" 0.0 0.0 ellipse
615 "the man with two brains" 0.0 0.0 ellipse
616 "summer rental" 0.0 0.0 ellipse
617 "dr. dolittle 2" 0.0 0.0 ellipse
618 "daddy day care" 0.0 0.0 ellipse
619 "next friday" 0.0 0.0 ellipse
620 "look who's talking too" 0.0 0.0 ellipse
621 "look who's talking" 0.0 0.0 ellipse
622 "johnny dangerously" 0.0 0.0 ellipse
623 loser 0.0 0.0 ellipse
624 "national lampoon's european vacation" 0.0 0.0 ellipse
625 "fast times at ridgemont high" 0.0 0.0 ellipse
626 clueless 0.0 0.0 ellipse
627 "strange brew" 0.0 0.0 ellipse
628 thirteen 0.0 0.0 ellipse
629 "lords of dogtown" 0.0 0.0 ellipse
630 s.w.a.t. 0.0 0.0 ellipse
631 "he got game" 0.0 0.0 ellipse
632 "jungle fever" 0.0 0.0 ellipse
633 "25th hour" 0.0 0.0 ellipse
634 "mo' better blues" 0.0 0.0 ellipse
635 "do the right thing" 0.0 0.0 ellipse
636 "the original kings of comedy" 0.0 0.0 ellipse
637 bamboozled 0.0 0.0 ellipse
638 "summer of sam" 0.0 0.0 ellipse
639 "malcolm x" 0.0 0.0 ellipse
640 "the piano" 0.0 0.0 ellipse
641 "in the cut" 0.0 0.0 ellipse
642 "marathon man" 0.0 0.0 ellipse
643 "midnight cowboy" 0.0 0.0 ellipse
644 "the falcon and the snowman" 0.0 0.0 ellipse
645 "pacific heights" 0.0 0.0 ellipse
646 "the next best thing" 0.0 0.0 ellipse
647 "eye for an eye" 0.0 0.0 ellipse
648 "the limey" 0.0 0.0 ellipse
649 "erin brockovich" 0.0 0.0 ellipse
650 "full frontal" 0.0 0.0 ellipse
651 "ocean's twelve" 0.0 0.0 ellipse
652 "out of sight" 0.0 0.0 ellipse
653 "ocean's eleven" 0.0 0.0 ellipse
654 traffic 0.0 0.0 ellipse
655 "no way out" 0.0 0.0 ellipse
656 "the recruit" 0.0 0.0 ellipse
657 "dante's peak" 0.0 0.0 ellipse
658 "thirteen days" 0.0 0.0 ellipse
659 cocktail 0.0 0.0 ellipse
660 "the bounty" 0.0 0.0 ellipse
661 species 0.0 0.0 ellipse
662 "bend it like beckham" 0.0 0.0 ellipse
663 "man on the train" 0.0 0.0 ellipse
664 "intimate strangers" 0.0 0.0 ellipse
665 "beyond borders" 0.0 0.0 ellipse
666 "vertical limit" 0.0 0.0 ellipse
667 "the mask of zorro" 0.0 0.0 ellipse
668 goldeneye 0.0 0.0 ellipse
669 superstar 0.0 0.0 ellipse
670 "stealing harvard" 0.0 0.0 ellipse
671 casper 0.0 0.0 ellipse
672 "moonlight mile" 0.0 0.0 ellipse
673 "city of angels" 0.0 0.0 ellipse
674 "lemony snicket's a series of unfortunate events" 0.0 0.0 ellipse
675 "mo' money" 0.0 0.0 ellipse
676 "sleepless in seattle" 0.0 0.0 ellipse
677 bewitched 0.0 0.0 ellipse
678 michael 0.0 0.0 ellipse
679 "you've got mail" 0.0 0.0 ellipse
680 "nick of time" 0.0 0.0 ellipse
681 "drop zone" 0.0 0.0 ellipse
682 "saturday night fever" 0.0 0.0 ellipse
683 "bird on a wire" 0.0 0.0 ellipse
684 "another stakeout" 0.0 0.0 ellipse
685 "short circuit" 0.0 0.0 ellipse
686 "blue thunder" 0.0 0.0 ellipse
687 "point of no return" 0.0 0.0 ellipse
688 stakeout 0.0 0.0 ellipse
689 "rocky v" 0.0 0.0 ellipse
690 "the karate kid part ii" 0.0 0.0 ellipse
691 rocky 0.0 0.0 ellipse
692 "lean on me" 0.0 0.0 ellipse
693 "8 seconds" 0.0 0.0 ellipse
694 "the karate kid" 0.0 0.0 ellipse
695 "american wedding" 0.0 0.0 ellipse
696 "how high" 0.0 0.0 ellipse
697 "kicking & screaming" 0.0 0.0 ellipse
698 poltergeist 0.0 0.0 ellipse
699 "nine months" 0.0 0.0 ellipse
700 "home alone 2: lost in new york" 0.0 0.0 ellipse
701 "mrs. doubtfire" 0.0 0.0 ellipse
702 "adventures in babysitting" 0.0 0.0 ellipse
703 stepmom 0.0 0.0 ellipse
704 "harry potter and the chamber of secrets" 0.0 0.0 ellipse
705 "home alone" 0.0 0.0 ellipse
706 "bicentennial man" 0.0 0.0 ellipse
707 "harry potter and the sorcerer's stone" 0.0 0.0 ellipse
708 "joy ride" 0.0 0.0 ellipse
709 "the last seduction" 0.0 0.0 ellipse
710 rounders 0.0 0.0 ellipse
711 "life as a house" 0.0 0.0 ellipse
712 "at first sight" 0.0 0.0 ellipse
713 "the net" 0.0 0.0 ellipse
714 de-lovely 0.0 0.0 ellipse
715 "the third man" 0.0 0.0 ellipse
716 oliver! 0.0 0.0 ellipse
717 "dungeons & dragons" 0.0 0.0 ellipse
718 "the american president" 0.0 0.0 ellipse
719 "the story of us" 0.0 0.0 ellipse
720 "this is spinal tap" 0.0 0.0 ellipse
721 "the princess bride" 0.0 0.0 ellipse
722 "stand by me" 0.0 0.0 ellipse
723 misery 0.0 0.0 ellipse
724 "ghosts of mississippi" 0.0 0.0 ellipse
725 "a few good men" 0.0 0.0 ellipse
726 "mean creek" 0.0 0.0 ellipse
727 "the serpent and the rainbow" 0.0 0.0 ellipse
728 "scream 3" 0.0 0.0 ellipse
729 scream 0.0 0.0 ellipse
730 "music of the heart" 0.0 0.0 ellipse
731 "a nightmare on elm street" 0.0 0.0 ellipse
732 "scream 2" 0.0 0.0 ellipse
733 "wes craven's new nightmare" 0.0 0.0 ellipse
734 trapped 0.0 0.0 ellipse
735 "message in a bottle" 0.0 0.0 ellipse
736 "angel eyes" 0.0 0.0 ellipse
737 "when a man loves a woman" 0.0 0.0 ellipse
738 "the dead zone" 0.0 0.0 ellipse
739 existenz 0.0 0.0 ellipse
740 videodrome 0.0 0.0 ellipse
741 crash 0.0 0.0 ellipse
742 scanners 0.0 0.0 ellipse
743 "grumpy old men" 0.0 0.0 ellipse
744 "mystic pizza" 0.0 0.0 ellipse
745 "miss congeniality" 0.0 0.0 ellipse
746 "welcome to mooseport" 0.0 0.0 ellipse
747 "how to lose a guy in 10 days" 0.0 0.0 ellipse
748 "the associate" 0.0 0.0 ellipse
749 "the bad news bears" 0.0 0.0 ellipse
750 "fletch lives" 0.0 0.0 ellipse
751 "the golden child" 0.0 0.0 ellipse
752 wildcats 0.0 0.0 ellipse
753 fletch 0.0 0.0 ellipse
754 "absolute power" 0.0 0.0 ellipse
755 "the rookie" 0.0 0.0 ellipse
756 "midnight in the garden of good and evil" 0.0 0.0 ellipse
757 "high plains drifter" 0.0 0.0 ellipse
758 "space cowboys" 0.0 0.0 ellipse
759 "blood work" 0.0 0.0 ellipse
760 "true crime" 0.0 0.0 ellipse
761 "the bridges of madison county" 0.0 0.0 ellipse
762 "sudden impact" 0.0 0.0 ellipse
763 "heartbreak ridge" 0.0 0.0 ellipse
764 "pale rider" 0.0 0.0 ellipse
765 "million dollar baby" 0.0 0.0 ellipse
766 "the gauntlet" 0.0 0.0 ellipse
767 "mystic river" 0.0 0.0 ellipse
768 firefox 0.0 0.0 ellipse
769 "a perfect world" 0.0 0.0 ellipse
770 "play misty for me" 0.0 0.0 ellipse
771 "the eiger sanction" 0.0 0.0 ellipse
772 unforgiven 0.0 0.0 ellipse
773 "the outlaw josey wales" 0.0 0.0 ellipse
774 "bottle rocket" 0.0 0.0 ellipse
775 "the life aquatic with steve zissou" 0.0 0.0 ellipse
776 rushmore 0.0 0.0 ellipse
777 "the royal tenenbaums" 0.0 0.0 ellipse
778 "ever after: a cinderella story" 0.0 0.0 ellipse
779 "anna and the king" 0.0 0.0 ellipse
780 "sweet home alabama" 0.0 0.0 ellipse
781 hitch 0.0 0.0 ellipse
782 "outfoxed: rupert murdoch's war on journalism" 0.0 0.0 ellipse
783 "modern times" 0.0 0.0 ellipse
784 "the gold rush" 0.0 0.0 ellipse
785 "the great dictator" 0.0 0.0 ellipse
786 "clash of the titans" 0.0 0.0 ellipse
787 "beverly hills cop" 0.0 0.0 ellipse
788 "scent of a woman" 0.0 0.0 ellipse
789 "midnight run" 0.0 0.0 ellipse
790 gigli 0.0 0.0 ellipse
791 "meet joe black" 0.0 0.0 ellipse
792 "murder on the orient express" 0.0 0.0 ellipse
793 network 0.0 0.0 ellipse
794 serpico 0.0 0.0 ellipse
795 "12 angry men" 0.0 0.0 ellipse
796 "the verdict" 0.0 0.0 ellipse
797 "dog day afternoon" 0.0 0.0 ellipse
798 fail-safe 0.0 0.0 ellipse
799 "the lord of the rings" 0.0 0.0 ellipse
800 "cool world" 0.0 0.0 ellipse
801 "a dirty shame" 0.0 0.0 ellipse
802 "cecil b. demented" 0.0 0.0 ellipse
803 cry-baby 0.0 0.0 ellipse
804 hairspray 0.0 0.0 ellipse
805 pecker 0.0 0.0 ellipse
806 "the best little whorehouse in texas" 0.0 0.0 ellipse
807 "born free" 0.0 0.0 ellipse
808 "lethal weapon" 0.0 0.0 ellipse
809 "the omen" 0.0 0.0 ellipse
810 "lethal weapon 3" 0.0 0.0 ellipse
811 "the toy" 0.0 0.0 ellipse
812 timeline 0.0 0.0 ellipse
813 ladyhawke 0.0 0.0 ellipse
814 "conspiracy theory" 0.0 0.0 ellipse
815 "the goonies" 0.0 0.0 ellipse
816 scrooged 0.0 0.0 ellipse
817 "lethal weapon 2" 0.0 0.0 ellipse
818 "superman ii" 0.0 0.0 ellipse
819 "lethal weapon 4" 0.0 0.0 ellipse
820 assassins 0.0 0.0 ellipse
821 maverick 0.0 0.0 ellipse
822 "the twilight samurai" 0.0 0.0 ellipse
823 "u.s. marshals" 0.0 0.0 ellipse
824 "executive decision" 0.0 0.0 ellipse
825 "star trek: nemesis" 0.0 0.0 ellipse
826 northfork 0.0 0.0 ellipse
827 "species ii" 0.0 0.0 ellipse
828 "rosemary's baby" 0.0 0.0 ellipse
829 "the pianist" 0.0 0.0 ellipse
830 frantic 0.0 0.0 ellipse
831 chinatown 0.0 0.0 ellipse
832 "the ninth gate" 0.0 0.0 ellipse
833 "beverly hills cop iii" 0.0 0.0 ellipse
834 "trading places" 0.0 0.0 ellipse
835 "spies like us" 0.0 0.0 ellipse
836 "an american werewolf in london" 0.0 0.0 ellipse
837 "coming to america" 0.0 0.0 ellipse
838 "national lampoon's animal house" 0.0 0.0 ellipse
839 "casualties of war" 0.0 0.0 ellipse
840 "dressed to kill" 0.0 0.0 ellipse
841 "mission: impossible" 0.0 0.0 ellipse
842 "mission to mars" 0.0 0.0 ellipse
843 "the untouchables" 0.0 0.0 ellipse
844 "snake eyes" 0.0 0.0 ellipse
845 "carlito's way" 0.0 0.0 ellipse
846 "femme fatale" 0.0 0.0 ellipse
847 carrie 0.0 0.0 ellipse
848 "death wish" 0.0 0.0 ellipse
849 crazy/beautiful 0.0 0.0 ellipse
850 "blue crush" 0.0 0.0 ellipse
851 evolution 0.0 0.0 ellipse
852 twins 0.0 0.0 ellipse
853 junior 0.0 0.0 ellipse
854 stripes 0.0 0.0 ellipse
855 "legal eagles" 0.0 0.0 ellipse
856 dave 0.0 0.0 ellipse
857 "kindergarten cop" 0.0 0.0 ellipse
858 ghostbusters 0.0 0.0 ellipse
859 "three to tango" 0.0 0.0 ellipse
860 "eternal sunshine of the spotless mind" 0.0 0.0 ellipse
861 "human nature" 0.0 0.0 ellipse
862 sirens 0.0 0.0 ellipse
863 "head in the clouds" 0.0 0.0 ellipse
864 "captain corelli's mandolin" 0.0 0.0 ellipse
865 "shakespeare in love" 0.0 0.0 ellipse
866 "star trek: the motion picture" 0.0 0.0 ellipse
867 "the sound of music" 0.0 0.0 ellipse
868 "the andromeda strain" 0.0 0.0 ellipse
869 "the day the earth stood still" 0.0 0.0 ellipse
870 "west side story" 0.0 0.0 ellipse
871 "pirates of the caribbean: the curse of the black pearl" 0.0 0.0 ellipse
872 "the mexican" 0.0 0.0 ellipse
873 "the ring" 0.0 0.0 ellipse
874 "urban cowboy" 0.0 0.0 ellipse
875 "the paper chase" 0.0 0.0 ellipse
876 "the amityville horror" 0.0 0.0 ellipse
877 "cool hand luke" 0.0 0.0 ellipse
878 brubaker 0.0 0.0 ellipse
879 "50 first dates" 0.0 0.0 ellipse
880 "the longest yard" 0.0 0.0 ellipse
881 "tommy boy" 0.0 0.0 ellipse
882 "naked gun 33 1/3: the final insult" 0.0 0.0 ellipse
883 "my fellow americans" 0.0 0.0 ellipse
884 "anger management" 0.0 0.0 ellipse
885 "the caine mutiny" 0.0 0.0 ellipse
886 "under siege 2: dark territory" 0.0 0.0 ellipse
887 "young guns ii" 0.0 0.0 ellipse
888 "gentlemen prefer blondes" 0.0 0.0 ellipse
889 "bringing up baby" 0.0 0.0 ellipse
890 "to have and have not" 0.0 0.0 ellipse
891 "el dorado" 0.0 0.0 ellipse
892 "the big sleep" 0.0 0.0 ellipse
893 "rio bravo" 0.0 0.0 ellipse
894 "his girl friday" 0.0 0.0 ellipse
895 "hollow man" 0.0 0.0 ellipse
896 robocop 0.0 0.0 ellipse
897 showgirls 0.0 0.0 ellipse
898 "basic instinct" 0.0 0.0 ellipse
899 "total recall" 0.0 0.0 ellipse
900 "starship troopers" 0.0 0.0 ellipse
901 "here on earth" 0.0 0.0 ellipse
902 "final fantasy: the spirits within" 0.0 0.0 ellipse
903 "four weddings and a funeral" 0.0 0.0 ellipse
904 "donnie brasco" 0.0 0.0 ellipse
905 "pushing tin" 0.0 0.0 ellipse
906 "mona lisa smile" 0.0 0.0 ellipse
907 "under siege" 0.0 0.0 ellipse
908 "collateral damage" 0.0 0.0 ellipse
909 "chain reaction" 0.0 0.0 ellipse
910 holes 0.0 0.0 ellipse
911 "above the law" 0.0 0.0 ellipse
912 "a perfect murder" 0.0 0.0 ellipse
913 "the fugitive" 0.0 0.0 ellipse
914 "the talented mr. ripley" 0.0 0.0 ellipse
915 "the english patient" 0.0 0.0 ellipse
916 "cold mountain" 0.0 0.0 ellipse
917 "talk to her" 0.0 0.0 ellipse
918 "bad education" 0.0 0.0 ellipse
919 "live flesh" 0.0 0.0 ellipse
920 "all about my mother" 0.0 0.0 ellipse
921 "the magdalene sisters" 0.0 0.0 ellipse
922 "fright night" 0.0 0.0 ellipse
923 "child's play" 0.0 0.0 ellipse
924 thinner 0.0 0.0 ellipse
925 k-9 0.0 0.0 ellipse
926 "half past dead" 0.0 0.0 ellipse
927 "liar liar" 0.0 0.0 ellipse
928 "bruce almighty" 0.0 0.0 ellipse
929 "patch adams" 0.0 0.0 ellipse
930 "the nutty professor" 0.0 0.0 ellipse
931 dragonfly 0.0 0.0 ellipse
932 "ace ventura: pet detective" 0.0 0.0 ellipse
933 kickboxer 0.0 0.0 ellipse
934 "grease 2" 0.0 0.0 ellipse
935 identity 0.0 0.0 ellipse
936 "cop land" 0.0 0.0 ellipse
937 "kate & leopold" 0.0 0.0 ellipse
938 "being john malkovich" 0.0 0.0 ellipse
939 rudy 0.0 0.0 ellipse
940 hoosiers 0.0 0.0 ellipse
941 "not another teen movie" 0.0 0.0 ellipse
942 "buffalo '66" 0.0 0.0 ellipse
943 "free willy" 0.0 0.0 ellipse
944 "quigley down under" 0.0 0.0 ellipse
945 "crocodile dundee in los angeles" 0.0 0.0 ellipse
946 "six degrees of separation" 0.0 0.0 ellipse
947 roxanne 0.0 0.0 ellipse
948 i.q. 0.0 0.0 ellipse
949 "it runs in the family" 0.0 0.0 ellipse
950 "mystery men" 0.0 0.0 ellipse
951 "fly away home" 0.0 0.0 ellipse
952 "the black stallion" 0.0 0.0 ellipse
953 baseketball 0.0 0.0 ellipse
954 "my boss's daughter" 0.0 0.0 ellipse
955 "scary movie 3" 0.0 0.0 ellipse
956 "extreme measures" 0.0 0.0 ellipse
957 "gorillas in the mist" 0.0 0.0 ellipse
958 "the world is not enough" 0.0 0.0 ellipse
959 nell 0.0 0.0 ellipse
960 enough 0.0 0.0 ellipse
961 enigma 0.0 0.0 ellipse
962 "all the pretty horses" 0.0 0.0 ellipse
963 "sling blade" 0.0 0.0 ellipse
964 "bad boys" 0.0 0.0 ellipse
965 "bad boys ii" 0.0 0.0 ellipse
966 "pearl harbor" 0.0 0.0 ellipse
967 "the rock" 0.0 0.0 ellipse
968 "eddie and the cruisers" 0.0 0.0 ellipse
969 "the hurricane" 0.0 0.0 ellipse
970 "the thomas crown affair" 0.0 0.0 ellipse
971 moonstruck 0.0 0.0 ellipse
972 rollerball 0.0 0.0 ellipse
973 "in the heat of the night" 0.0 0.0 ellipse
974 "fiddler on the roof" 0.0 0.0 ellipse
975 "a soldier's story" 0.0 0.0 ellipse
976 "agnes of god" 0.0 0.0 ellipse
977 "only you" 0.0 0.0 ellipse
978 ricochet 0.0 0.0 ellipse
979 highlander 0.0 0.0 ellipse
980 "the secret garden" 0.0 0.0 ellipse
981 "europa europa" 0.0 0.0 ellipse
982 undertow 0.0 0.0 ellipse
983 "all the real girls" 0.0 0.0 ellipse
984 "a guy thing" 0.0 0.0 ellipse
985 "sunshine state" 0.0 0.0 ellipse
986 "eight men out" 0.0 0.0 ellipse
987 "lone star" 0.0 0.0 ellipse
988 "two mules for sister sara" 0.0 0.0 ellipse
989 "escape from alcatraz" 0.0 0.0 ellipse
990 "the shootist" 0.0 0.0 ellipse
991 "control room" 0.0 0.0 ellipse
992 "paper moon" 0.0 0.0 ellipse
993 "the last picture show" 0.0 0.0 ellipse
994 "joe versus the volcano" 0.0 0.0 ellipse
995 "super size me" 0.0 0.0 ellipse
996 "the bourne supremacy" 0.0 0.0 ellipse
997 "bloody sunday" 0.0 0.0 ellipse
998 "not without my daughter" 0.0 0.0 ellipse
999 wilde 0.0 0.0 ellipse