Imprimir las peliculas sin que tengan NA

#Imprimir la base movielens sin los NA

library(dslabs)

# cargar los datos
data("movielens")

# eliminar  filas sin  NA valores
movielens_sin_na <- na.omit(movielens)

# Print the dataset without NA values

Almacenar las pelicula de menor rating de 3.544 en un data frame

# Almacenar en un Data frame las películas que tienen rating menor a 3.544 (promedio)

# Calcular el rating promedio
rating_promedio <- mean(movielens$rating, na.rm = TRUE)

# Filtrar películas con un rating menor a 3.544
peliculas_rating_bajo <- subset(movielens, rating < 3.544)

# Almacenar el subconjunto filtrado en un Data Frame
df_peliculas_rating_bajo <- as.data.frame(peliculas_rating_bajo)

#print(rating_promedio)
print(peliculas_rating_bajo)
##       movieId
## 1          31
## 2        1029
## 3        1061
## 4        1129
## 6        1263
## 7        1287
## 8        1293
## 9        1339
## 10       1343
## 11       1371
## 12       1405
## 15       2150
## 16       2193
## 17       2294
## 18       2455
## 19       2968
## 20       3671
## 26         52
## 27         62
## 29        144
## 32        161
## 33        165
## 34        168
## 35        185
## 36        186
## 37        208
## 39        223
## 40        225
## 41        235
## 42        248
## 47        272
## 49        292
## 51        300
## 53        317
## 54        319
## 55        339
## 58        356
## 59        357
## 60        364
## 61        367
## 62        370
## 63        371
## 64        372
## 65        377
## 66        382
## 67        405
## 68        410
## 70        457
## 72        474
## 74        485
## 75        497
## 82        539
## 83        550
## 85        552
## 87        586
## 88        587
## 89        588
## 93        593
## 94        616
## 97         60
## 99        247
## 100       267
## 103       355
## 105       377
## 106       527
## 107       588
## 108       592
## 109       593
## 110       595
## 111       736
## 113       866
## 115      1210
## 117      1271
## 119      1580
## 124      2513
## 125      2694
## 126      2702
## 127      2716
## 128      2762
## 132      3243
## 135      5349
## 136      5669
## 137      6377
## 138      7153
## 139      7361
## 140      8622
## 141      8636
## 142     27369
## 143     44191
## 146     58559
## 153       173
## 154       185
## 158       329
## 164       380
## 165       410
## 166       431
## 168       435
## 176       590
## 236      1372
## 238      1376
## 239      1377
## 244      1544
## 248      1805
## 251      1918
## 255      1967
## 259      2002
## 260      2003
## 269      2054
## 284      2110
## 294      2193
## 297      2263
## 308      2616
## 311      2659
## 317      2770
## 323      2822
## 324      2867
## 327      2902
## 328      2903
## 332      2986
## 335      3016
## 345      3208
## 349      3263
## 351      4006
## 357       231
## 359       344
## 367       588
## 370       788
## 371       858
## 372       903
## 376      1193
## 377      1221
## 381      1393
## 383      1544
## 391      1997
## 392      2023
## 396      2355
## 398      2502
## 402      2762
## 403      2770
## 404      2918
## 405      2997
## 406      3114
## 407      3176
## 409      3753
## 411      3948
## 414      4022
## 416      4306
## 417      4308
## 419      4718
## 420      4963
## 422      5266
## 426      5669
## 428      5816
## 430      6218
## 434      6711
## 438      8622
## 443     30793
## 453       158
## 454       173
## 463      1358
## 464      1639
## 465      1687
## 466      1747
## 467      1876
## 468      1909
## 469      2001
## 473      2502
## 474      2528
## 476      2571
## 477      2657
## 479      2723
## 481      2890
## 482      3052
## 484      3300
## 485      3751
## 486      4641
## 487      4975
## 489      7090
## 492      8368
## 494      8784
## 496         1
## 497        10
## 498        21
## 499        31
## 502       104
## 507       198
## 508       207
## 510       272
## 511       316
## 513       329
## 514       333
## 515       345
## 516       355
## 517       356
## 518       357
## 519       364
## 520       367
## 521       377
## 524       500
## 526       539
## 530       589
## 532       592
## 534       595
## 535       610
## 537       708
## 539       724
## 540       736
## 541       737
## 543       780
## 544       786
## 546      1036
## 547      1073
## 550      1097
## 551      1125
## 552      1129
## 556      1197
## 565      1270
## 567      1278
## 570      1291
## 571      1298
## 573      1307
## 574      1353
## 575      1371
## 576      1372
## 577      1373
## 579      1375
## 580      1376
## 581      1394
## 583      1408
## 585        45
## 589       260
## 590       282
## 595       520
## 596       524
## 602       805
## 604      1196
## 612      1265
## 615      1302
## 616      1358
## 618      1393
## 620      1552
## 621      1617
## 625      1754
## 627      1876
## 630      2100
## 631      2139
## 636      2353
## 637      2423
## 640      2716
## 642      2770
## 644      2797
## 645      2804
## 646      2841
## 652      3916
## 656      4019
## 660      4448
## 661      4886
## 662      4896
## 665      4993
## 666      4995
## 668      5378
## 673      5669
## 675      5989
## 677      6378
## 680      6879
## 681      7143
## 685      8533
## 688      8874
## 689     32587
## 693     34162
## 694     40583
## 695     40819
## 696     42007
## 697     43556
## 698     43871
## 699     44004
## 702        26
## 704        47
## 712       733
## 714      1177
## 717      1411
## 718      1541
## 723      1721
## 729      2268
## 730      2273
## 733      2294
## 737      2427
## 738      2490
## 740      2539
## 742      2628
## 748       344
## 750       592
## 752      1036
## 753      1089
## 754      1101
## 761      1220
## 766      1459
## 767      1499
## 769      1690
## 772      1887
## 774      2108
## 777      2410
## 781      2827
## 782      2840
## 784      2881
## 786      2907
## 788      2995
## 789      3005
## 792        70
## 794       169
## 797       785
## 802      1918
## 803      2042
## 805      2762
## 806      3424
## 807      5669
## 813     71211
## 817     80906
## 819     81562
## 829       253
## 830       529
## 831       538
## 832       608
## 833       673
## 835       737
## 836      1028
## 837      1032
## 838      1077
## 839      1197
## 842      1230
## 844      1295
## 845      1374
## 847      1639
## 848      1732
## 849      2259
## 850      2355
## 852      2529
## 853      2668
## 855      3146
## 856      3148
## 857      3176
## 858      3179
## 860      3324
## 863      3770
## 864      3773
## 865      3780
## 866      3791
## 868      3794
## 870      3799
## 871      3801
## 872      3809
## 874      3827
## 875      3829
## 877      3841
## 878      3844
## 879      3861
## 881      3864
## 883      3869
## 884      3871
## 885      3873
## 887      3885
## 888      3886
## 891        47
## 894       296
## 898       480
## 899       524
## 902       587
## 905       919
## 906      1027
## 908      1265
## 909      1918
## 912      2571
## 913      2572
## 915      2762
## 916      2804
## 917      2908
## 918      2918
## 919      3114
## 921      3255
## 922      3396
## 923      3624
## 926      4321
## 927      4718
## 929      4886
## 935     54286
## 942     93363
## 943       594
## 945      1721
## 946      2038
## 947      2355
## 948      2394
## 949      2628
## 950      2683
## 951      2716
## 952      2720
## 953      2724
## 954      2861
## 956      3157
## 958      3354
## 959      3623
## 961      3986
## 963         1
## 964         2
## 967        10
## 968        11
## 969        14
## 970        16
## 971        17
## 972        19
## 974        22
## 975        25
## 977        34
## 978        36
## 979        39
## 980        44
## 983        52
## 984        62
## 985        70
## 987        94
## 988        95
## 990       104
## 991       107
## 992       110
## 994       112
## 996       125
## 997       145
## 999       150
## 1000      153
## 1001      157
## 1002      160
## 1003      161
## 1005      163
## 1007      165
## 1008      170
## 1009      172
## 1012      180
## 1013      185
## 1014      193
## 1015      196
## 1016      198
## 1017      208
## 1018      214
## 1020      216
## 1022      225
## 1023      230
## 1024      231
## 1028      237
## 1030      247
## 1031      252
## 1032      253
## 1034      265
## 1035      288
## 1036      292
## 1043      316
## 1044      317
## 1045      318
## 1046      322
## 1047      329
## 1048      335
## 1049      339
## 1050      342
## 1051      344
## 1052      349
## 1053      353
## 1054      355
## 1055      356
## 1056      357
## 1058      367
## 1059      370
## 1060      371
## 1061      372
## 1062      373
## 1065      382
## 1066      429
## 1068      434
## 1069      435
## 1070      440
## 1072      442
## 1073      454
## 1075      466
## 1076      471
## 1077      474
## 1078      480
## 1079      481
## 1080      483
## 1081      485
## 1083      500
## 1084      508
## 1085      509
## 1086      520
## 1087      524
## 1089      535
## 1090      539
## 1091      540
## 1093      543
## 1095      551
## 1097      556
## 1098      562
## 1099      574
## 1100      586
## 1101      587
## 1102      588
## 1104      590
## 1107      594
## 1108      597
## 1110      610
## 1111      628
## 1112      647
## 1114      663
## 1115      665
## 1116      674
## 1117      680
## 1118      708
## 1119      720
## 1120      724
## 1121      733
## 1122      736
## 1123      745
## 1124      748
## 1126      762
## 1128      780
## 1129      784
## 1130      785
## 1131      786
## 1132      788
## 1133      799
## 1135      802
## 1137      804
## 1138      832
## 1139      836
## 1148      910
## 1152      914
## 1153      916
## 1154      919
## 1155      920
## 1156      922
## 1159      926
## 1160      931
## 1161      953
## 1163     1020
## 1164     1035
## 1167     1047
## 1168     1059
## 1170     1073
## 1172     1084
## 1173     1088
## 1175     1092
## 1176     1093
## 1180     1100
## 1181     1101
## 1182     1120
## 1184     1131
## 1185     1136
## 1186     1147
## 1187     1148
## 1189     1173
## 1191     1178
## 1193     1183
## 1195     1189
## 1198     1197
## 1200     1199
## 1202     1201
## 1204     1204
## 1206     1207
## 1210     1211
## 1211     1212
## 1212     1213
## 1214     1215
## 1215     1217
## 1217     1219
## 1218     1220
## 1224     1230
## 1226     1233
## 1228     1235
## 1229     1240
## 1230     1243
## 1232     1246
## 1234     1248
## 1235     1249
## 1237     1251
## 1239     1254
## 1241     1259
## 1242     1260
## 1243     1262
## 1245     1264
## 1250     1272
## 1251     1276
## 1252     1280
## 1253     1281
## 1254     1283
## 1255     1284
## 1256     1287
## 1259     1290
## 1263     1302
## 1264     1303
## 1265     1304
## 1267     1320
## 1268     1333
## 1269     1334
## 1270     1339
## 1271     1342
## 1272     1356
## 1273     1358
## 1274     1361
## 1275     1370
## 1276     1377
## 1277     1380
## 1278     1385
## 1280     1391
## 1281     1393
## 1284     1405
## 1289     1476
## 1290     1479
## 1291     1483
## 1292     1484
## 1293     1485
## 1294     1500
## 1295     1502
## 1296     1503
## 1297     1513
## 1298     1517
## 1299     1527
## 1300     1529
## 1301     1544
## 1303     1552
## 1304     1556
## 1305     1562
## 1306     1569
## 1310     1589
## 1311     1597
## 1312     1608
## 1313     1610
## 1314     1615
## 1315     1616
## 1320     1644
## 1321     1645
## 1322     1649
## 1323     1653
## 1324     1663
## 1325     1673
## 1327     1680
## 1328     1682
## 1330     1690
## 1331     1694
## 1335     1721
## 1336     1722
## 1337     1729
## 1338     1732
## 1339     1735
## 1340     1747
## 1342     1752
## 1343     1753
## 1344     1754
## 1345     1777
## 1346     1779
## 1347     1784
## 1348     1792
## 1349     1805
## 1350     1807
## 1351     1810
## 1352     1816
## 1354     1831
## 1355     1834
## 1356     1836
## 1360     1862
## 1361     1876
## 1362     1882
## 1364     1889
## 1365     1895
## 1366     1897
## 1367     1904
## 1368     1909
## 1370     1914
## 1371     1917
## 1375     1950
## 1376     1952
## 1377     1953
## 1378     1954
## 1381     1961
## 1382     1962
## 1383     1964
## 1385     1994
## 1387     2000
## 1388     2003
## 1391     2010
## 1392     2011
## 1393     2012
## 1394     2018
## 1396     2020
## 1397     2025
## 1398     2028
## 1399     2041
## 1400     2054
## 1401     2058
## 1402     2060
## 1404     2076
## 1405     2100
## 1409     2124
## 1410     2126
## 1411     2133
## 1412     2134
## 1413     2140
## 1414     2145
## 1415     2150
## 1416     2160
## 1417     2161
## 1418     2167
## 1420     2186
## 1422     2231
## 1425     2248
## 1426     2268
## 1427     2269
## 1428     2273
## 1429     2278
## 1430     2282
## 1431     2288
## 1433     2291
## 1434     2294
## 1435     2302
## 1436     2303
## 1437     2311
## 1438     2313
## 1440     2321
## 1441     2324
## 1442     2329
## 1443     2333
## 1444     2334
## 1445     2336
## 1446     2340
## 1447     2351
## 1448     2353
## 1449     2355
## 1450     2357
## 1451     2360
## 1452     2366
## 1453     2369
## 1454     2371
## 1455     2378
## 1456     2387
## 1457     2391
## 1459     2396
## 1460     2405
## 1461     2406
## 1462     2407
## 1464     2424
## 1465     2427
## 1466     2428
## 1467     2439
## 1468     2447
## 1469     2455
## 1470     2467
## 1472     2490
## 1473     2501
## 1475     2505
## 1476     2528
## 1477     2539
## 1478     2541
## 1479     2542
## 1480     2560
## 1481     2568
## 1484     2574
## 1485     2575
## 1486     2579
## 1487     2580
## 1488     2581
## 1489     2585
## 1491     2598
## 1492     2599
## 1493     2600
## 1494     2605
## 1495     2617
## 1496     2624
## 1497     2628
## 1499     2648
## 1500     2657
## 1502     2678
## 1503     2683
## 1504     2686
## 1505     2692
## 1506     2699
## 1507     2700
## 1508     2701
## 1509     2702
## 1510     2706
## 1511     2707
## 1512     2709
## 1513     2710
## 1515     2713
## 1517     2717
## 1518     2718
## 1519     2722
## 1520     2723
## 1521     2726
## 1522     2729
## 1523     2759
## 1524     2761
## 1525     2762
## 1526     2763
## 1527     2769
## 1530     2795
## 1532     2803
## 1533     2819
## 1534     2840
## 1535     2841
## 1538     2881
## 1541     2908
## 1543     2915
## 1549     2952
## 1552     2976
## 1554     2985
## 1556     2990
## 1560     3004
## 1561     3005
## 1563     3007
## 1564     3008
## 1566     3019
## 1567     3020
## 1571     3044
## 1572     3052
## 1574     3077
## 1575     3081
## 1576     3082
## 1578     3089
## 1581     3107
## 1583     3113
## 1584     3114
## 1586     3129
## 1587     3134
## 1588     3146
## 1589     3147
## 1590     3148
## 1591     3150
## 1592     3152
## 1593     3157
## 1594     3160
## 1595     3168
## 1596     3173
## 1597     3174
## 1599     3176
## 1600     3181
## 1601     3182
## 1602     3185
## 1604     3219
## 1605     3225
## 1607     3250
## 1608     3253
## 1609     3255
## 1610     3256
## 1612     3262
## 1615     3267
## 1616     3272
## 1617     3273
## 1618     3275
## 1619     3285
## 1620     3286
## 1624     3307
## 1625     3316
## 1627     3318
## 1630     3358
## 1631     3361
## 1632     3362
## 1633     3386
## 1634     3390
## 1635     3408
## 1637     3418
## 1638     3421
## 1639     3429
## 1640     3435
## 1641     3448
## 1642     3461
## 1643     3462
## 1646     3477
## 1648     3484
## 1649     3489
## 1650     3499
## 1653     3510
## 1654     3512
## 1655     3527
## 1656     3534
## 1657     3535
## 1659     3538
## 1660     3543
## 1661     3552
## 1662     3555
## 1663     3556
## 1664     3566
## 1667     3577
## 1668     3578
## 1669     3598
## 1671     3618
## 1672     3623
## 1673     3624
## 1674     3626
## 1676     3634
## 1677     3635
## 1678     3638
## 1679     3639
## 1680     3671
## 1683     3717
## 1686     3735
## 1687     3742
## 1688     3745
## 1689     3747
## 1690     3751
## 1691     3752
## 1692     3755
## 1693     3763
## 1694     3783
## 1696     3786
## 1697     3787
## 1698     3788
## 1699     3793
## 1701     3798
## 1702     3800
## 1703     3801
## 1704     3823
## 1705     3825
## 1706     3826
## 1707     3827
## 1708     3852
## 1709     3854
## 1710     3861
## 1711     3863
## 1714     3892
## 1715     3893
## 1716     3896
## 1717     3897
## 1718     3910
## 1719     3911
## 1721     3943
## 1725     3956
## 1726     3967
## 1727     3968
## 1728     3969
## 1729     3977
## 1730     3979
## 1731     3981
## 1734     3986
## 1736     3988
## 1737     3989
## 1738     3990
## 1739     3993
## 1742     3998
## 1743     3999
## 1744     4005
## 1745     4006
## 1746     4007
## 1747     4010
## 1748     4011
## 1749     4014
## 1752     4018
## 1753     4019
## 1754     4020
## 1755     4021
## 1756     4022
## 1757     4023
## 1758     4025
## 1759     4027
## 1761     4030
## 1764     4036
## 1765     4037
## 1766     4052
## 1767     4055
## 1771     4082
## 1772     4085
## 1773     4121
## 1775     4148
## 1776     4149
## 1777     4158
## 1778     4161
## 1779     4167
## 1780     4168
## 1782     4223
## 1783     4225
## 1785     4232
## 1787     4238
## 1788     4239
## 1789     4246
## 1790     4247
## 1791     4262
## 1792     4270
## 1794     4299
## 1796     4306
## 1797     4308
## 1798     4310
## 1799     4321
## 1801     4343
## 1802     4344
## 1803     4351
## 1805     4367
## 1806     4369
## 1807     4370
## 1808     4372
## 1809     4378
## 1810     4380
## 1811     4381
## 1812     4383
## 1813     4386
## 1814     4388
## 1815     4410
## 1817     4447
## 1818     4448
## 1819     4450
## 1820     4451
## 1822     4546
## 1823     4571
## 1824     4621
## 1826     4638
## 1827     4639
## 1828     4641
## 1829     4642
## 1830     4643
## 1831     4654
## 1832     4658
## 1833     4666
## 1834     4675
## 1836     4679
## 1837     4700
## 1838     4701
## 1841     4719
## 1842     4720
## 1843     4723
## 1844     4727
## 1847     4734
## 1848     4738
## 1849     4744
## 1850     4776
## 1851     4816
## 1852     4823
## 1853     4844
## 1854     4848
## 1857     4881
## 1859     4888
## 1860     4890
## 1861     4896
## 1863     4902
## 1866     4958
## 1868     4973
## 1869     4974
## 1870     4975
## 1872     4992
## 1874     4995
## 1875     5000
## 1876     5008
## 1878     5013
## 1879     5015
## 1880     5026
## 1881     5060
## 1882     5066
## 1884     5074
## 1886     5110
## 1887     5120
## 1888     5128
## 1890     5170
## 1891     5171
## 1892     5218
## 1893     5219
## 1894     5220
## 1895     5222
## 1896     5225
## 1897     5254
## 1898     5266
## 1900     5279
## 1901     5283
## 1902     5291
## 1903     5293
## 1904     5296
## 1905     5298
## 1906     5299
## 1907     5308
## 1908     5313
## 1909     5319
## 1910     5339
## 1911     5346
## 1912     5349
## 1913     5363
## 1914     5364
## 1916     5378
## 1917     5388
## 1918     5391
## 1919     5400
## 1920     5410
## 1921     5416
## 1922     5418
## 1923     5419
## 1924     5444
## 1926     5449
## 1927     5458
## 1928     5459
## 1929     5463
## 1930     5464
## 1932     5478
## 1933     5481
## 1935     5502
## 1936     5504
## 1937     5507
## 1938     5508
## 1940     5524
## 1941     5528
## 1942     5541
## 1943     5553
## 1944     5568
## 1945     5577
## 1946     5617
## 1947     5618
## 1948     5620
## 1949     5630
## 1950     5650
## 1953     5673
## 1955     5791
## 1957     5809
## 1958     5816
## 1959     5872
## 1960     5878
## 1963     5903
## 1964     5909
## 1965     5945
## 1967     5954
## 1968     5956
## 1970     5959
## 1971     5968
## 1972     5989
## 1973     5991
## 1975     6003
## 1976     6016
## 1977     6025
## 1978     6037
## 1979     6059
## 1980     6155
## 1981     6157
## 1982     6180
## 1983     6188
## 1984     6203
## 1985     6218
## 1987     6281
## 1988     6283
## 1989     6287
## 1990     6296
## 1991     6299
## 1992     6303
## 1994     6331
## 1995     6333
## 1996     6365
## 1997     6373
## 1998     6377
## 1999     6378
## 2000     6380
## 2001     6385
## 2002     6433
## 2003     6440
## 2004     6442
## 2005     6464
## 2006     6502
## 2007     6503
## 2008     6534
## 2009     6537
## 2010     6539
## 2011     6547
## 2012     6552
## 2013     6586
## 2014     6593
## 2015     6620
## 2017     6650
## 2018     6708
## 2019     6711
## 2020     6754
## 2021     6773
## 2022     6783
## 2025     6820
## 2026     6863
## 2027     6867
## 2028     6870
## 2029     6873
## 2030     6874
## 2031     6875
## 2032     6879
## 2033     6885
## 2035     6934
## 2036     6936
## 2037     6942
## 2039     6947
## 2040     6953
## 2042     6961
## 2044     6978
## 2045     6979
## 2046     6989
## 2047     7003
## 2048     7004
## 2049     7008
## 2050     7010
## 2051     7028
## 2053     7090
## 2054     7123
## 2055     7132
## 2056     7143
## 2057     7147
## 2058     7153
## 2059     7156
## 2060     7162
## 2061     7173
## 2062     7199
## 2063     7254
## 2064     7265
## 2065     7293
## 2066     7317
## 2067     7323
## 2068     7325
## 2069     7327
## 2070     7346
## 2071     7348
## 2073     7371
## 2074     7373
## 2075     7438
## 2076     7444
## 2077     7445
## 2078     7451
## 2079     7458
## 2081     7487
## 2082     7560
## 2083     7569
## 2084     7573
## 2085     7698
## 2086     7792
## 2087     7925
## 2088     8011
## 2090     8360
## 2092     8366
## 2093     8368
## 2094     8376
## 2095     8464
## 2096     8528
## 2097     8529
## 2098     8531
## 2099     8581
## 2100     8582
## 2101     8622
## 2102     8623
## 2103     8636
## 2105     8641
## 2106     8644
## 2107     8645
## 2108     8665
## 2109     8781
## 2110     8784
## 2111     8798
## 2112     8807
## 2113     8865
## 2114     8874
## 2115     8910
## 2118     8930
## 2119     8948
## 2121     8950
## 2122     8957
## 2123     8958
## 2124     8961
## 2125     8970
## 2126     8972
## 2127     8974
## 2128     8984
## 2133    26810
## 2134    27020
## 2135    27478
## 2137    27773
## 2138    27821
## 2140    27904
## 2141    30707
## 2142    30749
## 2143    30810
## 2144    30812
## 2145    30825
## 2146    31685
## 2147    31696
## 2148    32587
## 2149    33004
## 2150    33154
## 2151    33166
## 2153    33679
## 2155    34048
## 2156    34072
## 2157    34150
## 2158    34162
## 2159    34319
## 2160    34334
## 2161    34405
## 2162    34542
## 2163    35836
## 2164    35957
## 2165    36517
## 2166    36529
## 2167    37386
## 2168    37729
## 2169    37741
## 2171    38886
## 2173    40583
## 2174    40815
## 2175    41997
## 2177    44004
## 2178    44191
## 2179    44195
## 2181    44555
## 2182    44597
## 2183    44665
## 2184    44761
## 2186    45186
## 2187    45447
## 2188    45499
## 2189    45517
## 2191    45672
## 2192    45720
## 2193    45722
## 2194    45728
## 2195    45950
## 2196    46530
## 2197    46578
## 2198    46723
## 2199    46970
## 2200    46972
## 2201    46976
## 2202    47610
## 2203    47999
## 2204    48043
## 2205    48082
## 2207    48394
## 2208    48516
## 2212    49278
## 2213    49286
## 2214    50851
## 2215    50872
## 2217    51255
## 2219    51662
## 2220    52245
## 2221    52328
## 2222    52604
## 2223    52722
## 2224    52973
## 2225    53322
## 2226    53464
## 2227    53894
## 2228    53972
## 2230    54001
## 2231    54272
## 2232    54286
## 2234    54503
## 2236    55247
## 2237    55269
## 2238    55276
## 2239    55442
## 2240    55765
## 2241    55820
## 2242    55830
## 2243    56174
## 2244    56367
## 2246    56775
## 2247    56782
## 2248    57368
## 2250    57669
## 2251    58025
## 2252    58295
## 2254    58998
## 2257    59369
## 2258    59519
## 2259    59615
## 2260    59784
## 2261    59900
## 2262    60037
## 2263    60040
## 2265    60072
## 2266    60074
## 2267    60126
## 2268    60295
## 2270    60766
## 2271    61024
## 2272    61132
## 2273    61323
## 2274    61394
## 2275    62374
## 2276    62434
## 2278    63082
## 2279    63113
## 2280    63131
## 2281    63859
## 2282    64620
## 2283    64839
## 2284    64957
## 2286    65802
## 2287    66097
## 2288    66130
## 2289    66203
## 2290    66596
## 2291    66665
## 2292    66934
## 2293    67087
## 2294    67193
## 2295    67665
## 2296    67734
## 2298    68157
## 2300    68237
## 2301    68319
## 2302    68324
## 2305    68793
## 2306    68954
## 2307    69122
## 2308    69306
## 2309    69406
## 2310    69436
## 2313    69526
## 2315    70293
## 2317    70697
## 2318    70862
## 2319    71211
## 2320    71264
## 2321    71282
## 2322    71462
## 2323    71464
## 2324    71535
## 2325    71838
## 2326    72011
## 2327    72226
## 2328    72378
## 2330    73017
## 2331    73344
## 2332    74458
## 2334    74795
## 2335    74851
## 2336    76077
## 2338    76251
## 2339    76293
## 2340    76738
## 2341    77364
## 2343    77561
## 2344    78209
## 2345    78469
## 2346    78499
## 2348    79057
## 2350    79185
## 2351    79242
## 2352    79293
## 2353    79428
## 2354    79695
## 2355    79702
## 2356    80126
## 2357    80185
## 2358    80463
## 2360    80862
## 2362    81158
## 2363    81191
## 2364    81229
## 2365    81591
## 2366    81782
## 2367    81834
## 2368    81845
## 2369    81847
## 2370    81932
## 2371    82461
## 2372    82854
## 2373    83270
## 2374    83293
## 2375    83349
## 2376    83613
## 2378    84152
## 2379    84374
## 2380    84392
## 2381    84954
## 2384    86190
## 2385    86332
## 2386    86644
## 2389    86882
## 2390    86898
## 2391    86911
## 2393    87232
## 2394    87304
## 2395    87306
## 2396    87430
## 2397    87485
## 2399    87869
## 2400    87930
## 2401    88125
## 2402    88129
## 2403    88140
## 2404    88163
## 2405    88356
## 2407    88950
## 2408    89090
## 2409    89337
## 2410    89470
## 2412    89745
## 2413    89840
## 2414    90249
## 2415    90266
## 2417    90439
## 2419    90600
## 2420    90603
## 2421    90647
## 2422    90746
## 2423    90866
## 2424    90870
## 2425    91500
## 2426    91505
## 2427    91529
## 2428    91535
## 2429    91542
## 2430    91630
## 2433    91842
## 2434    91869
## 2435    92420
## 2436    92507
## 2437    93326
## 2438    93363
## 2439    93510
## 2440    93721
## 2441    93831
## 2442    93840
## 2443    94015
## 2444    94018
## 2445    94478
## 2447    94777
## 2448    94780
## 2449    94833
## 2450    94864
## 2451    94959
## 2452    95105
## 2453    95167
## 2454    95199
## 2455    95311
## 2456    95443
## 2457    95510
## 2458    95558
## 2459    95875
## 2460    96079
## 2461    96150
## 2462    96488
## 2463    96610
## 2464    96667
## 2465    96737
## 2466    97304
## 2467    97393
## 2468    97866
## 2469    97913
## 2470    97923
## 2471    97938
## 2472    98122
## 2473    98154
## 2474    98809
## 2475    98961
## 2476    99007
## 2477    99112
## 2478    99114
## 2479    99149
## 2480    99468
## 2482   100032
## 2483   100083
## 2484   100365
## 2485   100383
## 2486   100517
## 2488   100581
## 2489   100714
## 2490   100745
## 2491   101076
## 2492   101112
## 2493   101362
## 2494   101864
## 2495   101895
## 2496   102123
## 2497   102125
## 2498   102445
## 2499   102800
## 2500   102880
## 2501   102903
## 2502   103042
## 2504   103249
## 2505   103253
## 2506   103372
## 2507   103810
## 2508   104211
## 2509   104241
## 2510   104272
## 2511   104726
## 2512   104841
## 2514   105504
## 2515   106072
## 2516   106111
## 2517   106332
## 2518   106489
## 2519   106782
## 2520   106916
## 2522   107348
## 2525   108188
## 2526   108190
## 2527   108689
## 2528   108729
## 2529   108932
## 2530   108945
## 2531   109187
## 2532   109374
## 2533   109487
## 2534   109673
## 2535   109687
## 2536   109848
## 2538   110127
## 2539   110553
## 2540   110730
## 2541   110771
## 2542   111228
## 2543   111360
## 2544   111362
## 2550   112138
## 2551   112171
## 2552   112183
## 2553   112370
## 2554   112552
## 2557   112788
## 2559   112940
## 2560   113345
## 2561   113348
## 2562   113378
## 2563   113741
## 2564   114180
## 2567   115502
## 2569   115617
## 2570   115713
## 2571   116161
## 2572   116797
## 2573   116799
## 2574   116823
## 2576   117176
## 2578   117533
## 2579   118696
## 2580   119141
## 2581   119145
## 2582   120466
## 2583   120799
## 2584   121171
## 2586   122882
## 2587   122886
## 2588   122890
## 2589   122892
## 2590   122900
## 2591   122902
## 2592   122904
## 2593   122920
## 2594   122924
## 2595   127136
## 2596   128360
## 2597   129937
## 2598   130452
## 2599   130490
## 2600   130576
## 2601   130634
## 2602   131013
## 2603   132046
## 2604   132480
## 2605   132796
## 2606   132961
## 2607   134130
## 2610   134853
## 2611   135133
## 2612   135436
## 2613   135567
## 2614   135569
## 2615   136020
## 2616   136562
## 2617   136864
## 2618   137337
## 2619   137857
## 2620   138036
## 2621   139385
## 2622   139644
## 2623   139757
## 2624   139855
## 2625   140110
## 2628   140711
## 2629   140928
## 2630   142488
## 2631   142507
## 2632   143385
## 2633   145839
## 2634   145935
## 2635   146656
## 2636   148626
## 2637   149352
## 2638   149354
## 2640   152057
## 2641   152077
## 2642   152079
## 2643   152081
## 2644   155820
## 2645   156607
## 2646   156609
## 2647   157200
## 2648   157296
## 2649   157667
## 2650   158238
## 2651   158528
## 2652   159093
## 2653   159690
## 2654   159755
## 2656   159972
## 2657   160080
## 2658   160271
## 2659   160563
## 2660   160565
## 2662   161155
## 2670     1961
## 2672     2278
## 2675     2797
## 2678     4014
## 2686     5349
## 2690     6874
## 2701      172
## 2702      185
## 2705      223
## 2707      247
## 2708      260
## 2709      288
## 2712      307
## 2714      348
## 2715      356
## 2716      377
## 2718      480
## 2719      482
## 2724      590
## 2726      608
## 2729      736
## 2736      910
## 2743      930
## 2745      942
## 2746      965
## 2747     1036
## 2749     1079
## 2752     1095
## 2753     1104
## 2755     1173
## 2760     1210
## 2770     1240
## 2771     1241
## 2776     1249
## 2777     1251
## 2779     1255
## 2780     1258
## 2786     1333
## 2788     1396
## 2792     1517
## 2793     1570
## 2794     1580
## 2795     1597
## 2799     1645
## 2804     1721
## 2805     1729
## 2808     1809
## 2812     1923
## 2817     2021
## 2819     2028
## 2823     2110
## 2826     2159
## 2828     2167
## 2831     2278
## 2834     2353
## 2839     2502
## 2840     2539
## 2846     2606
## 2847     2657
## 2848     2672
## 2850     2683
## 2852     2707
## 2853     2710
## 2854     2712
## 2857     2791
## 2859     2892
## 2861     2918
## 2862     2952
## 2869     3160
## 2870     3253
## 2875     3408
## 2879     3504
## 2884     3730
## 2887     3785
## 2889     3863
## 2891     3977
## 2894     4027
## 2897     4210
## 2899     4239
## 2900     4246
## 2902     4306
## 2911     4886
## 2912     4896
## 2918     4995
## 2922     5060
## 2924     5072
## 2927     5254
## 2928     5266
## 2929     5299
## 2930     5316
## 2931     5349
## 2933     5418
## 2936     5502
## 2937     5574
## 2942     5686
## 2944     5809
## 2945     5853
## 2948     5893
## 2949     5903
## 2953     6059
## 2956     6214
## 2958     6281
## 2959     6287
## 2960     6294
## 2961     6322
## 2962     6323
## 2963     6365
## 2964     6378
## 2965     6383
## 2967     6502
## 2968     6503
## 2971     6584
## 2974     6708
## 2975     6711
## 2979     6790
## 2980     6858
## 2983     6975
## 2984     6979
## 2988     7013
## 2990     7044
## 2993     7084
## 3000     7163
## 3006     7445
## 3014     7982
## 3015     7991
## 3016     8195
## 3018     8360
## 3019     8370
## 3022     8620
## 3023     8622
## 3024     8644
## 3025     8665
## 3026     8690
## 3027     8781
## 3028     8783
## 3030     8865
## 3031     8874
## 3033     8928
## 3035     8957
## 3037     8973
## 3038     8983
## 3039    27266
## 3041    27604
## 3044    27788
## 3047    31878
## 3050    33004
## 3051    33615
## 3052    33683
## 3053    34048
## 3055        5
## 3057        7
## 3058        9
## 3059       14
## 3061       18
## 3064       36
## 3065       52
## 3067       74
## 3068       76
## 3069       79
## 3070       81
## 3073       92
## 3074       95
## 3076      140
## 3078      260
## 3079      376
## 3080      494
## 3083      640
## 3084      648
## 3086      707
## 3088      719
## 3090      736
## 3091      743
## 3092      748
## 3093      762
## 3094      765
## 3095      780
## 3098      788
## 3101      818
## 3102      832
## 3104      852
## 3105      880
## 3106        1
## 3107        2
## 3108        3
## 3109        4
## 3110        6
## 3111        7
## 3112        9
## 3113       10
## 3114       11
## 3117       21
## 3118       22
## 3119       23
## 3120       25
## 3121       29
## 3122       32
## 3124       35
## 3125       36
## 3126       39
## 3127       42
## 3128       45
## 3130       48
## 3132       52
## 3133       57
## 3134       58
## 3135       63
## 3136       64
## 3138       74
## 3139       89
## 3140       94
## 3141       95
## 3143      101
## 3144      105
## 3145      110
## 3147      112
## 3148      122
## 3149      125
## 3150      141
## 3152      150
## 3153      153
## 3158      165
## 3159      166
## 3160      172
## 3162      177
## 3163      179
## 3164      180
## 3166      196
## 3167      198
## 3168      202
## 3169      206
## 3170      208
## 3171      209
## 3172      215
## 3176      231
## 3177      235
## 3180      249
## 3181      253
## 3185      266
## 3186      269
## 3187      276
## 3188      281
## 3189      283
## 3194      300
## 3198      316
## 3202      329
## 3203      332
## 3204      333
## 3206      337
## 3208      340
## 3209      344
## 3210      345
## 3211      346
## 3213      349
## 3214      350
## 3215      353
## 3216      354
## 3220      364
## 3221      365
## 3222      366
## 3223      367
## 3224      369
## 3225      371
## 3226      372
## 3228      376
## 3229      377
## 3230      379
## 3231      380
## 3232      382
## 3233      383
## 3234      407
## 3235      412
## 3236      423
## 3237      428
## 3240      434
## 3241      440
## 3242      441
## 3243      445
## 3244      448
## 3245      450
## 3246      451
## 3247      454
## 3253      471
## 3254      474
## 3255      475
## 3256      479
## 3258      481
## 3259      482
## 3260      485
## 3261      491
## 3263      494
## 3264      500
## 3266      504
## 3267      507
## 3268      508
## 3270      513
## 3272      517
## 3273      519
## 3274      520
## 3275      522
## 3277      529
## 3281      537
## 3284      550
## 3286      555
## 3287      562
## 3288      580
## 3289      586
## 3290      588
## 3291      589
## 3292      590
## 3294      593
## 3298      597
## 3302      612
## 3303      628
## 3304      648
## 3305      653
## 3307      662
## 3310      703
## 3311      724
## 3312      733
## 3313      736
## 3314      748
## 3316      780
## 3317      784
## 3318      785
## 3319      786
## 3320      788
## 3321      799
## 3322      800
## 3323      802
## 3324      805
## 3326      880
## 3327      891
## 3329      902
## 3334      912
## 3336      914
## 3346      931
## 3347      933
## 3359     1013
## 3363     1028
## 3368     1042
## 3370     1061
## 3372     1077
## 3374     1080
## 3375     1082
## 3378     1088
## 3381     1091
## 3382     1092
## 3383     1093
## 3387     1101
## 3390     1124
## 3391     1126
## 3392     1127
## 3394     1129
## 3398     1161
## 3399     1171
## 3400     1175
## 3404     1183
## 3408     1197
## 3424     1216
## 3432     1227
## 3442     1246
## 3443     1247
## 3452     1259
## 3460     1268
## 3463     1271
## 3464     1272
## 3466     1275
## 3472     1285
## 3476     1290
## 3477     1291
## 3480     1298
## 3482     1302
## 3483     1304
## 3484     1306
## 3485     1307
## 3486     1320
## 3487     1321
## 3488     1327
## 3489     1332
## 3491     1334
## 3492     1336
## 3493     1339
## 3494     1342
## 3498     1347
## 3500     1350
## 3502     1356
## 3506     1372
## 3507     1373
## 3508     1374
## 3510     1376
## 3511     1377
## 3512     1378
## 3513     1380
## 3514     1381
## 3515     1382
## 3516     1385
## 3518     1388
## 3519     1389
## 3520     1391
## 3521     1393
## 3523     1396
## 3524     1405
## 3525     1408
## 3526     1441
## 3527     2019
## 3529        1
## 3530       32
## 3531       34
## 3532      107
## 3533      110
## 3534      150
## 3536      207
## 3537      231
## 3538      260
## 3539      296
## 3540      316
## 3542      344
## 3543      356
## 3544      364
## 3545      367
## 3548      480
## 3550      500
## 3551      527
## 3552      588
## 3553      590
## 3555      593
## 3558      608
## 3561      736
## 3565      858
## 3566      904
## 3567      905
## 3568      912
## 3569     1019
## 3570     1097
## 3574     1196
## 3578     1210
## 3579     1247
## 3581     1270
## 3582     1293
## 3583     1378
## 3584     1441
## 3589     2013
## 3593     2762
## 3594     2908
## 3595     2959
## 3596     3148
## 3597     3196
## 3599     3555
## 3600     3809
## 3603     5618
## 3611     7841
## 3613     8493
## 3614     8611
## 3615     8970
## 3620    47721
## 3624    58299
## 3627       10
## 3628       21
## 3631       36
## 3632       44
## 3634       95
## 3637      181
## 3638      196
## 3639      208
## 3640      260
## 3641      266
## 3642      273
## 3643      288
## 3644      296
## 3645      316
## 3646      329
## 3647      333
## 3648      344
## 3651      379
## 3652      380
## 3653      393
## 3654      442
## 3655      457
## 3656      466
## 3657      480
## 3658      485
## 3661      541
## 3662      543
## 3663      551
## 3664      553
## 3665      586
## 3668      592
## 3670      594
## 3671      595
## 3672      597
## 3673      610
## 3674      648
## 3675      733
## 3677      780
## 3678      849
## 3680      899
## 3681      908
## 3682      910
## 3692      945
## 3693      948
## 3694      952
## 3698     1012
## 3699     1019
## 3700     1022
## 3701     1028
## 3702     1031
## 3703     1032
## 3706     1079
## 3707     1080
## 3708     1088
## 3709     1089
## 3711     1091
## 3712     1097
## 3713     1103
## 3716     1127
## 3717     1129
## 3718     1135
## 3723     1193
## 3734     1221
## 3735     1222
## 3739     1231
## 3740     1234
## 3744     1252
## 3745     1253
## 3747     1256
## 3750     1265
## 3751     1266
## 3753     1275
## 3755     1282
## 3761     1295
## 3763     1297
## 3764     1298
## 3765     1301
## 3768     1320
## 3770     1327
## 3771     1334
## 3772     1345
## 3773     1346
## 3774     1350
## 3775     1370
## 3776     1371
## 3777     1372
## 3778     1373
## 3780     1375
## 3781     1376
## 3782     1380
## 3783     1387
## 3784     1388
## 3786     1395
## 3787     1427
## 3788     5060
## 3790       44
## 3791       47
## 3792       48
## 3793       70
## 3794      153
## 3795      158
## 3797      173
## 3798      208
## 3799      231
## 3800      235
## 3803      267
## 3805      315
## 3806      355
## 3807      356
## 3808      442
## 3811      485
## 3814      552
## 3816      586
## 3817      588
## 3822      784
## 3823      785
## 3825     1080
## 3827     1097
## 3828     1101
## 3829     1148
## 3833     1201
## 3834     1208
## 3836     1214
## 3840     1263
## 3843     1320
## 3846     1371
## 3848     1374
## 3853     1391
## 3855     1544
## 3857     1608
## 3858     1625
## 3859     1641
## 3860     1645
## 3861     1682
## 3862     1693
## 3863     1721
## 3864     1722
## 3865     1769
## 3867     1876
## 3869     1909
## 3870     1917
## 3871     1923
## 3872     1997
## 3873     2006
## 3874     2011
## 3875     2023
## 3876     2081
## 3877     2115
## 3879     2232
## 3882     2301
## 3883     2340
## 3884     2402
## 3885     2431
## 3887     2502
## 3890     2605
## 3891     2616
## 3892     2617
## 3893     2657
## 3894     2672
## 3895     2683
## 3896     2700
## 3897     2701
## 3898     2710
## 3900     2716
## 3901     2717
## 3902     2723
## 3904     2763
## 3906     2881
## 3907     2953
## 3909     2985
## 3911     2990
## 3913     3052
## 3915     3082
## 3916     3147
## 3917     3176
## 3919     3253
## 3920     3285
## 3921     3300
## 3922     3354
## 3924     3408
## 3925     3438
## 3928     3578
## 3929     3623
## 3930     3697
## 3931     3751
## 3933     3809
## 3934     3826
## 3936     3977
## 3937     3994
## 3938     3996
## 3939     3999
## 3941     4015
## 3942     4027
## 3945     4239
## 3946     4262
## 3948     4370
## 3949     4383
## 3950     4643
## 3952     4720
## 3953     4776
## 3955     4896
## 3956     4963
## 3959     5010
## 3961     5219
## 3962     5266
## 3964     5400
## 3966     5459
## 3967     5464
## 3970     5816
## 3971     5872
## 3974     5989
## 3977     6365
## 3978     6373
## 3979     6502
## 3981     6541
## 3982     6754
## 3984     6893
## 3985     6934
## 3989     7360
## 3990     7373
## 3992     7454
## 3994     8360
## 3995     8368
## 3997     8798
## 3998     8947
## 4001     8961
## 4006    33493
## 4007    33794
## 4009        1
## 4010        6
## 4011       11
## 4013       19
## 4014       20
## 4015       24
## 4017       34
## 4020       58
## 4023      104
## 4024      110
## 4026      150
## 4027      153
## 4029      172
## 4030      185
## 4037      253
## 4040      265
## 4041      292
## 4045      306
## 4046      307
## 4047      316
## 4051      344
## 4055      425
## 4056      431
## 4057      442
## 4058      457
## 4059      465
## 4060      471
## 4061      480
## 4062      485
## 4067      527
## 4068      532
## 4070      539
## 4071      541
## 4072      586
## 4074      589
## 4075      590
## 4076      592
## 4079      597
## 4083      653
## 4089      780
## 4090      788
## 4091      802
## 4092      805
## 4097      900
## 4098      903
## 4102      909
## 4107      914
## 4108      920
## 4111      924
## 4116      933
## 4118      948
## 4119      949
## 4120      952
## 4123      955
## 4124      965
## 4125      969
## 4126      971
## 4127     1035
## 4128     1036
## 4131     1061
## 4136     1089
## 4138     1096
## 4140     1101
## 4145     1175
## 4146     1176
## 4149     1185
## 4155     1199
## 4161     1207
## 4164     1211
## 4165     1212
## 4168     1218
## 4171     1222
## 4173     1227
## 4178     1233
## 4179     1234
## 4180     1235
## 4182     1240
## 4183     1241
## 4184     1243
## 4185     1244
## 4192     1254
## 4193     1256
## 4194     1258
## 4197     1263
## 4199     1266
## 4203     1272
## 4204     1277
## 4206     1281
## 4209     1288
## 4210     1291
## 4215     1333
## 4217     1348
## 4219     1356
## 4220     1377
## 4221     1380
## 4222     1387
## 4223     1391
## 4226     1408
## 4227     1411
## 4228     1438
## 4229     1464
## 4230     1499
## 4232     1515
## 4233     1527
## 4234     1544
## 4235     1552
## 4236     1556
## 4237     1562
## 4238     1580
## 4240     1608
## 4246     1704
## 4248     1722
## 4252     1792
## 4253     1797
## 4254     1835
## 4256     1873
## 4257     1876
## 4258     1900
## 4259     1907
## 4260     1917
## 4261     1927
## 4263     1932
## 4265     1941
## 4270     1949
## 4272     1951
## 4274     1953
## 4275     1954
## 4277     1956
## 4278     1957
## 4279     1958
## 4280     1959
## 4281     1960
## 4283     1962
## 4284     1997
## 4285     2002
## 4286     2010
## 4291     2023
## 4292     2027
## 4294     2067
## 4297     2126
## 4299     2143
## 4300     2174
## 4302     2178
## 4304     2183
## 4306     2194
## 4308     2205
## 4309     2231
## 4310     2248
## 4311     2273
## 4315     2313
## 4317     2324
## 4318     2329
## 4319     2333
## 4320     2334
## 4321     2336
## 4323     2353
## 4325     2360
## 4327     2394
## 4330     2424
## 4332     2474
## 4335     2539
## 4336     2542
## 4338     2575
## 4339     2580
## 4340     2599
## 4342     2617
## 4343     2628
## 4345     2644
## 4347     2657
## 4349     2699
## 4352     2716
## 4353     2721
## 4354     2724
## 4357     2729
## 4361     2746
## 4363     2805
## 4364     2858
## 4365     2871
## 4368     2908
## 4371     2947
## 4372     2952
## 4373     2953
## 4374     2959
## 4377     2987
## 4380     3019
## 4381     3020
## 4382     3052
## 4383     3053
## 4385     3081
## 4386     3082
## 4388     3088
## 4390     3095
## 4391     3100
## 4392     3114
## 4393     3147
## 4394     3152
## 4395     3155
## 4400     3201
## 4403     3248
## 4405     3267
## 4409     3365
## 4410     3371
## 4412     3405
## 4414     3415
## 4419     3468
## 4421     3475
## 4422     3481
## 4423     3489
## 4425     3503
## 4426     3504
## 4427     3510
## 4430     3559
## 4431     3569
## 4433     3618
## 4434     3623
## 4436     3668
## 4437     3671
## 4438     3681
## 4439     3730
## 4441     3741
## 4443     3753
## 4445     3801
## 4446     3844
## 4447     3871
## 4453     3992
## 4459     4014
## 4460     4022
## 4461     4027
## 4462     4034
## 4463     4037
## 4464     4103
## 4465     4148
## 4466     4167
## 4467     4223
## 4472     4278
## 4473     4282
## 4474     4297
## 4476     4310
## 4477     4312
## 4478     4343
## 4479     4344
## 4480     4359
## 4481     4370
## 4483     4432
## 4484     4447
## 4485     4458
## 4486     4564
## 4487     4571
## 4490     4816
## 4493     4857
## 4494     4865
## 4495     4878
## 4496     4881
## 4497     4886
## 4498     4896
## 4499     4901
## 4504     4975
## 4505     4976
## 4511     5014
## 4512     5015
## 4513     5060
## 4514     5073
## 4515     5096
## 4524     5299
## 4525     5304
## 4526     5348
## 4527     5349
## 4529     5373
## 4530     5377
## 4531     5378
## 4532     5385
## 4533     5388
## 4534     5445
## 4536     5463
## 4537     5464
## 4538     5470
## 4539     5489
## 4541     5599
## 4542     5618
## 4546     5679
## 4547     5682
## 4549     5816
## 4552     5882
## 4557     5954
## 4558     5956
## 4561     5991
## 4565     6008
## 4567     6162
## 4568     6197
## 4569     6214
## 4573     6323
## 4574     6333
## 4576     6377
## 4577     6404
## 4578     6415
## 4579     6440
## 4580     6537
## 4582     6552
## 4584     6599
## 4586     6620
## 4587     6641
## 4589     6666
## 4591     6708
## 4592     6709
## 4593     6711
## 4596     6796
## 4597     6807
## 4598     6867
## 4599     6870
## 4606     6934
## 4607     6944
## 4608     6947
## 4609     6953
## 4610     6954
## 4612     6981
## 4613     6982
## 4616     6993
## 4617     7004
## 4618     7008
## 4621     7042
## 4627     7104
## 4628     7132
## 4630     7139
## 4633     7160
## 4634     7161
## 4635     7162
## 4639     7347
## 4642     7419
## 4643     7438
## 4644     7458
## 4645     7569
## 4647     7713
## 4648     7748
## 4649     7759
## 4652     7942
## 4653     8019
## 4656     8154
## 4657     8195
## 4658     8239
## 4659     8338
## 4662     8464
## 4663     8507
## 4664     8529
## 4665     8636
## 4666     8656
## 4669     8949
## 4672     8966
## 4675     8984
## 4676    25753
## 4678    25805
## 4683    27266
## 4684    27317
## 4685    27721
## 4687    30707
## 4689    30793
## 4690    30812
## 4693    31658
## 4694    32587
## 4696    33162
## 4699    33794
## 4700    33903
## 4701    34048
## 4702    34143
## 4704    34437
## 4705    36517
## 4706    36529
## 4708    37733
## 4709    37736
## 4716    40278
## 4719    40815
## 4720    40819
## 4722    41569
## 4723    41571
## 4724    41863
## 4727    42418
## 4728    42734
## 4731    45186
## 4732    45447
## 4733    45722
## 4734    48385
## 4736       36
## 4738       95
## 4739      150
## 4742      316
## 4746      588
## 4748      592
## 4749      610
## 4751      736
## 4754     1034
## 4756        3
## 4758       78
## 4761      494
## 4762      608
## 4763      653
## 4764      663
## 4765      707
## 4768      784
## 4769      786
## 4770      788
## 4772      832
## 4773      842
## 4775     1354
## 4776     1356
## 4778     1391
## 4779     1405
## 4780     1409
## 4781     1483
## 4786       63
## 4788      153
## 4789      165
## 4790      260
## 4791      296
## 4792      316
## 4794      344
## 4796      367
## 4797      377
## 4798      380
## 4799      457
## 4800      480
## 4801      500
## 4802      555
## 4804      593
## 4805      608
## 4806      648
## 4807      720
## 4808      733
## 4810      780
## 4812     1036
## 4813     1089
## 4814     1196
## 4816     1210
## 4817     1405
## 4819     1580
## 4820     1653
## 4821     1687
## 4823     1753
## 4824     1831
## 4826     2028
## 4834     3108
## 4836     3147
## 4838     3481
## 4839     3578
## 4843     4027
## 4844     4161
## 4846     4262
## 4849     4844
## 4851     4963
## 4852     4973
## 4854     4995
## 4855     5010
## 4860     5617
## 4861     5903
## 4863     5954
## 4864     5989
## 4866     6333
## 4867     6539
## 4868     6708
## 4870     6870
## 4873     7361
## 4874     7438
## 4876     8368
## 4878     8784
## 4880     8874
## 4882    27376
## 4884    30810
## 4885    31410
## 4889    34437
## 4891    37731
## 4892    37741
## 4893    38038
## 4899    44665
## 4903    48774
## 4906    49278
## 4908    50851
## 4910    51255
## 4915    53972
## 4917    54503
## 4918    55118
## 4919    55167
## 4921    55276
## 4922    55280
## 4923    55765
## 4924    55820
## 4925    56782
## 4926    57669
## 4928    59315
## 4930    59387
## 4932    60069
## 4934    61024
## 4935    61323
## 4937    63082
## 4939    67997
## 4940    68157
## 4941    68358
## 4942    68954
## 4943    69122
## 4944    70533
## 4945    71464
## 4946    72998
## 4947    73017
## 4949    79132
## 4950    80489
## 4952    91542
## 4966     1721
## 4968     2356
## 4969     2391
## 4970     2396
## 4973     2710
## 4984      903
## 4993      953
## 5010     1831
## 5014     1962
## 5015     2019
## 5016     2028
## 5022     2406
## 5028     1569
## 5029     1681
## 5030     1717
## 5031     2065
## 5032     2367
## 5033     2384
## 5034     2459
## 5035     2513
## 5037     2713
## 5038     2717
## 5039     2942
## 5041     5065
## 5042     6365
## 5044     6934
## 5048    73268
## 5050        2
## 5056       18
## 5060       32
## 5062       42
## 5063       45
## 5067       60
## 5069       78
## 5073      118
## 5076      158
## 5078      162
## 5081      196
## 5082      203
## 5083      208
## 5084      209
## 5086      227
## 5087      228
## 5090      254
## 5096      288
## 5102      344
## 5108      364
## 5110      369
## 5117      413
## 5118      419
## 5121      426
## 5123      432
## 5145      518
## 5146      523
## 5148      531
## 5149      532
## 5153      539
## 5159      581
## 5161      587
## 5167      594
## 5173      640
## 5175      661
## 5176      707
## 5179      750
## 5180      762
## 5181      765
## 5184      782
## 5187      806
## 5190      869
## 5212      996
## 5214     1010
## 5215     1012
## 5217     1017
## 5218     1018
## 5220     1027
## 5225     1061
## 5226     1073
## 5227     1078
## 5236     1091
## 5238     1093
## 5245     1114
## 5248     1126
## 5249     1129
## 5250     1135
## 5251     1171
## 5255     1189
## 5258     1197
## 5260     1200
## 5261     1206
## 5265     1212
## 5278     1235
## 5298     1278
## 5301     1286
## 5308     1320
## 5316     1345
## 5323     1377
## 5326     1385
## 5328     1388
## 5329     1390
## 5334     1399
## 5336     1438
## 5337     1440
## 5344     1517
## 5347     1562
## 5351     1588
## 5352     1589
## 5356     1611
## 5357     1614
## 5361     1625
## 5368     1690
## 5374     1726
## 5376     1732
## 5382     1798
## 5384     1810
## 5386     1864
## 5389     1882
## 5390     1884
## 5395     1943
## 5405     1958
## 5411     1982
## 5416     2002
## 5417     2003
## 5418     2009
## 5420     2012
## 5421     2013
## 5422     2015
## 5424     2024
## 5427     2054
## 5432     2078
## 5434     2082
## 5436     2088
## 5438     2105
## 5440     2109
## 5441     2112
## 5444     2116
## 5445     2117
## 5448     2121
## 5449     2122
## 5452     2136
## 5453     2144
## 5454     2145
## 5456     2148
## 5457     2159
## 5463     2188
## 5464     2193
## 5467     2236
## 5474     2253
## 5475     2255
## 5476     2259
## 5477     2263
## 5478     2264
## 5482     2278
## 5483     2286
## 5486     2296
## 5491     2311
## 5495     2329
## 5496     2334
## 5498     2346
## 5499     2347
## 5503     2367
## 5505     2371
## 5506     2374
## 5508     2389
## 5512     2402
## 5513     2403
## 5519     2417
## 5520     2418
## 5521     2420
## 5523     2427
## 5526     2435
## 5530     2468
## 5534     2505
## 5535     2513
## 5536     2517
## 5537     2518
## 5539     2521
## 5540     2523
## 5542     2528
## 5544     2530
## 5545     2531
## 5546     2532
## 5547     2533
## 5550     2551
## 5552     2571
## 5553     2574
## 5554     2577
## 5559     2616
## 5560     2617
## 5564     2642
## 5565     2664
## 5569     2701
## 5570     2702
## 5571     2707
## 5576     2738
## 5582     2757
## 5585     2770
## 5588     2790
## 5589     2791
## 5590     2793
## 5591     2794
## 5601     2851
## 5617     2942
## 5620     2950
## 5628     2976
## 5629     2977
## 5635     3015
## 5636     3019
## 5642     3044
## 5644     3063
## 5649     3081
## 5650     3082
## 5651     3087
## 5652     3095
## 5659     3108
## 5663     3130
## 5664     3138
## 5666     3144
## 5672     3169
## 5673     3173
## 5676     3185
## 5682     3218
## 5686     3247
## 5692     3257
## 5693     3258
## 5695     3269
## 5697     3286
## 5701     3316
## 5711     3385
## 5713     3391
## 5714     3394
## 5721     3441
## 5722     3445
## 5726     3476
## 5728     3483
## 5730     3494
## 5736     3506
## 5739     3524
## 5741     3528
## 5743     3535
## 5754     3566
## 5767     3688
## 5768     3701
## 5770     3704
## 5778     3763
## 5781     3804
## 5782     3812
## 5793     3957
## 5802     4012
## 5806     4025
## 5812     4039
## 5817     4063
## 5821     4090
## 5827     4132
## 5828     4146
## 5830     4167
## 5833     4214
## 5834     4226
## 5835     4228
## 5842     4291
## 5847     4316
## 5852     4333
## 5855     4352
## 5859     4378
## 5860     4396
## 5862     4409
## 5867     4474
## 5870     4487
## 5871     4488
## 5873     4491
## 5874     4495
## 5881     4526
## 5882     4528
## 5888     4615
## 5890     4621
## 5891     4627
## 5893     4629
## 5897     4681
## 5901     4713
## 5902     4714
## 5903     4728
## 5911     4832
## 5916     4890
## 5919     4929
## 5921     4941
## 5922     4951
## 5929     4993
## 5932     5027
## 5933     5043
## 5935     5060
## 5936     5061
## 5941     5125
## 5942     5127
## 5947     5193
## 5950     5214
## 5952     5247
## 5954     5269
## 5956     5277
## 5960     5303
## 5961     5307
## 5963     5309
## 5965     5335
## 5969     5366
## 5970     5382
## 5975     5452
## 5977     5471
## 5978     5502
## 5984     5564
## 5985     5581
## 5988     5655
## 5990     5679
## 5993     5694
## 5996     5703
## 6001     5729
## 6005     5773
## 6011     5857
## 6012     5859
## 6014     5900
## 6016     5923
## 6017     5926
## 6021     5940
## 6024     5959
## 6027     5962
## 6033     6084
## 6034     6096
## 6035     6101
## 6036     6103
## 6037     6115
## 6039     6180
## 6040     6186
## 6041     6212
## 6042     6233
## 6043     6234
## 6046     6240
## 6047     6263
## 6050     6318
## 6052     6413
## 6062       50
## 6067      372
## 6071      778
## 6075     1091
## 6076     1186
## 6084     1416
## 6095     3072
## 6096     3087
## 6102     4979
## 6106     5995
## 6107     6539
## 6127    76093
## 6130       19
## 6132       44
## 6136      158
## 6138      168
## 6139      173
## 6142      225
## 6144      252
## 6146      266
## 6148      296
## 6149      300
## 6150      316
## 6151      317
## 6152      333
## 6156      350
## 6158      364
## 6161      380
## 6162      410
## 6163      420
## 6164      428
## 6165      432
## 6166      434
## 6172      588
## 6176      595
## 6177       19
## 6178       88
## 6179      157
## 6180      231
## 6182      377
## 6186      851
## 6192     1196
## 6200     1347
## 6201     1359
## 6202     1394
## 6204     1717
## 6205     1760
## 6207     1967
## 6208     1974
## 6211     1984
## 6215     2060
## 6217     2088
## 6218     2107
## 6220     2170
## 6221     2193
## 6224     2395
## 6227     2507
## 6230     2617
## 6231     2689
## 6232     2706
## 6234     2793
## 6236     2888
## 6237     2891
## 6240     2926
## 6244     3157
## 6245     3273
## 6247     3317
## 6248     3408
## 6249     3481
## 6250     3552
## 6251     3566
## 6252     3568
## 6255     3747
## 6256     3752
## 6257     3785
## 6260     3858
## 6261     3865
## 6263     3893
## 6264     3897
## 6265     3910
## 6269     4027
## 6271     4247
## 6272     4248
## 6276     4378
## 6277     4388
## 6278     4447
## 6280     4452
## 6282     4488
## 6283     4502
## 6285     4558
## 6287     4622
## 6288     4641
## 6289     4643
## 6293     4678
## 6296     4728
## 6297     4809
## 6302     4956
## 6303     4963
## 6304     4974
## 6306     4988
## 6309     5106
## 6315        6
## 6318       39
## 6324      198
## 6332      377
## 6333      407
## 6334      442
## 6345      599
## 6354      919
## 6364     1097
## 6367     1120
## 6369     1130
## 6372     1179
## 6374     1196
## 6384     1215
## 6386     1220
## 6390     1234
## 6402     1270
## 6406     1298
## 6408     1320
## 6411     1340
## 6413     1387
## 6416     1464
## 6417     1527
## 6418     1580
## 6420     1597
## 6423     1645
## 6425     1676
## 6426     1690
## 6427     1754
## 6430     1952
## 6431     1954
## 6432     1965
## 6442     2338
## 6443     2353
## 6446     2407
## 6448     2528
## 6450     2553
## 6457     2716
## 6459     2793
## 6460     2797
## 6468     2944
## 6469     2949
## 6472     2985
## 6477     3066
## 6481     3256
## 6482     3286
## 6485     3418
## 6501     5060
## 6502       24
## 6503      230
## 6504      247
## 6506      724
## 6508      914
## 6509     1029
## 6510     1047
## 6511     1188
## 6512     1231
## 6513     1249
## 6514     1267
## 6515     2105
## 6517     2289
## 6518     2336
## 6519     2968
## 6521     3755
## 6522        6
## 6523       16
## 6525       21
## 6527       31
## 6530       41
## 6533       52
## 6540      145
## 6541      147
## 6542      151
## 6543      165
## 6544      216
## 6547      236
## 6550      248
## 6552      252
## 6554      256
## 6559      273
## 6560      277
## 6561      282
## 6569      312
## 6575      348
## 6576      350
## 6577      356
## 6580      368
## 6581      372
## 6582      381
## 6583      382
## 6585      420
## 6587      432
## 6588      434
## 6589      440
## 6590      454
## 6591      457
## 6594      480
## 6596      491
## 6599      515
## 6601      524
## 6604      532
## 6606      539
## 6607      540
## 6608      543
## 6609      551
## 6610      586
## 6611      587
## 6612      588
## 6613      590
## 6614      592
## 6616      597
## 6617      640
## 6620      788
## 6622     1036
## 6623     1150
## 6625     1367
## 6629      902
## 6632      940
## 6634     1196
## 6641     2273
## 6647     3751
## 6649     3977
## 6651     4011
## 6653     4015
## 6656     4054
## 6668      367
## 6671      590
## 6686     1704
## 6687     2000
## 6688     2025
## 6691     2092
## 6693     2194
## 6707     4862
## 6708     4936
## 6716     6365
## 6727     7438
## 6740    55247
## 6756   101070
## 6772       21
## 6774       31
## 6776       50
## 6777       69
## 6779       73
## 6780       76
## 6782      145
## 6784      153
## 6785      160
## 6788      168
## 6789      170
## 6790      175
## 6793      188
## 6799      273
## 6807      330
## 6808      332
## 6809      333
## 6810      338
## 6813      366
## 6815      426
## 6820      588
## 6821      590
## 6822      592
## 6823      593
## 6824      595
## 6859    74458
## 6874        2
## 6879      172
## 6881      196
## 6887      316
## 6892      356
## 6895      426
## 6897      442
## 6901      610
## 6905      748
## 6911      986
## 6912     1037
## 6916     1127
## 6920     1206
## 6928     1302
## 6930     1333
## 6932     1371
## 6941     1552
## 6947     1747
## 6950     1779
## 6951     1876
## 6954     1965
## 6956     2001
## 6957     2003
## 6960     2012
## 6965     2232
## 6967     2322
## 6968     2454
## 6969     2455
## 6970     2520
## 6971     2521
## 6975     2530
## 6976     2531
## 6977     2532
## 6978     2536
## 6981     2600
## 6983     2641
## 6984     2642
## 6985     2729
## 6986     2746
## 6990     2916
## 6996     3253
## 6998     3354
## 7003     3638
## 7004     3698
## 7005     3699
## 7009     3745
## 7011     3802
## 7012     3863
## 7014     3937
## 7015     3986
## 7020     4443
## 7023     4625
## 7025     4691
## 7028     4874
## 7031     5349
## 7033     5459
## 7034     5463
## 7035     5490
## 7039     5694
## 7041     5881
## 7046     6264
## 7052     6502
## 7053     6537
## 7056     6678
## 7066     7817
## 7074      165
## 7080      380
## 7083      508
## 7088      733
## 7097     1320
## 7098     1370
## 7100     1573
## 7104     2571
## 7107     3793
## 7108     3996
## 7117    33794
## 7118    40815
## 7124    63082
## 7125    68358
## 7129    74458
## 7134    91529
## 7135    98809
## 7136   106489
## 7139   111759
## 7140   112852
## 7142   134853
## 7146       70
## 7147      104
## 7149      216
## 7150      223
## 7151      231
## 7155      500
## 7156      524
## 7158      585
## 7159      588
## 7160      589
## 7165     1210
## 7166     1380
## 7167     1457
## 7170     1517
## 7171     1544
## 7175     1673
## 7176     1726
## 7177     1777
## 7178     1806
## 7179     1821
## 7180     1883
## 7181     1895
## 7182     1907
## 7184     1968
## 7186     2000
## 7187     2003
## 7188     2004
## 7189     2054
## 7191     2082
## 7192     2109
## 7193     2144
## 7194     2150
## 7195     2160
## 7196     2291
## 7200     2390
## 7201     2395
## 7203     2447
## 7204     2454
## 7205     2455
## 7206     2496
## 7207     2539
## 7208     2622
## 7210     2683
## 7211     2688
## 7213     2700
## 7215     2723
## 7216     2770
## 7217     2791
## 7219     2836
## 7222     2978
## 7224     3005
## 7225     3052
## 7227     3156
## 7229     3173
## 7231     3247
## 7232     3254
## 7233     3255
## 7234     3286
## 7235     3301
## 7237     3450
## 7238     3481
## 7241     3525
## 7242     3535
## 7243     3555
## 7244     3624
## 7245     3712
## 7247     3773
## 7248     3868
## 7249     3869
## 7250     3917
## 7251     3948
## 7255        5
## 7256        6
## 7257       17
## 7258       25
## 7259       32
## 7261       95
## 7264      141
## 7265      260
## 7266      494
## 7267      628
## 7268      637
## 7269      648
## 7273      786
## 7274      788
## 7275      802
## 7277     1047
## 7278      520
## 7283     1639
## 7286     2572
## 7288     2699
## 7289     3052
## 7292     3753
## 7294     4246
## 7295     4995
## 7342       39
## 7344       95
## 7348      160
## 7352      208
## 7353      231
## 7355      253
## 7356      266
## 7360      300
## 7364      344
## 7367      410
## 7368      420
## 7370      442
## 7373      592
## 7375      595
## 7377        2
## 7378       34
## 7380      111
## 7381      158
## 7382      163
## 7383      223
## 7384      231
## 7385      288
## 7388      344
## 7391      367
## 7392      480
## 7393      501
## 7396      562
## 7397      593
## 7398      595
## 7399      648
## 7400      673
## 7403      784
## 7406     1097
## 7407     1127
## 7408     1148
## 7411     1206
## 7412     1214
## 7413     1222
## 7414     1240
## 7416     1270
## 7417     1274
## 7419     1407
## 7420     1485
## 7421     1499
## 7422     1527
## 7423     1544
## 7424     1580
## 7425     1591
## 7426     1676
## 7427     1682
## 7429     1732
## 7431     1882
## 7433     1917
## 7435     1923
## 7436     1997
## 7437     2006
## 7438     2167
## 7439     2232
## 7440     2288
## 7442     2294
## 7443     2318
## 7446     2355
## 7447     2455
## 7448     2542
## 7450     2617
## 7451     2692
## 7452     2700
## 7453     2706
## 7454     2710
## 7455     2722
## 7456     2762
## 7457     2840
## 7459     2987
## 7460     2997
## 7462     3114
## 7464     3527
## 7467     3717
## 7468     3745
## 7469     3751
## 7470     3793
## 7472     3968
## 7474     4016
## 7475     4022
## 7476     4226
## 7477     4270
## 7479     4369
## 7480     4446
## 7481     4720
## 7483     4886
## 7484     4902
## 7486     4975
## 7492     5225
## 7493     5349
## 7494     5459
## 7495     5502
## 7496     5570
## 7499     5679
## 7502     5903
## 7507     6214
## 7508     6223
## 7509     6242
## 7510     6283
## 7511     6291
## 7513     6365
## 7517     6711
## 7518     6857
## 7519     6890
## 7520     6934
## 7521     6953
## 7523     7147
## 7525     7235
## 7528     7360
## 7530     7373
## 7531     7382
## 7534     8157
## 7535     8360
## 7536     8376
## 7539     8645
## 7543     8906
## 7544     8907
## 7546     8957
## 7547     8961
## 7548     8965
## 7552    27523
## 7553    27660
## 7555    27722
## 7557    27773
## 7558    27800
## 7559    27801
## 7560    27838
## 7562    27850
## 7564    30793
## 7569    31878
## 7570    32031
## 7571    32554
## 7575    33166
## 7576    33615
## 7577    33679
## 7578    34323
## 7579    34405
## 7580    36276
## 7581    36535
## 7582    37729
## 7583    37830
## 7584    38038
## 7586    41569
## 7587    41769
## 7588    42723
## 7589    44022
## 7590    44191
## 7591    44397
## 7594    44828
## 7595    44974
## 7598    45720
## 7600    46578
## 7601    46948
## 7602    46976
## 7603    47099
## 7604    47124
## 7608    48043
## 7610    48385
## 7612    48414
## 7613    48774
## 7614    48780
## 7615    48982
## 7617    49278
## 7618    50583
## 7620    50872
## 7621    51255
## 7622    51540
## 7624    52281
## 7625    52287
## 7627    52328
## 7628    52458
## 7629    52722
## 7630    53121
## 7631    53326
## 7632    53460
## 7633    53519
## 7636    53996
## 7637    54272
## 7638    54503
## 7644    55768
## 7646    55908
## 7647    55995
## 7648    56069
## 7649    56095
## 7650    56145
## 7651    56174
## 7653    56367
## 7655    56757
## 7656    56782
## 7658    57274
## 7660    57453
## 7662    57640
## 7664    57980
## 7665    58299
## 7666    58347
## 7667    58554
## 7670    59141
## 7674    59784
## 7676    60126
## 7677    60161
## 7679    60684
## 7680    60763
## 7682    61323
## 7684    62250
## 7685    62956
## 7686    62999
## 7687    63082
## 7688    63131
## 7689    63808
## 7690    63859
## 7693    64957
## 7694    64969
## 7695    64983
## 7698    65261
## 7700    66097
## 7701    66371
## 7702    67197
## 7704    67408
## 7705    67734
## 7708    68358
## 7709    68945
## 7712    69526
## 7713    69644
## 7714    69712
## 7721    71057
## 7722    71264
## 7723    71282
## 7726    71468
## 7727    71520
## 7728    71535
## 7729    71579
## 7731    72104
## 7732    72209
## 7733    72393
## 7734    72731
## 7735    72741
## 7738    73268
## 7739    73321
## 7740    73392
## 7741    73664
## 7743    74228
## 7745    74789
## 7748    76251
## 7750    77427
## 7751    77561
## 7757    79357
## 7759    79868
## 7761    80586
## 7762    80831
## 7763    80862
## 7765    81018
## 7766    81562
## 7767    81564
## 7769    81845
## 7770    81847
## 7771    82461
## 7772    82667
## 7773    83132
## 7774    83134
## 7775    83803
## 7778    84772
## 7781    85412
## 7783    85510
## 7786    85788
## 7787    85796
## 7789    86332
## 7790    86347
## 7791    86721
## 7794    87306
## 7795    87430
## 7796    87520
## 7797    88140
## 7798    88744
## 7799    89745
## 7800    89837
## 7801    90469
## 7802    90531
## 7803    90647
## 7804    90746
## 7805    91414
## 7806    91529
## 7807    91542
## 7808    92058
## 7809    92420
## 7810    93272
## 7811    93838
## 7812    93840
## 7815    95375
## 7816    95510
## 7817    95543
## 7819    95875
## 7820    96281
## 7821    96606
## 7822    96610
## 7825    97188
## 7826    97225
## 7828    97913
## 7829    97921
## 7830    97938
## 7832    98056
## 7833    98243
## 7838   101142
## 7839   102125
## 7841   103042
## 7842   103228
## 7843   103249
## 7844   103253
## 7845   103299
## 7846   103335
## 7847   103688
## 7848   104841
## 7849   106002
## 7850   106072
## 7851   106204
## 7853   106696
## 7854   107406
## 7855   107769
## 7856   107953
## 7857   108190
## 7858   108945
## 7859   109487
## 7860   109578
## 7861   109673
## 7862   109846
## 7863   109848
## 7864   109850
## 7865   110102
## 7866   110127
## 7867   110501
## 7868   110553
## 7869   110591
## 7870   110655
## 7871   110730
## 7872   111362
## 7873   111364
## 7874   111659
## 7876   112175
## 7877   112370
## 7878   112515
## 7879   112623
## 7880   112852
## 7881   113741
## 7882   114180
## 7883   114935
## 7884   115149
## 7885   115534
## 7886   115617
## 7887   115624
## 7888   118696
## 7890       60
## 7892      173
## 7893      258
## 7894      303
## 7895      329
## 7897      421
## 7899      524
## 7900      590
## 7901      592
## 7903      674
## 7904      688
## 7905      733
## 7913      952
## 7916     1017
## 7920     1129
## 7926     1210
## 7933     1374
## 7936     1391
## 7937     1580
## 7938     1676
## 7940     2013
## 7941     2054
## 7942     2088
## 7943     2094
## 7944     2105
## 7949     2366
## 7950     2402
## 7952     2414
## 7955     2524
## 7956     2537
## 7958     2669
## 7959     2748
## 7960     2815
## 7961     2816
## 7962     2817
## 7963     2871
## 7964     2941
## 7969     3066
## 7971     3247
## 7972     3269
## 7974     3412
## 7976     3441
## 7977     3461
## 7978     3519
## 7982     3836
## 7983     3927
## 7985     4042
## 7989       21
## 7990       39
## 7991       47
## 7992       95
## 7994      150
## 7995      160
## 7998      185
## 7999      208
## 8000      231
## 8001      253
## 8002      282
## 8005      315
## 8006      316
## 8007      337
## 8009      344
## 8010      349
## 8015      377
## 8016      380
## 8017      420
## 8018      434
## 8020      442
## 8021      454
## 8022      457
## 8024      509
## 8026      539
## 8027      553
## 8028      587
## 8030      590
## 8031      597
## 8033      786
## 8035     1636
## 8036     1888
## 8040     2369
## 8041     2396
## 8047     2701
## 8050     2724
## 8051     2734
## 8056     2840
## 8066      365
## 8067      461
## 8072     1639
## 8074     1969
## 8075     2338
## 8077     2408
## 8078     2806
## 8082     3793
## 8085     3987
## 8088     4228
## 8092     5222
## 8093     5296
## 8101     6058
## 8104     6539
## 8105     6776
## 8111     8781
## 8112     8918
## 8114     8983
## 8117    30825
## 8119    37727
## 8120    38886
## 8123    41571
## 8126    45447
## 8127    50872
## 8128    51094
## 8132    60950
## 8135      238
## 8136      392
## 8137      420
## 8138      421
## 8139      484
## 8142     1370
## 8143     1580
## 8146     1911
## 8148     1995
## 8149     2002
## 8150     2093
## 8152     2368
## 8153     2394
## 8155     2412
## 8160     2700
## 8161     2709
## 8162     2710
## 8163     2716
## 8164     2717
## 8165     2720
## 8166     2761
## 8168     2840
## 8169     2912
## 8171     2987
## 8172     2997
## 8174     3114
## 8175     3160
## 8184     1333
## 8187     2471
## 8188     2571
## 8189     2991
## 8191     3462
## 8194     4467
## 8200    26160
## 8202    30749
## 8203    33794
## 8207    48660
## 8209    48997
## 8211    55820
## 8216    69640
## 8220    79132
## 8221    91355
## 8223        1
## 8224        5
## 8226        7
## 8227        9
## 8230       74
## 8231       79
## 8232       95
## 8233      100
## 8235      112
## 8239      494
## 8240      608
## 8241      609
## 8245      707
## 8246      708
## 8250      736
## 8251      737
## 8252      761
## 8254      784
## 8257      802
## 8260     1073
## 8264       21
## 8272      147
## 8273      160
## 8277      231
## 8280      260
## 8281      292
## 8285      333
## 8287      342
## 8291      442
## 8300      673
## 8301      750
## 8307      924
## 8309      942
## 8316     1094
## 8319     1120
## 8321     1172
## 8323     1196
## 8331     1210
## 8337     1230
## 8339     1240
## 8340     1244
## 8341     1247
## 8347     1263
## 8356     1304
## 8357     1307
## 8367     1676
## 8372     1784
## 8376     1952
## 8380     1958
## 8381     1961
## 8383     2000
## 8386     2011
## 8388     2042
## 8391     2072
## 8392     2082
## 8396     2194
## 8398     2253
## 8401     2324
## 8407     2572
## 8412     2716
## 8422     2947
## 8423     2951
## 8427     3039
## 8432     3098
## 8433     3104
## 8435     3152
## 8437     3210
## 8439     3255
## 8440     3268
## 8442     3361
## 8446     3468
## 8448     3489
## 8450     3552
## 8452     3608
## 8460     3897
## 8461     3916
## 8462     3972
## 8463     3988
## 8469     4085
## 8471     4102
## 8473     4262
## 8476     4406
## 8481     4776
## 8482     4816
## 8485     4881
## 8500     5970
## 8502     6003
## 8504     6188
## 8505     6373
## 8507     6618
## 8512     6870
## 8513     6873
## 8517     6942
## 8518     6978
## 8519     7018
## 8520     7022
## 8521     7036
## 8533     8528
## 8536     8784
## 8539     8914
## 8542     8972
## 8544    26471
## 8548    32598
## 8549    33166
## 8553    33880
## 8557    37733
## 8566    44199
## 8570    47099
## 8580    51662
## 8584    53125
## 8590    55052
## 8591    55118
## 8592    55247
## 8593    55765
## 8596    56174
## 8601    57532
## 8603    58025
## 8606    59315
## 8607    59369
## 8608    60684
## 8614    63113
## 8617    64983
## 8625    69306
## 8637    72720
## 8657    83086
## 8664    86911
## 8665    87232
## 8667    87522
## 8668    87869
## 8671    88810
## 8672    88812
## 8680    91529
## 8682    93270
## 8691    95441
## 8694    96110
## 8700    97836
## 8702    97921
## 8703    97923
## 8706    99117
## 8708    99917
## 8711   101577
## 8718   103688
## 8722   105715
## 8724   106062
## 8729   106916
## 8731   107141
## 8734   108156
## 8737   111362
## 8738   111617
## 8744   112556
## 8745   112852
## 8747   113453
## 8748   113705
## 8751   114074
## 8757   122886
## 8761   127206
## 8766   134170
## 8768   136864
## 8772   140715
## 8777   148626
## 8790      164
## 8796      350
## 8797      356
## 8809      592
## 8812      648
## 8818     1007
## 8828     1091
## 8829     1092
## 8836     1128
## 8837     1129
## 8849     1200
## 8850     1208
## 8851     1214
## 8859     1240
## 8868     1270
## 8869     1272
## 8870     1275
## 8873     1288
## 8880     1323
## 8881     1326
## 8895     1422
## 8898     1587
## 8902     1625
## 8909     1721
## 8910     1732
## 8911     1754
## 8914     1909
## 8916     1917
## 8917     1918
## 8930     1967
## 8932     1974
## 8933     1975
## 8934     1977
## 8935     1978
## 8936     1979
## 8937     1981
## 8939     1983
## 8940     1984
## 8941     1987
## 8943     1995
## 8944     1996
## 8948     2003
## 8949     2005
## 8951     2009
## 8954     2027
## 8957     2044
## 8958     2054
## 8960     2088
## 8961     2097
## 8965     2111
## 8968     2118
## 8969     2121
## 8970     2122
## 8973     2143
## 8974     2144
## 8975     2153
## 8976     2161
## 8977     2163
## 8987     2300
## 8988     2301
## 8993       19
## 8995      344
## 8996      410
## 8997      415
## 9000      909
## 9002      940
## 9003      952
## 9006      999
## 9007     1007
## 9010     1127
## 9015     1230
## 9017     1320
## 9021     1499
## 9022     1517
## 9025     1784
## 9028     2015
## 9029     2016
## 9030     2072
## 9031     2085
## 9032     2124
## 9034     2153
## 9039     2475
## 9041     2520
## 9042     2522
## 9043     2551
## 9044     2683
## 9048     2817
## 9049     2827
## 9052     3153
## 9058     3535
## 9060     3649
## 9061     3672
## 9064     3710
## 9065       11
## 9068      111
## 9070      223
## 9071      231
## 9072      292
## 9075      318
## 9076      367
## 9077      380
## 9078      410
## 9083      586
## 9084      590
## 9085      593
## 9090      919
## 9093     1193
## 9094     1213
## 9096     1356
## 9098     1722
## 9099     1923
## 9100     1961
## 9101     1968
## 9102     2028
## 9103     2105
## 9104     2161
## 9106     2193
## 9107     2194
## 9108     2302
## 9110     2396
## 9111     2470
## 9112     2542
## 9114     2640
## 9115     2671
## 9116     2683
## 9118     2716
## 9119     2763
## 9120     2797
## 9123     2997
## 9126     3623
## 9128     3911
## 9129     3948
## 9130     4306
## 9132     5060
## 9133     5349
## 9140    26695
## 9141    33794
## 9144       21
## 9147      173
## 9152      653
## 9154      745
## 9162     1380
## 9163     1485
## 9168     2115
## 9174     3018
## 9175     3160
## 9177     3726
## 9184     5952
## 9189     6957
## 9195    27801
## 9198        2
## 9199       34
## 9200       48
## 9203      158
## 9205      317
## 9206      364
## 9208      551
## 9209      585
## 9210      586
## 9212      588
## 9214      593
## 9215      594
## 9216      595
## 9217      596
## 9218      616
## 9219      661
## 9220      673
## 9221      801
## 9222      919
## 9223      953
## 9224     1010
## 9225     1022
## 9226     1028
## 9227     1029
## 9229     1059
## 9230     1073
## 9231     1097
## 9234     1207
## 9235     1220
## 9236     1367
## 9237     1380
## 9239     1580
## 9240     1777
## 9242     1954
## 9244     2018
## 9245     2054
## 9246     2078
## 9247     2080
## 9248     2081
## 9249     2085
## 9250     2087
## 9251     2123
## 9252     2144
## 9253     2161
## 9254     2174
## 9255     2273
## 9257     2355
## 9258     2384
## 9262     2716
## 9263     2761
## 9264     2804
## 9267     2953
## 9268     3114
## 9269     3668
## 9270     3751
## 9271     3988
## 9272     4016
## 9273     4025
## 9274     4232
## 9275     4246
## 9276     4306
## 9278     4701
## 9279     4886
## 9280     4890
## 9281     4896
## 9283     5299
## 9285     5444
## 9286     5449
## 9287     5459
## 9288     5481
## 9290     5693
## 9291     5816
## 9294     6218
## 9296     6373
## 9297     6377
## 9298     6539
## 9299     6743
## 9301     6936
## 9304     7161
## 9306     8360
## 9307     8368
## 9308     8376
## 9309     8464
## 9310     8544
## 9312     8970
## 9314    27706
## 9315    30793
## 9316    33004
## 9317    33615
## 9318    33660
## 9321    34150
## 9323    40629
## 9325    41566
## 9328    45431
## 9329    45517
## 9331    45722
## 9335    46976
## 9336    47610
## 9341    53121
## 9342    53125
## 9344    53464
## 9346    54001
## 9347    54272
## 9349    55830
## 9350    56030
## 9354    56757
## 9355    57640
## 9357    58025
## 9362    60074
## 9366      318
## 9378    49530
## 9383    69481
## 9389    91535
## 9390    92259
## 9392   101864
## 9393   101947
## 9401   112183
## 9404   114662
## 9405   115149
## 9406   115569
## 9409   120637
## 9411   122900
## 9418       11
## 9420       58
## 9421      112
## 9423      151
## 9424      246
## 9426      315
## 9428      380
## 9430      457
## 9432      515
## 9433      520
## 9437      832
## 9438     1015
## 9441     1105
## 9446     1230
## 9447     1234
## 9450     1307
## 9452     1372
## 9454     1376
## 9456     1474
## 9457     1513
## 9462     1641
## 9465     1961
## 9468     2116
## 9469     2174
## 9471     2302
## 9478     2762
## 9489     3408
## 9493     3751
## 9499     4022
## 9509     6541
## 9513     7318
## 9515      150
## 9517      165
## 9518      168
## 9519      231
## 9525      344
## 9534      595
## 9538      920
## 9543     1210
## 9546     1238
## 9548     1270
## 9550     1288
## 9555     1956
## 9563       22
## 9564      105
## 9583     1200
## 9588     1275
## 9589     1573
## 9590     1580
## 9592     1732
## 9599     2391
## 9600     2455
## 9601     2456
## 9602     2571
## 9607     3527
## 9610     3957
## 9611        1
## 9613       12
## 9619       42
## 9622       62
## 9624       88
## 9625       94
## 9626       95
## 9627      104
## 9628      107
## 9630      112
## 9631      141
## 9634      238
## 9637      266
## 9645      294
## 9648      316
## 9651      350
## 9654      362
## 9656      368
## 9660      434
## 9662      454
## 9664      474
## 9671      524
## 9676      587
## 9679      592
## 9683      609
## 9687      628
## 9688      631
## 9689      637
## 9690      648
## 9692      653
## 9693      664
## 9694      694
## 9696      708
## 9698      711
## 9699      719
## 9700      724
## 9703      743
## 9705      784
## 9706      788
## 9707      849
## 9708      852
## 9710     1035
## 9715        2
## 9716       11
## 9718      260
## 9719      317
## 9722      367
## 9726      468
## 9729      527
## 9730      539
## 9731      541
## 9732      586
## 9734      590
## 9735      592
## 9736      597
## 9737      778
## 9738      780
## 9743      933
## 9744      934
## 9747     1073
## 9749     1185
## 9751     1197
## 9753     1200
## 9763     1409
## 9766     1721
## 9771     2384
## 9772     2420
## 9774     2469
## 9776     2746
## 9778     2779
## 9779     2791
## 9780     2797
## 9782     2968
## 9783     3072
## 9784     3148
## 9785     3247
## 9787     3578
## 9789     3755
## 9792     4886
## 9793     4963
## 9794     4992
## 9797     5218
## 9798     5299
## 9800     5418
## 9804     5995
## 9805     6218
## 9806     6297
## 9807     6373
## 9808     6377
## 9810     6863
## 9811     6874
## 9812     7147
## 9814     7361
## 9816     8529
## 9819     8865
## 9822    26025
## 9824    30707
## 9825    30749
## 9826    30812
## 9828    31658
## 9830    33004
## 9831    45431
## 9832    45517
## 9833    45668
## 9834    46976
## 9835    54259
## 9838        2
## 9845      158
## 9848      296
## 9854      374
## 9855      410
## 9856      500
## 9861      596
## 9863      788
## 9867     1028
## 9873     1513
## 9877     1954
## 9882     2054
## 9883     2059
## 9884     2136
## 9889     2379
## 9895     3668
## 9897     3821
## 9898     3948
## 9899     3977
## 9900     4254
## 9902     4878
## 9907     5349
## 9915    58047
## 9921        7
## 9922        9
## 9923       12
## 9924       14
## 9935       65
## 9941       88
## 9945      104
## 9951      494
## 9957      637
## 9958      640
## 9959      648
## 9962      663
## 9964      671
## 9965      673
## 9972      724
## 9975      737
## 9976      743
## 9978      748
## 9979      761
## 9982      784
## 9989      810
## 10002     589
## 10014    3422
## 10021    3963
## 10024       1
## 10025       2
## 10026      47
## 10028     110
## 10029     150
## 10030     260
## 10034     480
## 10037     593
## 10041     912
## 10043    1036
## 10044    1196
## 10045    1200
## 10051    1246
## 10053    1270
## 10054    1682
## 10055    1961
## 10056    2006
## 10057    2028
## 10059    2395
## 10060    2571
## 10061    2628
## 10062    2692
## 10065    2918
## 10067    3114
## 10068    3481
## 10069    3578
## 10070    3717
## 10071    3753
## 10072    3793
## 10073    3897
## 10074    3949
## 10075    3996
## 10076    4011
## 10077    4018
## 10079    4025
## 10080    4027
## 10082    4246
## 10084    4306
## 10085    4447
## 10086    4720
## 10088    4886
## 10089    4963
## 10090    4973
## 10091    4979
## 10092    4993
## 10093    4995
## 10094    5218
## 10095    5349
## 10096    5378
## 10097    5418
## 10098    5445
## 10099    5679
## 10100    5903
## 10101    5952
## 10102    5989
## 10103    5995
## 10104    6333
## 10105    6377
## 10106    6502
## 10107    6539
## 10109    6863
## 10110    6874
## 10111    6934
## 10112    7143
## 10113    7147
## 10114    7153
## 10115    7254
## 10116    7361
## 10117    7438
## 10118    7458
## 10119    7502
## 10120    8644
## 10121    8874
## 10122    8950
## 10123    8961
## 10124   31696
## 10125   33794
## 10126   36529
## 10127   41566
## 10128   44191
## 10129   44195
## 10130   45447
## 10131   46578
## 10132   47610
## 10133   48385
## 10134   48394
## 10135   48516
## 10136   49272
## 10138   51255
## 10139   51540
## 10140   51662
## 10141   52281
## 10142   52722
## 10143   52973
## 10144   53000
## 10145   53125
## 10146   53322
## 10147   53519
## 10148   53972
## 10149   53996
## 10150   54001
## 10151   54259
## 10152   54272
## 10153   54286
## 10154   54503
## 10155   54997
## 10156   55247
## 10157   55269
## 10158   55765
## 10160   56174
## 10162   56757
## 10164   58559
## 10165   59315
## 10167   61323
## 10168   64957
## 10169   68157
## 10170   68319
## 10171   68358
## 10173   69122
## 10174   72998
## 10175   74458
## 10176   79132
## 10177   79702
## 10178   81562
## 10179   81591
## 10180   82459
## 10181   86882
## 10182   88140
## 10183   88744
## 10184   89492
## 10185   89745
## 10186   91529
## 10189   97752
## 10190   97938
## 10191   99114
## 10192  102445
## 10193  103249
## 10194  104374
## 10195  104841
## 10196  105844
## 10197  106100
## 10199  109487
## 10200  112552
## 10201  112852
## 10202  114662
## 10203  115713
## 10204  116797
## 10205  117176
## 10207  122886
## 10208  122904
## 10209  122920
## 10210  134130
## 10211  136864
## 10212  139385
## 10213  142488
## 10214  156607
## 10216       2
## 10218      10
## 10219      15
## 10221      19
## 10222      21
## 10224      31
## 10226      34
## 10229      44
## 10231      48
## 10233      60
## 10234      63
## 10235      65
## 10237      70
## 10238      98
## 10239     101
## 10240     104
## 10241     107
## 10243     111
## 10244     112
## 10245     145
## 10247     150
## 10248     153
## 10249     158
## 10250     160
## 10251     163
## 10252     165
## 10253     168
## 10254     169
## 10255     172
## 10256     173
## 10258     177
## 10259     180
## 10260     185
## 10261     193
## 10263     208
## 10267     231
## 10270     239
## 10273     253
## 10274     256
## 10275     258
## 10278     267
## 10279     288
## 10280     292
## 10284     316
## 10288     327
## 10289     333
## 10290     337
## 10291     338
## 10292     344
## 10293     349
## 10294     352
## 10298     367
## 10299     368
## 10300     374
## 10301     377
## 10302     380
## 10303     407
## 10304     409
## 10305     410
## 10306     413
## 10308     431
## 10309     435
## 10310     441
## 10311     442
## 10314     466
## 10316     474
## 10318     481
## 10320     485
## 10322     497
## 10323     500
## 10324     502
## 10325     507
## 10327     510
## 10328     514
## 10330     522
## 10333     551
## 10336     575
## 10337     585
## 10338     586
## 10340     589
## 10344     594
## 10346     596
## 10347     597
## 10349     610
## 10351     631
## 10352     648
## 10353     653
## 10354     673
## 10355     694
## 10356     704
## 10357     708
## 10358     719
## 10359     733
## 10361     736
## 10362     737
## 10364     742
## 10366     748
## 10367     761
## 10369     780
## 10370     784
## 10371     785
## 10372     786
## 10373     788
## 10374     799
## 10375     802
## 10376     832
## 10377     849
## 10379     880
## 10383     924
## 10386    1015
## 10387    1020
## 10388    1022
## 10389    1025
## 10390    1027
## 10391    1029
## 10392    1032
## 10393    1033
## 10395    1049
## 10396    1059
## 10400    1089
## 10402    1093
## 10403    1094
## 10405    1101
## 10406    1120
## 10409    1136
## 10412    1186
## 10430    1220
## 10433    1225
## 10437    1242
## 10439    1246
## 10444    1259
## 10454    1285
## 10455    1288
## 10458    1298
## 10459    1299
## 10460    1302
## 10461    1320
## 10462    1321
## 10463    1339
## 10464    1342
## 10467    1347
## 10468    1350
## 10469    1356
## 10471    1359
## 10472    1367
## 10473    1370
## 10474    1372
## 10476    1377
## 10479    1391
## 10483    1405
## 10485    1408
## 10486    1438
## 10487    1456
## 10488    1464
## 10490    1479
## 10491    1485
## 10492    1499
## 10494    1515
## 10495    1517
## 10496    1527
## 10497    1544
## 10498    1552
## 10499    1562
## 10501    1573
## 10502    1580
## 10503    1584
## 10506    1591
## 10507    1595
## 10508    1597
## 10509    1599
## 10510    1603
## 10511    1608
## 10514    1639
## 10515    1644
## 10516    1645
## 10517    1653
## 10519    1674
## 10520    1676
## 10521    1681
## 10523    1690
## 10525    1707
## 10526    1721
## 10527    1729
## 10530    1752
## 10532    1760
## 10533    1762
## 10534    1777
## 10535    1779
## 10537    1785
## 10538    1792
## 10539    1826
## 10540    1840
## 10541    1858
## 10542    1862
## 10543    1876
## 10544    1882
## 10545    1884
## 10546    1909
## 10547    1911
## 10550    1917
## 10551    1920
## 10552    1923
## 10553    1953
## 10556    1965
## 10559    1974
## 10561    1991
## 10568    2006
## 10571    2012
## 10573    2021
## 10574    2023
## 10576    2033
## 10577    2052
## 10578    2054
## 10579    2058
## 10580    2060
## 10583    2080
## 10584    2081
## 10585    2082
## 10586    2087
## 10587    2089
## 10588    2090
## 10590    2096
## 10591    2105
## 10594    2124
## 10599    2142
## 10600    2143
## 10602    2148
## 10603    2150
## 10604    2159
## 10605    2161
## 10606    2164
## 10607    2167
## 10611    2195
## 10614    2248
## 10616    2273
## 10620    2291
## 10621    2294
## 10622    2302
## 10624    2315
## 10626    2321
## 10627    2324
## 10628    2327
## 10630    2335
## 10631    2340
## 10632    2353
## 10633    2355
## 10635    2378
## 10636    2387
## 10637    2391
## 10638    2394
## 10641    2402
## 10642    2403
## 10643    2404
## 10644    2406
## 10646    2410
## 10647    2411
## 10648    2412
## 10651    2422
## 10652    2424
## 10654    2428
## 10655    2429
## 10657    2451
## 10660    2460
## 10662    2470
## 10663    2490
## 10664    2495
## 10666    2528
## 10668    2541
## 10670    2551
## 10671    2555
## 10674    2572
## 10676    2582
## 10679    2605
## 10680    2606
## 10681    2617
## 10682    2628
## 10683    2657
## 10684    2671
## 10685    2683
## 10688    2694
## 10689    2699
## 10690    2700
## 10691    2701
## 10692    2706
## 10694    2710
## 10696    2713
## 10698    2717
## 10699    2720
## 10700    2722
## 10701    2723
## 10702    2724
## 10704    2734
## 10705    2746
## 10706    2761
## 10708    2770
## 10709    2791
## 10710    2797
## 10711    2798
## 10713    2808
## 10716    2860
## 10717    2862
## 10720    2872
## 10721    2879
## 10722    2890
## 10723    2900
## 10724    2901
## 10725    2915
## 10734    2953
## 10736    2968
## 10737    2974
## 10739    2987
## 10742    3013
## 10744    3018
## 10747    3033
## 10750    3052
## 10751    3070
## 10752    3081
## 10753    3082
## 10754    3101
## 10757    3113
## 10759    3146
## 10760    3147
## 10762    3160
## 10763    3173
## 10765    3175
## 10767    3210
## 10770    3253
## 10771    3254
## 10772    3255
## 10773    3256
## 10776    3267
## 10777    3273
## 10778    3275
## 10780    3300
## 10782    3360
## 10783    3361
## 10787    3426
## 10788    3438
## 10789    3439
## 10790    3440
## 10791    3448
## 10792    3471
## 10796    3489
## 10798    3527
## 10801    3554
## 10802    3555
## 10803    3573
## 10804    3574
## 10807    3593
## 10808    3617
## 10809    3623
## 10810    3671
## 10812    3687
## 10813    3688
## 10816    3702
## 10817    3703
## 10818    3704
## 10820    3717
## 10821    3727
## 10824    3740
## 10825    3745
## 10826    3751
## 10827    3752
## 10828    3753
## 10829    3755
## 10831    3785
## 10832    3793
## 10833    3821
## 10834    3826
## 10836    3852
## 10837    3861
## 10838    3882
## 10840    3916
## 10841    3917
## 10844    3950
## 10845    3955
## 10846    3961
## 10847    3962
## 10848    3967
## 10851    3977
## 10852    3979
## 10853    3986
## 10854    3994
## 10855    3996
## 10856    4002
## 10861    4015
## 10862    4018
## 10863    4019
## 10864    4022
## 10865    4025
## 10868    4054
## 10869    4069
## 10870    4085
## 10873    4128
## 10874    4135
## 10875    4148
## 10876    4214
## 10877    4223
## 10879    4232
## 10881    4246
## 10882    4255
## 10884    4270
## 10886    4299
## 10888    4308
## 10889    4310
## 10890    4340
## 10891    4343
## 10892    4344
## 10895    4367
## 10897    4370
## 10898    4378
## 10899    4388
## 10900    4415
## 10901    4437
## 10903    4441
## 10906    4447
## 10907    4448
## 10908    4454
## 10910    4488
## 10912    4533
## 10914    4571
## 10916    4614
## 10917    4618
## 10918    4619
## 10919    4621
## 10921    4638
## 10924    4643
## 10925    4697
## 10926    4701
## 10928    4718
## 10929    4720
## 10930    4728
## 10931    4734
## 10932    4744
## 10933    4775
## 10934    4776
## 10936    4816
## 10937    4823
## 10939    4848
## 10941    4865
## 10945    4886
## 10946    4890
## 10947    4896
## 10948    4899
## 10949    4915
## 10950    4963
## 10951    4974
## 10952    4975
## 10954    4980
## 10955    4987
## 10956    4989
## 10961    5025
## 10962    5040
## 10963    5055
## 10965    5094
## 10967    5110
## 10968    5139
## 10970    5151
## 10971    5152
## 10974    5205
## 10975    5210
## 10976    5218
## 10977    5219
## 10979    5266
## 10980    5283
## 10981    5294
## 10982    5299
## 10983    5313
## 10986    5378
## 10987    5388
## 10988    5401
## 10989    5418
## 10990    5445
## 10991    5449
## 10992    5452
## 10993    5459
## 10994    5463
## 10995    5464
## 10996    5481
## 10997    5502
## 10998    5504
## 10999    5507
## 11000    5524
## 11002    5541
## 11003    5572
## 11004    5574
## 11005    5585
## 11006    5617
## 11008    5621
## 11009    5630
## 11013    5679
## 11015    5691
## 11016    5734
## 11017    5735
## 11018    5736
## 11019    5737
## 11021    5810
## 11022    5816
## 11023    5882
## 11026    5942
## 11027    5943
## 11030    5955
## 11031    5956
## 11034    5991
## 11037    6155
## 11038    6156
## 11039    6157
## 11040    6188
## 11041    6212
## 11042    6213
## 11043    6218
## 11045    6281
## 11046    6287
## 11047    6298
## 11048    6303
## 11050    6333
## 11051    6338
## 11052    6365
## 11053    6373
## 11055    6378
## 11056    6379
## 11057    6383
## 11059    6502
## 11060    6503
## 11061    6534
## 11062    6537
## 11064    6548
## 11066    6564
## 11067    6565
## 11068    6566
## 11069    6582
## 11070    6586
## 11071    6593
## 11072    6595
## 11073    6602
## 11074    6615
## 11076    6664
## 11077    6695
## 11078    6707
## 11082    6754
## 11084    6774
## 11087    6807
## 11089    6820
## 11090    6857
## 11091    6863
## 11094    6887
## 11095    6888
## 11096    6902
## 11097    6934
## 11098    6936
## 11099    6947
## 11100    6952
## 11101    6953
## 11102    6957
## 11103    6977
## 11107    7036
## 11108    7045
## 11109    7046
## 11113    7117
## 11115    7143
## 11116    7147
## 11118    7161
## 11120    7254
## 11122    7293
## 11123    7308
## 11125    7318
## 11126    7324
## 11127    7325
## 11128    7346
## 11129    7360
## 11131    7367
## 11132    7373
## 11133    7387
## 11134    7411
## 11137    7445
## 11138    7454
## 11139    7458
## 11143    7701
## 11144    7743
## 11146    7842
## 11148    7845
## 11149    7846
## 11150    7915
## 11152    7984
## 11153    7987
## 11156    8360
## 11157    8361
## 11158    8363
## 11159    8368
## 11160    8371
## 11161    8372
## 11162    8373
## 11163    8376
## 11164    8507
## 11165    8526
## 11166    8528
## 11168    8531
## 11169    8622
## 11170    8636
## 11172    8640
## 11174    8644
## 11175    8665
## 11176    8783
## 11178    8798
## 11179    8807
## 11180    8810
## 11181    8811
## 11182    8854
## 11183    8859
## 11184    8861
## 11188    8914
## 11189    8917
## 11190    8928
## 11191    8947
## 11192    8949
## 11195    8961
## 11196    8972
## 11197    8984
## 11200   26403
## 11201   26480
## 11203   26585
## 11204   26603
## 11206   26684
## 11208   26729
## 11211   27002
## 11216   27369
## 11217   27478
## 11220   27611
## 11223   27704
## 11224   27706
## 11225   27772
## 11227   27778
## 11228   27793
## 11229   27800
## 11231   27808
## 11233   27904
## 11237   30812
## 11238   30820
## 11239   30825
## 11241   31225
## 11242   31290
## 11243   31422
## 11244   31431
## 11246   31685
## 11247   31696
## 11248   31878
## 11249   32352
## 11252   32596
## 11253   33004
## 11255   33164
## 11258   33493
## 11259   33679
## 11261   33834
## 11262   34048
## 11263   34150
## 11264   34162
## 11265   34319
## 11266   34405
## 11267   34437
## 11268   34530
## 11269   35836
## 11270   36519
## 11271   36529
## 11272   36708
## 11273   37386
## 11276   38061
## 11277   39381
## 11278   39446
## 11279   40278
## 11280   40574
## 11281   40629
## 11283   40815
## 11284   41285
## 11285   41566
## 11286   41569
## 11288   42011
## 11289   42723
## 11290   42725
## 11291   43838
## 11292   43919
## 11294   43936
## 11296   44195
## 11299   44397
## 11302   44972
## 11304   45183
## 11305   45186
## 11306   45447
## 11308   45666
## 11309   45672
## 11310   45722
## 11311   45726
## 11312   45728
## 11314   46335
## 11315   46337
## 11316   46578
## 11317   46865
## 11318   46965
## 11319   46970
## 11320   46972
## 11322   47099
## 11323   47200
## 11325   47640
## 11326   47815
## 11328   48043
## 11329   48304
## 11330   48385
## 11331   48394
## 11333   48591
## 11335   48744
## 11338   48877
## 11340   49278
## 11341   49526
## 11342   49528
## 11343   49530
## 11344   49649
## 11345   49651
## 11348   50651
## 11349   50794
## 11350   50798
## 11351   50806
## 11352   50872
## 11353   51255
## 11356   51662
## 11358   51937
## 11359   52245
## 11360   52281
## 11361   52328
## 11362   52458
## 11363   52462
## 11365   52722
## 11367   52973
## 11368   53000
## 11369   53121
## 11370   53125
## 11372   53322
## 11374   53519
## 11376   53972
## 11377   53996
## 11378   54001
## 11379   54190
## 11380   54272
## 11381   54286
## 11382   54290
## 11385   54648
## 11386   54745
## 11387   54995
## 11392   55232
## 11393   55245
## 11395   55269
## 11397   55577
## 11399   55765
## 11400   55805
## 11402   55830
## 11403   55995
## 11404   56003
## 11406   56174
## 11407   56251
## 11408   56367
## 11409   56587
## 11410   56757
## 11411   56775
## 11413   56801
## 11414   57368
## 11415   57528
## 11416   57532
## 11417   57640
## 11419   58025
## 11420   58146
## 11421   58293
## 11422   58295
## 11424   58315
## 11427   58627
## 11428   58803
## 11429   58975
## 11430   58998
## 11431   59014
## 11432   59022
## 11433   59315
## 11434   59369
## 11435   59387
## 11436   59615
## 11437   59784
## 11438   59900
## 11440   60037
## 11441   60069
## 11442   60072
## 11443   60074
## 11444   60126
## 11447   60487
## 11449   60684
## 11450   60753
## 11452   61024
## 11453   61132
## 11454   61248
## 11455   61323
## 11456   61348
## 11457   61394
## 11458   62394
## 11459   62434
## 11461   62912
## 11462   62956
## 11463   63072
## 11465   63113
## 11466   63131
## 11467   63540
## 11468   63826
## 11470   63992
## 11472   64508
## 11478   64983
## 11480   65310
## 11482   65982
## 11483   66066
## 11485   66297
## 11486   66335
## 11488   67252
## 11490   67665
## 11491   67695
## 11492   67734
## 11493   67923
## 11498   68319
## 11499   68358
## 11500   68444
## 11501   68554
## 11502   68901
## 11503   68952
## 11505   68959
## 11506   68965
## 11507   69122
## 11508   69306
## 11510   69640
## 11511   69685
## 11512   69746
## 11514   69844
## 11515   70286
## 11517   70946
## 11518   71057
## 11521   71248
## 11522   71379
## 11526   71533
## 11528   71745
## 11529   71838
## 11531   72171
## 11533   72603
## 11538   73268
## 11539   73321
## 11544   74851
## 11545   74944
## 11547   75813
## 11548   76060
## 11549   76077
## 11552   76272
## 11553   77561
## 11554   77800
## 11555   77837
## 11556   77866
## 11557   78209
## 11558   78266
## 11559   78349
## 11560   78469
## 11562   78574
## 11563   78772
## 11565   79057
## 11568   79242
## 11569   79251
## 11572   79553
## 11573   79695
## 11575   79720
## 11576   79879
## 11577   80083
## 11582   80831
## 11583   80846
## 11584   81083
## 11585   81562
## 11588   81660
## 11592   82041
## 11597   83613
## 11599   84772
## 11605   85881
## 11607   86644
## 11612   87298
## 11614   87869
## 11617   88129
## 11618   88140
## 11620   88744
## 11621   89039
## 11623   89343
## 11624   89470
## 11627   89864
## 11628   90376
## 11629   90430
## 11630   90439
## 11632   91485
## 11637   91976
## 11638   92309
## 11640   93363
## 11641   93443
## 11643   93831
## 11647   94018
## 11650   94833
## 11654   95147
## 11655   95165
## 11656   95182
## 11658   95473
## 11662   95558
## 11663   95780
## 11664   95782
## 11665   95875
## 11666   95963
## 11669   96007
## 11671   96110
## 11672   96281
## 11673   96432
## 11674   96588
## 11676   96737
## 11681   97860
## 11682   97913
## 11684   97923
## 11686   98607
## 11690   99112
## 11693   99728
## 11698  101864
## 11699  102033
## 11703  102407
## 11705  102716
## 11707  103042
## 11709  103228
## 11710  103249
## 11711  103253
## 11712  103384
## 11713  103624
## 11714  103688
## 11715  103772
## 11719  105213
## 11721  106002
## 11724  106487
## 11725  106489
## 11726  106491
## 11729  106918
## 11731  107069
## 11732  107348
## 11734  107953
## 11735  107999
## 11736  108090
## 11737  108190
## 11740  108981
## 11744  109850
## 11745  109895
## 11746  110127
## 11749  110882
## 11750  111360
## 11752  111364
## 11753  111624
## 11754  111659
## 11756  111781
## 11759  112290
## 11760  112515
## 11763  112623
## 11764  112818
## 11767  113348
## 11768  113573
## 11770  114180
## 11772  114670
## 11775  115149
## 11779  115877
## 11780  115881
## 11781  116397
## 11783  116823
## 11784  117123
## 11786  117529
## 11787  118082
## 11788  118696
## 11789  119145
## 11790  120466
## 11791  121231
## 11795  122900
## 11797  122924
## 11798  126006
## 11799  127198
## 11801  130642
## 11802  130682
## 11803  133771
## 11805  135887
## 11806  137857
## 11809  139644
## 11810  140267
## 11812  141718
## 11815  148626
## 11816  152077
## 11817  152091
## 11819  156726
## 11821  159462
## 11822  159858
## 11823  161594
## 11826      16
## 11835     612
## 11838    1080
## 11839    1097
## 11849    1721
## 11851    1876
## 11854    1954
## 11861    2188
## 11866    2549
## 11870    2640
## 11874       1
## 11875       3
## 11880     316
## 11882     350
## 11885     368
## 11887     379
## 11888     442
## 11889     480
## 11890     509
## 11891     520
## 11895     592
## 11897     786
## 11898     800
## 11899     858
## 11900     880
## 11901     899
## 11908    1080
## 11909    1127
## 11911    1197
## 11913    1201
## 11914    1207
## 11915    1208
## 11918    1221
## 11919    1225
## 11920    1234
## 11921    1240
## 11925    1265
## 11931    1297
## 11932    1356
## 11933    1358
## 11934    1376
## 11935    1441
## 11936    1517
## 11937    1580
## 11940    1721
## 11941    1917
## 11942    1967
## 11943    1994
## 11944    2003
## 11945    2005
## 11947    2012
## 11948    2115
## 11949    2134
## 11951    2167
## 11952    2174
## 11954    2231
## 11957    2311
## 11958    2355
## 11959    2371
## 11961    2424
## 11965    2600
## 11967    2707
## 11968    2710
## 11969    2797
## 11971    2916
## 11972    2959
## 11973    2991
## 11975    3020
## 11977    3087
## 11978    3147
## 11979    3252
## 11981    3510
## 11983    3793
## 11984    3948
## 11986    4223
## 11988    4306
## 11989    4571
## 11994    4980
## 11996    5054
## 11997    5171
## 12001    6323
## 12002    6537
## 12007    7743
## 12011    8985
## 12012   27788
## 12018   44397
## 12020     303
## 12021     531
## 12025    1185
## 12026    1269
## 12029    2087
## 12032    3671
## 12034    3988
## 12037   49530
## 12038   54259
## 12040       6
## 12041      10
## 12043      34
## 12044      39
## 12046      62
## 12047      70
## 12048      76
## 12049      95
## 12050     110
## 12052     141
## 12053     161
## 12054     163
## 12055     165
## 12056     173
## 12057     185
## 12058     208
## 12060     231
## 12061     253
## 12063     288
## 12064     292
## 12066     296
## 12069     329
## 12070     339
## 12071     344
## 12072     349
## 12074     356
## 12075     364
## 12076     367
## 12077     377
## 12078     380
## 12079     413
## 12080     442
## 12081     457
## 12082     480
## 12083     500
## 12084     541
## 12086     586
## 12087     587
## 12088     588
## 12090     590
## 12091     592
## 12092     593
## 12093     595
## 12094     597
## 12095     608
## 12096     648
## 12097     720
## 12098     733
## 12099     736
## 12101     745
## 12103     780
## 12104     839
## 12105     849
## 12107     924
## 12108    1036
## 12110    1079
## 12112    1097
## 12115    1148
## 12122    1208
## 12124    1214
## 12126    1217
## 12128    1222
## 12129    1223
## 12131    1258
## 12134    1270
## 12135    1274
## 12136    1278
## 12140    1380
## 12141    1387
## 12142    1393
## 12145    1552
## 12146    1580
## 12147    1584
## 12148    1591
## 12150    1653
## 12152    1682
## 12153    1704
## 12154    1721
## 12155    1732
## 12156    1772
## 12157    1779
## 12158    1784
## 12159    1917
## 12160    1923
## 12161    1961
## 12163    1968
## 12164    2000
## 12165    2001
## 12168    2012
## 12169    2021
## 12170    2054
## 12171    2081
## 12179    2291
## 12181    2355
## 12182    2395
## 12183    2450
## 12185    2528
## 12186    2529
## 12187    2541
## 12190    2599
## 12192    2628
## 12193    2640
## 12194    2641
## 12195    2671
## 12198    2706
## 12199    2709
## 12200    2710
## 12204    2797
## 12205    2808
## 12206    2858
## 12207    2916
## 12211    2985
## 12212    2986
## 12213    2987
## 12218    3081
## 12219    3114
## 12221    3148
## 12222    3175
## 12225    3264
## 12228    3397
## 12229    3398
## 12230    3408
## 12231    3418
## 12233    3429
## 12234    3438
## 12235    3439
## 12238    3578
## 12239    3623
## 12243    3704
## 12244    3751
## 12245    3753
## 12247    3882
## 12248    3897
## 12249    3977
## 12251    3996
## 12253    4027
## 12254    4040
## 12255    4092
## 12256    4246
## 12257    4270
## 12258    4306
## 12259    4446
## 12260    4447
## 12263    4533
## 12265    4896
## 12266    4963
## 12267    4979
## 12268    4993
## 12269    5171
## 12271    5254
## 12273    5378
## 12274    5445
## 12275    5502
## 12278    5650
## 12279    5669
## 12281    5816
## 12283    6093
## 12284    6157
## 12285    6281
## 12286    6303
## 12287    6305
## 12288    6316
## 12291    6365
## 12292    6377
## 12293    6537
## 12296    6645
## 12297    6662
## 12301    6874
## 12302    6934
## 12304    7143
## 12306    7163
## 12311    7438
## 12313    7708
## 12320    8368
## 12322    8622
## 12324    8644
## 12327    8958
## 12329   26492
## 12330   26700
## 12331   27685
## 12333   31150
## 12334   31221
## 12336   31878
## 12338   33493
## 12340   34319
## 12342   36708
## 12345   38038
## 12346   40732
## 12349   45499
## 12351   47423
## 12353   53894
## 12354       2
## 12358      34
## 12362     110
## 12363     111
## 12365     150
## 12379     364
## 12381     480
## 12385     588
## 12392     788
## 12394     919
## 12395     924
## 12397    1089
## 12399    1097
## 12400    1136
## 12403    1206
## 12407    1214
## 12410    1265
## 12413    1320
## 12419    1376
## 12422    1517
## 12425    1580
## 12427    1586
## 12433    1682
## 12444    1923
## 12449    2028
## 12450    2107
## 12465    2657
## 12466    2683
## 12476    2995
## 12486    3504
## 12487    3556
## 12492    3755
## 12498    3967
## 12499    3977
## 12502    3994
## 12506    4015
## 12507    4018
## 12508    4022
## 12514    4306
## 12524    4744
## 12526    4896
## 12536    5463
## 12540    5784
## 12548    6377
## 12550    6537
## 12551    6539
## 12567    8368
## 12568    8464
## 12575    8947
## 12576    8972
## 12583   34048
## 12587   40815
## 12589   44191
## 12594   49272
## 12617       1
## 12618       2
## 12619       7
## 12620     150
## 12621     260
## 12622     344
## 12624     367
## 12625     468
## 12626     480
## 12627     519
## 12628     587
## 12629     588
## 12630     592
## 12631     648
## 12632     736
## 12633     778
## 12634     780
## 12635     924
## 12636    1097
## 12637    1101
## 12638    1196
## 12639    1210
## 12640    1291
## 12641    1517
## 12642    1580
## 12643    1721
## 12644    1917
## 12645    2013
## 12646    2150
## 12647    2422
## 12648    2571
## 12649    2628
## 12650    2640
## 12651    2641
## 12652    2683
## 12653    2918
## 12654    3478
## 12655    3578
## 12656    3697
## 12657    3702
## 12658    3793
## 12659    3864
## 12660    4306
## 12661    4886
## 12662    4993
## 12663    5349
## 12664    5952
## 12665    6539
## 12666    7153
## 12667   32031
## 12668   39292
## 12669   42738
## 12670   45081
## 12671   49530
## 12672       2
## 12675      10
## 12677      20
## 12682      46
## 12683      50
## 12685      89
## 12686      93
## 12687      95
## 12688     100
## 12689     105
## 12691     141
## 12693     191
## 12695     610
## 12700     762
## 12705     802
## 12711     190
## 12713     308
## 12714     318
## 12715     495
## 12716     509
## 12721     899
## 12727    1132
## 12728    1136
## 12732    1201
## 12734    1213
## 12741    1295
## 12743    1339
## 12745    1913
## 12750    2424
## 12761    3578
## 12768    3967
## 12780    4878
## 12781    4928
## 12783    5105
## 12786    5530
## 12788    5668
## 12792    6214
## 12793    6301
## 12803    7265
## 12810    7786
## 12814    8014
## 12821    8533
## 12835   37731
## 12837   43899
## 12838   44694
## 12841   47610
## 12842   48043
## 12847   53447
## 12850   60950
## 12854   68137
## 12857   69757
## 12859   71438
## 12860   72998
## 12863   79132
## 12864   80463
## 12866   81591
## 12868   82459
## 12869      10
## 12870      21
## 12877     153
## 12878     160
## 12879     165
## 12880     208
## 12884     288
## 12885     292
## 12888     316
## 12890     329
## 12892     344
## 12895     367
## 12896     380
## 12897     410
## 12898     420
## 12899     434
## 12900     435
## 12901     454
## 12902     457
## 12905     592
## 12909      21
## 12912      69
## 12913     101
## 12916     151
## 12922     351
## 12925     377
## 12927     480
## 12929     532
## 12934     799
## 12946    1240
## 12956    1358
## 12967    1917
## 12968    1920
## 12969    1923
## 12971    2000
## 12972    2109
## 12979    2371
## 12983    2571
## 12998    3087
## 13000    3160
## 13003    3210
## 13005    3253
## 13021    3753
## 13025    3869
## 13027    3911
## 13028    3950
## 13029    4025
## 13034    4255
## 13039    4558
## 13040    4571
## 13043    4898
## 13045    4975
## 13051    5445
## 13052    5602
## 13053    5650
## 13055    5673
## 13056    5902
## 13057    6373
## 13058    6659
## 13064    8528
## 13068   35836
## 13069       1
## 13073     356
## 13074     589
## 13077    1198
## 13079    1610
## 13080    2028
## 13081    2268
## 13082    2329
## 13084    2858
## 13087    3114
## 13090    3623
## 13093    3752
## 13096    3994
## 13097    4023
## 13099    4270
## 13101    4310
## 13102    4701
## 13106    4896
## 13111    5418
## 13112    5445
## 13113    5459
## 13114    5481
## 13115    5630
## 13117    5989
## 13119    6287
## 13120    6365
## 13121    6373
## 13122    6377
## 13123    6378
## 13124    6539
## 13127    7254
## 13128    7293
## 13131    8361
## 13133    8531
## 13134    8644
## 13135    8665
## 13137    8972
## 13138   30825
## 13140   32587
## 13143   34162
## 13145   36529
## 13146   40815
## 13147   44199
## 13148   45447
## 13150   45722
## 13151   53125
## 13152   54001
## 13153   54272
## 13155   56174
## 13158   59315
## 13160   65514
## 13161   68157
## 13162   68358
## 13164   69844
## 13169   81229
## 13170   85342
## 13172   91500
## 13174   91658
## 13177   96079
## 13178   99114
## 13179  102125
## 13180  106487
## 13186       3
## 13187       5
## 13189      19
## 13191      23
## 13192      44
## 13193      58
## 13196     158
## 13197     160
## 13200     170
## 13201     172
## 13203     177
## 13204     181
## 13205     185
## 13206     186
## 13207     188
## 13208     196
## 13209     203
## 13210     208
## 13211     216
## 13213     230
## 13216     247
## 13217     253
## 13220     261
## 13221     275
## 13222     277
## 13223     282
## 13225     291
## 13233     327
## 13236     339
## 13239     350
## 13240     355
## 13242     357
## 13243     364
## 13244     366
## 13247     370
## 13248     374
## 13251     405
## 13253     415
## 13254     420
## 13256     434
## 13257     437
## 13259     454
## 13261     466
## 13262     471
## 13264     485
## 13266     508
## 13267     519
## 13268     520
## 13269     527
## 13271     546
## 13273     551
## 13275     555
## 13276     586
## 13277     587
## 13278     588
## 13280     590
## 13283     594
## 13284     595
## 13286     610
## 13289     688
## 13290     709
## 13292       1
## 13293      11
## 13297      19
## 13298      21
## 13299      25
## 13305      34
## 13310      46
## 13313      62
## 13316      73
## 13318      82
## 13321     105
## 13322     110
## 13324     121
## 13325     124
## 13326     126
## 13328     144
## 13333     159
## 13334     160
## 13335     162
## 13337     172
## 13339     180
## 13340     186
## 13342     198
## 13344     208
## 13348     224
## 13350     231
## 13354     246
## 13357     252
## 13361     261
## 13362     263
## 13364     266
## 13367     273
## 13368     282
## 13369     287
## 13370     288
## 13372     292
## 13376     302
## 13377     305
## 13381     314
## 13382     316
## 13385     321
## 13386     324
## 13388     331
## 13389     332
## 13393     348
## 13395     362
## 13399     372
## 13400     405
## 13401     419
## 13402     427
## 13405     446
## 13406     454
## 13408     468
## 13409     469
## 13412     477
## 13413     480
## 13414     481
## 13417     500
## 13419     508
## 13423     531
## 13427     539
## 13432     568
## 13434     586
## 13435     587
## 13436     588
## 13437     589
## 13438     590
## 13439     592
## 13442     595
## 13444     597
## 13446     613
## 13447     616
## 13449     640
## 13450     650
## 13451     661
## 13454     708
## 13456     724
## 13458     753
## 13459     756
## 13462     780
## 13463     783
## 13464     784
## 13465     828
## 13466     830
## 13467     844
## 13468     892
## 13470    1036
## 13473    1059
## 13476    1084
## 13479    1163
## 13482       1
## 13483       7
## 13485      32
## 13487      62
## 13488      88
## 13489      95
## 13491     112
## 13497     648
## 13498     663
## 13500     733
## 13501     736
## 13502     762
## 13503     778
## 13504     780
## 13506     786
## 13507     802
## 13508     852
## 13509    1073
## 13510    1210
## 13512    1405
## 13513       2
## 13515      11
## 13516      21
## 13517      31
## 13519      39
## 13521      62
## 13522      95
## 13523     104
## 13526     153
## 13527     160
## 13528     163
## 13529     165
## 13530     185
## 13532     231
## 13533     253
## 13534     256
## 13536     261
## 13537     288
## 13538     296
## 13539     316
## 13541     337
## 13543     344
## 13544     345
## 13545     350
## 13550     377
## 13551     380
## 13552     435
## 13553     440
## 13554     454
## 13555     457
## 13556     480
## 13558     500
## 13561     520
## 13563     539
## 13566     552
## 13567     553
## 13568     586
## 13569     588
## 13570     592
## 13571     593
## 13573     595
## 13575     608
## 13576     648
## 13577     708
## 13578     733
## 13579     736
## 13580     745
## 13582     780
## 13583     802
## 13588    1028
## 13589    1073
## 13591    1080
## 13592    1097
## 13594    1136
## 13595    1183
## 13597    1196
## 13602    1258
## 13604    1265
## 13605    1270
## 13608    1291
## 13610    1302
## 13612    1380
## 13613    1391
## 13614    1393
## 13615    1394
## 13616    1407
## 13617    1485
## 13619    1517
## 13621    1573
## 13622    1580
## 13625    1674
## 13628    1777
## 13629    1784
## 13630    1909
## 13631    1917
## 13632    1961
## 13633    1968
## 13634    2011
## 13635    2054
## 13636    2100
## 13637    2115
## 13639    2268
## 13641    2302
## 13642    2321
## 13643    2329
## 13644    2353
## 13645    2355
## 13650    2617
## 13651    2628
## 13652    2640
## 13655    2710
## 13656    2712
## 13657    2716
## 13659    2763
## 13660    2791
## 13666    3052
## 13667    3081
## 13670    3255
## 13672    3418
## 13673    3435
## 13676    3578
## 13677    3751
## 13678    3753
## 13679    3755
## 13680    3793
## 13682    3996
## 13687    4226
## 13689    4308
## 13690    4720
## 13692    4896
## 13697    4995
## 13698    5218
## 13699    5299
## 13700    5349
## 13702    5378
## 13704    5445
## 13705    5459
## 13707    5679
## 13708    5952
## 13709    5991
## 13712    6373
## 13717    6863
## 13723    7153
## 13728    8368
## 13729    8636
## 13733    8874
## 13734   30707
## 13735   30793
## 13736   32587
## 13737   32598
## 13738   33794
## 13739   34405
## 13740   35836
## 13742   40815
## 13745   45447
## 13750   52973
## 13752   55269
## 13755   59615
## 13756   60684
## 13758   63515
## 13762   66198
## 13763   67193
## 13764   67799
## 13778     327
## 13789    1019
## 13791    1214
## 13794    1385
## 13836      25
## 13840      79
## 13842     141
## 13846     661
## 13848     736
## 13849     766
## 13851     780
## 13852     783
## 13855     830
## 13862    1073
## 13869    1438
## 13871    1479
## 13873    1513
## 13874    1515
## 13883    1608
## 13885      12
## 13887      23
## 13888      34
## 13894     267
## 13903     747
## 13919    2335
## 13920    2379
## 13921    2380
## 13922    2381
## 13923    2382
## 13929    3146
## 13930    3387
## 13933    3821
## 13935    3979
## 13937    4015
## 13938    4084
## 13940    4340
## 13948    6482
## 13949    6550
## 13950    6763
## 13955    8531
## 13961   43836
## 13964   44972
## 13966   46865
## 13967   50806
## 13968   52694
## 13972   54732
## 13973   57532
## 13975   59014
## 13978   59900
## 13987   78041
## 13992   79428
## 13993   80549
## 13996   82852
## 14000   91500
## 14009   96616
## 14013  103341
## 14016  104218
## 14018  106487
## 14029  116977
## 14030  132157
## 14035       2
## 14036       6
## 14037      10
## 14039      19
## 14043      39
## 14044      44
## 14048      62
## 14049      76
## 14050      95
## 14054     145
## 14055     150
## 14056     151
## 14057     153
## 14058     160
## 14061     165
## 14062     172
## 14063     173
## 14064     177
## 14065     181
## 14066     186
## 14067     188
## 14068     193
## 14069     196
## 14071     208
## 14073     224
## 14074     231
## 14076     237
## 14078     252
## 14079     253
## 14080     266
## 14081     273
## 14082     288
## 14083     292
## 14087     315
## 14088     316
## 14089     317
## 14092     328
## 14093     329
## 14094     330
## 14095     332
## 14096     333
## 14097     339
## 14098     344
## 14099     349
## 14100     350
## 14101     353
## 14102     355
## 14104     357
## 14105     362
## 14106     364
## 14107     366
## 14108     367
## 14110     370
## 14111     377
## 14113     413
## 14114     420
## 14115     426
## 14116     432
## 14117     434
## 14118     435
## 14119     440
## 14120     442
## 14121     454
## 14122     455
## 14124     466
## 14128     485
## 14130     500
## 14131     508
## 14132     509
## 14133     520
## 14135     529
## 14136     532
## 14137     539
## 14138     543
## 14139     551
## 14140     552
## 14143     587
## 14144     588
## 14147     592
## 14149     597
## 14150     606
## 14152     610
## 14154     736
## 14156     780
## 14158      11
## 14161      25
## 14164      62
## 14166     208
## 14168     265
## 14169     266
## 14172     342
## 14173     357
## 14174     364
## 14175     368
## 14179     515
## 14182     586
## 14183     587
## 14184     588
## 14186     592
## 14188     597
## 14189     648
## 14190     733
## 14193     902
## 14196     910
## 14198     914
## 14202    1073
## 14210    1240
## 14211    1242
## 14212    1246
## 14213    1247
## 14216    1270
## 14218    1291
## 14221    1380
## 14222    1387
## 14223    1393
## 14225    1580
## 14228    1682
## 14232    1784
## 14234    1923
## 14236    1968
## 14237    2011
## 14238    2081
## 14239    2100
## 14240    2115
## 14243    2291
## 14246    2355
## 14248    2406
## 14249    2470
## 14251    2657
## 14252    2716
## 14255    3072
## 14258    3176
## 14259    3255
## 14260    3256
## 14262    3408
## 14263    3471
## 14266    4014
## 14267    4022
## 14268    4027
## 14270    4085
## 14272    4306
## 14274    4886
## 14279    5299
## 14280    5377
## 14283    6377
## 14285    6863
## 14286    6942
## 14287    7147
## 14289    8360
## 14290    8636
## 14295   41569
## 14297   45722
## 14299   49272
## 14300   50872
## 14304   59615
## 14305   60069
## 14309   74789
## 14315   84304
## 14317      16
## 14319      69
## 14320     104
## 14322     111
## 14324     161
## 14325     208
## 14327     260
## 14328     292
## 14330     316
## 14332     344
## 14333     353
## 14335     367
## 14336     442
## 14337     480
## 14339     551
## 14342     733
## 14343     780
## 14345     923
## 14346    1049
## 14347    1089
## 14349    1172
## 14350    1193
## 14351    1198
## 14354    1233
## 14355    1246
## 14356    1252
## 14357    1265
## 14359    1393
## 14360    1552
## 14361    1580
## 14363    1617
## 14369    1726
## 14370    1777
## 14371    1784
## 14374    2012
## 14376    2115
## 14382    2628
## 14383    2692
## 14384    2706
## 14385    2710
## 14386    2762
## 14387    2795
## 14390    2916
## 14394    3175
## 14396    3243
## 14397    3409
## 14398    3441
## 14399    3450
## 14400    3471
## 14402    3593
## 14404    3948
## 14406    4011
## 14407    4014
## 14416    5218
## 14419    5445
## 14420    5464
## 14421    5502
## 14422    5679
## 14426    6016
## 14427    6365
## 14428    6373
## 14430    6378
## 14431    6539
## 14432    6552
## 14433    6711
## 14435    6870
## 14436    6874
## 14437    6934
## 14439    7254
## 14440    7361
## 14441    7438
## 14443    8360
## 14444    8464
## 14445    8636
## 14446    8644
## 14447    8645
## 14448    8781
## 14449    8784
## 14450    8798
## 14451    8873
## 14452    8874
## 14453    8949
## 14454    8961
## 14457   30793
## 14461   33794
## 14462   34162
## 14463   34405
## 14465   39292
## 14469   44195
## 14470   44204
## 14471   45722
## 14474   47099
## 14475   48394
## 14478   48780
## 14479   50068
## 14480   50872
## 14482   53996
## 14483   54272
## 14484   54503
## 14486   55820
## 14487   56174
## 14488   56367
## 14491   59315
## 14495   63082
## 14497   64620
## 14498   64622
## 14500   68358
## 14503   69481
## 14508   74458
## 14509   76251
## 14513       9
## 14522     174
## 14523     196
## 14533     328
## 14534     329
## 14535     332
## 14538     360
## 14544     519
## 14548     724
## 14553     879
## 14557    1037
## 14574    1322
## 14590    1644
## 14592    1655
## 14593    1690
## 14595    1762
## 14597    1917
## 14601    1972
## 14602    1973
## 14604    1975
## 14606    1983
## 14607    1984
## 14608    1985
## 14609    1988
## 14611    1995
## 14615    2013
## 14616    2026
## 14618    2069
## 14620    2105
## 14623    2113
## 14626    2120
## 14627    2121
## 14630    2149
## 14631    2160
## 14632    2163
## 14634    2188
## 14641    2369
## 14646    2421
## 14649    2445
## 14654    2462
## 14655    2465
## 14667    2641
## 14669    2672
## 14673    2701
## 14674    2702
## 14677    2713
## 14680    2722
## 14684    2789
## 14691    2888
## 14697    2976
## 14702    3017
## 14703    3018
## 14704    3024
## 14706    3051
## 14718    3269
## 14719    3273
## 14723    3391
## 14726    3441
## 14727    3448
## 14732    3535
## 14735    3623
## 14737    3693
## 14739    3709
## 14741    3764
## 14743    3826
## 14744    3840
## 14745    3843
## 14747    3877
## 14751    3961
## 14753    3994
## 14756    4018
## 14762    4124
## 14769    4222
## 14770    4266
## 14778    4516
## 14780    4560
## 14783    4636
## 14784    4639
## 14788    4697
## 14793    4949
## 14796    5049
## 14797    5080
## 14798    5103
## 14802    5303
## 14804    5309
## 14805    5342
## 14806    5343
## 14810    5449
## 14811      31
## 14813     318
## 14814     527
## 14816     628
## 14817     724
## 14832    1084
## 14837    1242
## 14844    1747
## 14846    2186
## 14848    2248
## 14849    2336
## 14850    2692
## 14851    2858
## 14854    3730
## 14860    5878
## 14861    6027
## 14873    8629
## 14880   44555
## 14882   48394
## 14886   56367
## 14887       1
## 14890     110
## 14891     223
## 14892     293
## 14895     356
## 14896     364
## 14897     480
## 14898     527
## 14900     588
## 14901     589
## 14902     593
## 14903     595
## 14904     597
## 14907     858
## 14909     904
## 14910     908
## 14911     912
## 14914    1036
## 14915    1084
## 14916    1088
## 14917    1089
## 14919    1193
## 14922    1198
## 14923    1200
## 14926    1204
## 14927    1207
## 14928    1208
## 14931    1213
## 14932    1219
## 14933    1221
## 14934    1228
## 14935    1240
## 14937    1265
## 14939    1270
## 14941    1291
## 14942    1387
## 14943    1527
## 14944    1580
## 14945    1721
## 14947    1884
## 14948    1997
## 14949    2000
## 14951    2028
## 14955    2542
## 14956    2571
## 14957    2716
## 14958    2797
## 14959    2918
## 14960    2959
## 14961    2997
## 14962    3033
## 14963    3253
## 14964    3421
## 14965    3471
## 14966    3527
## 14967    3552
## 14968    3578
## 14969    3868
## 14971    4226
## 14975    4979
## 14977    5902
## 14978    5903
## 14979    5952
## 14983    7153
## 14984    7361
## 14985    8376
## 14987    8784
## 14988    8949
## 14989    8950
## 14991   31658
## 14992   33004
## 14993   33679
## 14994   34437
## 14995   35836
## 14999   46970
## 15001   48394
## 15002   48516
## 15008   58559
## 15009   58998
## 15012   91529
## 15013   94959
## 15014  114662
## 15015       5
## 15016      39
## 15018     339
## 15020     357
## 15024     920
## 15036    2193
## 15039    2599
## 15043    2858
## 15044    3081
## 15050    5943
## 15051    6155
## 15052    6564
## 15059    7458
## 15068   55280
## 15071   68954
## 15073   71745
## 15074   79132
## 15079  106487
## 15083  148888
## 15084  149830
## 15087       2
## 15088      17
## 15089      28
## 15091      47
## 15093     105
## 15094     110
## 15095     154
## 15096     160
## 15097     170
## 15098     208
## 15099     296
## 15100     316
## 15104     367
## 15106     380
## 15107     455
## 15109     468
## 15111     497
## 15114     546
## 15115     588
## 15122     733
## 15123     736
## 15128     900
## 15129     902
## 15133     909
## 15139     924
## 15146    1014
## 15147    1016
## 15148    1017
## 15149    1019
## 15150    1022
## 15151    1025
## 15153    1029
## 15154    1032
## 15155    1035
## 15156    1083
## 15159    1183
## 15163    1219
## 15165    1247
## 15168    1282
## 15169    1284
## 15172    1334
## 15173    1358
## 15174    1393
## 15175    1580
## 15176    1586
## 15177    1589
## 15178    1591
## 15182    1676
## 15184    1732
## 15187    1777
## 15189    1920
## 15190    1937
## 15194    1949
## 15196    1951
## 15198    2006
## 15199    2015
## 15204    2085
## 15205    2094
## 15208    2106
## 15209    2126
## 15210    2132
## 15211    2135
## 15212    2136
## 15213    2160
## 15217    2393
## 15218    2396
## 15219    2424
## 15221    2436
## 15223    2529
## 15224    2539
## 15225    2565
## 15228    2687
## 15230    2761
## 15231    2801
## 15232    2836
## 15236    2959
## 15237    2966
## 15239    3125
## 15243    3174
## 15244    3186
## 15245    3298
## 15247    3578
## 15249    3783
## 15250    3897
## 15252    3911
## 15253    3948
## 15257    4019
## 15258    4022
## 15259    4027
## 15260    4033
## 15276       6
## 15277       7
## 15280      52
## 15281      62
## 15282      86
## 15283      88
## 15284      95
## 15285     135
## 15286     141
## 15288     648
## 15289     661
## 15290     708
## 15291     733
## 15292     736
## 15294     780
## 15295     786
## 15299     145
## 15300     163
## 15301     172
## 15302     196
## 15304     315
## 15306     370
## 15307     457
## 15308     520
## 15312     762
## 15313    1036
## 15318    1214
## 15319    1240
## 15325    1909
## 15326    2000
## 15330    2268
## 15331    2302
## 15334    2699
## 15335    2716
## 15336    2770
## 15339    3527
## 15360      37
## 15366      70
## 15368      94
## 15382     253
## 15384     261
## 15390     314
## 15391     318
## 15396     346
## 15399     382
## 15400     410
## 15404     457
## 15406     474
## 15409     506
## 15410     507
## 15411     508
## 15420     555
## 15425     590
## 15438     780
## 15439     799
## 15441     802
## 15481    1009
## 15491    1061
## 15502    1090
## 15503    1093
## 15527    1188
## 15541    1210
## 15568    1246
## 15586    1268
## 15587    1270
## 15606    1302
## 15608    1307
## 15609    1320
## 15611    1323
## 15614    1339
## 15617    1342
## 15619    1346
## 15624    1358
## 15628    1377
## 15632    1389
## 15633    1393
## 15645    1584
## 15646    1594
## 15647    1610
## 15650    1644
## 15656    1704
## 15666    1856
## 15668    1884
## 15669    1888
## 15670    1895
## 15671    1923
## 15692    1962
## 15702    1999
## 15703    2000
## 15704    2001
## 15705    2003
## 15712    2023
## 15713    2043
## 15731    2105
## 15732    2107
## 15734    2110
## 15735    2112
## 15737    2121
## 15744    2140
## 15745    2144
## 15746    2145
## 15747    2146
## 15752    2193
## 15759    2240
## 15760    2243
## 15770    2312
## 15773    2321
## 15777    2345
## 15779    2352
## 15784    2367
## 15788    2397
## 15789    2406
## 15790    2407
## 15791    2420
## 15792    2423
## 15794    2453
## 15796    2455
## 15798    2517
## 15802    2541
## 15803    2548
## 15805    2616
## 15812    2672
## 15815    2702
## 15816    2710
## 15819    2717
## 15840    2797
## 15847    2859
## 15848    2863
## 15851    2872
## 15854    2902
## 15875    2987
## 15885    3039
## 15886    3060
## 15892    3071
## 15901    3130
## 15904    3147
## 15908    3169
## 15909    3176
## 15910    3179
## 15921    3251
## 15922    3253
## 15924    3262
## 15928    3273
## 15929    3285
## 15930    3301
## 15932    3308
## 15933    3317
## 15934    3324
## 15935    3327
## 15937    3342
## 15939    3354
## 15942    3361
## 15946    3386
## 15948    3408
## 15951    3421
## 15957    3441
## 15958    3448
## 15965    3478
## 15968    3484
## 15973    3511
## 15976    3526
## 15977    3528
## 15979    3538
## 15990    3564
## 15991    3565
## 15995    3591
## 16015    3698
## 16019    3704
## 16020    3706
## 16021    3708
## 16028    3740
## 16035      71
## 16036     196
## 16038     393
## 16039     519
## 16041     589
## 16042     592
## 16046     736
## 16049     780
## 16051    1037
## 16052    1101
## 16053    1129
## 16057    1215
## 16059    1241
## 16060    1255
## 16062    1274
## 16063    1320
## 16064    1339
## 16065    1385
## 16066    1389
## 16068    1552
## 16069    1562
## 16070    1580
## 16071    1584
## 16072    1599
## 16073    1645
## 16074    1653
## 16076    1690
## 16077    1721
## 16078    1805
## 16079    2021
## 16082    2405
## 16083    2549
## 16085    2605
## 16086    2701
## 16088    2916
## 16090    2985
## 16093    3527
## 16095    3697
## 16097    3863
## 16098    4105
## 16107    5528
## 16108    5700
## 16114    6857
## 16116    6996
## 16121    7481
## 16123    8093
## 16125    8636
## 16135    1196
## 16136    1573
## 16137    2571
## 16141    5628
## 16144    6365
## 16148    7458
## 16149    8371
## 16152    8972
## 16153   27611
## 16155   42738
## 16160   53125
## 16162   57640
## 16168   65682
## 16171   71135
## 16180   82461
## 16184   88140
## 16189   94777
## 16191  106072
## 16195  112171
## 16201  129354
## 16202       6
## 16203      10
## 16204      11
## 16206      19
## 16207      21
## 16208      22
## 16211      36
## 16215      95
## 16216     104
## 16217     105
## 16218     110
## 16220     150
## 16221     151
## 16222     153
## 16224     165
## 16225     168
## 16226     173
## 16227     196
## 16229     208
## 16230     253
## 16231     260
## 16232     272
## 16233     288
## 16234     290
## 16235     292
## 16238     300
## 16239     305
## 16240     316
## 16241     318
## 16242     339
## 16243     344
## 16244     348
## 16245     349
## 16246     356
## 16248     364
## 16249     367
## 16250     368
## 16251     370
## 16252     377
## 16253     380
## 16254     381
## 16256     383
## 16257     410
## 16258     420
## 16259     427
## 16261     432
## 16262     434
## 16263     435
## 16264     440
## 16265     442
## 16266     454
## 16267     457
## 16268     458
## 16269     459
## 16270     468
## 16272     474
## 16273     480
## 16274     481
## 16275     497
## 16276     500
## 16277     508
## 16279     522
## 16281     539
## 16283     555
## 16284     586
## 16285     587
## 16286     589
## 16287     590
## 16290     597
## 16292     648
## 16294     688
## 16295     733
## 16296     736
## 16297     762
## 16299     780
## 16300     784
## 16302     788
## 16303     832
## 16304     852
## 16306     866
## 16307     912
## 16309     996
## 16310    1020
## 16311    1027
## 16314    1057
## 16316    1079
## 16317    1080
## 16318    1088
## 16322    1101
## 16324    1127
## 16325    1129
## 16326    1136
## 16328    1173
## 16330    1179
## 16332    1185
## 16334    1187
## 16336    1196
## 16339    1200
## 16342    1208
## 16343    1210
## 16346    1216
## 16347    1220
## 16350    1225
## 16351    1227
## 16353    1234
## 16356    1246
## 16361    1259
## 16364    1270
## 16365    1275
## 16366    1277
## 16368    1291
## 16369    1298
## 16371    1300
## 16374    1320
## 16375    1321
## 16376    1333
## 16377    1346
## 16378    1367
## 16379    1370
## 16381    1378
## 16382    1380
## 16384    1391
## 16385    1392
## 16386    1393
## 16387    1394
## 16388    1395
## 16389    1407
## 16390    1438
## 16392    1480
## 16393    1499
## 16395    1503
## 16396    1527
## 16397    1544
## 16398    1552
## 16399    1573
## 16401    1586
## 16403    1608
## 16404    1610
## 16408    1641
## 16410    1682
## 16411    1721
## 16412    1727
## 16416    1801
## 16417    1810
## 16419    1882
## 16420    1884
## 16423    1917
## 16425    1953
## 16427    1962
## 16429    1968
## 16431    2000
## 16432    2001
## 16433    2002
## 16434    2006
## 16435    2011
## 16437    2023
## 16438    2028
## 16439    2058
## 16440    2115
## 16441    2116
## 16442    2124
## 16443    2126
## 16445    2167
## 16447    2194
## 16450    2247
## 16451    2268
## 16454    2294
## 16456    2352
## 16457    2353
## 16458    2394
## 16459    2395
## 16460    2396
## 16461    2405
## 16462    2406
## 16463    2423
## 16464    2427
## 16465    2455
## 16466    2467
## 16467    2478
## 16469    2513
## 16470    2529
## 16471    2539
## 16474    2571
## 16476    2616
## 16477    2617
## 16478    2640
## 16479    2671
## 16480    2683
## 16481    2692
## 16482    2699
## 16483    2701
## 16484    2710
## 16485    2712
## 16487    2717
## 16488    2746
## 16489    2762
## 16490    2763
## 16491    2790
## 16492    2793
## 16493    2797
## 16494    2822
## 16496    2862
## 16497    2890
## 16501    2942
## 16502    2959
## 16504    2985
## 16505    2987
## 16508    3019
## 16511    3072
## 16512    3081
## 16513    3082
## 16515    3127
## 16516    3130
## 16517    3141
## 16518    3147
## 16519    3157
## 16520    3168
## 16521    3176
## 16522    3185
## 16523    3198
## 16525    3210
## 16526    3246
## 16527    3253
## 16528    3255
## 16529    3257
## 16530    3263
## 16531    3271
## 16532    3285
## 16533    3324
## 16534    3328
## 16535    3386
## 16536    3408
## 16537    3418
## 16540    3426
## 16541    3448
## 16542    3450
## 16546    3489
## 16549    3503
## 16550    3527
## 16551    3529
## 16552    3552
## 16553    3557
## 16555    3584
## 16557    3676
## 16561    3686
## 16562    3697
## 16564    3703
## 16565    3717
## 16567    3740
## 16568    3744
## 16569    3752
## 16570    3753
## 16571    3755
## 16572    3783
## 16573    3793
## 16575    3825
## 16576    3826
## 16577    3831
## 16578    3836
## 16580    3918
## 16581    3946
## 16582    3967
## 16583    3980
## 16584    3996
## 16585    4002
## 16586    4007
## 16588    4027
## 16590    4041
## 16592    4084
## 16593    4148
## 16594    4161
## 16595    4203
## 16598    4223
## 16600    4234
## 16603    4246
## 16605    4262
## 16606    4280
## 16607    4321
## 16609    4361
## 16610    4367
## 16612    4448
## 16613    4467
## 16615    4482
## 16616    4487
## 16617    4557
## 16618    4558
## 16619    4572
## 16620    4643
## 16621    4654
## 16622    4673
## 16624    4681
## 16625    4719
## 16627    4776
## 16628    4837
## 16629    4855
## 16630    4878
## 16631    4896
## 16632    4901
## 16633    4958
## 16634    4963
## 16635    4979
## 16637    4995
## 16638    5003
## 16639    5013
## 16643    5180
## 16645    5299
## 16646    5302
## 16647    5308
## 16648    5309
## 16649    5334
## 16650    5349
## 16653    5400
## 16655    5419
## 16656    5445
## 16659    5630
## 16660    5669
## 16662    5747
## 16663    5816
## 16664    5867
## 16665    5878
## 16666    5900
## 16667    5902
## 16669    5945
## 16671    5954
## 16673    5989
## 16675    6104
## 16677    6188
## 16678    6218
## 16679    6238
## 16680    6291
## 16681    6344
## 16682    6365
## 16683    6377
## 16684    6378
## 16685    6502
## 16686    6539
## 16687    6595
## 16690    6774
## 16691    6787
## 16692    6796
## 16694    6870
## 16698    6997
## 16699    7005
## 16700    7017
## 16702    7060
## 16703    7104
## 16705    7149
## 16707    7193
## 16708    7272
## 16710    7802
## 16711    7836
## 16712    8042
## 16713    8228
## 16715    8874
## 16719   34162
## 16721   41569
## 16724   48385
## 16725   48516
## 16726   51255
## 16728     551
## 16734    2052
## 16735    2145
## 16737    2279
## 16739    2672
## 16740    2762
## 16744    4040
## 16747    5296
## 16750    7161
## 16752    8360
## 16755    8961
## 16756   39408
## 16758   43919
## 16760   45431
## 16761   46976
## 16766   56367
## 16772     293
## 16775    2605
## 16776    2701
## 16777    2805
## 16779    3005
## 16780    3082
## 16781    3160
## 16782    3176
## 16783    3300
## 16784    3409
## 16785    3755
## 16786    3785
## 16787    4239
## 16788    4344
## 16789    4370
## 16790    4447
## 16791    4718
## 16792    4816
## 16794    5502
## 16799    6502
## 16803  115713
## 16805      34
## 16806      47
## 16807     110
## 16808     153
## 16809     161
## 16810     185
## 16812     225
## 16813     231
## 16814     253
## 16815     288
## 16816     296
## 16818     339
## 16819     344
## 16822     367
## 16824     380
## 16825     434
## 16826     454
## 16831     589
## 16832     590
## 16835      16
## 16839     442
## 16852    2683
## 16854    3793
## 16869      32
## 16870      34
## 16873      47
## 16874      79
## 16880     153
## 16881     160
## 16886     173
## 16900     249
## 16902     253
## 16906     266
## 16912     303
## 16915     318
## 16916     327
## 16920     345
## 16925     364
## 16935     415
## 16950     519
## 16953     532
## 16967     595
## 16972     736
## 16978       5
## 16979       7
## 16980      10
## 16982      18
## 16984      31
## 16985      32
## 16987      45
## 16990      81
## 16991      95
## 16992     105
## 16994     122
## 16995     141
## 16998     185
## 16999     216
## 17002     231
## 17003     253
## 17005     292
## 17007     300
## 17009     327
## 17011     344
## 17012     345
## 17013     353
## 17014     356
## 17015     364
## 17016     367
## 17018     372
## 17019     377
## 17022     454
## 17024     480
## 17026     508
## 17028     539
## 17029     541
## 17030     542
## 17031     551
## 17032     552
## 17033     586
## 17034     587
## 17035     588
## 17039     595
## 17040     597
## 17042     647
## 17043     648
## 17045     733
## 17047     783
## 17049     802
## 17051     851
## 17052     852
## 17058    1047
## 17060    1080
## 17061    1088
## 17064    1104
## 17067    1183
## 17074    1234
## 17076    1265
## 17080    1307
## 17081    1333
## 17082    1391
## 17083    1393
## 17087    1527
## 17088    1541
## 17089    1544
## 17091    1584
## 17092    1593
## 17093    1608
## 17097    1648
## 17098    1653
## 17100    1682
## 17103    1721
## 17104    1747
## 17105    1760
## 17107    1784
## 17109    1799
## 17110    1804
## 17111    1863
## 17112    1888
## 17113    1912
## 17114    1917
## 17115    1921
## 17116    1923
## 17117    1943
## 17118    1961
## 17121    2014
## 17123    2046
## 17124    2059
## 17125    2081
## 17127    2106
## 17128    2115
## 17129    2125
## 17131    2134
## 17132    2153
## 17135    2252
## 17136    2321
## 17139    2380
## 17140    2395
## 17142    2432
## 17143    2447
## 17144    2470
## 17148    2558
## 17152    2594
## 17155    2605
## 17156    2616
## 17157    2628
## 17159    2671
## 17160    2683
## 17162    2706
## 17163    2712
## 17165    2723
## 17166    2770
## 17171    2877
## 17172    2890
## 17175    2953
## 17177    2997
## 17178    3004
## 17184    3114
## 17185    3160
## 17186    3173
## 17187    3210
## 17188    3247
## 17189    3252
## 17193    3257
## 17194    3261
## 17196    3273
## 17197    3298
## 17198    3317
## 17201    3418
## 17203    3448
## 17205    3481
## 17206    3526
## 17207    3534
## 17208    3578
## 17209    3608
## 17210    3698
## 17211    3712
## 17212    3753
## 17215    3825
## 17216    3835
## 17217    3852
## 17219    3893
## 17220    3897
## 17221    3911
## 17224    3967
## 17225    3968
## 17226    3994
## 17229    4017
## 17232    4052
## 17233    4121
## 17234    4130
## 17235    4132
## 17240    4228
## 17243    4299
## 17244    4304
## 17246    4310
## 17247    4321
## 17249    4344
## 17250    4351
## 17252    4367
## 17254    4545
## 17258    4700
## 17259    4734
## 17260    4757
## 17261    4776
## 17263    4823
## 17264    4844
## 17266    4954
## 17269    4975
## 17271    4980
## 17272    4992
## 17276    5255
## 17277    5283
## 17278    5308
## 17281    5418
## 17282    5438
## 17283    5481
## 17289    5816
## 17290    5829
## 17291    5902
## 17293    5957
## 17294    5961
## 17295    5991
## 17299    6377
## 17303    6537
## 17304    6638
## 17305    6744
## 17307    6850
## 17310    7101
## 17312    7255
## 17318    8709
## 17321       6
## 17322      18
## 17323      32
## 17326      95
## 17330     648
## 17333     736
## 17341       4
## 17346      10
## 17369     153
## 17371     165
## 17374     253
## 17375     267
## 17376     288
## 17389     592
## 17390     593
## 17395      45
## 17396     160
## 17399     342
## 17400     466
## 17403     543
## 17405     784
## 17407    1089
## 17415    1500
## 17416    1639
## 17419    1923
## 17420    2001
## 17429    3751
## 17430    3897
## 17434     153
## 17441     367
## 17442     434
## 17443     480
## 17444     593
## 17449    2858
## 17450    2890
## 17451    2959
## 17458     215
## 17462     527
## 17465    1185
## 17466    1188
## 17467    1235
## 17470    1347
## 17473    1831
## 17475    1957
## 17477    1961
## 17480    2686
## 17481    2719
## 17483    2840
## 17484    3107
## 17486    3363
## 17487    3504
## 17496   43396
## 17503   64614
## 17504   64716
## 17519     247
## 17531     597
## 17533     674
## 17547     965
## 17550    1086
## 17553    1129
## 17558    1210
## 17573    1269
## 17579    1371
## 17582    1376
## 17584    1407
## 17585    1527
## 17592    1653
## 17594    1683
## 17595    1690
## 17597    1748
## 17607    2012
## 17608    2021
## 17610    2034
## 17615    2117
## 17616    2118
## 17617    2139
## 17618    2160
## 17629    2346
## 17633    2393
## 17635    2435
## 17636    2450
## 17638    2528
## 17640    2533
## 17641    2571
## 17642    2613
## 17643    2628
## 17645    2641
## 17646    2668
## 17648    2722
## 17658    3033
## 17678    3717
## 17680    3725
## 17683    3732
## 17684    3734
## 17686    3738
## 17687    3740
## 17690    3760
## 17695    3806
## 17696    3810
## 17699    3814
## 17701    6184
## 17702       1
## 17703       2
## 17705      16
## 17707      24
## 17709      29
## 17711      36
## 17715      60
## 17718      78
## 17719      95
## 17720     101
## 17723     112
## 17726     151
## 17727     153
## 17728     160
## 17731     168
## 17732     173
## 17733     180
## 17734     196
## 17735     203
## 17736     208
## 17738     227
## 17740     253
## 17746     292
## 17748     316
## 17750     329
## 17752     353
## 17753     356
## 17754     364
## 17755     368
## 17756     370
## 17758     377
## 17761     435
## 17762     443
## 17763     454
## 17764     457
## 17767     482
## 17770     531
## 17775     553
## 17776     585
## 17788     611
## 17789     648
## 17790     653
## 17791     661
## 17793     688
## 17794     707
## 17798     736
## 17802     780
## 17807     849
## 17809     870
## 17810     880
## 17811     881
## 17827     968
## 17830     996
## 17831    1009
## 17832    1027
## 17833    1028
## 17834    1034
## 17837    1037
## 17838    1042
## 17839    1049
## 17840    1059
## 17843    1073
## 17854    1112
## 17855    1127
## 17860    1179
## 17861    1183
## 17862    1192
## 17877    1214
## 17887    1237
## 17899    1265
## 17913    1291
## 17921    1320
## 17926    1342
## 17928    1347
## 17929    1350
## 17930    1356
## 17933    1372
## 17934    1374
## 17935    1375
## 17936    1376
## 17937    1377
## 17938    1378
## 17941    1388
## 17943    1391
## 17948    1485
## 17949    1499
## 17952    1517
## 17953    1518
## 17955    1544
## 17956    1552
## 17957    1554
## 17958    1556
## 17959    1562
## 17961    1569
## 17962    1573
## 17964    1584
## 17965    1586
## 17966    1587
## 17967    1588
## 17968    1589
## 17969    1591
## 17971    1603
## 17972    1606
## 17973    1608
## 17976    1613
## 17978    1619
## 17982    1641
## 17983    1646
## 17985    1663
## 17986    1670
## 17988    1676
## 17989    1678
## 17990    1682
## 17991    1687
## 17992    1689
## 17993    1690
## 17994    1694
## 17995    1702
## 17998    1713
## 17999    1721
## 18000    1727
## 18001    1729
## 18005    1754
## 18006    1762
## 18007    1769
## 18008    1772
## 18009    1777
## 18010    1779
## 18013    1792
## 18014    1799
## 18015    1801
## 18016    1804
## 18019    1827
## 18020    1831
## 18021    1833
## 18022    1834
## 18023    1848
## 18024    1852
## 18025    1862
## 18026    1866
## 18027    1876
## 18028    1882
## 18030    1884
## 18032    1894
## 18033    1911
## 18035    1917
## 18037    1920
## 18040    1924
## 18046    1954
## 18047    1955
## 18055    1967
## 18059    1999
## 18061    2001
## 18062    2002
## 18063    2005
## 18066    2011
## 18067    2012
## 18068    2013
## 18070    2021
## 18072    2053
## 18073    2054
## 18080    2080
## 18083    2094
## 18085    2100
## 18088    2105
## 18091    2111
## 18093    2115
## 18094    2118
## 18095    2120
## 18096    2124
## 18098    2136
## 18099    2138
## 18100    2140
## 18101    2143
## 18102    2155
## 18104    2161
## 18105    2167
## 18110    2240
## 18112    2253
## 18113    2263
## 18116    2279
## 18120    2297
## 18121    2302
## 18123    2306
## 18124    2312
## 18131    2338
## 18132    2340
## 18133    2346
## 18135    2353
## 18136    2355
## 18139    2365
## 18141    2369
## 18142    2371
## 18143    2373
## 18145    2391
## 18147    2404
## 18148    2406
## 18150    2411
## 18151    2412
## 18152    2414
## 18153    2420
## 18154    2421
## 18155    2422
## 18156    2425
## 18158    2454
## 18159    2455
## 18163    2478
## 18164    2498
## 18166    2524
## 18167    2527
## 18169    2539
## 18170    2542
## 18172    2574
## 18173    2587
## 18174    2590
## 18175    2600
## 18176    2616
## 18177    2617
## 18178    2622
## 18179    2628
## 18185    2672
## 18187    2688
## 18188    2700
## 18189    2701
## 18190    2707
## 18191    2710
## 18192    2713
## 18194    2719
## 18196    2734
## 18201    2769
## 18202    2770
## 18203    2779
## 18205    2797
## 18207    2826
## 18208    2828
## 18211    2863
## 18213    2872
## 18220    2921
## 18229    2985
## 18234    3032
## 18237    3039
## 18242    3099
## 18243    3100
## 18244    3107
## 18246    3113
## 18248    3127
## 18249    3129
## 18252    3159
## 18253    3160
## 18256    3175
## 18263    3250
## 18265    3253
## 18266    3255
## 18267    3263
## 18271    3324
## 18274    3354
## 18275    3355
## 18276    3360
## 18278    3379
## 18279    3388
## 18282    3409
## 18287    3438
## 18288    3441
## 18290    3450
## 18291    3457
## 18298    3489
## 18299    3490
## 18303    3535
## 18305    3563
## 18308    3701
## 18313    3827
## 18314    3841
## 18316    3869
## 18317    3889
## 18318    3893
## 18319    3895
## 18323    3928
## 18326    3946
## 18329    3977
## 18331    3986
## 18332    4018
## 18333    4106
## 18334    4139
## 18343       1
## 18344      32
## 18345      36
## 18346      47
## 18349     185
## 18350     198
## 18351     231
## 18352     292
## 18353     296
## 18355     364
## 18356     377
## 18357     380
## 18358     454
## 18359     457
## 18360     480
## 18361     500
## 18362     539
## 18363     587
## 18365     592
## 18367     597
## 18368     608
## 18369     648
## 18370     733
## 18371     736
## 18372     780
## 18373     903
## 18376    1097
## 18377    1198
## 18378    1214
## 18382    1302
## 18383    1307
## 18384    1343
## 18387    1388
## 18388    1389
## 18389    1391
## 18390    1393
## 18391    1476
## 18392    1517
## 18393    1552
## 18394    1573
## 18396    1597
## 18397    1608
## 18400    1721
## 18401    1748
## 18402    1777
## 18406    1994
## 18407    1997
## 18408    2000
## 18409    2003
## 18410    2009
## 18411    2013
## 18416    2321
## 18417    2371
## 18420    2407
## 18422    2470
## 18423    2474
## 18426    2640
## 18427    2699
## 18431    2795
## 18433    2858
## 18437    2959
## 18438    2987
## 18439    2997
## 18440    3039
## 18441    3098
## 18443    3102
## 18445    3253
## 18446    3360
## 18447    3363
## 18449    3448
## 18450    3481
## 18453    3635
## 18454    3671
## 18455    3793
## 18456    4002
## 18457    4007
## 18458    4022
## 18460    4102
## 18461    4220
## 18463    4306
## 18466    4973
## 18467    5049
## 18468    5250
## 18472    5693
## 18473    6188
## 18475    6787
## 18476    6874
## 18479   32587
## 18480   48385
## 18483      10
## 18491     105
## 18493     112
## 18494     125
## 18496     153
## 18499     165
## 18501     186
## 18509     253
## 18510     256
## 18521     316
## 18524     339
## 18526     348
## 18533     435
## 18536     454
## 18546     539
## 18548     553
## 18549     585
## 18550     587
## 18557     597
## 18558     610
## 18561       1
## 18562      10
## 18563      17
## 18564      28
## 18566     150
## 18567     153
## 18568     161
## 18569     165
## 18570     185
## 18571     208
## 18572     231
## 18573     253
## 18574     261
## 18575     265
## 18577     292
## 18578     296
## 18579     300
## 18582     329
## 18583     339
## 18584     342
## 18585     344
## 18586     349
## 18587     356
## 18588     380
## 18589     434
## 18590     468
## 18592     527
## 18595     588
## 18596     590
## 18597     592
## 18598     595
## 18599     613
## 18600     668
## 18605     968
## 18609    2369
## 18610    2378
## 18613    2672
## 18614    2699
## 18615    2702
## 18616    2707
## 18617    2710
## 18621    2995
## 18626    3273
## 18628    3578
## 18630    3857
## 18635       2
## 18637      47
## 18639     266
## 18641     296
## 18642     318
## 18646     541
## 18648     593
## 18649     786
## 18655    1222
## 18661    1961
## 18662    2000
## 18667    2683
## 18672    3066
## 18676    3793
## 18677    3996
## 18678    4011
## 18685    4995
## 18686    5218
## 18687    5418
## 18688    5445
## 18689    5679
## 18690    5782
## 18692    5989
## 18693    6323
## 18696    6874
## 18697    6942
## 18698    7090
## 18701    7360
## 18702    7438
## 18706    8665
## 18707    8798
## 18708    8874
## 18709    8957
## 18711   30707
## 18713   33166
## 18714   33493
## 18715   34405
## 18716   37475
## 18726     208
## 18736     367
## 18738     457
## 18747     597
## 18751     780
## 18759     920
## 18762    1035
## 18777    1220
## 18782    1242
## 18796    1653
## 18801    1729
## 18803    1777
## 18807    1917
## 18810    2011
## 18811    2012
## 18814    2355
## 18820    2628
## 18822    2706
## 18832    2987
## 18833    3033
## 18836    3246
## 18842    3717
## 18843    3751
## 18844    3755
## 18846    3948
## 18847    3994
## 18848    4002
## 18849    4018
## 18850    4022
## 18852    4025
## 18857    4367
## 18861    5266
## 18864    5378
## 18865    5459
## 18866    5481
## 18868    5952
## 18872    6539
## 18873    6708
## 18875    6863
## 18878    6947
## 18880    6979
## 18884    8360
## 18887    8798
## 18892   30793
## 18895   33493
## 18896   33679
## 18903   45447
## 18904   45722
## 18907   47610
## 18917   57669
## 18924   66659
## 18926   68319
## 18930       2
## 18931      10
## 18932      34
## 18933      39
## 18934      48
## 18936      95
## 18939     160
## 18941     185
## 18942     186
## 18943     207
## 18944     208
## 18947     252
## 18948     256
## 18950     316
## 18951     317
## 18953     329
## 18956     350
## 18958     357
## 18959     362
## 18966     421
## 18967     435
## 18969     454
## 18970     455
## 18973     468
## 18980     531
## 18985     590
## 18988     594
## 18991     616
## 18992     736
## 18999     350
## 19004     381
## 19005     420
## 19007     480
## 19016       3
## 19017       4
## 19020      25
## 19025      60
## 19029      93
## 19031     111
## 19034     153
## 19039     217
## 19040     225
## 19041     239
## 19042     253
## 19044     258
## 19046     273
## 19047     276
## 19057     367
## 19066     517
## 19069     552
## 19070     558
## 19080     724
## 19084     782
## 19088     891
## 19099    1064
## 19102    1100
## 19103    1183
## 19104    1197
## 19106    1215
## 19107    1265
## 19108    1282
## 19109    1320
## 19112    1391
## 19116    1457
## 19120    1499
## 19123    1541
## 19124    1544
## 19131    1608
## 19134    1617
## 19135    1644
## 19136    1645
## 19137    1667
## 19139    1687
## 19141    1717
## 19143    1760
## 19145    1866
## 19146    1876
## 19147    1889
## 19152    2006
## 19154    2028
## 19166    2142
## 19169    2279
## 19175    2385
## 19176    2389
## 19179    2490
## 19181    2548
## 19184    2581
## 19192    2688
## 19194    2710
## 19195    2719
## 19196    2722
## 19204    2906
## 19205    2978
## 19206    3005
## 19211    3159
## 19212    3176
## 19214    3185
## 19215    3285
## 19216    3298
## 19217    3299
## 19218    3400
## 19223    3535
## 19226    3555
## 19227    3556
## 19230    3615
## 19231    3675
## 19232    3709
## 19238    3824
## 19240    3897
## 19241    3908
## 19242    3953
## 19243    3977
## 19249    4016
## 19258    4148
## 19262    4246
## 19268    4367
## 19270    4372
## 19271    4388
## 19273    4639
## 19276    4727
## 19277    4745
## 19278    4756
## 19282    4865
## 19288    4903
## 19292    4977
## 19293    4979
## 19296    5010
## 19297    5013
## 19306    5296
## 19309    5349
## 19311    5388
## 19321    5677
## 19323    5693
## 19325    5816
## 19326    5829
## 19327    5872
## 19329    5954
## 19336    6316
## 19337      39
## 19339     736
## 19340    1027
## 19341    1245
## 19343    2163
## 19345    3593
## 19348    3616
## 19349    3617
## 19350    3618
## 19352    3624
## 19353    3691
## 19354    3717
## 19355    3744
## 19356    3745
## 19358    3752
## 19361    3785
## 19362    3793
## 19363       1
## 19364      10
## 19365      19
## 19366      21
## 19367      34
## 19369      48
## 19370      50
## 19371     104
## 19372     110
## 19373     141
## 19375     153
## 19376     165
## 19377     173
## 19378     193
## 19379     216
## 19380     223
## 19381     231
## 19382     235
## 19385     266
## 19386     272
## 19387     288
## 19389     300
## 19390     303
## 19391     315
## 19392     316
## 19393     318
## 19394     333
## 19396     339
## 19397     349
## 19398     353
## 19399     356
## 19400     364
## 19401     367
## 19402     368
## 19403     377
## 19404     380
## 19405     410
## 19406     423
## 19407     442
## 19408     454
## 19410     475
## 19411     480
## 19413     500
## 19414     508
## 19417     543
## 19418     551
## 19420     589
## 19422     592
## 19423     593
## 19425     595
## 19427     597
## 19428     608
## 19429     610
## 19430     648
## 19431     661
## 19432     674
## 19434     736
## 19436     750
## 19437     780
## 19438     785
## 19441     908
## 19442     914
## 19443     919
## 19450    1042
## 19452    1079
## 19453    1080
## 19456    1092
## 19457    1097
## 19458    1101
## 19459    1127
## 19463    1193
## 19467    1199
## 19471    1206
## 19474    1213
## 19476    1215
## 19478    1222
## 19481    1225
## 19483    1243
## 19485    1247
## 19488    1259
## 19494    1275
## 19495    1276
## 19502    1302
## 19504    1307
## 19505    1333
## 19506    1339
## 19507    1357
## 19508    1370
## 19509    1371
## 19510    1372
## 19512    1375
## 19513    1377
## 19514    1378
## 19515    1380
## 19516    1387
## 19517    1391
## 19518    1393
## 19519    1396
## 19522    1466
## 19523    1485
## 19526    1544
## 19527    1562
## 19528    1566
## 19530    1610
## 19531    1617
## 19532    1625
## 19533    1641
## 19534    1674
## 19535    1676
## 19536    1682
## 19537    1704
## 19538    1721
## 19539    1722
## 19540    1729
## 19542    1747
## 19544    1777
## 19545    1884
## 19546    1909
## 19549    1961
## 19551    1997
## 19552    2000
## 19553    2001
## 19554    2003
## 19556    2006
## 19557    2011
## 19558    2012
## 19559    2021
## 19560    2023
## 19562    2054
## 19563    2078
## 19564    2081
## 19567    2100
## 19570    2115
## 19571    2117
## 19572    2124
## 19574    2140
## 19576    2151
## 19577    2161
## 19578    2174
## 19580    2268
## 19581    2291
## 19582    2294
## 19583    2302
## 19585    2355
## 19587    2396
## 19589    2407
## 19590    2409
## 19591    2411
## 19592    2421
## 19593    2455
## 19595    2470
## 19597    2513
## 19600    2628
## 19601    2640
## 19602    2642
## 19603    2657
## 19604    2699
## 19608    2761
## 19609    2763
## 19610    2788
## 19611    2791
## 19612    2792
## 19613    2795
## 19614    2797
## 19615    2804
## 19616    2858
## 19618    2915
## 19619    2916
## 19621    2942
## 19622    2947
## 19624    2949
## 19625    2950
## 19630    2987
## 19631    2991
## 19632    2993
## 19633    2997
## 19634    3033
## 19636    3039
## 19638    3087
## 19639    3088
## 19640    3098
## 19641    3100
## 19642    3101
## 19643    3107
## 19644    3108
## 19646    3173
## 19647    3175
## 19648    3247
## 19649    3253
## 19650    3256
## 19651    3360
## 19653    3441
## 19654    3448
## 19655    3481
## 19657    3578
## 19659    3623
## 19660    3671
## 19663    3740
## 19664    3755
## 19666    3897
## 19667    3911
## 19668    3967
## 19671    4022
## 19676    4262
## 19677    4306
## 19678    4369
## 19680    4545
## 19682    4623
## 19683    4643
## 19686    4886
## 19688    4963
## 19689    4971
## 19690    4980
## 19692    4995
## 19693    5014
## 19694    5016
## 19695    5049
## 19696    5299
## 19699    5418
## 19700    5445
## 19702    5782
## 19708    6365
## 19709    6377
## 19710    6378
## 19711    6440
## 19713    6664
## 19717    6807
## 19718    6934
## 19719    6947
## 19722    7247
## 19723    7373
## 19727    8580
## 19728    8636
## 19729    8644
## 19730    8665
## 19731    8879
## 19735   33794
## 19736   40959
## 19740     355
## 19745    1233
## 19753    2420
## 19755    2683
## 19756    2688
## 19757    2692
## 19758    2700
## 19759    2706
## 19762    2763
## 19765    3253
## 19768    3824
## 19769    3852
## 19772    3977
## 19773    3979
## 19774    3988
## 19775    3991
## 19777    4025
## 19778    4031
## 19781    4310
## 19783     153
## 19786     364
## 19787     377
## 19788     590
## 19789     593
## 19790     595
## 19792    1270
## 19794    2028
## 19799    2571
## 19807    3744
## 19809    4306
## 19811    4873
## 19834   27255
## 19836   27904
## 19847   48744
## 19857   57792
## 19858   60069
## 19864   67267
## 19874   79132
## 19876      47
## 19877     110
## 19878     111
## 19879     215
## 19880     247
## 19882     318
## 19883     356
## 19884     551
## 19885     593
## 19886     595
## 19887     745
## 19888     912
## 19889     919
## 19890    1028
## 19891    1080
## 19892    1088
## 19893    1148
## 19895    1193
## 19896    1198
## 19898    1222
## 19899    1235
## 19900    1247
## 19902    1265
## 19903    1270
## 19904    1271
## 19905    1302
## 19906    1354
## 19907    1357
## 19908    1527
## 19909    1653
## 19911    1732
## 19912    1784
## 19913    1884
## 19914    1968
## 19915    2005
## 19917    2087
## 19918    2090
## 19919    2096
## 19920    2297
## 19922    2329
## 19923    2692
## 19924    2739
## 19925    2762
## 19926    2918
## 19927    2920
## 19928    2959
## 19929    3317
## 19930    3897
## 19931    3949
## 19932    3977
## 19934    4973
## 19936    4993
## 19937    5218
## 19938    5464
## 19939    5608
## 19941    5992
## 19942    6218
## 19943    6724
## 19944    6874
## 19945    6953
## 19946    7034
## 19947    7042
## 19948    7147
## 19949    7254
## 19950    7323
## 19953    8464
## 19954    8533
## 19955    8638
## 19957   27178
## 19958   27721
## 19959   30707
## 19960   30810
## 19962   36535
## 19963   39183
## 19964   40629
## 19966   40819
## 19967   40870
## 19968   41566
## 19969   43376
## 19970   45722
## 19971   46578
## 19972   46723
## 19973   47099
## 19974   47423
## 19975   48082
## 19976   48394
## 19977   53123
## 19979   55247
## 19981   55442
## 19982   55444
## 19984   56587
## 19987   60069
## 19988   60950
## 19990   63876
## 19991   64614
## 19992   64701
## 19994   64957
## 19999   71899
## 20000   72011
## 20001   72395
## 20004   73321
## 20005   79132
## 20008   81591
## 20010   82459
## 20011   85438
## 20012   85612
## 20013   86880
## 20014   86882
## 20016   88810
## 20017   89492
## 20018   89864
## 20019   90866
## 20020   91500
## 20021   91653
## 20022   92259
## 20024   95510
## 20025   96821
## 20026   97304
## 20027   97921
## 20029   98056
## 20031   99114
## 20032  100383
## 20034  102792
## 20037  103279
## 20038  103372
## 20039  104374
## 20040  104841
## 20041  104879
## 20045  106782
## 20046  106916
## 20048  107141
## 20050  109374
## 20051  110730
## 20052  112290
## 20053  116939
## 20054       1
## 20056       5
## 20059      19
## 20063      39
## 20065     110
## 20067     145
## 20068     153
## 20070     196
## 20071     223
## 20072     231
## 20074     260
## 20080     317
## 20085     344
## 20088     364
## 20089     367
## 20090     377
## 20094     485
## 20095     494
## 20097     539
## 20100     552
## 20101     586
## 20102     587
## 20103     588
## 20107     595
## 20108     597
## 20115     910
## 20117     950
## 20118    1036
## 20123    1094
## 20125    1101
## 20136    1208
## 20142    1222
## 20143    1233
## 20145    1242
## 20146    1246
## 20152    1261
## 20153    1265
## 20155    1275
## 20159    1307
## 20166    1380
## 20173    1573
## 20175    1584
## 20181    1721
## 20183    1917
## 20191    2001
## 20194    2011
## 20195    2012
## 20196    2054
## 20197    2072
## 20198    2100
## 20205    2288
## 20210    2355
## 20211    2492
## 20216    2572
## 20219    2617
## 20229    2797
## 20242    3095
## 20244    3114
## 20254    3578
## 20260    3751
## 20263    3948
## 20264    3977
## 20277    4886
## 20282    4993
## 20291    5952
## 20296    6377
## 20298    6383
## 20300    6539
## 20305    7104
## 20306    7153
## 20308    7444
## 20309    8169
## 20315    8961
## 20316   27751
## 20318   33794
## 20331   56757
## 20333   58559
## 20337   60069
## 20339   66934
## 20340   68135
## 20351   78499
## 20356   91529
## 20360   94959
## 20362   96610
## 20363   97757
## 20365      10
## 20367      20
## 20368      21
## 20369      27
## 20370      65
## 20371     102
## 20372     104
## 20374     135
## 20375     209
## 20376     637
## 20377     662
## 20378     736
## 20379     737
## 20380     747
## 20381     754
## 20382     762
## 20384     818
## 20385     849
## 20386    1103
## 20392     500
## 20393     586
## 20397     912
## 20401    1210
## 20402    1265
## 20404    1968
## 20405    2014
## 20406    2135
## 20409    2422
## 20411    2797
## 20412    2926
## 20414    3461
## 20415    3552
## 20418    3991
## 20421    4886
## 20428    6535
## 20430    6663
## 20431    6794
## 20433    8636
## 20435   34332
## 20440      60
## 20447     531
## 20452     594
## 20458     919
## 20460     986
## 20463    1073
## 20464    1077
## 20468    1200
## 20470    1214
## 20472    1244
## 20476    1282
## 20479    1292
## 20481    1537
## 20485    1784
## 20486    1848
## 20487    1976
## 20492    2021
## 20493    2043
## 20494    2054
## 20496    2094
## 20498    2135
## 20499    2161
## 20500    2174
## 20501    2279
## 20503    2522
## 20508    2791
## 20510    2858
## 20512    2987
## 20514    3156
## 20517       1
## 20523     480
## 20525     780
## 20533    1221
## 20536    1584
## 20537    2028
## 20538    2329
## 20539    2571
## 20541    3578
## 20542    3793
## 20544    4306
## 20545    4886
## 20546    4993
## 20548    5349
## 20549    5388
## 20550    5816
## 20551    5952
## 20553    6016
## 20554    6333
## 20555    6377
## 20556    6539
## 20557    7153
## 20559    8360
## 20560    8368
## 20561    8636
## 20562    8961
## 20564   44555
## 20567   55247
## 20569   59315
## 20573   80463
## 20575   81845
## 20576   86880
## 20577   86911
## 20578   88810
## 20579   89904
## 20580   90866
## 20582   95510
## 20583   97938
## 20585  103249
## 20586  104841
## 20587  105844
## 20588  106100
## 20590  109374
## 20592  112552
## 20595  122882
## 20596  122900
## 20597  134170
## 20598     110
## 20599     318
## 20604     589
## 20605     785
## 20606     852
## 20607    1011
## 20610    1206
## 20613    1242
## 20617    1461
## 20619    1580
## 20621    1653
## 20623    1917
## 20624    1958
## 20626    1968
## 20628    2100
## 20629    2174
## 20631    2302
## 20633    2395
## 20634    2529
## 20636    2712
## 20637    2791
## 20640    2918
## 20647    3702
## 20648    3994
## 20649    4149
## 20651    4247
## 20652    4290
## 20653    4394
## 20654    4532
## 20655    4929
## 20657    5054
## 20659    5349
## 20660    5360
## 20667      60
## 20668     216
## 20669     256
## 20670     267
## 20672     342
## 20675     552
## 20678    1197
## 20680    1513
## 20682    2329
## 20684    2565
## 20685    3247
## 20686    3564
## 20692    5445
## 20693    5618
## 20694    5816
## 20696    6218
## 20698    6942
## 20701   57504
## 20702   72641
## 20703   74458
## 20704   81845
## 20705   81847
## 20706   88125
## 20707   97895
## 20708  103801
## 20714     356
## 20716     648
## 20717    1061
## 20718    1210
## 20719    1544
## 20721    1876
## 20723    2427
## 20725    2628
## 20726    2724
## 20727    2881
## 20729    3185
## 20731    3354
## 20732    3513
## 20733    3623
## 20735    3755
## 20736    3793
## 20738    4022
## 20742    4638
## 20744     150
## 20745     260
## 20746     296
## 20747     344
## 20748     356
## 20750     904
## 20751     909
## 20753    1097
## 20754    1136
## 20755    1196
## 20758    1327
## 20759    1379
## 20761    1499
## 20762    1984
## 20763    2011
## 20764    2012
## 20765    2028
## 20766    2133
## 20767    2262
## 20768    2378
## 20769    2522
## 20770    2699
## 20771    2791
## 20772    2846
## 20773    2971
## 20777    3250
## 20779    3363
## 20780    3421
## 20781    3471
## 20782    3524
## 20783    3534
## 20784    3543
## 20785    4238
## 20786    4291
## 20787    4465
## 20788    4564
## 20789    4673
## 20790    4677
## 20791    4679
## 20792    4686
## 20793    4709
## 20794    4714
## 20795    4720
## 20796    4744
## 20797    4784
## 20799    4803
## 20801    4830
## 20802    4834
## 20803    4835
## 20806     160
## 20807     173
## 20808     225
## 20811     353
## 20813     370
## 20814     432
## 20815     480
## 20816     522
## 20817     527
## 20820     832
## 20826    1245
## 20828    1252
## 20830    1288
## 20833    1380
## 20834    1449
## 20835    1653
## 20839    2011
## 20840    2054
## 20844    2599
## 20846    2908
## 20848    3019
## 20849    3949
## 20851    4034
## 20853    4262
## 20855    4848
## 20857    4886
## 20862    5445
## 20876   33794
## 20877   34437
## 20880   45499
## 20882      21
## 20884      39
## 20886     150
## 20887     153
## 20889     185
## 20891     253
## 20893     282
## 20894     288
## 20895     292
## 20897     315
## 20898     316
## 20899     329
## 20901     344
## 20903     356
## 20906     380
## 20907     410
## 20908     420
## 20909     432
## 20910     434
## 20914     500
## 20916     553
## 20917     588
## 20920     592
## 20927     150
## 20932     208
## 20935     253
## 20937     296
## 20938     300
## 20941     329
## 20962     153
## 20963     165
## 20966     344
## 20969     377
## 20970     380
## 20971     435
## 20974     494
## 20976     524
## 20977     543
## 20982     736
## 20983     780
## 20984    1097
## 20990    1569
## 20991    1580
## 20992    1721
## 20993    1831
## 20994    2006
## 20996    2302
## 20997    2478
## 20998    2628
## 21001    2762
## 21003    2881
## 21004    2959
## 21005    3105
## 21006    3247
## 21010    4886
## 21012    5378
## 21014    6711
## 21015    6874
## 21016    7438
## 21017    8360
## 21019   33493
## 21020   33794
## 21023   49272
## 21024   51662
## 21025   56367
## 21027   59315
## 21028   59945
## 21030   66915
## 21032   71460
## 21035     207
## 21037     381
## 21042    1199
## 21044    1556
## 21046    1665
## 21052    2686
## 21058    3396
## 21059    3825
## 21066   35836
## 21071      29
## 21076     145
## 21077     172
## 21078     185
## 21083     492
## 21084     585
## 21086     589
## 21087     590
## 21090     780
## 21096     934
## 21097     950
## 21100    1037
## 21108    1249
## 21110    1258
## 21111    1261
## 21117    1391
## 21121    1544
## 21123    1584
## 21128    1676
## 21129    1690
## 21132    1779
## 21133    1909
## 21137    2053
## 21147    2628
## 21148    2706
## 21151    2986
## 21154    3176
## 21156    3262
## 21158    3386
## 21167    3977
## 21169    4105
## 21172    4734
## 21174    4848
## 21179    5013
## 21188    5902
## 21189    5944
## 21192    5956
## 21197    6303
## 21198    6333
## 21203       1
## 21204      39
## 21205      47
## 21206      50
## 21207     104
## 21209     253
## 21210     260
## 21214     337
## 21215     356
## 21216     480
## 21217     541
## 21218     586
## 21219     593
## 21220     610
## 21221     780
## 21222     908
## 21224    1090
## 21225    1103
## 21226    1193
## 21227    1197
## 21228    1222
## 21229    1230
## 21232    1270
## 21233    1274
## 21234    1347
## 21238    1676
## 21239    1682
## 21241    1732
## 21243    1982
## 21244    1994
## 21248    2291
## 21250    2360
## 21251    2485
## 21252    2541
## 21253    2571
## 21256    2706
## 21258    2791
## 21259    2858
## 21263    2997
## 21264    3000
## 21265    3039
## 21266    3147
## 21268    3409
## 21269    3535
## 21271    3617
## 21273    3949
## 21274    3969
## 21275    3979
## 21276    4002
## 21278    4014
## 21279    4016
## 21282    4262
## 21283    4299
## 21285    4624
## 21286    4641
## 21290    4886
## 21291    4896
## 21292    4973
## 21293    4974
## 21294    5481
## 21296    5679
## 21297    5903
## 21298    5971
## 21300    6593
## 21303    7153
## 21304    7316
## 21305    7361
## 21307    7438
## 21309    8528
## 21310    8529
## 21311    8644
## 21312    8784
## 21313    8874
## 21314    8917
## 21316   27773
## 21317   30707
## 21320   33679
## 21321   34048
## 21322   34162
## 21324   35836
## 21331   45722
## 21332   46578
## 21333   46976
## 21335   48394
## 21336   48516
## 21337   48780
## 21339   50872
## 21340   51662
## 21341   52281
## 21344   54503
## 21345   54995
## 21349   56949
## 21351   59369
## 21352   60684
## 21354   61071
## 21355   63082
## 21356   63992
## 21357   64614
## 21359   65261
## 21362   68157
## 21363   68954
## 21364   69757
## 21365   70286
## 21366   71535
## 21367   71899
## 21368   72998
## 21369   74458
## 21370   76093
## 21371   76251
## 21373   79091
## 21377   80549
## 21378   80969
## 21381   81845
## 21388   88810
## 21389   89745
## 21390   89864
## 21393   90866
## 21396   91542
## 21399   94959
## 21403   98809
## 21404   99114
## 21406  103249
## 21410  106100
## 21419  112552
## 21420  112852
## 21421  114180
## 21422  114935
## 21428  117444
## 21429  117533
## 21431  122882
## 21432  127152
## 21434       1
## 21435       2
## 21436       5
## 21438      19
## 21439      21
## 21440      23
## 21442      31
## 21443      39
## 21444      44
## 21445      45
## 21447      60
## 21448      69
## 21449      70
## 21450      71
## 21451      95
## 21455     145
## 21456     153
## 21457     165
## 21458     170
## 21459     172
## 21460     174
## 21461     180
## 21462     185
## 21463     196
## 21464     208
## 21466     227
## 21467     231
## 21468     256
## 21470     288
## 21471     292
## 21475     327
## 21476     333
## 21477     339
## 21478     342
## 21479     344
## 21482     364
## 21483     367
## 21485     377
## 21487     432
## 21488     435
## 21489     442
## 21491     480
## 21492     500
## 21493     508
## 21494     520
## 21495     539
## 21496     541
## 21497     544
## 21498     548
## 21499     586
## 21500     588
## 21501     589
## 21502     590
## 21503     592
## 21504     648
## 21505     733
## 21508     784
## 21509     785
## 21510     786
## 21511     788
## 21512     799
## 21514     809
## 21515     829
## 21516     832
## 21517     836
## 21518     852
## 21519     858
## 21521    1005
## 21522    1020
## 21525    1047
## 21526    1061
## 21527    1064
## 21528    1073
## 21529    1097
## 21530    1126
## 21534    1240
## 21535    1246
## 21537    1265
## 21541    1370
## 21542    1371
## 21543    1373
## 21544    1374
## 21545    1375
## 21546    1376
## 21547    1377
## 21548    1391
## 21549    1393
## 21551    1405
## 21552    1407
## 21553    1409
## 21554    1429
## 21555    1485
## 21556    1500
## 21557    1515
## 21558    1517
## 21559    1518
## 21561    1544
## 21562    1552
## 21564    1580
## 21566    1588
## 21568    1597
## 21569    1608
## 21571    1616
## 21572    1617
## 21575    1641
## 21576    1644
## 21578    1653
## 21579    1668
## 21580    1673
## 21581    1676
## 21582    1682
## 21586    1732
## 21587    1746
## 21589    1752
## 21591    1784
## 21592    1792
## 21593    1831
## 21594    1833
## 21596    1892
## 21597    1894
## 21598    1895
## 21599    1909
## 21601    1918
## 21602    1923
## 21604    1961
## 21605    1967
## 21606    2000
## 21607    2001
## 21608    2002
## 21609    2004
## 21610    2005
## 21614    2042
## 21615    2054
## 21616    2058
## 21617    2082
## 21618    2114
## 21621    2253
## 21622    2273
## 21623    2294
## 21624    2321
## 21625    2334
## 21627    2338
## 21629    2355
## 21630    2376
## 21631    2396
## 21632    2420
## 21633    2421
## 21634    2422
## 21635    2424
## 21636    2485
## 21637    2490
## 21638    2496
## 21639    2502
## 21640    2505
## 21641    2541
## 21642    2567
## 21644    2572
## 21645    2580
## 21646    2605
## 21648    2628
## 21649    2640
## 21650    2683
## 21651    2694
## 21652    2701
## 21653    2706
## 21654    2707
## 21655    2716
## 21656    2722
## 21658    2763
## 21659    2770
## 21660    2797
## 21661    2858
## 21663    2916
## 21665    2947
## 21666    2948
## 21667    2949
## 21668    2953
## 21669    2959
## 21670    2987
## 21671    2989
## 21672    2990
## 21673    2991
## 21674    2993
## 21675    2997
## 21676    3005
## 21677    3039
## 21678    3052
## 21680    3146
## 21683    3208
## 21684    3253
## 21685    3254
## 21687    3261
## 21688    3301
## 21689    3316
## 21690    3408
## 21692    3466
## 21693    3477
## 21694    3509
## 21695    3510
## 21696    3534
## 21697    3536
## 21700    3623
## 21701    3635
## 21702    3638
## 21703    3639
## 21704    3698
## 21705    3753
## 21707    3798
## 21708    3821
## 21709    3861
## 21710    3863
## 21714    3959
## 21715    3975
## 21716    3977
## 21717    3984
## 21718    3994
## 21719    3998
## 21720    4018
## 21721    4020
## 21722    4023
## 21723    4025
## 21724    4027
## 21725    4040
## 21726    4149
## 21727    4153
## 21728    4214
## 21729    4223
## 21731    4226
## 21732    4228
## 21733    4229
## 21734    4238
## 21735    4265
## 21736    4321
## 21737    4343
## 21739    4351
## 21740    4369
## 21741    4448
## 21743    4545
## 21744    4571
## 21745    4616
## 21746    4638
## 21747    4701
## 21749    4727
## 21750    4734
## 21751    4757
## 21752    4814
## 21754    4866
## 21756    4896
## 21757    4901
## 21758    4951
## 21760    4980
## 21762    5010
## 21763    5025
## 21764    5081
## 21765    5093
## 21766    5171
## 21767    5219
## 21768    5282
## 21769    5283
## 21770    5312
## 21771    5349
## 21772    5377
## 21773    5378
## 21776    5445
## 21777    5449
## 21778    5459
## 21779    5502
## 21780    5574
## 21781    5816
## 21784    5956
## 21785    6059
## 21787    6250
## 21788    6264
## 21789    6265
## 21791    6294
## 21792    6322
## 21793    6323
## 21794    6333
## 21796    6373
## 21798    6383
## 21800    6537
## 21802    6541
## 21803    6708
## 21805    6764
## 21807    6936
## 21808    6944
## 21809    7101
## 21811    7173
## 21814    7325
## 21816    7360
## 21817    7381
## 21819    7569
## 21820    7570
## 21821    7573
## 21823    8368
## 21825    8493
## 21827    8614
## 21830    8874
## 21832    8968
## 21834   27338
## 21835   27808
## 21836   27821
## 21838   34048
## 21849      19
## 21852      34
## 21853      39
## 21855      50
## 21856      95
## 21859     153
## 21860     160
## 21863     173
## 21864     185
## 21866     225
## 21868     253
## 21869     266
## 21873     300
## 21874     315
## 21876     317
## 21878     339
## 21879     344
## 21885     367
## 21888     410
## 21889     420
## 21890     432
## 21893     440
## 21900     509
## 21902     539
## 21903     553
## 21905     588
## 21907     590
## 21908     592
## 21909     595
## 21910     597
## 21911       1
## 21913      10
## 21914      21
## 21915      25
## 21919      95
## 21920     110
## 21921     111
## 21922     135
## 21923     150
## 21925     185
## 21926     208
## 21927     231
## 21928     253
## 21930     288
## 21935     349
## 21936     356
## 21937     357
## 21939     377
## 21940     380
## 21941     434
## 21942     454
## 21944     480
## 21945     500
## 21947     586
## 21948     587
## 21949     590
## 21951     597
## 21953     733
## 21954     736
## 21955     750
## 21956     778
## 21959    1019
## 21960    1036
## 21961    1089
## 21962    1090
## 21963    1097
## 21966    1193
## 21968    1198
## 21970    1206
## 21973    1222
## 21974    1240
## 21975    1263
## 21977    1270
## 21978    1272
## 21979    1296
## 21980    1476
## 21981    1500
## 21982    1517
## 21983    1527
## 21986    1635
## 21988    1680
## 21989    1682
## 21990    1704
## 21991    1721
## 21994    1961
## 21996    2324
## 21997    2396
## 21998    2431
## 22001    2683
## 22002    2706
## 22003    2762
## 22005    2944
## 22008    3148
## 22009    3257
## 22011    3481
## 22013    3826
## 22014    3897
## 22016    3967
## 22018    4002
## 22019    4011
## 22021    4223
## 22023    4239
## 22024    4306
## 22025    4720
## 22026    4848
## 22028    4886
## 22030    4963
## 22033    4995
## 22034    5010
## 22035    5013
## 22036    5060
## 22037    5349
## 22043    5989
## 22044    6300
## 22047    6539
## 22050    6942
## 22051    6953
## 22052    7022
## 22055    7254
## 22059    8117
## 22061    8533
## 22062    8636
## 22065    8961
## 22066   26614
## 22068   30707
## 22069   30749
## 22072   33166
## 22076   34542
## 22077   36517
## 22078   36529
## 22079   38061
## 22081   40819
## 22082   41566
## 22083   41997
## 22084   44191
## 22085   44195
## 22089   46723
## 22090   47491
## 22091   48774
## 22095   50872
## 22102   56782
## 22103   57669
## 22106   59369
## 22107   59784
## 22110   67255
## 22111   68157
## 22116   70286
## 22119   74458
## 22120   76093
## 22121   78499
## 22123   80463
## 22125   81845
## 22132     110
## 22135     224
## 22139     489
## 22140     546
## 22153    1617
## 22165    2995
## 22167    3269
## 22168    3799
## 22169    3825
## 22171    4270
## 22177    5841
## 22182       5
## 22183       7
## 22186      62
## 22188      92
## 22191     637
## 22196     708
## 22197     711
## 22200     783
## 22206      32
## 22210     480
## 22215     750
## 22216     780
## 22222    1127
## 22225    1175
## 22230    1199
## 22235    1240
## 22236    1396
## 22237    1527
## 22238    1573
## 22240    1704
## 22241    1957
## 22242    1965
## 22243    2011
## 22244    2012
## 22247    2401
## 22249    2528
## 22250    2529
## 22253    2699
## 22254    2739
## 22256    2916
## 22259     485
## 22261     585
## 22269    1722
## 22273    2770
## 22279    3717
## 22301   77561
## 22302       1
## 22303       2
## 22304      10
## 22305      12
## 22307      34
## 22308      47
## 22310     160
## 22311     165
## 22312     208
## 22314     260
## 22315     267
## 22318     316
## 22319     344
## 22320     367
## 22321     370
## 22322     377
## 22323     466
## 22324     480
## 22325     485
## 22326     527
## 22327     541
## 22329     586
## 22331     648
## 22332     733
## 22333     736
## 22336     780
## 22337     924
## 22338    1036
## 22339    1097
## 22340    1127
## 22341    1196
## 22342    1198
## 22346    1210
## 22351    1261
## 22352    1265
## 22355    1291
## 22356    1320
## 22357    1387
## 22358    1391
## 22359    1517
## 22360    1527
## 22361    1544
## 22362    1573
## 22363    1580
## 22364    1590
## 22366    1676
## 22368    1690
## 22369    1721
## 22371    1923
## 22372    1961
## 22373    1991
## 22374    2003
## 22375    2012
## 22376    2025
## 22377    2028
## 22378    2054
## 22379    2115
## 22380    2162
## 22381    2167
## 22384    2355
## 22385    2363
## 22386    2382
## 22387    2383
## 22388    2421
## 22390    2470
## 22391    2502
## 22393    2628
## 22394    2683
## 22396    2706
## 22397    2710
## 22398    2716
## 22402    2890
## 22404    2985
## 22406    3020
## 22407    3113
## 22408    3271
## 22409    3441
## 22410    3527
## 22412    3623
## 22413    3793
## 22414    3917
## 22415    3977
## 22417    4022
## 22418    4036
## 22419    4084
## 22421    4306
## 22422    4310
## 22423    4367
## 22424    4370
## 22426    4545
## 22427    4718
## 22429    4886
## 22430    4902
## 22433    4993
## 22434    5010
## 22436    5254
## 22437    5349
## 22438    5378
## 22439    5418
## 22440    5445
## 22442    5679
## 22443    5690
## 22444    5903
## 22445    5952
## 22447    6218
## 22449    6333
## 22450    6365
## 22451    6373
## 22452    6377
## 22455    6537
## 22456    6539
## 22457    6863
## 22458    6874
## 22459    6934
## 22462    7153
## 22466    7438
## 22467    7454
## 22468    7981
## 22472    8360
## 22473    8361
## 22475    8636
## 22476    8644
## 22477    8665
## 22478    8861
## 22479    8874
## 22482    8961
## 22483    8984
## 22484    8985
## 22485   26547
## 22489   27831
## 22490   30745
## 22491   30793
## 22494   31878
## 22495   32078
## 22498   33004
## 22499   33493
## 22501   34048
## 22502   34150
## 22503   34405
## 22504   35836
## 22509   45499
## 22510   45722
## 22513   47937
## 22514   48082
## 22515   48385
## 22519   49272
## 22520   51255
## 22521   51662
## 22522   52328
## 22526   53464
## 22527   53468
## 22528   53519
## 22529   53996
## 22530   54286
## 22531   54503
## 22532   55684
## 22533   55721
## 22534   55765
## 22536   56174
## 22539   57504
## 22541   58295
## 22542   58376
## 22544   59315
## 22547   60069
## 22548   60074
## 22550   61160
## 22552   62394
## 22556   66097
## 22557   66130
## 22564   69481
## 22566   71106
## 22568   71304
## 22569   71535
## 22571   72378
## 22572   72998
## 22574   74458
## 22575   74789
## 22578   77561
## 22582   80350
## 22585   81417
## 22586   81834
## 22589   83349
## 22593   85414
## 22594   85510
## 22595   86190
## 22596   86320
## 22599   86892
## 22601   88125
## 22603   88140
## 22605   88744
## 22606   89745
## 22610   90469
## 22617   94780
## 22618   94864
## 22619   95510
## 22626  102125
## 22629     327
## 22630     481
## 22631    1388
## 22634    2004
## 22635    2376
## 22637    2533
## 22638    2643
## 22639    3264
## 22640    3386
## 22643   54286
## 22645   60069
## 22646   60293
## 22647   61323
## 22649      10
## 22651      34
## 22652      47
## 22654      62
## 22655      72
## 22656      76
## 22659     150
## 22660     165
## 22661     180
## 22662     231
## 22663     253
## 22668     329
## 22669     344
## 22670     349
## 22672     364
## 22673     367
## 22674     377
## 22675     380
## 22676     434
## 22677     457
## 22679     491
## 22680     497
## 22681     500
## 22683     539
## 22685     587
## 22686     589
## 22687     592
## 22689     597
## 22691     733
## 22692     745
## 22693     780
## 22694     799
## 22704    1080
## 22705    1097
## 22726    1580
## 22727    1586
## 22729    1907
## 22730    1911
## 22731    1952
## 22732    1955
## 22734    1974
## 22738    2302
## 22742    2688
## 22743    2762
## 22745    2959
## 22746    3000
## 22748    3022
## 22750    3070
## 22751    3089
## 22753    3104
## 22754    3498
## 22756    3698
## 22758    3763
## 22760    4226
## 22761    4235
## 22762    4308
## 22764    4848
## 22768    5015
## 22772    5971
## 22773    6016
## 22775    6711
## 22776    6786
## 22777    6807
## 22780    7143
## 22784    8873
## 22785    8966
## 22786   26294
## 22788   27831
## 22790   30810
## 22791   31878
## 22792   36529
## 22794   48394
## 22795   48516
## 22796   51255
## 22797      34
## 22808     527
## 22810     586
## 22812     593
## 22815     858
## 22816    1079
## 22822    1213
## 22826    1270
## 22832    1395
## 22833    1409
## 22834    1485
## 22836    1569
## 22837    1617
## 22842    1727
## 22853    2247
## 22857    2375
## 22860    2469
## 22863    2716
## 22867    2791
## 22868    2858
## 22869    2875
## 22873    2987
## 22877    3157
## 22885    3421
## 22887    3448
## 22888    3450
## 22889    3524
## 22892    3688
## 22893    3690
## 22901      21
## 22902      25
## 22903      31
## 22904      32
## 22906      39
## 22907      44
## 22909      48
## 22913     145
## 22915     153
## 22917     160
## 22920     165
## 22922     173
## 22923     181
## 22925     204
## 22926     224
## 22928     227
## 22929     231
## 22930     236
## 22931     237
## 22933     256
## 22934     261
## 22936     277
## 22938     293
## 22939     296
## 22941     315
## 22942     316
## 22943     317
## 22945     329
## 22946     337
## 22947     339
## 22949     349
## 22953     364
## 22954     367
## 22956     370
## 22960     420
## 22961     434
## 22963     442
## 22968     485
## 22972     515
## 22973     539
## 22975     585
## 22976     586
## 22978     588
## 22980     590
## 22981     592
## 22983     595
## 22984     597
## 22985     608
## 22986     648
## 22987       3
## 22989       6
## 22990       7
## 22992      36
## 22995      64
## 22996     100
## 22997     118
## 23001     494
## 23002     605
## 23004     637
## 23005     648
## 23006     650
## 23007     707
## 23008     708
## 23009     719
## 23010     736
## 23011     780
## 23012     788
## 23013     805
## 23014     852
## 23015    1353
## 23017       1
## 23018      19
## 23021     153
## 23023     296
## 23025     344
## 23027     367
## 23029     480
## 23031     586
## 23032     588
## 23033     589
## 23034     592
## 23036     648
## 23037     743
## 23038     780
## 23040    1092
## 23044    1370
## 23046    1721
## 23048    1835
## 23049    1882
## 23050    1994
## 23053    2324
## 23054    2404
## 23055    2412
## 23057    2571
## 23060    3438
## 23061    3578
## 23062    3615
## 23063    3717
## 23064    3793
## 23065    4718
## 23067    4993
## 23068    5349
## 23069    6059
## 23071    7153
## 23072    8636
## 23073   33493
## 23074   55247
## 23075   56174
## 23078   66544
## 23079   72378
## 23081   74688
## 23082   78499
## 23083   79132
## 23084   82202
## 23085   87485
## 23087   91077
## 23091   98809
## 23092  103249
## 23094  104925
## 23098       1
## 23101     110
## 23104     231
## 23105     260
## 23108     317
## 23112     480
## 23114     609
## 23115     788
## 23116     904
## 23123    1136
## 23128    1210
## 23129    1240
## 23133    1580
## 23134    1688
## 23136    1722
## 23137    1732
## 23138    1907
## 23139    1923
## 23147    3114
## 23148    3253
## 23149    3751
## 23153    4447
## 23157    4993
## 23158    5349
## 23160    5810
## 23161    5952
## 23164    6373
## 23165    6377
## 23166    6502
## 23167    7153
## 23168    8360
## 23171    8636
## 23172    8665
## 23174    8961
## 23177   34048
## 23178   43396
## 23180       1
## 23181       2
## 23182       3
## 23183      10
## 23184      19
## 23185      21
## 23186      22
## 23187      31
## 23189      47
## 23190      50
## 23191      62
## 23193      81
## 23197     112
## 23198     145
## 23199     158
## 23202     173
## 23203     181
## 23204     185
## 23205     196
## 23206     198
## 23207     216
## 23208     225
## 23210     246
## 23211     276
## 23212     280
## 23213     292
## 23215     296
## 23216     317
## 23219     338
## 23220     339
## 23222     350
## 23223     356
## 23224     364
## 23225     367
## 23226     370
## 23227     377
## 23229     393
## 23230     413
## 23231     424
## 23232     428
## 23233     432
## 23234     434
## 23235     442
## 23236     457
## 23238     470
## 23239     480
## 23240     485
## 23241     500
## 23242     502
## 23244     514
## 23246     524
## 23248     529
## 23249     538
## 23250     539
## 23252     546
## 23254     587
## 23258     593
## 23259     595
## 23260     596
## 23261     608
## 23262     648
## 23263     653
## 23264     671
## 23265     673
## 23266     733
## 23267     736
## 23268     741
## 23270     784
## 23271     802
## 23273     810
## 23274     832
## 23275     834
## 23276     866
## 23277     919
## 23279    1022
## 23280    1027
## 23281    1032
## 23282    1036
## 23283    1047
## 23285    1061
## 23287    1092
## 23290    1200
## 23291    1208
## 23292    1215
## 23293    1222
## 23294    1240
## 23295    1257
## 23296    1258
## 23297    1259
## 23299    1270
## 23300    1291
## 23301    1307
## 23302    1320
## 23303    1333
## 23305    1370
## 23307    1380
## 23308    1391
## 23311    1430
## 23312    1447
## 23314    1490
## 23316    1517
## 23318    1532
## 23319    1544
## 23320    1552
## 23321    1562
## 23322    1573
## 23323    1580
## 23324    1597
## 23325    1599
## 23326    1625
## 23327    1632
## 23329    1645
## 23330    1661
## 23331    1681
## 23332    1682
## 23334    1721
## 23335    1729
## 23336    1739
## 23337    1747
## 23339    1777
## 23340    1784
## 23341    1805
## 23342    1840
## 23343    1863
## 23344    1876
## 23345    1882
## 23346    1886
## 23348    1921
## 23349    1923
## 23350    1970
## 23351    1972
## 23352    1997
## 23353    2003
## 23354    2005
## 23355    2012
## 23356    2018
## 23357    2025
## 23359    2054
## 23360    2078
## 23361    2081
## 23362    2087
## 23363    2115
## 23364    2134
## 23365    2174
## 23366    2231
## 23368    2248
## 23369    2253
## 23370    2278
## 23371    2302
## 23372    2321
## 23374    2338
## 23376    2395
## 23379    2422
## 23380    2424
## 23381    2449
## 23382    2455
## 23383    2462
## 23384    2490
## 23385    2502
## 23389    2617
## 23390    2628
## 23391    2662
## 23392    2683
## 23394    2692
## 23395    2699
## 23397    2706
## 23398    2710
## 23399    2716
## 23400    2746
## 23402    2791
## 23404    2799
## 23405    2804
## 23406    2841
## 23407    2845
## 23408    2858
## 23409    2881
## 23410    2890
## 23411    2916
## 23413    2953
## 23415    2979
## 23417    2997
## 23418    3000
## 23421    3046
## 23422    3052
## 23423    3081
## 23424    3101
## 23426    3148
## 23427    3160
## 23428    3253
## 23429    3255
## 23430    3257
## 23431    3271
## 23432    3300
## 23433    3328
## 23434    3350
## 23435    3354
## 23437    3438
## 23439    3440
## 23440    3471
## 23441    3481
## 23442    3510
## 23443    3535
## 23445    3555
## 23446    3578
## 23447    3593
## 23448    3617
## 23449    3623
## 23451    3751
## 23452    3752
## 23453    3761
## 23454    3773
## 23455    3774
## 23456    3785
## 23458    3823
## 23459    3863
## 23460    3869
## 23461    3897
## 23462    3914
## 23463    3916
## 23465    3948
## 23466    3949
## 23467    3973
## 23468    3977
## 23470    4011
## 23471    4019
## 23472    4022
## 23473    4025
## 23474    4034
## 23475    4054
## 23476    4066
## 23477    4105
## 23479    4217
## 23480    4226
## 23482    4255
## 23483    4262
## 23485    4369
## 23486    4370
## 23487    4446
## 23488    4532
## 23491    4616
## 23492    4623
## 23494    4649
## 23495    4720
## 23496    4732
## 23497    4734
## 23498    4749
## 23499    4750
## 23500    4765
## 23501    4775
## 23502    4875
## 23503    4878
## 23504    4886
## 23505    4963
## 23506    4968
## 23507    4995
## 23508    5053
## 23509    5080
## 23510    5094
## 23511    5095
## 23512    5103
## 23513    5106
## 23514    5152
## 23515    5165
## 23516    5170
## 23517    5294
## 23518    5323
## 23519    5329
## 23521    5378
## 23522    5387
## 23523    5418
## 23524    5443
## 23525    5445
## 23526    5448
## 23527    5464
## 23528    5501
## 23530    5507
## 23531    5531
## 23532    5556
## 23533    5562
## 23534    5569
## 23535    5577
## 23537    5609
## 23538    5615
## 23539    5625
## 23540    5628
## 23541    5630
## 23543    5679
## 23545    5880
## 23546    5883
## 23547    5901
## 23548    5902
## 23549    5903
## 23550    5945
## 23553    5962
## 23554    5989
## 23555    6016
## 23556    6057
## 23558    6157
## 23560    6204
## 23561    6218
## 23562    6242
## 23563    6284
## 23565    6333
## 23566    6365
## 23567    6378
## 23568    6464
## 23569    6482
## 23570    6502
## 23571    6587
## 23572    6620
## 23575    6827
## 23576    6867
## 23577    6870
## 23578    6872
## 23580    6909
## 23581    6936
## 23583    6947
## 23584    6953
## 23585    7022
## 23586    7090
## 23587    7117
## 23588    7137
## 23589    7139
## 23591    7160
## 23592    7189
## 23593    7254
## 23594    7263
## 23595    7315
## 23596    7343
## 23599    7387
## 23602    7458
## 23604    7899
## 23605    8130
## 23606    8225
## 23608    8363
## 23609    8366
## 23610    8367
## 23611    8372
## 23612    8528
## 23613    8529
## 23614    8533
## 23615    8534
## 23617    8641
## 23619    8665
## 23620    8667
## 23621    8720
## 23622    8781
## 23623    8783
## 23626    8807
## 23627    8810
## 23628    8832
## 23629    8835
## 23630    8836
## 23631    8839
## 23632    8860
## 23633    8861
## 23634    8864
## 23635    8865
## 23638    8907
## 23639    8908
## 23640    8910
## 23641    8911
## 23642    8918
## 23644    8947
## 23646    8958
## 23647    8961
## 23648    8974
## 23649    8984
## 23651    9018
## 23652   27317
## 23653   27604
## 23655   27808
## 23656   27822
## 23657   27838
## 23658   27869
## 23659   30749
## 23660   30820
## 23661   31221
## 23662   31445
## 23663   31696
## 23664   31724
## 23666   33794
## 23669     163
## 23674     435
## 23675     480
## 23678     608
## 23679     653
## 23680     785
## 23681     912
## 23686    1676
## 23688    1732
## 23689    1917
## 23696    3404
## 23700    3751
## 23704    4367
## 23706    4963
## 23713    6157
## 23714    6287
## 23716    6383
## 23719    6564
## 23721    6596
## 23722    6686
## 23727    1210
## 23735    2174
## 23737    2365
## 23741    2571
## 23742    2640
## 23743    2699
## 23744    2985
## 23748       4
## 23749      20
## 23751      32
## 23754      93
## 23755     110
## 23757     122
## 23758     145
## 23760     151
## 23761     153
## 23762     163
## 23763     164
## 23764     165
## 23765     173
## 23766     175
## 23767     196
## 23768     198
## 23769     204
## 23770     217
## 23771     225
## 23772     227
## 23773     234
## 23775     237
## 23776     252
## 23777     255
## 23778     259
## 23781     287
## 23782     288
## 23783     292
## 23788     329
## 23789     333
## 23791     357
## 23792     358
## 23794     371
## 23796     378
## 23797     380
## 23798     384
## 23799     391
## 23800     410
## 23802     419
## 23803     420
## 23804     426
## 23805     427
## 23806     428
## 23807     432
## 23808     434
## 23810     442
## 23811     445
## 23812     450
## 23813     454
## 23816     485
## 23817     489
## 23819     500
## 23820     505
## 23821     508
## 23822     509
## 23823     510
## 23824     514
## 23826     516
## 23827     519
## 23828     524
## 23829     535
## 23830     538
## 23831     540
## 23833     553
## 23835     569
## 23836     587
## 23839     592
## 23841     597
## 23843     639
## 23844     648
## 23849    1021
## 23851    1035
## 23856    1092
## 23858    1101
## 23864      60
## 23865     262
## 23866     274
## 23867     502
## 23870     838
## 23871     914
## 23872    1021
## 23874    1270
## 23876    2346
## 23877    2422
## 23882    2962
## 23883    3114
## 23884    3594
## 23885    3791
## 23888    4069
## 23891    4896
## 23894    4995
## 23897    5816
## 23906    6881
## 23907    7139
## 23911    7444
## 23914    8368
## 23915    8373
## 23917    8643
## 23920    8808
## 23923    8982
## 23924   26198
## 23925   27808
## 23932   36525
## 23934   40815
## 23936   42732
## 23941   46578
## 23948   49278
## 23952   52458
## 23955   53123
## 23957   54001
## 23969   60069
## 23974   64249
## 23975   64957
## 23976      29
## 23977     524
## 23978     616
## 23979     849
## 23980    1093
## 23981    1240
## 23982    1270
## 23983    1272
## 23984    1299
## 23986    1527
## 23987    1682
## 23989    1962
## 23990    2020
## 23991    2078
## 23992    2144
## 23993    2355
## 23994    2723
## 23995    2881
## 23996    3107
## 23997    3174
## 23998    3510
## 23999    3702
## 24000    3703
## 24001    5952
## 24013    1093
## 24014    1179
## 24022    1747
## 24023    1805
## 24032    2598
## 24034    2683
## 24036    2688
## 24041    2710
## 24042    2716
## 24047    2881
## 24048    2987
## 24049    3039
## 24051      32
## 24052      34
## 24055     141
## 24060     356
## 24061     364
## 24062     377
## 24064     480
## 24067     539
## 24069     588
## 24070     590
## 24071     592
## 24080     107
## 24086     653
## 24088     708
## 24092     762
## 24100     999
## 24101    1003
## 24106    1485
## 24110    1562
## 24113    1591
## 24115     163
## 24117     172
## 24118     186
## 24119     246
## 24120     342
## 24121     370
## 24122     543
## 24124    1094
## 24125    1252
## 24129    2302
## 24130    2699
## 24131    3751
## 24133    5060
## 24134    6534
## 24137      48
## 24145     276
## 24147     308
## 24150     588
## 24152     647
## 24153     783
## 24166    1265
## 24167    1270
## 24169    1348
## 24171    1479
## 24172    1487
## 24175    1562
## 24181    1721
## 24186    2028
## 24192    2092
## 24196    2291
## 24199    2424
## 24202    2628
## 24205    2907
## 24207    2953
## 24213    3565
## 24214    3668
## 24217    3948
## 24218    3977
## 24219    3996
## 24221    4018
## 24222    4025
## 24226    4246
## 24240    5378
## 24245    5679
## 24254    5957
## 24256    5991
## 24257    6006
## 24258    6157
## 24260       1
## 24261       2
## 24262      19
## 24263      34
## 24264      39
## 24265      48
## 24266     253
## 24269     337
## 24270     344
## 24271     364
## 24272     480
## 24273     541
## 24274     551
## 24275     588
## 24278     596
## 24279     648
## 24280     709
## 24281     783
## 24282    1022
## 24284    1035
## 24286    1198
## 24288    1232
## 24289    1246
## 24290    1259
## 24291    1291
## 24292    1380
## 24293    1381
## 24294    1391
## 24295    1485
## 24296    1517
## 24298    1566
## 24299    1580
## 24300    1682
## 24301    1721
## 24302    1760
## 24303    1907
## 24304    1921
## 24305    1923
## 24306    1947
## 24307    2018
## 24308    2054
## 24309    2078
## 24310    2080
## 24311    2081
## 24312    2087
## 24313    2096
## 24314    2115
## 24316    2617
## 24318    2671
## 24319    2683
## 24320    2700
## 24321    2701
## 24322    2706
## 24323    2716
## 24324    2987
## 24325    2997
## 24327    3034
## 24328    3054
## 24330    3408
## 24331    3752
## 24332    3785
## 24333    3825
## 24334    3948
## 24335    3988
## 24337    3997
## 24338    4246
## 24339    4306
## 24341    4310
## 24342    4367
## 24343    4383
## 24344    4446
## 24345    4447
## 24346    4700
## 24347    4720
## 24348    4816
## 24349    4896
## 24351    4973
## 24353    5064
## 24354    5072
## 24355    5128
## 24356    5218
## 24357    5349
## 24359    5445
## 24360    5502
## 24362    5690
## 24363    5816
## 24364    5903
## 24367    5989
## 24369    6283
## 24370    6287
## 24372    6365
## 24373    6378
## 24375    6541
## 24376    6754
## 24377    6794
## 24378    6874
## 24379    6934
## 24380    7022
## 24386    7438
## 24387    7458
## 24388    7649
## 24389    8360
## 24390    8368
## 24391    8622
## 24392    8957
## 24393    8969
## 24394    8970
## 24395    8972
## 24396    8981
## 24398   26662
## 24400   27660
## 24401   27689
## 24403   27850
## 24404   30793
## 24405   30816
## 24408   33004
## 24409   33493
## 24410   33794
## 24411   36401
## 24412   36529
## 24414   38061
## 24415   40597
## 24416   40815
## 24417   41566
## 24418   41571
## 24419   43419
## 24420   44191
## 24423   44849
## 24424   45447
## 24425   45720
## 24426   45722
## 24427   45880
## 24428   45950
## 24434   48997
## 24435   49649
## 24437   51662
## 24438   52579
## 24439   53125
## 24440   53894
## 24441   54259
## 24442   54999
## 24443   55167
## 24444   55721
## 24445   55820
## 24446   56152
## 24447   56171
## 24448   56367
## 24450   56949
## 24451   58559
## 24452   59333
## 24453   59615
## 24455   60397
## 24456   62849
## 24458   63276
## 24459   63853
## 24460   63992
## 24461   66198
## 24462   66203
## 24463   66317
## 24464   66808
## 24465   68073
## 24467   69275
## 24468   69640
## 24469   69757
## 24472   72737
## 24473   73017
## 24474   73319
## 24476   77201
## 24478   79293
## 24480   80463
## 24481   80864
## 24484   81847
## 24485   82167
## 24486   82202
## 24487   82463
## 24488   86142
## 24489   86190
## 24490   86835
## 24493   89102
## 24494   89745
## 24495   89761
## 24496   89804
## 24497   90405
## 24499   91500
## 24500   91529
## 24502   93805
## 24503   94478
## 24504   94480
## 24505   94864
## 24506   95875
## 24507   96079
## 24508   96737
## 24509   97304
## 24511   99320
## 24512  100556
## 24513  101864
## 24514  103253
## 24515  104841
## 24522      23
## 24526      66
## 24528      76
## 24531     107
## 24534     160
## 24541     173
## 24543     196
## 24547     225
## 24549     240
## 24550     256
## 24551     258
## 24552     288
## 24557     327
## 24567     379
## 24568     405
## 24569     407
## 24572     426
## 24574     442
## 24581     494
## 24583     504
## 24585     519
## 24586     540
## 24588     546
## 24589     547
## 24597     611
## 24604     748
## 24610     839
## 24611     849
## 24613     880
## 24614     882
## 24615     891
## 24616    1003
## 24618    1037
## 24620    1055
## 24626    1129
## 24642    1306
## 24643    1320
## 24644    1343
## 24648    1373
## 24655    1422
## 24656    1427
## 24658    1459
## 24660    1488
## 24661    1499
## 24663    1518
## 24670    1590
## 24671    1591
## 24674    1603
## 24684    1647
## 24689    1686
## 24690    1687
## 24691    1690
## 24695    1748
## 24696    1750
## 24700    1779
## 24707    1882
## 24709    1917
## 24717    2015
## 24722    2053
## 24723    2054
## 24724    2093
## 24726    2107
## 24728    2113
## 24738    2311
## 24741     110
## 24744     293
## 24747     356
## 24749     551
## 24750     555
## 24752     595
## 24754     750
## 24757     899
## 24758     919
## 24760     951
## 24761    1028
## 24762    1036
## 24765    1097
## 24767    1193
## 24769    1197
## 24773    1213
## 24777    1246
## 24778    1247
## 24779    1258
## 24783    1266
## 24784    1269
## 24788    1302
## 24789    1348
## 24790    1387
## 24793    1704
## 24794    1873
## 24797    2000
## 24800    2096
## 24801    2268
## 24803    2571
## 24804    2716
## 24805    2804
## 24811    3061
## 24812    3089
## 24813    3168
## 24814    3210
## 24815    3275
## 24816    3408
## 24817    3471
## 24818    3552
## 24819    3578
## 24820    3629
## 24822    3949
## 24823    4034
## 24824    4262
## 24825    4878
## 24827    5577
## 24828    5669
## 24829    6979
## 24830    7022
## 24832    7386
## 24833    7451
## 24834    8874
## 24835    8966
## 24836   27773
## 24837   30707
## 24839   34405
## 24841   45728
## 24842   46578
## 24845   51662
## 24846   52435
## 24848   55442
## 24849   56367
## 24850   60684
## 24851   61024
## 24853   63131
## 24854   67267
## 24856   74458
## 24858   77455
## 24859   77800
## 24860   78574
## 24861   81591
## 24862   91658
## 24864   97921
## 24865   99114
## 24866  106487
## 24867  106782
## 24869  112623
## 24872    1270
## 24873    1682
## 24874    3882
## 24876    4246
## 24877    4306
## 24878    4447
## 24883    7361
## 24886    8641
## 24887    8644
## 24888    8665
## 24893   46976
## 24894   49272
## 24897   56367
## 24899   67734
## 24907   91529
## 24909     223
## 24912     700
## 24920    2013
## 24921    2145
## 24922    2474
## 24924    2502
## 24925    2541
## 24927    2699
## 24928    2700
## 24929    2710
## 24934     435
## 24940    1552
## 24942    1625
## 24944    2003
## 24961       4
## 24965       9
## 24967      13
## 24968      17
## 24969      21
## 24970      25
## 24972      36
## 24973      48
## 24975      61
## 24977      79
## 24978      95
## 24981     126
## 24983     144
## 24986     165
## 24988     169
## 24989     174
## 24991     186
## 24996     224
## 24998     231
## 24999     236
## 25000     237
## 25004     262
## 25005     265
## 25006     266
## 25008     271
## 25011     282
## 25013     300
## 25015     316
## 25017     337
## 25019     342
## 25020     343
## 25021     344
## 25025     355
## 25027     357
## 25028     360
## 25033     370
## 25036     381
## 25038     410
## 25042     455
## 25045     485
## 25046     489
## 25049     502
## 25050     508
## 25052     529
## 25055     546
## 25056     553
## 25057     569
## 25061     593
## 25065     609
## 25069     687
## 25071     707
## 25078     801
## 25080     818
## 25082     835
## 25088    1073
## 25089    1084
## 25095     260
## 25108    1196
## 25111    1247
## 25113    1617
## 25116    1952
## 25125    3646
## 25126    3751
## 25127    3821
## 25128    3994
## 25130    4027
## 25132     161
## 25134     180
## 25136     231
## 25137     246
## 25138     256
## 25145     334
## 25148     356
## 25151     371
## 25153     380
## 25154     413
## 25155     415
## 25157     434
## 25159     454
## 25163     480
## 25164     485
## 25166     508
## 25169     586
## 25174     597
## 25180      48
## 25183     150
## 25184     172
## 25186     239
## 25187     256
## 25188     260
## 25189     296
## 25196     364
## 25198     418
## 25199     440
## 25207     594
## 25209     596
## 25213     709
## 25220     783
## 25221     788
## 25222     910
## 25224     919
## 25225     924
## 25227    1022
## 25228    1025
## 25229    1028
## 25230    1029
## 25231    1032
## 25232    1033
## 25234    1037
## 25239    1104
## 25245    1196
## 25249    1210
## 25252    1220
## 25257    1265
## 25261    1282
## 25262    1288
## 25264    1307
## 25265    1320
## 25272    1544
## 25273    1566
## 25275    1584
## 25276    1590
## 25278    1688
## 25279    1690
## 25280    1702
## 25282    1747
## 25283    1748
## 25284    1784
## 25289    1921
## 25291    1967
## 25294    2018
## 25295    2021
## 25296    2028
## 25297    2033
## 25298    2054
## 25299    2078
## 25300    2080
## 25301    2081
## 25302    2085
## 25303    2087
## 25306    2091
## 25307    2094
## 25308    2096
## 25309    2105
## 25310    2128
## 25311    2137
## 25312    2139
## 25313    2141
## 25314    2142
## 25316    2193
## 25318    2294
## 25321    2359
## 25323    2450
## 25325    2565
## 25327    2599
## 25328    2622
## 25329    2628
## 25334    2716
## 25335    2747
## 25338    2804
## 25341    2987
## 25346    3054
## 25347    3095
## 25350    3175
## 25351    3255
## 25353    3438
## 25356    3479
## 25357    3489
## 25358    3545
## 25359    3549
## 25362    3863
## 25363    3910
## 25365    4016
## 25366    4121
## 25367    4275
## 25369    4321
## 25370    4366
## 25373    4655
## 25377    4941
## 25379    5159
## 25380      31
## 25382     836
## 25384    1385
## 25387    2136
## 25390    2605
## 25391    2863
## 25395    3617
## 25397    3996
## 25400    4238
## 25402    4639
## 25408    6539
## 25412    7361
## 25416   46976
## 25417   58559
## 25418   60069
## 25423       2
## 25432     208
## 25434     231
## 25435     239
## 25436     272
## 25437     290
## 25441     329
## 25443     344
## 25445     362
## 25447     367
## 25448     372
## 25450     427
## 25451     441
## 25452     448
## 25454     480
## 25455     500
## 25459     575
## 25460     586
## 25465     596
## 25467     609
## 25469     661
## 25470     705
## 25473     783
## 25475     837
## 25478     953
## 25480    1006
## 25481    1015
## 25485    1032
## 25486    1047
## 25487    1059
## 25492    1097
## 25494    1197
## 25495    1203
## 25496    1208
## 25500    1356
## 25502    1372
## 25503    1380
## 25504    1407
## 25505    1485
## 25506    1502
## 25508    1517
## 25511    1653
## 25512    1672
## 25516    1717
## 25523    1885
## 25525    1917
## 25526    1923
## 25527    1954
## 25530    2000
## 25532    2018
## 25534    2078
## 25535    2080
## 25538    2084
## 25540    2096
## 25543    2136
## 25544    2146
## 25546    2231
## 25547    2269
## 25556    2571
## 25561    2628
## 25562    2683
## 25564    2710
## 25568    2803
## 25571    2997
## 25572    3005
## 25573    3101
## 25574    3108
## 25583    3273
## 25588    3535
## 25589    3556
## 25590    3608
## 25591    3707
## 25592    3793
## 25596    4308
## 25598    4409
## 25601    4649
## 25602    4700
## 25607    4993
## 25609    5060
## 25613    5418
## 25614    5419
## 25616    5459
## 25617    5481
## 25623    5952
## 25625    5991
## 25626    6040
## 25631    6242
## 25633    6333
## 25634    6365
## 25637    6493
## 25638    6502
## 25639    6659
## 25640    6711
## 25641    6743
## 25642    6874
## 25643    6890
## 25644    6930
## 25645    6934
## 25647    6952
## 25648    6987
## 25649    7038
## 25650    7045
## 25651    7147
## 25652    7153
## 25656    7317
## 25658    7438
## 25661    7541
## 25663    8129
## 25665    8368
## 25666    8531
## 25668    8636
## 25671    8857
## 25673    8917
## 25674    8947
## 25675    8961
## 25676    8970
## 25678   26116
## 25679   26133
## 25681   26614
## 25682   27020
## 25683   27674
## 25684   27706
## 25685   27904
## 25692   34532
## 25694   39446
## 25695   40629
## 25696   40815
## 25698   41566
## 25700   43177
## 25701   43919
## 25704   44761
## 25706   45950
## 25708   47423
## 25716   52245
## 25717   52281
## 25720   53519
## 25721   54001
## 25722   54004
## 25723   54272
## 25725   55280
## 25726   56169
## 25731   59022
## 25734   60037
## 25736   60487
## 25738   61075
## 25739   61401
## 25743   63479
## 25748      22
## 25752      39
## 25753      47
## 25754      48
## 25756      62
## 25757      93
## 25761     153
## 25762     158
## 25763     160
## 25764     165
## 25765     173
## 25766     196
## 25767     208
## 25769     231
## 25770     253
## 25771     262
## 25772     277
## 25775     292
## 25778     316
## 25779     317
## 25781     329
## 25782     339
## 25785     350
## 25788     362
## 25790     367
## 25792     374
## 25793     377
## 25795     410
## 25796     420
## 25797     435
## 25798     454
## 25799     457
## 25805     509
## 25806     519
## 25808     539
## 25810     551
## 25811     575
## 25817     592
## 25823     648
## 25824     653
## 25826     671
## 25829     780
## 25830     801
## 25832     867
## 25833    1009
## 25835    1013
## 25836    1017
## 25837    1019
## 25839    1023
## 25840    1024
## 25841    1025
## 25844    1030
## 25845    1033
## 25846     145
## 25847     239
## 25848     253
## 25851     370
## 25852     434
## 25856     673
## 25857     736
## 25858     737
## 25859     780
## 25861     835
## 25862     913
## 25863     968
## 25864    1028
## 25870    1216
## 25874    1296
## 25875    1354
## 25876    1358
## 25877    1374
## 25879    1513
## 25880    1623
## 25883    1732
## 25884    1911
## 25885    1959
## 25886    2000
## 25888    2147
## 25890    2269
## 25891    2290
## 25892    2302
## 25893    2316
## 25895    2333
## 25896    2336
## 25897    2340
## 25898    2355
## 25899    2369
## 25900    2392
## 25901    2428
## 25902    2433
## 25903    2490
## 25905    2530
## 25906    2531
## 25907    2532
## 25908    2533
## 25909    2541
## 25910    2568
## 25912    2574
## 25914    2581
## 25915    2587
## 25916    2598
## 25917    2605
## 25918    2668
## 25919    2672
## 25920    2676
## 25922    2686
## 25923    2688
## 25926    2700
## 25927    2701
## 25928    2702
## 25930    2707
## 25933    2713
## 25934    2716
## 25935    2719
## 25936    2720
## 25937    2722
## 25938    2724
## 25940    2759
## 25942    2763
## 25943    2770
## 25944    2771
## 25945    2772
## 25946    2805
## 25947    2806
## 25948    2826
## 25949    2827
## 25950    2840
## 25953    2861
## 25954    2881
## 25955    2882
## 25956    2888
## 25957    2959
## 25959    2987
## 25960    2995
## 25962    3001
## 25963    3004
## 25964    3005
## 25965    3016
## 25967    3113
## 25968    3146
## 25969    3147
## 25971    3175
## 25973    3177
## 25974    3179
## 25976    3186
## 25979    3238
## 25981    3263
## 25982    3273
## 25983    3285
## 25984    3298
## 25985    3299
## 25986    3316
## 25987    3326
## 25988    3355
## 25989    3408
## 25990    3409
## 25991    3445
## 25992    3448
## 25993    3452
## 25995    3510
## 25996    3564
## 25998    3623
## 26000    3717
## 26001    3751
## 26004    3763
## 26005    3764
## 26006    3765
## 26007    3766
## 26008    3771
## 26009    3793
## 26011    3802
## 26012    3807
## 26013    3809
## 26014    3810
## 26015    3836
## 26016    3841
## 26017    3844
## 26019    3865
## 26021    3869
## 26031    2294
## 26034    2336
## 26036    2394
## 26039    2433
## 26045    2598
## 26047    2600
## 26050    2629
## 26052    2683
## 26059    2724
## 26060    2734
## 26063    2770
## 26065    2861
## 26066    2881
## 26072    3051
## 26074    3117
## 26078    3298
## 26081    4022
## 26082      10
## 26083      34
## 26084      47
## 26085     110
## 26087     153
## 26089     165
## 26090     185
## 26091     208
## 26092     231
## 26093     292
## 26098     344
## 26099     349
## 26101     380
## 26102     434
## 26103     454
## 26105     480
## 26106     588
## 26108     592
## 26110     595
## 26112      19
## 26114      39
## 26115      44
## 26116      47
## 26117      48
## 26119     158
## 26120     160
## 26121     181
## 26122     185
## 26123     208
## 26126     261
## 26129     316
## 26133     350
## 26134     355
## 26138     367
## 26139     370
## 26140     374
## 26141     377
## 26142     380
## 26144     434
## 26145     442
## 26146     454
## 26147     455
## 26149     474
## 26154     539
## 26155     551
## 26160     592
## 26161     593
## 26164     597
## 26165     736
## 26171     296
## 26185    1196
## 26186    1197
## 26187    1203
## 26194    1252
## 26197    1394
## 26206    2289
## 26222    3114
## 26226    3210
## 26228    3543
## 26232      19
## 26234      44
## 26235      95
## 26238     151
## 26239     158
## 26240     160
## 26242     172
## 26243     173
## 26244     196
## 26246     208
## 26248     231
## 26249     253
## 26250     292
## 26251     296
## 26253     317
## 26256     344
## 26258     353
## 26262     368
## 26263     377
## 26265     420
## 26266     432
## 26268     442
## 26269     454
## 26270     457
## 26271     480
## 26272     500
## 26274     551
## 26275     587
## 26279     597
## 26283      25
## 26285      39
## 26286      42
## 26287      60
## 26288      95
## 26289     104
## 26290     110
## 26291     111
## 26292     112
## 26293     150
## 26295     165
## 26296     196
## 26297     208
## 26299     246
## 26300     258
## 26302     281
## 26303     288
## 26304     296
## 26305     303
## 26306     318
## 26307     330
## 26308     349
## 26309     356
## 26310     368
## 26311     377
## 26312     379
## 26313     380
## 26314     405
## 26315     420
## 26316     426
## 26317     443
## 26319     471
## 26321     485
## 26323     531
## 26324     541
## 26325     587
## 26326     589
## 26329     595
## 26330     597
## 26334     724
## 26335     736
## 26336     788
## 26338     898
## 26339     899
## 26340     900
## 26342     908
## 26343     909
## 26347     915
## 26348     916
## 26351     921
## 26357     943
## 26358     944
## 26359     945
## 26360     951
## 26361     952
## 26364     960
## 26366     971
## 26368    1012
## 26370    1035
## 26371    1036
## 26372    1073
## 26374    1080
## 26375    1081
## 26378    1090
## 26380    1096
## 26381    1097
## 26382    1101
## 26383    1103
## 26385    1125
## 26386    1129
## 26387    1136
## 26389    1189
## 26392    1197
## 26393    1198
## 26395    1201
## 26399    1213
## 26406    1226
## 26407    1228
## 26409    1231
## 26412    1235
## 26413    1240
## 26414    1242
## 26421    1256
## 26422    1259
## 26423    1260
## 26425    1263
## 26426    1265
## 26427    1267
## 26429    1270
## 26431    1275
## 26438    1291
## 26439    1292
## 26441    1302
## 26443    1307
## 26444    1320
## 26446    1370
## 26447    1372
## 26448    1374
## 26449    1375
## 26451    1380
## 26453    1391
## 26454    1393
## 26456    1395
## 26458    1552
## 26459    1583
## 26460    1586
## 26461    1608
## 26463    1641
## 26464    1690
## 26465    1702
## 26466    1747
## 26469    1831
## 26470    1884
## 26471    1918
## 26473    1929
## 26474    1935
## 26476    1944
## 26477    1946
## 26478    1947
## 26479    1950
## 26481    1953
## 26482    1954
## 26483    1955
## 26484    1957
## 26487    1962
## 26488    1964
## 26489    1965
## 26490    2000
## 26491    2001
## 26492    2002
## 26493    2004
## 26494    2013
## 26497    2021
## 26498    2023
## 26501    2054
## 26503    2067
## 26504    2070
## 26505    2075
## 26506    2077
## 26507    2084
## 26508    2088
## 26509    2094
## 26510    2100
## 26512    2105
## 26513    2109
## 26514    2110
## 26515    2111
## 26516    2112
## 26517    2115
## 26518    2124
## 26519    2132
## 26520    2134
## 26521    2135
## 26522    2139
## 26523    2144
## 26524    2150
## 26525    2174
## 26528    2193
## 26529    2194
## 26530    2202
## 26532    2243
## 26533    2268
## 26534    2288
## 26535    2291
## 26537    2302
## 26538    2312
## 26539    2313
## 26540    2315
## 26542    2353
## 26544    2359
## 26546    2367
## 26547    2376
## 26549    2402
## 26550    2404
## 26551    2405
## 26552    2406
## 26553    2407
## 26554    2410
## 26555    2411
## 26556    2412
## 26557    2414
## 26558    2423
## 26559    2453
## 26560    2468
## 26561    2476
## 26562    2502
## 26563    2524
## 26564    2527
## 26565    2528
## 26567    2530
## 26568    2532
## 26569    2533
## 26570    2549
## 26571    2568
## 26572    2599
## 26573    2616
## 26574    2617
## 26575    2628
## 26576    2640
## 26577    2641
## 26578    2657
## 26580    2700
## 26581    2701
## 26582    2706
## 26583    2710
## 26584    2719
## 26585    2722
## 26586    2728
## 26587    2739
## 26588    2746
## 26589    2750
## 26590    2763
## 26591    2779
## 26592    2788
## 26594    2797
## 26595    2804
## 26596    2826
## 26597    2857
## 26599    2863
## 26600    2870
## 26603    2915
## 26604    2916
## 26606    2918
## 26607    2929
## 26608    2941
## 26610    2946
## 26611    2947
## 26612    2951
## 26613    2968
## 26614    2971
## 26615    2985
## 26616    2986
## 26618    2988
## 26619    2989
## 26620    2995
## 26621    3011
## 26626    3039
## 26627    3052
## 26628    3061
## 26631    3072
## 26632    3076
## 26634    3081
## 26637    3098
## 26638    3099
## 26639    3100
## 26641    3107
## 26642    3122
## 26643    3135
## 26644    3147
## 26645    3152
## 26646    3169
## 26648    3178
## 26649    3194
## 26650    3196
## 26651    3197
## 26653    3201
## 26654    3210
## 26655    3244
## 26656    3253
## 26657    3255
## 26659    3257
## 26660    3271
## 26661    3307
## 26664    3350
## 26665    3359
## 26666    3360
## 26667    3361
## 26668    3362
## 26669    3363
## 26671    3398
## 26673    3406
## 26675    3424
## 26676    3427
## 26677    3432
## 26679    3441
## 26680    3448
## 26681    3451
## 26682    3461
## 26686    3481
## 26687    3494
## 26688    3498
## 26690    3507
## 26691    3516
## 26692    3519
## 26693    3526
## 26694    3527
## 26695    3529
## 26696    3543
## 26697    3546
## 26698    3549
## 26699    3552
## 26700    3555
## 26702    3591
## 26703    3608
## 26705    3638
## 26706    3639
## 26707    3643
## 26709    3668
## 26711    3697
## 26712    3698
## 26713    3699
## 26714    3701
## 26715    3702
## 26716    3705
## 26717    3717
## 26718    3733
## 26719    3735
## 26720    3740
## 26721    3742
## 26722    3744
## 26723    3751
## 26724    3754
## 26725    3755
## 26726    3760
## 26727    3763
## 26728    3811
## 26729    3836
## 26730    3841
## 26731    3863
## 26734    3873
## 26735    3889
## 26736    3893
## 26738    3929
## 26739    3946
## 26740    3952
## 26742    3969
## 26743    3972
## 26744    3975
## 26745    3977
## 26746    3978
## 26747    3979
## 26749    3984
## 26750    3986
## 26751    3987
## 26752    3988
## 26753    3994
## 26754    3998
## 26755    3999
## 26757    4016
## 26758    4018
## 26759    4019
## 26760    4022
## 26761    4023
## 26762    4025
## 26763    4030
## 26765    4041
## 26766    5060
## 26771     809
## 26772     916
## 26776    1863
## 26779    2082
## 26780    2161
## 26784    2712
## 26785    2746
## 26790    2882
## 26791    2888
## 26794    2912
## 26800    3052
## 26801    3072
## 26804    3113
## 26809    3285
## 26812    3324
## 26813    3354
## 26817    3483
## 26818    3484
## 26826    3537
## 26828    3555
## 26829    3557
## 26831    3572
## 26833    3579
## 26835    3593
## 26837    3614
## 26838    3618
## 26839    3620
## 26848    3669
## 26850    3681
## 26855    3688
## 26856    3689
## 26857    3690
## 26858    3697
## 26864    3706
## 26866      32
## 26868     295
## 26869     316
## 26871     356
## 26872     367
## 26880     674
## 26885    1019
## 26886    1037
## 26889    1215
## 26901    1748
## 26911    2174
## 26912    2311
## 26913    2528
## 26917    2642
## 26921    2968
## 26922    3466
## 26926    3702
## 26927    3703
## 26930     608
## 26934    1042
## 26936    1089
## 26938    1172
## 26939    1198
## 26951    1266
## 26952    1273
## 26954    1405
## 26955    1449
## 26957    1747
## 26958    1900
## 26963    2770
## 26965    2966
## 26966    2973
## 26968    3006
## 26969    3147
## 26971    3176
## 26974    3246
## 26975    3267
## 26981    3911
## 26982    3925
## 26984    3996
## 26985    4022
## 26990    4641
## 26991    4772
## 26993    4967
## 26997    5792
## 26998    5812
## 27001    5952
## 27002    5995
## 27003    6296
## 27005      10
## 27008      23
## 27010      32
## 27017     180
## 27018     208
## 27025     319
## 27027     380
## 27028     405
## 27030     480
## 27033     546
## 27037     608
## 27038     673
## 27041     780
## 27042     858
## 27043     924
## 27048    1165
## 27050    1198
## 27053    1213
## 27059    1261
## 27062    1274
## 27064    1356
## 27065    1416
## 27067    1544
## 27069    1584
## 27072    1616
## 27077    1690
## 27079    1722
## 27080    1732
## 27082    1882
## 27083    1917
## 27084    1982
## 27091    2232
## 27093    2329
## 27096    2411
## 27101    2579
## 27102    2628
## 27104    2701
## 27105    2716
## 27108    2913
## 27118    3576
## 27120    3581
## 27122    3793
## 27124    3984
## 27125    3986
## 27127    4105
## 27128    4161
## 27130    4370
## 27132    4553
## 27133    4720
## 27134    4735
## 27135    4878
## 27136    4887
## 27140    5046
## 27142    5171
## 27143    5219
## 27144    5349
## 27147    5445
## 27149    5903
## 27150    5952
## 27151    5954
## 27152    5995
## 27157    6333
## 27158    6350
## 27160    6378
## 27161    6502
## 27162    6537
## 27163    6731
## 27165    6826
## 27166    6870
## 27167    6874
## 27169    6996
## 27172    7099
## 27173    7153
## 27175    7282
## 27176    7360
## 27177    7387
## 27178    7438
## 27180    7649
## 27181    7810
## 27182    7841
## 27185    8371
## 27186    8403
## 27187    8581
## 27188    8636
## 27190    8644
## 27191    8654
## 27193    8790
## 27194    8810
## 27195    8861
## 27197    8950
## 27202   27005
## 27204   27660
## 27213   33558
## 27216   34162
## 27217   34319
## 27218   34405
## 27219   37830
## 27221   40732
## 27222   42197
## 27223   43936
## 27225   44199
## 27227   44761
## 27230   46976
## 27233   48774
## 27239   51662
## 27240   52281
## 27241   52328
## 27243   53000
## 27245   53207
## 27246   53519
## 27247   53953
## 27248   53956
## 27249   53972
## 27252   54771
## 27255   55118
## 27256   55232
## 27258   55363
## 27259   55577
## 27260   55765
## 27265   56174
## 27266   56587
## 27268   56801
## 27269   57368
## 27272   58432
## 27275   59018
## 27277   59315
## 27279   59590
## 27280   59810
## 27281   60040
## 27282   60069
## 27283   60684
## 27284   60756
## 27285   60943
## 27286   61132
## 27287   61248
## 27288   61323
## 27289   62792
## 27292   63436
## 27293   63481
## 27294   64957
## 27296   65682
## 27297   66090
## 27298   66509
## 27299   67665
## 27300   67867
## 27303   68159
## 27304   68194
## 27305   68205
## 27306   68237
## 27307   68319
## 27309   68791
## 27310   68932
## 27311   69122
## 27312   69278
## 27313   69526
## 27314   69844
## 27317   71156
## 27319   72129
## 27320   72998
## 27322   73211
## 27323   73268
## 27324   73321
## 27325   73929
## 27326   74452
## 27328   74532
## 27329   74545
## 27330   74685
## 27331   74948
## 27332   75813
## 27334   76210
## 27336   78034
## 27338   78209
## 27339   78218
## 27342   79057
## 27344   79134
## 27346   79695
## 27347   79796
## 27348   80363
## 27350   80489
## 27352   81229
## 27353   81535
## 27355   81788
## 27358   82459
## 27359   82461
## 27360   82854
## 27362   83349
## 27366   84374
## 27367   84395
## 27368   84601
## 27369   84615
## 27370   84954
## 27371   85020
## 27372   85022
## 27373   85025
## 27374   85131
## 27375   85412
## 27379   86290
## 27385   87485
## 27387   88163
## 27388   88405
## 27389   88744
## 27390   88785
## 27391   88812
## 27394   89753
## 27395   90345
## 27396   90405
## 27399   91542
## 27400   91630
## 27401   91653
## 27403   92420
## 27405   94959
## 27416  104879
## 27419  106441
## 27422  106696
## 27423  106916
## 27424  107141
## 27425  112112
## 27426       1
## 27427       2
## 27429     110
## 27432     185
## 27436     362
## 27437     364
## 27438     367
## 27439     377
## 27441     455
## 27442     480
## 27445     586
## 27446     588
## 27448     595
## 27450     648
## 27451     780
## 27453    1080
## 27454    1088
## 27456    1097
## 27457    1199
## 27463    1367
## 27464    1380
## 27465    1527
## 27466    1544
## 27468    1584
## 27469    1610
## 27470    1619
## 27474    1702
## 27475    1721
## 27476    1801
## 27477    1917
## 27484    2378
## 27485    2403
## 27486    2420
## 27487    2427
## 27493    2671
## 27494    2687
## 27495    2706
## 27496    2724
## 27497    2762
## 27498    2953
## 27501    3147
## 27503    3409
## 27505    3623
## 27506    3639
## 27507    3717
## 27508    3785
## 27509    3825
## 27510    3827
## 27511    4016
## 27512    4018
## 27513    4022
## 27514    4025
## 27515    4052
## 27519    4299
## 27521    4308
## 27522    4310
## 27523    4344
## 27524    4369
## 27525    4370
## 27526    4447
## 27527    4489
## 27528    4519
## 27529    4638
## 27530    4661
## 27533    4901
## 27541    5574
## 27543    5679
## 27544    5809
## 27545    5872
## 27546    5956
## 27548    6059
## 27550    6365
## 27556    6550
## 27557    6889
## 27558    6934
## 27559    7154
## 27561    7163
## 27562    7293
## 27563    7361
## 27565    8361
## 27567    8376
## 27568    8529
## 27569    8604
## 27570    8622
## 27571    8644
## 27574    8957
## 27575    8958
## 27576    8961
## 27577    8984
## 27578   26686
## 27579   26999
## 27580   27193
## 27581   27482
## 27582   27821
## 27583   30812
## 27584   31685
## 27585   32587
## 27587   33499
## 27588   33679
## 27589   33836
## 27590   36289
## 27591   36525
## 27593   40278
## 27594   42015
## 27595   44022
## 27596   45186
## 27598   45447
## 27599   45517
## 27600   45720
## 27601   45732
## 27604   48516
## 27605   48774
## 27607   49272
## 27610   51084
## 27611   52281
## 27613   53125
## 27615   53996
## 27616   54272
## 27624   57528
## 27625   57669
## 27626   58047
## 27627   58103
## 27630   59369
## 27632   60074
## 27633   62849
## 27634   63082
## 27635   63113
## 27637   64969
## 27638   67923
## 27641   69122
## 27644   74946
## 27645   76093
## 27646   78637
## 27647   79091
## 27648   79132
## 27649   79293
## 27651   81229
## 27653   85736
## 27654   86298
## 27656   87975
## 27658   90647
## 27664   97225
## 27665   97938
## 27666  101142
## 27667  102903
## 27669  103810
## 27670  104374
## 27671  106696
## 27672  106782
## 27674  106920
## 27678  136592
## 27686     104
## 27691     186
## 27692     235
## 27705     494
## 27730    2081
## 27735    2406
## 27736    2420
## 27739    2690
## 27740    2699
## 27742    2762
## 27760    5949
## 27769    7155
## 27774    8376
## 27779    8666
## 27786    8836
## 27791    8873
## 27800   30812
## 27804     419
## 27805     442
## 27816    1327
## 27822    1690
## 27826    1998
## 27830    2015
## 27831    2122
## 27832    2124
## 27833    2393
## 27840    2628
## 27841    2683
## 27844    2748
## 27848    3004
## 27851    3401
## 27852    3412
## 27856    3768
## 27857    3930
## 27860    4317
## 27862    4396
## 27864    4566
## 27866    4767
## 27867    4915
## 27871    5141
## 27873    5568
## 27874    5872
## 27875    5910
## 27877      23
## 27885     934
## 27886    1049
## 27890    1248
## 27892    1284
## 27893    1556
## 27896    2085
## 27898    2410
## 27900    2707
## 27901    3298
## 27907    5015
## 27910   39292
## 27912   48872
## 27915      58
## 27916     112
## 27917     151
## 27918     432
## 27920    1086
## 27921    1213
## 27923    1234
## 27924    1246
## 27927    1370
## 27928    1374
## 27929    1407
## 27933    2291
## 27936    4306
## 27937    4531
## 27938    4700
## 27940    7438
## 27943    8838
## 27946      10
## 27949     110
## 27950     260
## 27951     356
## 27953     589
## 27954     593
## 27955     720
## 27957     745
## 27959     919
## 27960    1036
## 27961    1148
## 27962    1196
## 27964    1198
## 27965    1210
## 27966    1214
## 27967    1221
## 27968    1223
## 27971    1291
## 27973    2571
## 27976    2947
## 27977    2959
## 27981    5418
## 27983    5952
## 27985    6333
## 27988    7153
## 27989    8368
## 27990    8798
## 27993   26776
## 27995   27839
## 27996   30793
## 27997   31221
## 27999   31685
## 28001   32031
## 28002   32296
## 28004   33615
## 28007   34162
## 28008   34332
## 28009   35836
## 28010   36519
## 28011   37386
## 28015   39446
## 28016   39715
## 28017   40278
## 28018   40339
## 28022   42011
## 28023   42723
## 28024   43928
## 28025   44022
## 28027   45186
## 28029   45501
## 28031   45668
## 28032   45672
## 28033   45720
## 28035   45730
## 28037   46965
## 28038   46970
## 28039   48322
## 28040   48385
## 28041   48394
## 28042   48516
## 28044   48877
## 28045   48982
## 28046   49272
## 28051   51086
## 28054   52245
## 28056   52722
## 28057   52973
## 28058   53121
## 28059   53464
## 28061   53993
## 28062   54004
## 28065   54286
## 28069   55232
## 28070   55282
## 28071   55577
## 28072   55768
## 28077   56367
## 28080   57368
## 28082   57640
## 28084   58103
## 28085   58293
## 28086   58299
## 28087   58559
## 28091   59615
## 28093   59900
## 28094   60037
## 28095   60040
## 28096   60069
## 28097   60074
## 28098   60126
## 28099   60397
## 28100   61132
## 28101   61323
## 28102   62081
## 28103   62999
## 28104   63113
## 28106   63992
## 28110   68157
## 28113   71379
## 28114   71535
## 28115   72378
## 28116   72998
## 28117   73017
## 28119   78499
## 28120   79132
## 28122   81562
## 28125   87232
## 28128   91529
## 28132   96079
## 28134  102125
## 28136  111362
## 28137  112171
## 28143  117529
## 28144  117851
## 28147  130073
## 28148  133419
## 28149  134170
## 28150  135887
## 28151     592
## 28152    1036
## 28153    1081
## 28156    1173
## 28160    1200
## 28163    1246
## 28164    1258
## 28166    1286
## 28168    1297
## 28170    1302
## 28171    1307
## 28172    1321
## 28173    1375
## 28174    1376
## 28175    1587
## 28177    1876
## 28178    1892
## 28181    1962
## 28183    1994
## 28184    2003
## 28185    2005
## 28186    2011
## 28187    2021
## 28188    2033
## 28189    2054
## 28190      24
## 28191      44
## 28193     256
## 28195     333
## 28196     431
## 28198     673
## 28199     779
## 28200     899
## 28201     902
## 28202     910
## 28203     914
## 28204    1042
## 28205    1120
## 28207    1275
## 28208    1287
## 28211    1367
## 28212    1371
## 28213    1405
## 28214    1597
## 28215    2058
## 28216    2085
## 28217    2336
## 28218    2572
## 28219    2968
## 28220    3006
## 28221    3256
## 28222    3991
## 28223   26564
## 28226   45969
## 28227   51372
## 28228   58293
## 28229   59834
## 28230   67734
## 28232   69757
## 28233   70121
## 28234   71876
## 28235   72209
## 28240     924
## 28244    1232
## 28247    1387
## 28250    2060
## 28254    3210
## 28256    3484
## 28259    4149
## 28261    4770
## 28263    6763
## 28273   94959
## 28275  104374
## 28285     172
## 28286     196
## 28287     435
## 28288     466
## 28290     543
## 28291     552
## 28292     555
## 28293     802
## 28295    1234
## 28296    1278
## 28297    1376
## 28299    2001
## 28300    2395
## 28301    2406
## 28302    2657
## 28303    2699
## 28304      16
## 28305      34
## 28306     317
## 28307     350
## 28308     364
## 28309     376
## 28310     432
## 28311     435
## 28312     442
## 28314     539
## 28315     608
## 28317     852
## 28318    1136
## 28319    1198
## 28320    1259
## 28321    1291
## 28322    1307
## 28323    1370
## 28324    1394
## 28325    1407
## 28326    1968
## 28327    1993
## 28328    2115
## 28329    2291
## 28330    2355
## 28331    2459
## 28332    2461
## 28333    2462
## 28343      94
## 28380    1390
## 28381    1391
## 28384    1407
## 28387    1580
## 28391       1
## 28392       2
## 28393       5
## 28394      10
## 28396      17
## 28397      19
## 28399      32
## 28400      34
## 28402      39
## 28403      44
## 28404      47
## 28405      48
## 28406      50
## 28407      95
## 28408     104
## 28410     145
## 28411     147
## 28413     151
## 28414     153
## 28415     158
## 28416     163
## 28417     165
## 28418     168
## 28419     172
## 28420     173
## 28421     180
## 28422     185
## 28423     186
## 28424     208
## 28425     216
## 28427     224
## 28428     231
## 28432     261
## 28434     292
## 28436     300
## 28437     315
## 28438     317
## 28440     333
## 28441     337
## 28442     339
## 28443     342
## 28444     344
## 28445     345
## 28446     350
## 28448     357
## 28450     367
## 28451     368
## 28452     370
## 28453     372
## 28454     374
## 28456     413
## 28457     420
## 28458     435
## 28459     440
## 28460     441
## 28461     442
## 28462     455
## 28463     457
## 28464     474
## 28465     480
## 28466     491
## 28467     497
## 28468     500
## 28473     539
## 28474     546
## 28476     552
## 28477     555
## 28478     586
## 28479     587
## 28480     588
## 28481     589
## 28482     590
## 28483     592
## 28485     594
## 28486     595
## 28487     596
## 28488     597
## 28489     613
## 28490     648
## 28491     650
## 28492     653
## 28493     661
## 28494     673
## 28495     736
## 28496     750
## 28497     762
## 28499     780
## 28500     783
## 28501     784
## 28502     805
## 28503     830
## 28504     837
## 28507     899
## 28508     902
## 28509     903
## 28511     914
## 28512     916
## 28513     919
## 28514     920
## 28515     923
## 28516     934
## 28517     940
## 28520     986
## 28521     991
## 28522    1012
## 28523    1013
## 28524    1022
## 28525    1025
## 28527    1028
## 28528    1032
## 28530    1036
## 28532    1059
## 28535    1080
## 28536    1088
## 28538    1090
## 28539    1092
## 28540    1101
## 28542    1104
## 28543    1136
## 28544    1148
## 28545    1178
## 28547    1193
## 28549    1198
## 28550    1200
## 28551    1201
## 28552    1203
## 28553    1204
## 28554    1206
## 28556    1208
## 28557    1215
## 28558    1220
## 28561    1225
## 28564    1240
## 28567    1247
## 28568    1250
## 28569    1258
## 28570    1259
## 28571    1261
## 28572    1262
## 28573    1265
## 28574    1266
## 28575    1270
## 28580    1287
## 28581    1290
## 28582    1291
## 28584    1302
## 28586    1307
## 28587    1345
## 28588    1370
## 28589    1377
## 28591    1387
## 28592    1391
## 28594    1407
## 28595    1408
## 28599    1466
## 28600    1485
## 28601    1500
## 28602    1517
## 28603    1544
## 28604    1562
## 28605    1566
## 28606    1569
## 28607    1573
## 28608    1580
## 28609    1584
## 28610    1586
## 28611    1597
## 28612    1608
## 28613    1610
## 28614    1619
## 28616    1644
## 28618    1673
## 28619    1674
## 28622    1717
## 28623    1721
## 28624    1722
## 28625    1732
## 28626    1777
## 28627    1784
## 28630    1907
## 28631    1917
## 28632    1918
## 28633    1923
## 28634    1927
## 28635    1931
## 28637    1949
## 28638    1951
## 28639    1954
## 28640    1955
## 28641    1959
## 28642    1960
## 28644    1962
## 28646    2000
## 28647    2001
## 28648    2002
## 28649    2003
## 28650    2005
## 28652    2011
## 28653    2012
## 28654    2020
## 28655    2023
## 28657    2054
## 28658    2080
## 28659    2081
## 28660    2083
## 28661    2085
## 28663    2096
## 28664    2100
## 28665    2105
## 28666    2114
## 28667    2115
## 28668    2117
## 28669    2118
## 28671    2133
## 28672    2134
## 28673    2137
## 28674    2139
## 28675    2144
## 28676    2145
## 28677    2161
## 28678    2167
## 28679    2174
## 28680    2193
## 28682    2236
## 28684    2273
## 28685    2278
## 28686    2291
## 28687    2294
## 28688    2296
## 28689    2302
## 28690    2310
## 28694    2336
## 28695    2352
## 28696    2355
## 28697    2359
## 28698    2383
## 28699    2394
## 28700    2396
## 28701    2398
## 28702    2406
## 28703    2413
## 28704    2420
## 28705    2421
## 28706    2424
## 28708    2428
## 28710    2455
## 28711    2470
## 28712    2485
## 28713    2490
## 28714    2501
## 28715    2502
## 28716    2529
## 28717    2539
## 28718    2541
## 28723    2581
## 28724    2599
## 28725    2605
## 28726    2617
## 28727    2628
## 28728    2640
## 28729    2641
## 28730    2642
## 28731    2657
## 28732    2671
## 28733    2683
## 28735    2688
## 28737    2694
## 28738    2699
## 28739    2701
## 28740    2706
## 28741    2710
## 28742    2716
## 28743    2717
## 28744    2719
## 28745    2723
## 28746    2724
## 28747    2728
## 28748    2761
## 28749    2762
## 28750    2791
## 28751    2797
## 28752    2804
## 28753    2808
## 28756    2881
## 28757    2890
## 28759    2915
## 28761    2944
## 28762    2953
## 28764    2987
## 28765    2995
## 28767    3005
## 28768    3006
## 28769    3033
## 28770    3034
## 28772    3053
## 28773    3072
## 28776    3082
## 28777    3087
## 28778    3101
## 28779    3104
## 28780    3108
## 28781    3114
## 28783    3147
## 28785    3155
## 28786    3168
## 28787    3175
## 28788    3176
## 28792    3243
## 28793    3246
## 28794    3247
## 28796    3253
## 28797    3255
## 28798    3256
## 28799    3257
## 28800    3263
## 28801    3269
## 28802    3273
## 28804    3300
## 28805    3301
## 28806    3354
## 28807    3361
## 28808    3362
## 28809    3386
## 28810    3408
## 28811    3418
## 28812    3421
## 28813    3448
## 28814    3452
## 28818    3526
## 28820    3549
## 28821    3552
## 28825    3617
## 28826    3623
## 28827    3624
## 28828    3671
## 28829    3717
## 28830    3745
## 28831    3751
## 28832    3752
## 28833    3753
## 28834    3785
## 28837    3809
## 28838    3868
## 28839    3869
## 28840    3882
## 28841    3891
## 28843    3916
## 28844    3936
## 28845    3948
## 28846    3967
## 28848    3977
## 28849    3988
## 28850    3996
## 28851    4002
## 28854    4015
## 28856    4018
## 28858    4022
## 28859    4025
## 28860    4027
## 28862    4041
## 28863    4047
## 28864    4069
## 28865    4090
## 28866    4103
## 28868    4161
## 28869    4207
## 28870    4212
## 28871    4223
## 28875    4262
## 28876    4270
## 28881    4321
## 28882    4322
## 28883    4344
## 28884    4367
## 28887    4372
## 28888    4388
## 28889    4427
## 28890    4447
## 28892    4558
## 28893    4571
## 28894    4616
## 28895    4638
## 28896    4641
## 28897    4643
## 28898    4701
## 28899    4718
## 28901    4734
## 28902    4735
## 28903    4776
## 28904    4816
## 28905    4823
## 28906    4855
## 28911    4887
## 28912    4896
## 28913    4901
## 28915    4973
## 28920    5013
## 28921    5014
## 28922    5015
## 28923    5026
## 28924    5047
## 28925    5055
## 28928    5134
## 28929    5152
## 28931    5219
## 28932    5254
## 28933    5266
## 28934    5296
## 28935    5299
## 28936    5308
## 28937    5316
## 28939    5357
## 28941    5378
## 28942    5388
## 28943    5389
## 28944    5400
## 28946    5421
## 28947    5444
## 28949    5459
## 28950    5479
## 28951    5481
## 28952    5502
## 28953    5507
## 28954    5574
## 28955    5611
## 28957    5650
## 28958    5669
## 28959    5679
## 28960    5747
## 28961    5810
## 28962    5816
## 28963    5872
## 28964    5876
## 28966    5941
## 28967    5945
## 28968    5947
## 28970    5956
## 28971    5989
## 28972    5992
## 28973    5994
## 28975    6059
##                                                                                                                                                         title
## 1                                                                                                                                             Dangerous Minds
## 2                                                                                                                                                       Dumbo
## 3                                                                                                                                                    Sleepers
## 4                                                                                                                                        Escape from New York
## 6                                                                                                                                            Deer Hunter, The
## 7                                                                                                                                                     Ben-Hur
## 8                                                                                                                                                      Gandhi
## 9                                                                                                                             Dracula (Bram Stoker's Dracula)
## 10                                                                                                                                                  Cape Fear
## 11                                                                                                                              Star Trek: The Motion Picture
## 12                                                                                                                            Beavis and Butt-Head Do America
## 15                                                                                                                                    Gods Must Be Crazy, The
## 16                                                                                                                                                     Willow
## 17                                                                                                                                                       Antz
## 18                                                                                                                                                   Fly, The
## 19                                                                                                                                               Time Bandits
## 20                                                                                                                                            Blazing Saddles
## 26                                                                                                                                           Mighty Aphrodite
## 27                                                                                                                                         Mr. Holland's Opus
## 29                                                                                                                                     Brothers McMullen, The
## 32                                                                                                                                               Crimson Tide
## 33                                                                                                                                 Die Hard: With a Vengeance
## 34                                                                                                                                               First Knight
## 35                                                                                                                                                   Net, The
## 36                                                                                                                                                Nine Months
## 37                                                                                                                                                 Waterworld
## 39                                                                                                                                                     Clerks
## 40                                                                                                                                                 Disclosure
## 41                                                                                                                                                    Ed Wood
## 42                                                                                                                                                 Houseguest
## 47                                                                                                                                Madness of King George, The
## 49                                                                                                                                                   Outbreak
## 51                                                                                                                                                  Quiz Show
## 53                                                                                                                                          Santa Clause, The
## 54                                                                                                                                              Shallow Grave
## 55                                                                                                                                    While You Were Sleeping
## 58                                                                                                                                               Forrest Gump
## 59                                                                                                                                Four Weddings and a Funeral
## 60                                                                                                                                             Lion King, The
## 61                                                                                                                                                  Mask, The
## 62                                                                                                                         Naked Gun 33 1/3: The Final Insult
## 63                                                                                                                                                 Paper, The
## 64                                                                                                                                              Reality Bites
## 65                                                                                                                                                      Speed
## 66                                                                                                                                                       Wolf
## 67                                                                                      Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 68                                                                                                                                       Addams Family Values
## 70                                                                                                                                              Fugitive, The
## 72                                                                                                                                        In the Line of Fire
## 74                                                                                                                                           Last Action Hero
## 75                                                                                                                                     Much Ado About Nothing
## 82                                                                                                                                       Sleepless in Seattle
## 83                                                                                                                                                  Threesome
## 85                                                                                                                                      Three Musketeers, The
## 87                                                                                                                                                 Home Alone
## 88                                                                                                                                                      Ghost
## 89                                                                                                                                                    Aladdin
## 93                                                                                                                                  Silence of the Lambs, The
## 94                                                                                                                                            Aristocats, The
## 97                                                                                                                                Indian in the Cupboard, The
## 99                                                                                                                                         Heavenly Creatures
## 100                                                                                                                                               Major Payne
## 103                                                                                                                                          Flintstones, The
## 105                                                                                                                                                     Speed
## 106                                                                                                                                          Schindler's List
## 107                                                                                                                                                   Aladdin
## 108                                                                                                                                                    Batman
## 109                                                                                                                                 Silence of the Lambs, The
## 110                                                                                                                                      Beauty and the Beast
## 111                                                                                                                                                   Twister
## 113                                                                                                                                                     Bound
## 115                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 117                                                                                                                                      Fried Green Tomatoes
## 119                                                                                                                                 Men in Black (a.k.a. MIB)
## 124                                                                                                                                              Pet Sematary
## 125                                                                                                                                                 Big Daddy
## 126                                                                                                                                             Summer of Sam
## 127                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 128                                                                                                                                          Sixth Sense, The
## 132                                                                                                                                                Encino Man
## 135                                                                                                                                                Spider-Man
## 136                                                                                                                                     Bowling for Columbine
## 137                                                                                                                                              Finding Nemo
## 138                                                                                                            Lord of the Rings: The Return of the King, The
## 139                                                                                                                     Eternal Sunshine of the Spotless Mind
## 140                                                                                                                                           Fahrenheit 9/11
## 141                                                                                                                                              Spider-Man 2
## 142                                                                                                                                    Daria: Is It Fall Yet?
## 143                                                                                                                                            V for Vendetta
## 146                                                                                                                                          Dark Knight, The
## 153                                                                                                                                               Judge Dredd
## 154                                                                                                                                                  Net, The
## 158                                                                                                                                    Star Trek: Generations
## 164                                                                                                                                                 True Lies
## 165                                                                                                                                      Addams Family Values
## 166                                                                                                                                             Carlito's Way
## 168                                                                                                                                                 Coneheads
## 176                                                                                                                                        Dances with Wolves
## 236                                                                                                                    Star Trek VI: The Undiscovered Country
## 238                                                                                                                             Star Trek IV: The Voyage Home
## 239                                                                                                                                            Batman Returns
## 244                                                                                                                            Lost World: Jurassic Park, The
## 248                                                                                                                                               Wild Things
## 251                                                                                                                                           Lethal Weapon 4
## 255                                                                                                                                                 Labyrinth
## 259                                                                                                                                           Lethal Weapon 3
## 260                                                                                                                                                  Gremlins
## 269                                                                                                                                  Honey, I Shrunk the Kids
## 284                                                                                                                                 Dead Men Don't Wear Plaid
## 294                                                                                                                                                    Willow
## 297                                                                                                                                         Seventh Sign, The
## 308                                                                                                                                                Dick Tracy
## 311                                                                                                                                    It Came from Hollywood
## 317                                                                                                                                                 Bowfinger
## 323                                                                                                                                              Medicine Man
## 324                                                                                                                                              Fright Night
## 327                                                                                                                                                 Psycho II
## 328                                                                                                                                                Psycho III
## 332                                                                                                                                                 RoboCop 2
## 335                                                                                                                                                 Creepshow
## 345                                                                                                      Loaded Weapon 1 (National Lampoon's Loaded Weapon 1)
## 349                                                                                                                                      White Men Can't Jump
## 351                                                                                                                                   Transformers: The Movie
## 357                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 359                                                                                                                                Ace Ventura: Pet Detective
## 367                                                                                                                                                   Aladdin
## 370                                                                                                                                      Nutty Professor, The
## 371                                                                                                                                            Godfather, The
## 372                                                                                                                                                   Vertigo
## 376                                                                                                                           One Flew Over the Cuckoo's Nest
## 377                                                                                                                                   Godfather: Part II, The
## 381                                                                                                                                             Jerry Maguire
## 383                                                                                                                            Lost World: Jurassic Park, The
## 391                                                                                                                                             Exorcist, The
## 392                                                                                                                                  Godfather: Part III, The
## 396                                                                                                                                             Bug's Life, A
## 398                                                                                                                                              Office Space
## 402                                                                                                                                          Sixth Sense, The
## 403                                                                                                                                                 Bowfinger
## 404                                                                                                                                  Ferris Bueller's Day Off
## 405                                                                                                                                      Being John Malkovich
## 406                                                                                                                                               Toy Story 2
## 407                                                                                                                                  Talented Mr. Ripley, The
## 409                                                                                                                                              Patriot, The
## 411                                                                                                                                          Meet the Parents
## 414                                                                                                                                                 Cast Away
## 416                                                                                                                                                     Shrek
## 417                                                                                                                                              Moulin Rouge
## 419                                                                                                                                            American Pie 2
## 420                                                                                                                                            Ocean's Eleven
## 422                                                                                                                                                Panic Room
## 426                                                                                                                                     Bowling for Columbine
## 428                                                                                                                   Harry Potter and the Chamber of Secrets
## 430                                                                                                                                      Bend It Like Beckham
## 434                                                                                                                                       Lost in Translation
## 438                                                                                                                                           Fahrenheit 9/11
## 443                                                                                                                         Charlie and the Chocolate Factory
## 453                                                                                                                                                    Casper
## 454                                                                                                                                               Judge Dredd
## 463                                                                                                                                               Sling Blade
## 464                                                                                                                                               Chasing Amy
## 465                                                                                                                                               Jackal, The
## 466                                                                                                                                               Wag the Dog
## 467                                                                                                                                               Deep Impact
## 468                                                                                                                            X-Files: Fight the Future, The
## 469                                                                                                                                           Lethal Weapon 2
## 473                                                                                                                                              Office Space
## 474                                                                                                                                               Logan's Run
## 476                                                                                                                                               Matrix, The
## 477                                                                                                                            Rocky Horror Picture Show, The
## 479                                                                                                                                               Mystery Men
## 481                                                                                                                                               Three Kings
## 482                                                                                                                                                     Dogma
## 484                                                                                                                                               Pitch Black
## 485                                                                                                                                               Chicken Run
## 486                                                                                                                                               Ghost World
## 487                                                                                                                                               Vanilla Sky
## 489                                                                                                                                         Hero (Ying xiong)
## 492                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 494                                                                                                                                              Garden State
## 496                                                                                                                                                 Toy Story
## 497                                                                                                                                                 GoldenEye
## 498                                                                                                                                                Get Shorty
## 499                                                                                                                                           Dangerous Minds
## 502                                                                                                                                             Happy Gilmore
## 507                                                                                                                                              Strange Days
## 508                                                                                                                                     Walk in the Clouds, A
## 510                                                                                                                               Madness of King George, The
## 511                                                                                                                                                  Stargate
## 513                                                                                                                                    Star Trek: Generations
## 514                                                                                                                                                 Tommy Boy
## 515                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 516                                                                                                                                          Flintstones, The
## 517                                                                                                                                              Forrest Gump
## 518                                                                                                                               Four Weddings and a Funeral
## 519                                                                                                                                            Lion King, The
## 520                                                                                                                                                 Mask, The
## 521                                                                                                                                                     Speed
## 524                                                                                                                                            Mrs. Doubtfire
## 526                                                                                                                                      Sleepless in Seattle
## 530                                                                                                                                Terminator 2: Judgment Day
## 532                                                                                                                                                    Batman
## 534                                                                                                                                      Beauty and the Beast
## 535                                                                                                                                               Heavy Metal
## 537                                                                                                                              Truth About Cats & Dogs, The
## 539                                                                                                                                                Craft, The
## 540                                                                                                                                                   Twister
## 541                                                                                                                                                 Barb Wire
## 543                                                                                                                             Independence Day (a.k.a. ID4)
## 544                                                                                                                                                    Eraser
## 546                                                                                                                                                  Die Hard
## 547                                                                                                                       Willy Wonka & the Chocolate Factory
## 550                                                                                                                                E.T. the Extra-Terrestrial
## 551                                                                                                                           Return of the Pink Panther, The
## 552                                                                                                                                      Escape from New York
## 556                                                                                                                                       Princess Bride, The
## 565                                                                                                                                        Back to the Future
## 567                                                                                                                                        Young Frankenstein
## 570                                                                                                                        Indiana Jones and the Last Crusade
## 571                                                                                                                                      Pink Floyd: The Wall
## 573                                                                                                                                   When Harry Met Sally...
## 574                                                                                                                                 Mirror Has Two Faces, The
## 575                                                                                                                             Star Trek: The Motion Picture
## 576                                                                                                                    Star Trek VI: The Undiscovered Country
## 577                                                                                                                           Star Trek V: The Final Frontier
## 579                                                                                                                       Star Trek III: The Search for Spock
## 580                                                                                                                             Star Trek IV: The Voyage Home
## 581                                                                                                                                           Raising Arizona
## 583                                                                                                                                 Last of the Mohicans, The
## 585                                                                                                                                                To Die For
## 589                                                                                                                        Star Wars: Episode IV - A New Hope
## 590                                                                                                                                                      Nell
## 595                                                                                                                                 Robin Hood: Men in Tights
## 596                                                                                                                                                      Rudy
## 602                                                                                                                                           Time to Kill, A
## 604                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 612                                                                                                                                             Groundhog Day
## 615                                                                                                                                           Field of Dreams
## 616                                                                                                                                               Sling Blade
## 618                                                                                                                                             Jerry Maguire
## 620                                                                                                                                                   Con Air
## 621                                                                                                                                         L.A. Confidential
## 625                                                                                                                                                    Fallen
## 627                                                                                                                                               Deep Impact
## 630                                                                                                                                                    Splash
## 631                                                                                                                                       Secret of NIMH, The
## 636                                                                                                                                        Enemy of the State
## 637                                                                                                Christmas Vacation (National Lampoon's Christmas Vacation)
## 640                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 642                                                                                                                                                 Bowfinger
## 644                                                                                                                                                       Big
## 645                                                                                                                                        Christmas Story, A
## 646                                                                                                                                            Stir of Echoes
## 652                                                                                                                                       Remember the Titans
## 656                                                                                                                                         Finding Forrester
## 660                                                                                                                                                Score, The
## 661                                                                                                                                            Monsters, Inc.
## 662                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 665                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 666                                                                                                                                         Beautiful Mind, A
## 668                                                                                                              Star Wars: Episode II - Attack of the Clones
## 673                                                                                                                                     Bowling for Columbine
## 675                                                                                                                                       Catch Me If You Can
## 677                                                                                                                                          Italian Job, The
## 680                                                                                                                                              Runaway Jury
## 681                                                                                                                                         Last Samurai, The
## 685                                                                                                                                             Notebook, The
## 688                                                                                                                                         Shaun of the Dead
## 689                                                                                                                                                  Sin City
## 693                                                                                                                                          Wedding Crashers
## 694                                                                                                                                                   Syriana
## 695                                                                                                                                             Walk the Line
## 696                                                                                                                                           Rumor Has It...
## 697                                                                                                                                                 Annapolis
## 698                                                                                                                                                  Firewall
## 699                                                                                                                                         Failure to Launch
## 702                                                                                                                                                   Othello
## 704                                                                                                                                      Seven (a.k.a. Se7en)
## 712                                                                                                                                                 Rock, The
## 714                                                                                                                                           Enchanted April
## 717                                                                                                                                                    Hamlet
## 718                                                                                                                                          Addicted to Love
## 723                                                                                                                                                   Titanic
## 729                                                                                                                                           Few Good Men, A
## 730                                                                                                                                                 Rush Hour
## 733                                                                                                                                                      Antz
## 737                                                                                                                                        Thin Red Line, The
## 738                                                                                                                                                   Payback
## 740                                                                                                                                              Analyze This
## 742                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 748                                                                                                                                Ace Ventura: Pet Detective
## 750                                                                                                                                                    Batman
## 752                                                                                                                                                  Die Hard
## 753                                                                                                                                            Reservoir Dogs
## 754                                                                                                                                                   Top Gun
## 761                                                                                                                                       Blues Brothers, The
## 766                                                                                                                                            Absolute Power
## 767                                                                                                                                                  Anaconda
## 769                                                                                                                                       Alien: Resurrection
## 772                                                                                                                                             Almost Heroes
## 774                                                                                                                                                L.A. Story
## 777                                                                                                                                                 Rocky III
## 781                                                                                                                                     Astronaut's Wife, The
## 782                                                                                                                                                  Stigmata
## 784                                                                                                                                           Double Jeopardy
## 786                                                                                                                                                 Superstar
## 788                                                                                                                                     House on Haunted Hill
## 789                                                                                                                                       Bone Collector, The
## 792                                                                                                                                       From Dusk Till Dawn
## 794                                                                                                                          Free Willy 2: The Adventure Home
## 797                                                                                                                                                   Kingpin
## 802                                                                                                                                           Lethal Weapon 4
## 803                                                                                                                                      D2: The Mighty Ducks
## 805                                                                                                                                          Sixth Sense, The
## 806                                                                                                                                        Do the Right Thing
## 807                                                                                                                                     Bowling for Columbine
## 813                                                                                                                                           Informant!, The
## 817                                                                                                                                                Inside Job
## 819                                                                                                                                                 127 Hours
## 829                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 830                                                                                                                               Searching for Bobby Fischer
## 831                                                                                                                                 Six Degrees of Separation
## 832                                                                                                                                                     Fargo
## 833                                                                                                                                                 Space Jam
## 835                                                                                                                                                 Barb Wire
## 836                                                                                                                                              Mary Poppins
## 837                                                                                                                                       Alice in Wonderland
## 838                                                                                                                                                   Sleeper
## 839                                                                                                                                       Princess Bride, The
## 842                                                                                                                                                Annie Hall
## 844                                                                                                                        Unbearable Lightness of Being, The
## 845                                                                                                                           Star Trek II: The Wrath of Khan
## 847                                                                                                                                               Chasing Amy
## 848                                                                                                                                         Big Lebowski, The
## 849                                                                                                                                           Blame It on Rio
## 850                                                                                                                                             Bug's Life, A
## 852                                                                                                                                        Planet of the Apes
## 853                                                                                                                                               Swamp Thing
## 855                                                                                                                                Deuce Bigalow: Male Gigolo
## 856                                                                                                                                    Cider House Rules, The
## 857                                                                                                                                  Talented Mr. Ripley, The
## 858                                                                                                                                            Angela's Ashes
## 860                                                                                                                                             Drowning Mona
## 863                                                                                                                                                Dreamscape
## 864                                                                                                                                               House Party
## 865                                                                                                                                            Rocketship X-M
## 866                                                                                                                                                 Footloose
## 868                                                                                                                                              Chuck & Buck
## 870                                                                                                                                    Pokémon the Movie 2000
## 871                                                                                                                                       Anatomy of a Murder
## 872                                                                                                                                           What About Bob?
## 874                                                                                                                                             Space Cowboys
## 875                                                                                                                                           Mad About Mambo
## 877                                                                                                                                               Air America
## 878                                                                                                                                           Steel Magnolias
## 879                                                                                                                                         Replacements, The
## 881                                                                                                                   Godzilla 2000 (Gojira ni-sen mireniamu)
## 883                                                                                                                   Naked Gun 2 1/2: The Smell of Fear, The
## 884                                                                                                                                                     Shane
## 885                                                                                                                                                Cat Ballou
## 887                                                                                                                                                Love & Sex
## 888                                                                                                                                         Steal This Movie!
## 891                                                                                                                                      Seven (a.k.a. Se7en)
## 894                                                                                                                                              Pulp Fiction
## 898                                                                                                                                             Jurassic Park
## 899                                                                                                                                                      Rudy
## 902                                                                                                                                                     Ghost
## 905                                                                                                                                         Wizard of Oz, The
## 906                                                                                                                             Robin Hood: Prince of Thieves
## 908                                                                                                                                             Groundhog Day
## 909                                                                                                                                           Lethal Weapon 4
## 912                                                                                                                                               Matrix, The
## 913                                                                                                                                10 Things I Hate About You
## 915                                                                                                                                          Sixth Sense, The
## 916                                                                                                                                        Christmas Story, A
## 917                                                                                                                                            Boys Don't Cry
## 918                                                                                                                                  Ferris Bueller's Day Off
## 919                                                                                                                                               Toy Story 2
## 921                                                                                                                                    League of Their Own, A
## 922                                                                                                                                         Muppet Movie, The
## 923                                                                                                                                             Shanghai Noon
## 926                                                                                                                                             City Slickers
## 927                                                                                                                                            American Pie 2
## 929                                                                                                                                            Monsters, Inc.
## 935                                                                                                                                     Bourne Ultimatum, The
## 942                                                                                                                                               John Carter
## 943                                                                                                                           Snow White and the Seven Dwarfs
## 945                                                                                                                                                   Titanic
## 946                                                                                                                                 Cat from Outer Space, The
## 947                                                                                                                                             Bug's Life, A
## 948                                                                                                                                      Prince of Egypt, The
## 949                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 950                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 951                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 952                                                                                                                                          Inspector Gadget
## 953                                                                                                                                             Runaway Bride
## 954                                                                                                                                      For Love of the Game
## 956                                                                                                                                             Stuart Little
## 958                                                                                                                                           Mission to Mars
## 959                                                                                                                                    Mission: Impossible II
## 961                                                                                                                                              6th Day, The
## 963                                                                                                                                                 Toy Story
## 964                                                                                                                                                   Jumanji
## 967                                                                                                                                                 GoldenEye
## 968                                                                                                                                   American President, The
## 969                                                                                                                                                     Nixon
## 970                                                                                                                                                    Casino
## 971                                                                                                                                     Sense and Sensibility
## 972                                                                                                                            Ace Ventura: When Nature Calls
## 974                                                                                                                                                   Copycat
## 975                                                                                                                                         Leaving Las Vegas
## 977                                                                                                                                                      Babe
## 978                                                                                                                                          Dead Man Walking
## 979                                                                                                                                                  Clueless
## 980                                                                                                                                             Mortal Kombat
## 983                                                                                                                                          Mighty Aphrodite
## 984                                                                                                                                        Mr. Holland's Opus
## 985                                                                                                                                       From Dusk Till Dawn
## 987                                                                                                                                           Beautiful Girls
## 988                                                                                                                                              Broken Arrow
## 990                                                                                                                                             Happy Gilmore
## 991                                                                                                                                    Muppet Treasure Island
## 992                                                                                                                                                Braveheart
## 994                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 996                                                                                                                                    Flirting With Disaster
## 997                                                                                                                                                  Bad Boys
## 999                                                                                                                                                 Apollo 13
## 1000                                                                                                                                           Batman Forever
## 1001                                                                                                                                           Canadian Bacon
## 1002                                                                                                                                                    Congo
## 1003                                                                                                                                             Crimson Tide
## 1005                                                                                                                                                Desperado
## 1007                                                                                                                               Die Hard: With a Vengeance
## 1008                                                                                                                                                  Hackers
## 1009                                                                                                                                          Johnny Mnemonic
## 1012                                                                                                                                                 Mallrats
## 1013                                                                                                                                                 Net, The
## 1014                                                                                                                                                Showgirls
## 1015                                                                                                                                                  Species
## 1016                                                                                                                                             Strange Days
## 1017                                                                                                                                               Waterworld
## 1018                                                                                                                           Before the Rain (Pred dozhdot)
## 1020                                                                                                                                            Billy Madison
## 1022                                                                                                                                               Disclosure
## 1023                                                                                                                                        Dolores Claiborne
## 1024                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 1028                                                                                                                                             Forget Paris
## 1030                                                                                                                                       Heavenly Creatures
## 1031                                                                                                                                                     I.Q.
## 1032                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 1034                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 1035                                                                                                                                     Natural Born Killers
## 1036                                                                                                                                                 Outbreak
## 1043                                                                                                                                                 Stargate
## 1044                                                                                                                                        Santa Clause, The
## 1045                                                                                                                                Shawshank Redemption, The
## 1046                                                                                                                                     Swimming with Sharks
## 1047                                                                                                                                   Star Trek: Generations
## 1048                                                                                                                                               Underneath
## 1049                                                                                                                                  While You Were Sleeping
## 1050                                                                                                                                         Muriel's Wedding
## 1051                                                                                                                               Ace Ventura: Pet Detective
## 1052                                                                                                                                 Clear and Present Danger
## 1053                                                                                                                                                Crow, The
## 1054                                                                                                                                         Flintstones, The
## 1055                                                                                                                                             Forrest Gump
## 1056                                                                                                                              Four Weddings and a Funeral
## 1058                                                                                                                                                Mask, The
## 1059                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 1060                                                                                                                                               Paper, The
## 1061                                                                                                                                            Reality Bites
## 1062                                                                                                                                            Red Rock West
## 1065                                                                                                                                                     Wolf
## 1066                                                                                                                                                Cabin Boy
## 1068                                                                                                                                              Cliffhanger
## 1069                                                                                                                                                Coneheads
## 1070                                                                                                                                                     Dave
## 1072                                                                                                                                           Demolition Man
## 1073                                                                                                                                                Firm, The
## 1075                                                                                                                                     Hot Shots! Part Deux
## 1076                                                                                                                                     Hudsucker Proxy, The
## 1077                                                                                                                                      In the Line of Fire
## 1078                                                                                                                                            Jurassic Park
## 1079                                                                                                                                               Kalifornia
## 1080                                                                                                                                         King of the Hill
## 1081                                                                                                                                         Last Action Hero
## 1083                                                                                                                                           Mrs. Doubtfire
## 1084                                                                                                                                             Philadelphia
## 1085                                                                                                                                               Piano, The
## 1086                                                                                                                                Robin Hood: Men in Tights
## 1087                                                                                                                                                     Rudy
## 1089                                                                                                                                               Short Cuts
## 1090                                                                                                                                     Sleepless in Seattle
## 1091                                                                                                                                                   Sliver
## 1093                                                                                                                             So I Married an Axe Murderer
## 1095                                                                                                                          Nightmare Before Christmas, The
## 1097                                                                                                                                            War Room, The
## 1098                                                                                                                                 Welcome to the Dollhouse
## 1099                                                                                                                                      Spanking the Monkey
## 1100                                                                                                                                               Home Alone
## 1101                                                                                                                                                    Ghost
## 1102                                                                                                                                                  Aladdin
## 1104                                                                                                                                       Dances with Wolves
## 1107                                                                                                                          Snow White and the Seven Dwarfs
## 1108                                                                                                                                             Pretty Woman
## 1110                                                                                                                                              Heavy Metal
## 1111                                                                                                                                              Primal Fear
## 1112                                                                                                                                       Courage Under Fire
## 1114                                                                                                                            Kids in the Hall: Brain Candy
## 1115                                                                                                                                              Underground
## 1116                                                                                                                                               Barbarella
## 1117                                                                                           Alphaville (Alphaville, une étrange aventure de Lemmy Caution)
## 1118                                                                                                                             Truth About Cats & Dogs, The
## 1119                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 1120                                                                                                                                               Craft, The
## 1121                                                                                                                                                Rock, The
## 1122                                                                                                                                                  Twister
## 1123                                                                                                                          Wallace & Gromit: A Close Shave
## 1124                                                                                                                                             Arrival, The
## 1126                                                                                                                                               Striptease
## 1128                                                                                                                            Independence Day (a.k.a. ID4)
## 1129                                                                                                                                           Cable Guy, The
## 1130                                                                                                                                                  Kingpin
## 1131                                                                                                                                                   Eraser
## 1132                                                                                                                                     Nutty Professor, The
## 1133                                                                                                                                         Frighteners, The
## 1135                                                                                                                                               Phenomenon
## 1137                                                                                                                                            She's the One
## 1138                                                                                                                                                   Ransom
## 1139                                                                                                                                           Chain Reaction
## 1148                                                                                                                                         Some Like It Hot
## 1152                                                                                                                                             My Fair Lady
## 1153                                                                                                                                            Roman Holiday
## 1154                                                                                                                                        Wizard of Oz, The
## 1155                                                                                                                                       Gone with the Wind
## 1156                                                                                                                   Sunset Blvd. (a.k.a. Sunset Boulevard)
## 1159                                                                                                                                            All About Eve
## 1160                                                                                                                                               Spellbound
## 1161                                                                                                                                    It's a Wonderful Life
## 1163                                                                                                                                            Cool Runnings
## 1164                                                                                                                                      Sound of Music, The
## 1167                                                                                                                                 Long Kiss Goodnight, The
## 1168                                                                                                                     William Shakespeare's Romeo + Juliet
## 1170                                                                                                                      Willy Wonka & the Chocolate Factory
## 1172                                                                                                                                         Bonnie and Clyde
## 1173                                                                                                                                            Dirty Dancing
## 1175                                                                                                                                           Basic Instinct
## 1176                                                                                                                                               Doors, The
## 1180                                                                                                                                          Days of Thunder
## 1181                                                                                                                                                  Top Gun
## 1182                                                                                                                              People vs. Larry Flynt, The
## 1184                                                                                                                                         Jean de Florette
## 1185                                                                                                                          Monty Python and the Holy Grail
## 1186                                                                                                                                       When We Were Kings
## 1187                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 1189                                                                                                                 Cook the Thief His Wife & Her Lover, The
## 1191                                                                                                                                           Paths of Glory
## 1193                                                                                                                                     English Patient, The
## 1195                                                                                                                                      Thin Blue Line, The
## 1198                                                                                                                                      Princess Bride, The
## 1200                                                                                                                                                   Brazil
## 1202                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 1204                                                                                                                                       Lawrence of Arabia
## 1206                                                                                                                                    To Kill a Mockingbird
## 1210                                                                                                                Wings of Desire (Himmel über Berlin, Der)
## 1211                                                                                                                                           Third Man, The
## 1212                                                                                                                                               Goodfellas
## 1214                                                                                                                                         Army of Darkness
## 1215                                                                                                                                                      Ran
## 1217                                                                                                                                                   Psycho
## 1218                                                                                                                                      Blues Brothers, The
## 1224                                                                                                                                               Annie Hall
## 1226                                                                                                                                    Boot, Das (Boat, The)
## 1228                                                                                                                                         Harold and Maude
## 1229                                                                                                                                          Terminator, The
## 1230                                                                                                                    Rosencrantz and Guildenstern Are Dead
## 1232                                                                                                                                       Dead Poets Society
## 1234                                                                                                                                            Touch of Evil
## 1235                                                                                                                                Femme Nikita, La (Nikita)
## 1237                                                                                                                                               8 1/2 (8½)
## 1239                                                                                                                        Treasure of the Sierra Madre, The
## 1241                                                                                                                                              Stand by Me
## 1242                                                                                                                                                        M
## 1243                                                                                                                                        Great Escape, The
## 1245                                                                                                                                                     Diva
## 1250                                                                                                                                                   Patton
## 1251                                                                                                                                           Cool Hand Luke
## 1252                                                                                                    Raise the Red Lantern (Da hong deng long gao gao gua)
## 1253                                                                                                                                      Great Dictator, The
## 1254                                                                                                                                                High Noon
## 1255                                                                                                                                           Big Sleep, The
## 1256                                                                                                                                                  Ben-Hur
## 1259                                                                                                                                   Some Kind of Wonderful
## 1263                                                                                                                                          Field of Dreams
## 1264                                                                                                                               Man Who Would Be King, The
## 1265                                                                                                                       Butch Cassidy and the Sundance Kid
## 1267                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 1268                                                                                                                                               Birds, The
## 1269                                                                                                                                                Blob, The
## 1270                                                                                                                          Dracula (Bram Stoker's Dracula)
## 1271                                                                                                                                                 Candyman
## 1272                                                                                                                                 Star Trek: First Contact
## 1273                                                                                                                                              Sling Blade
## 1274                                                                                                     Paradise Lost: The Child Murders at Robin Hood Hills
## 1275                                                                                                                                               Die Hard 2
## 1276                                                                                                                                           Batman Returns
## 1277                                                                                                                                                   Grease
## 1278                                                                                                                                              Under Siege
## 1280                                                                                                                                            Mars Attacks!
## 1281                                                                                                                                            Jerry Maguire
## 1284                                                                                                                          Beavis and Butt-Head Do America
## 1289                                                                                                                                            Private Parts
## 1290                                                                                                                                               Saint, The
## 1291                                                                                                                                                    Crash
## 1292                                                                                                                                         Daytrippers, The
## 1293                                                                                                                                                Liar Liar
## 1294                                                                                                                                      Grosse Pointe Blank
## 1295                                                                                                                                                   Kissed
## 1296                                                                                                                                  8 Heads in a Duffel Bag
## 1297                                                                                                                   Romy and Michele's High School Reunion
## 1298                                                                                                              Austin Powers: International Man of Mystery
## 1299                                                                                                                                       Fifth Element, The
## 1300                                                                                                                                                  Nowhere
## 1301                                                                                                                           Lost World: Jurassic Park, The
## 1303                                                                                                                                                  Con Air
## 1304                                                                                                                                  Speed 2: Cruise Control
## 1305                                                                                                                                           Batman & Robin
## 1306                                                                                                                                 My Best Friend's Wedding
## 1310                                                                                                                                                 Cop Land
## 1311                                                                                                                                        Conspiracy Theory
## 1312                                                                                                                                            Air Force One
## 1313                                                                                                                                Hunt for Red October, The
## 1314                                                                                                                                                Edge, The
## 1315                                                                                                                                          Peacemaker, The
## 1320                                                                                                                          I Know What You Did Last Summer
## 1321                                                                                                                                     The Devil's Advocate
## 1322                                                                                                                             Fast, Cheap & Out of Control
## 1323                                                                                                                                                  Gattaca
## 1324                                                                                                                                                  Stripes
## 1325                                                                                                                                            Boogie Nights
## 1327                                                                                                                                            Sliding Doors
## 1328                                                                                                                                         Truman Show, The
## 1330                                                                                                                                      Alien: Resurrection
## 1331                                                                                                                                             Apostle, The
## 1335                                                                                                                                                  Titanic
## 1336                                                                                                                                      Tomorrow Never Dies
## 1337                                                                                                                                             Jackie Brown
## 1338                                                                                                                                        Big Lebowski, The
## 1339                                                                                                                                       Great Expectations
## 1340                                                                                                                                              Wag the Dog
## 1342                                                                                                                                                Hard Rain
## 1343                                                                                                                                               Half Baked
## 1344                                                                                                                                                   Fallen
## 1345                                                                                                                                      Wedding Singer, The
## 1346                                                                                                                                                   Sphere
## 1347                                                                                                                                       As Good as It Gets
## 1348                                                                                                                                            U.S. Marshals
## 1349                                                                                                                                              Wild Things
## 1350                                                                                                                                       Cool, Dry Place, A
## 1351                                                                                                                                           Primary Colors
## 1352                                                                                                                                      Two Girls and a Guy
## 1354                                                                                                                                            Lost in Space
## 1355                                                                                                                                    Spanish Prisoner, The
## 1356                                                                                                                                  Last Days of Disco, The
## 1360                                                                                                                                               Species II
## 1361                                                                                                                                              Deep Impact
## 1362                                                                                                                                                 Godzilla
## 1364                                                                                                                                                 Insomnia
## 1365                                                                                                                                        Can't Hardly Wait
## 1366                                                                                                                                                 High Art
## 1367                                                                                                                                               Henry Fool
## 1368                                                                                                                           X-Files: Fight the Future, The
## 1370                                                                                                                                            Smoke Signals
## 1371                                                                                                                                               Armageddon
## 1375                                                                                                                                 In the Heat of the Night
## 1376                                                                                                                                          Midnight Cowboy
## 1377                                                                                                                                   French Connection, The
## 1378                                                                                                                                                    Rocky
## 1381                                                                                                                                                 Rain Man
## 1382                                                                                                                                       Driving Miss Daisy
## 1383                                                                                                                                                    Klute
## 1385                                                                                                                                              Poltergeist
## 1387                                                                                                                                            Lethal Weapon
## 1388                                                                                                                                                 Gremlins
## 1391                                                                                                                                               Metropolis
## 1392                                                                                                                               Back to the Future Part II
## 1393                                                                                                                              Back to the Future Part III
## 1394                                                                                                                                                    Bambi
## 1396                                                                                                                                       Dangerous Liaisons
## 1397                                                                                                                                                   Lolita
## 1398                                                                                                                                      Saving Private Ryan
## 1399                                                                                                                                                Condorman
## 1400                                                                                                                                 Honey, I Shrunk the Kids
## 1401                                                                                                                                          Negotiator, The
## 1402                                                                                                                                              BASEketball
## 1404                                                                                                                                              Blue Velvet
## 1405                                                                                                                                                   Splash
## 1409                                                                                                                                       Addams Family, The
## 1410                                                                                                                                               Snake Eyes
## 1411                                                                                                                                Adventures in Babysitting
## 1412                                                                                                                                            Weird Science
## 1413                                                                                                                                        Dark Crystal, The
## 1414                                                                                                                                           Pretty in Pink
## 1415                                                                                                                                  Gods Must Be Crazy, The
## 1416                                                                                                                                          Rosemary's Baby
## 1417                                                                                                                                   NeverEnding Story, The
## 1418                                                                                                                                                    Blade
## 1420                                                                                                                                     Strangers on a Train
## 1422                                                                                                                                                 Rounders
## 1425                                                                                                                                          Say Anything...
## 1426                                                                                                                                          Few Good Men, A
## 1427                                                                                                                                        Indecent Proposal
## 1428                                                                                                                                                Rush Hour
## 1429                                                                                                                                                    Ronin
## 1430                                                                                                                                                   Pecker
## 1431                                                                                                                                               Thing, The
## 1433                                                                                                                                      Edward Scissorhands
## 1434                                                                                                                                                     Antz
## 1435                                                                                                                                          My Cousin Vinny
## 1436                                                                                                                                                Nashville
## 1437                                                                                                                           2010: The Year We Make Contact
## 1438                                                                                                                                        Elephant Man, The
## 1440                                                                                                                                            Pleasantville
## 1441                                                                                                                      Life Is Beautiful (La Vita è bella)
## 1442                                                                                                                                       American History X
## 1443                                                                                                                                        Gods and Monsters
## 1444                                                                                                                                               Siege, The
## 1445                                                                                                                                                Elizabeth
## 1446                                                                                                                                           Meet Joe Black
## 1447                                                                                                                 Nights of Cabiria (Notti di Cabiria, Le)
## 1448                                                                                                                                       Enemy of the State
## 1449                                                                                                                                            Bug's Life, A
## 1450                                                                                                                      Central Station (Central do Brasil)
## 1451                                                                                                                                Celebration, The (Festen)
## 1452                                                                                                                                                King Kong
## 1453                                                                                                                                Desperately Seeking Susan
## 1454                                                                                                                                                   Fletch
## 1455                                                                                                                                           Police Academy
## 1456                                                                                                                                          Very Bad Things
## 1457                                                                                                                                           Simple Plan, A
## 1459                                                                                                                                      Shakespeare in Love
## 1460                                                                                                                                   Jewel of the Nile, The
## 1461                                                                                                                                      Romancing the Stone
## 1462                                                                                                                                                   Cocoon
## 1464                                                                                                                                          You've Got Mail
## 1465                                                                                                                                       Thin Red Line, The
## 1466                                                                                                                                             Faculty, The
## 1467                                                                                                                                               Affliction
## 1468                                                                                                                                            Varsity Blues
## 1469                                                                                                                                                 Fly, The
## 1470                                                                                                               Name of the Rose, The (Name der Rose, Der)
## 1472                                                                                                                                                  Payback
## 1473                                                                                                                                              October Sky
## 1475                                                                                                                                                      8MM
## 1476                                                                                                                                              Logan's Run
## 1477                                                                                                                                             Analyze This
## 1478                                                                                                                                         Cruel Intentions
## 1479                                                                                                                        Lock, Stock & Two Smoking Barrels
## 1480                                                                                                                                                 Ravenous
## 1481                                                                                                                                           Mod Squad, The
## 1484                                                                                                                                      Out-of-Towners, The
## 1485                                                                                                       Dreamlife of Angels, The (Vie rêvée des anges, La)
## 1486                                                                                                                                                Following
## 1487                                                                                                                                                       Go
## 1488                                                                                                                                        Never Been Kissed
## 1489                                                                                         Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar)
## 1491                                                                                                                                              Pushing Tin
## 1492                                                                                                                                                 Election
## 1493                                                                                                                                                 eXistenZ
## 1494                                                                                                                                               Entrapment
## 1495                                                                                                                                               Mummy, The
## 1496                                                                                                                             After Life (Wandafuru raifu)
## 1497                                                                                                                Star Wars: Episode I - The Phantom Menace
## 1499                                                                                                                                             Frankenstein
## 1500                                                                                                                           Rocky Horror Picture Show, The
## 1502                                                                                                                                              Desert Blue
## 1503                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 1504                                                                                                                       Red Violin, The (Violon rouge, Le)
## 1505                                                                                                                                Run Lola Run (Lola rennt)
## 1506                                                                                                                                            Arachnophobia
## 1507                                                                                                                     South Park: Bigger, Longer and Uncut
## 1508                                                                                                                                           Wild Wild West
## 1509                                                                                                                                            Summer of Sam
## 1510                                                                                                                                             American Pie
## 1511                                                                                                                                           Arlington Road
## 1512                                                                                                                                       Muppets From Space
## 1513                                                                                                                                 Blair Witch Project, The
## 1515                                                                                                                                              Lake Placid
## 1517                                                                                                                                          Ghostbusters II
## 1518                                                                                                                                       Drop Dead Gorgeous
## 1519                                                                                                                                            Deep Blue Sea
## 1520                                                                                                                                              Mystery Men
## 1521                                                                                                                                             Killing, The
## 1522                                                                                                                                                   Lolita
## 1523                                                                                                                                                     Dick
## 1524                                                                                                                                          Iron Giant, The
## 1525                                                                                                                                         Sixth Sense, The
## 1526                                                                                                                                 Thomas Crown Affair, The
## 1527                                                                                                                                               Yards, The
## 1530                                                                                                                              National Lampoon's Vacation
## 1532                                                                                                                                       Pelican Brief, The
## 1533                                                                                                          Three Days of the Condor (3 Days of the Condor)
## 1534                                                                                                                                                 Stigmata
## 1535                                                                                                                                           Stir of Echoes
## 1538                                                                                                                                          Double Jeopardy
## 1541                                                                                                                                           Boys Don't Cry
## 1543                                                                                                                                           Risky Business
## 1549                                                                                                                                      Sydney (Hard Eight)
## 1552                                                                                                                                    Bringing Out the Dead
## 1554                                                                                                                                                  RoboCop
## 1556                                                                                                                                          Licence to Kill
## 1560                                                                                                                                            Bachelor, The
## 1561                                                                                                                                      Bone Collector, The
## 1563                                                                                                                                           American Movie
## 1564                                                                                                                                               Last Night
## 1566                                                                                                                                         Drugstore Cowboy
## 1567                                                                                                                                             Falling Down
## 1571                                                                                                                                               Dead Again
## 1572                                                                                                                                                    Dogma
## 1574                                                                                                                                                    42 Up
## 1575                                                                                                                                            Sleepy Hollow
## 1576                                                                                                                                 World Is Not Enough, The
## 1578                                                            Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 1581                                                                                                                                                Backdraft
## 1583                                                                                                                                              End of Days
## 1584                                                                                                                                              Toy Story 2
## 1586                                                                                                                                        Sweet and Lowdown
## 1587                                                                                                                      Grand Illusion (La grande illusion)
## 1588                                                                                                                               Deuce Bigalow: Male Gigolo
## 1589                                                                                                                                          Green Mile, The
## 1590                                                                                                                                   Cider House Rules, The
## 1591                                                                                                                                            War Zone, The
## 1592                                                                                                                                   Last Picture Show, The
## 1593                                                                                                                                            Stuart Little
## 1594                                                                                                                                                 Magnolia
## 1595                                                                                                                                               Easy Rider
## 1596                                                                                                                                         Any Given Sunday
## 1597                                                                                                                                          Man on the Moon
## 1599                                                                                                                                 Talented Mr. Ripley, The
## 1600                                                                                                                                                    Titus
## 1601                                                                                                    Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr.
## 1602                                                                                                                                   Snow Falling on Cedars
## 1604                                                                                                                                          Pacific Heights
## 1605                                                                                                                                              Down to You
## 1607                                                                                                                                                    Alive
## 1608                                                                                                                                            Wayne's World
## 1609                                                                                                                                   League of Their Own, A
## 1610                                                                                                                                            Patriot Games
## 1612                                                                                                                            Twin Peaks: Fire Walk with Me
## 1615                                                                                                                                             Mariachi, El
## 1616                                                                                                                                           Bad Lieutenant
## 1617                                                                                                                                                 Scream 3
## 1618                                                                                                                                     Boondock Saints, The
## 1619                                                                                                                                               Beach, The
## 1620                                                                                                                                                 Snow Day
## 1624                                                                                                                                              City Lights
## 1625                                                                                                                                           Reindeer Games
## 1627                                                                                                                                               Deterrence
## 1630                                                                                                                                      Defending Your Life
## 1631                                                                                                                                              Bull Durham
## 1632                                                                                                                                        Dog Day Afternoon
## 1633                                                                                                                                                      JFK
## 1634                                                                                                                                        Shanghai Surprise
## 1635                                                                                                                                          Erin Brockovich
## 1637                                                                                                                                          Thelma & Louise
## 1638                                                                                                                                             Animal House
## 1639                                                                                                                                        Creature Comforts
## 1640                                                                                                                                         Double Indemnity
## 1641                                                                                                                                    Good Morning, Vietnam
## 1642                                                                                                                                        Lord of the Flies
## 1643                                                                                                                                             Modern Times
## 1646                                                                                                                                           Empire Records
## 1648                                                                                                                                              Skulls, The
## 1649                                                                                                                                                     Hook
## 1650                                                                                                                                                   Misery
## 1653                                                                                                                                                Frequency
## 1654                                                                                                                                             Return to Me
## 1655                                                                                                                                                 Predator
## 1656                                                                                                                                                  28 Days
## 1657                                                                                                                                          American Psycho
## 1659                                                                                                                                             East is East
## 1660                                                                                                                                                    Diner
## 1661                                                                                                                                               Caddyshack
## 1662                                                                                                                                                    U-571
## 1663                                                                                                                                     Virgin Suicides, The
## 1664                                                                                                                                          Big Kahuna, The
## 1667                                                                                                                                        Two Moon Junction
## 1668                                                                                                                                                Gladiator
## 1669                                                                                                                                                   Hamlet
## 1671                                                                                                                                        Small Time Crooks
## 1672                                                                                                                                   Mission: Impossible II
## 1673                                                                                                                                            Shanghai Noon
## 1674                                                                                           8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women)
## 1676                                                                                                                                        Seven Days in May
## 1677                                                                                                                                    Spy Who Loved Me, The
## 1678                                                                                                                                                Moonraker
## 1679                                                                                                                             Man with the Golden Gun, The
## 1680                                                                                                                                          Blazing Saddles
## 1683                                                                                                                                       Gone in 60 Seconds
## 1686                                                                                                                                                  Serpico
## 1687                                                                                                                                      Battleship Potemkin
## 1688                                                                                                                                               Titan A.E.
## 1689                                                                                                                                               Jesus' Son
## 1690                                                                                                                                              Chicken Run
## 1691                                                                                                                                       Me, Myself & Irene
## 1692                                                                                                                                       Perfect Storm, The
## 1693                                                                                                                                                      F/X
## 1694                                                                                                                                                 Croupier
## 1696                                                                                                                                    But I'm a Cheerleader
## 1697                                                                                                                                           Shower (Xizao)
## 1698                                                                                                                                         Blow-Up (Blowup)
## 1699                                                                                                                                                    X-Men
## 1701                                                                                                                                        What Lies Beneath
## 1702                                                                                                                                          Criminal Lovers
## 1703                                                                                                                                      Anatomy of a Murder
## 1704                                                                                                                                               Wonderland
## 1705                                                                                                                                              Coyote Ugly
## 1706                                                                                                                                               Hollow Man
## 1707                                                                                                                                            Space Cowboys
## 1708                                                                                                                                        Tao of Steve, The
## 1709                                                                                                                                           Aimée & Jaguar
## 1710                                                                                                                                        Replacements, The
## 1711                                                                                                                                                Cell, The
## 1714                                                                                                                                       Anatomy (Anatomie)
## 1715                                                                                                                                              Nurse Betty
## 1716                                                                                                                                      Way of the Gun, The
## 1717                                                                                                                                            Almost Famous
## 1718                                                                                                                                       Dancer in the Dark
## 1719                                                                                                                                             Best in Show
## 1721                                                                                                                                               Bamboozled
## 1725                                                                                                                                               Lost Souls
## 1726                                                                                                                                             Billy Elliot
## 1727                                                                                                                                                Bedazzled
## 1728                                                                                                                                           Pay It Forward
## 1729                                                                                                                                         Charlie's Angels
## 1730                                                                                                                                             Little Nicky
## 1731                                                                                                                                               Red Planet
## 1734                                                                                                                                             6th Day, The
## 1736                                                                                                       How the Grinch Stole Christmas (a.k.a. The Grinch)
## 1737                                                                                                                                     One Day in September
## 1738                                                                                                                              Rugrats in Paris: The Movie
## 1739                                                                                                                                                   Quills
## 1742                                                                                                                                            Proof of Life
## 1743                                                                                                                                           Vertical Limit
## 1744                                                                                                                                    Living Daylights, The
## 1745                                                                                                                                  Transformers: The Movie
## 1746                                                                                                                                              Wall Street
## 1747                                                                                                                                      Brewster's Millions
## 1748                                                                                                                                                   Snatch
## 1749                                                                                                                                                 Chocolat
## 1752                                                                                                                                          What Women Want
## 1753                                                                                                                                        Finding Forrester
## 1754                                                                                                                                                Gift, The
## 1755                                                                                                                                       Before Night Falls
## 1756                                                                                                                                                Cast Away
## 1757                                                                                                                                          Family Man, The
## 1758                                                                                                                                        Miss Congeniality
## 1759                                                                                                                               O Brother, Where Art Thou?
## 1761                                                                                                                                             Dracula 2000
## 1764                                                                                                                                    Shadow of the Vampire
## 1765                                                                                                                                           House of Games
## 1766                                                                                                                                                Antitrust
## 1767                                                                                                                                                    Panic
## 1771                                                                                                                                                   Barfly
## 1772                                                                                                                                        Beverly Hills Cop
## 1773                                                                                                                                               Innerspace
## 1775                                                                                                                                                 Hannibal
## 1776                                                                                                                            Saving Silverman (Evil Woman)
## 1777                                                                                                                                               Monkeybone
## 1778                                                                                                                                             Mexican, The
## 1779                                                                                                                                               15 Minutes
## 1780                                                                                                                                              Get Over It
## 1782                                                                                                                                       Enemy at the Gates
## 1783                                                                                                                                                Dish, The
## 1785                                                                                                                                                 Spy Kids
## 1787                                                                                                                                      Along Came a Spider
## 1788                                                                                                                                                     Blow
## 1789                                                                                                                                    Bridget Jones's Diary
## 1790                                                                                                                                                 Joe Dirt
## 1791                                                                                                                                                 Scarface
## 1792                                                                                                                                       Mummy Returns, The
## 1794                                                                                                                                         Knight's Tale, A
## 1796                                                                                                                                                    Shrek
## 1797                                                                                                                                             Moulin Rouge
## 1798                                                                                                                                             Pearl Harbor
## 1799                                                                                                                                            City Slickers
## 1801                                                                                                                                                Evolution
## 1802                                                                                                                                                Swordfish
## 1803                                                                                                                                              Point Break
## 1805                                                                                                                                  Lara Croft: Tomb Raider
## 1806                                                                                                                                Fast and the Furious, The
## 1807                                                                                                                             A.I. Artificial Intelligence
## 1808                                                                                                                                          Crazy/Beautiful
## 1809                                                                                                                                               Sexy Beast
## 1810                                                                                            Princess and the Warrior, The (Krieger und die Kaiserin, Der)
## 1811                                                                                                                                Closet, The (Placard, Le)
## 1812                                                                                                             Crimson Rivers, The (Rivières pourpres, Les)
## 1813                                                                                                                                              Cats & Dogs
## 1814                                                                                                                                            Scary Movie 2
## 1815                                                                                                                                           Something Wild
## 1817                                                                                                                                           Legally Blonde
## 1818                                                                                                                                               Score, The
## 1819                                                                                                                                                    Bully
## 1820                                                                                                                                            Jump Tomorrow
## 1822                                                                                                                               Vanishing, The (Spoorloos)
## 1823                                                                                                                         Bill & Ted's Excellent Adventure
## 1824                                                                                                                                       Look Who's Talking
## 1826                                                                                                                                        Jurassic Park III
## 1827                                                                                                                                    America's Sweethearts
## 1828                                                                                                                                              Ghost World
## 1829                                                                                                                                Hedwig and the Angry Inch
## 1830                                                                                                                                       Planet of the Apes
## 1831                                                                                                                                               Road House
## 1832                                                                                                                                             Santa Sangre
## 1833                                                                                                                                                Skin Deep
## 1834                                                                                                                                          Three Fugitives
## 1836                                                                                                                                               Uncle Buck
## 1837                                                                                                                                    Princess Diaries, The
## 1838                                                                                                                                              Rush Hour 2
## 1841                                                                                                                                            Osmosis Jones
## 1842                                                                                                                                              Others, The
## 1843                                                                                                                                            Deep End, The
## 1844                                                                                                                               Captain Corelli's Mandolin
## 1847                                                                                                                           Jay and Silent Bob Strike Back
## 1848                                                                                                                                          Happy Accidents
## 1849                                                                                                                                         Jeepers Creepers
## 1850                                                                                                                                             Training Day
## 1851                                                                                                                                                Zoolander
## 1852                                                                                                                                              Serendipity
## 1853                                                                                                                                                  Bandits
## 1854                                                                                                                                         Mulholland Drive
## 1857                                                                                                                                Man Who Wasn't There, The
## 1859                                                                                                                                                     Tape
## 1860                                                                                                                                              Shallow Hal
## 1861                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 1863                                                                                                          Devil's Backbone, The (Espinazo del diablo, El)
## 1866                                                                                                                                       Behind Enemy Lines
## 1868                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 1869                                                                                                                                   Not Another Teen Movie
## 1870                                                                                                                                              Vanilla Sky
## 1872                                                                                                                                           Kate & Leopold
## 1874                                                                                                                                        Beautiful Mind, A
## 1875                                                                                                                                              Medium Cool
## 1876                                                                                                                              Witness for the Prosecution
## 1878                                                                                                                                             Gosford Park
## 1879                                                                                                                                           Monster's Ball
## 1880                                                                                                            Brotherhood of the Wolf (Pacte des loups, Le)
## 1881                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 1882                                                                                                                                      Walk to Remember, A
## 1884                                                                                                                                             Storytelling
## 1886                                                                                                                                           Super Troopers
## 1887                                                                                                                                                   Sleuth
## 1888                                                                                                                                      Queen of the Damned
## 1890                                                                                                                                  All About the Benjamins
## 1891                                                                                                                                        Time Machine, The
## 1892                                                                                                                                                  Ice Age
## 1893                                                                                                                                            Resident Evil
## 1894                                                                                                                                                 Showtime
## 1895                                                                                                                                    Kissing Jessica Stein
## 1896                                                                                                                  And Your Mother Too (Y tu mamá también)
## 1897                                                                                                                                                 Blade II
## 1898                                                                                                                                               Panic Room
## 1900                                                                                                                                                Impromptu
## 1901                                                                                                                            National Lampoon's Van Wilder
## 1902                                                                                                                                      Rashomon (Rashômon)
## 1903                                                                                                                                           Changing Lanes
## 1904                                                                                                                                      Sweetest Thing, The
## 1905                                                                                                                                             Human Nature
## 1906                                                                                                                                 My Big Fat Greek Wedding
## 1907                                                                                                                                     Three Men and a Baby
## 1908                                                                                                                                        The Scorpion King
## 1909                                                                                                                               Nine Queens (Nueve reinas)
## 1910                                                                                                                                       Husbands and Wives
## 1911                                                                                                                                              Wild Orchid
## 1912                                                                                                                                               Spider-Man
## 1913                                                                                                                                             New Guy, The
## 1914                                                                                                                                               Unfaithful
## 1916                                                                                                             Star Wars: Episode II - Attack of the Clones
## 1917                                                                                                                                                 Insomnia
## 1918                                                                                         Thirteen Conversations About One Thing (a.k.a. 13 Conversations)
## 1919                                                                                                                                    Sum of All Fears, The
## 1920                                                                                                                                           Silent Running
## 1921                                                                                                                                                  Cherish
## 1922                                                                                                                                     Bourne Identity, The
## 1923                                                                                                                                               Scooby-Doo
## 1924                                                                                                                                            Lilo & Stitch
## 1926                                                                                                                                                Mr. Deeds
## 1927                                                                                                                                                Like Mike
## 1928                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 1929                                                                                                                                            Reign of Fire
## 1930                                                                                                                                        Road to Perdition
## 1932                                                                                                                                      Eight Legged Freaks
## 1933                                                                                                                              Austin Powers in Goldmember
## 1935                                                                                                                                                    Signs
## 1936                                                                                                                    Spy Kids 2: The Island of Lost Dreams
## 1937                                                                                                                                                      xXx
## 1938                                                                                                                                     24 Hour Party People
## 1940                                                                                                                                               Blue Crush
## 1941                                                                                                                                           One Hour Photo
## 1942                                                                                                                                               Hot Shots!
## 1943                                                                                                                                                 Stakeout
## 1944                                                                                                                                       Johnny Dangerously
## 1945                                                                                                                                           Igby Goes Down
## 1946                                                                                                                                                Secretary
## 1947                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 1948                                                                                                                                       Sweet Home Alabama
## 1949                                                                                                                                               Red Dragon
## 1950                                                                                                                                             Strange Brew
## 1953                                                                                                                                         Punch-Drunk Love
## 1955                                                                                                                                                    Frida
## 1957                                                                                                                                             Femme Fatale
## 1958                                                                                                                  Harry Potter and the Chamber of Secrets
## 1959                                                                                                                                          Die Another Day
## 1960                                                                                                                             Talk to Her (Hable con Ella)
## 1963                                                                                                                                              Equilibrium
## 1964                                                                                                                                     Visitor Q (Bizita Q)
## 1965                                                                                                                                            About Schmidt
## 1967                                                                                                                                                25th Hour
## 1968                                                                                                                                        Gangs of New York
## 1970                                                                                                                                                     Narc
## 1971                                                                                                                                              Miami Blues
## 1972                                                                                                                                      Catch Me If You Can
## 1973                                                                                                                                                  Chicago
## 1975                                                                                                                          Confessions of a Dangerous Mind
## 1976                                                                                                                             City of God (Cidade de Deus)
## 1977                                                                                                                                          CB4 - The Movie
## 1978                                                                                                                                            Summer Lovers
## 1979                                                                                                                                             Recruit, The
## 1980                                                                                                                             How to Lose a Guy in 10 Days
## 1981                                                                                                                                                Daredevil
## 1982                                                                                                                                                    Q & A
## 1983                                                                                                                                               Old School
## 1984                                                                                                                                              Life Stinks
## 1985                                                                                                                                     Bend It Like Beckham
## 1987                                                                                                                                              Phone Booth
## 1988                                                                                                Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 1989                                                                                                                                         Anger Management
## 1990                                                                                                                                           Mighty Wind, A
## 1991                                                                                                                  Winged Migration (Peuple migrateur, Le)
## 1992                                                                                                                                    Andromeda Strain, The
## 1994                                                                                                                                               Spellbound
## 1995                                                                                                                                         X2: X-Men United
## 1996                                                                                                                                     Matrix Reloaded, The
## 1997                                                                                                                                           Bruce Almighty
## 1998                                                                                                                                             Finding Nemo
## 1999                                                                                                                                         Italian Job, The
## 2000                                                                                                                                  Capturing the Friedmans
## 2001                                                                                                                                              Whale Rider
## 2002                                                                                               Man with the Movie Camera, The (Chelovek s kino-apparatom)
## 2003                                                                                                                                              Barton Fink
## 2004                                                                                                                                             Belle époque
## 2005                                                                                                                                              Good Burger
## 2006                                                                                                                                            28 Days Later
## 2007                                                                                                                          Charlie's Angels: Full Throttle
## 2008                                                                                                                                                     Hulk
## 2009                                                                                                                       Terminator 3: Rise of the Machines
## 2010                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 2011                                                                                                                                                Northfork
## 2012                                                                                                                                      Dirty Pretty Things
## 2013                                                                                                                        American Wedding (American Pie 3)
## 2014                                                                                                                                            Freaky Friday
## 2015                                                                                                                                        American Splendor
## 2017                                                                                                                                 Kind Hearts and Coronets
## 2018                                                                                                                                           Matchstick Men
## 2019                                                                                                                                      Lost in Translation
## 2020                                                                                                                                               Underworld
## 2021                                                                                               Triplets of Belleville, The (Les triplettes de Belleville)
## 2022                                                                                                                 Rules of the Game, The (La règle du jeu)
## 2025                                                                                                                                             Ginger Snaps
## 2026                                                                                                                                           School of Rock
## 2027                                                                                                                                       Station Agent, The
## 2028                                                                                                                                             Mystic River
## 2029                                                                                                                                      Intolerable Cruelty
## 2030                                                                                                                                        Kill Bill: Vol. 1
## 2031                                                                                                                                                 Dopamine
## 2032                                                                                                                                             Runaway Jury
## 2033                                                                                                                                               In the Cut
## 2035                                                                                                                                  Matrix Revolutions, The
## 2036                                                                                                                                                      Elf
## 2037                                                                                                                                            Love Actually
## 2039                                                                                                          Master and Commander: The Far Side of the World
## 2040                                                                                                                                                 21 Grams
## 2042                                                                                                                                          Damage (Fatale)
## 2044                                                                                                                                                  Slacker
## 2045                                                                                                                                                 WarGames
## 2046                                                                                                                                               Gorky Park
## 2047                                                                                                                                                    Kafka
## 2048                                                                                                                                         Kindergarten Cop
## 2049                                                                                                              Last Tango in Paris (Ultimo tango a Parigi)
## 2050                                                                                                                                   Lover, The (Amant, L')
## 2051                                                                                                                                             Quick Change
## 2053                                                                                                                                        Hero (Ying xiong)
## 2054                                                                                                                                              Naked Lunch
## 2055                                                                                                                                    Night at the Opera, A
## 2056                                                                                                                                        Last Samurai, The
## 2057                                                                                                                                                 Big Fish
## 2058                                                                                                           Lord of the Rings: The Return of the King, The
## 2059                                                                                      Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The
## 2060                                                                                                                                            Cold Mountain
## 2061                                                                                                                                         Along Came Polly
## 2062                                                                                                                                    Melvin Goes to Dinner
## 2063                                                                                                                                     The Butterfly Effect
## 2064                                                                                                                                            Dreamers, The
## 2065                                                                                                                                           50 First Dates
## 2066                                                                                                                                                 EuroTrip
## 2067                                                                                                                                         Good bye, Lenin!
## 2068                                                                                                                                          Starsky & Hutch
## 2069                                                                                                                                                  Persona
## 2070                                                                                                                                      Girl Next Door, The
## 2071                                                                                                                                                  Spartan
## 2073                                                                                                                                                 Dogville
## 2074                                                                                                                                                  Hellboy
## 2075                                                                                                                                        Kill Bill: Vol. 2
## 2076                                                                                                                                           13 Going on 30
## 2077                                                                                                                                              Man on Fire
## 2078                                                                                                                                               Mean Girls
## 2079                                                                                                                                                     Troy
## 2081                                                                                                                                             Henry & June
## 2082                                                                                                                                                Fail-Safe
## 2083                                                                                                                                      You Only Live Twice
## 2084                                                                                                                                    Never Say Never Again
## 2085                                                                                                                                      China Syndrome, The
## 2086                                                                                                                                       Parallax View, The
## 2087                                                                                                      Hidden Fortress, The (Kakushi-toride no san-akunin)
## 2088                                                                                                                                 Weather Underground, The
## 2090                                                                                                                                                  Shrek 2
## 2092                                                                                                                                                   Saved!
## 2093                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 2094                                                                                                                                        Napoleon Dynamite
## 2095                                                                                                                                            Super Size Me
## 2096                                                                                                                         Dodgeball: A True Underdog Story
## 2097                                                                                                                                            Terminal, The
## 2098                                                                                                                                             White Chicks
## 2099                                                                                                                                Pirates of Silicon Valley
## 2100                                                                                                        Manufacturing Consent: Noam Chomsky and the Media
## 2101                                                                                                                                          Fahrenheit 9/11
## 2102                                                                                                                                                  Roxanne
## 2103                                                                                                                                             Spider-Man 2
## 2105                                                                                                                    Anchorman: The Legend of Ron Burgundy
## 2106                                                                                                                                                 I, Robot
## 2107                                                                                                        Maria Full of Grace (Maria, Llena eres de gracia)
## 2108                                                                                                                                    Bourne Supremacy, The
## 2109                                                                                                                                Manchurian Candidate, The
## 2110                                                                                                                                             Garden State
## 2111                                                                                                                                               Collateral
## 2112                                                                                                                      Harold and Kumar Go to White Castle
## 2113                                                                                                                    Sky Captain and the World of Tomorrow
## 2114                                                                                                                                        Shaun of the Dead
## 2115                                                                                                                                        I Heart Huckabees
## 2118                                                                                                                Five Obstructions, The (Fem benspænd, De)
## 2119                                                                                                                                                    Alfie
## 2121                                                                                                                                            The Machinist
## 2122                                                                                                                                                      Saw
## 2123                                                                                                                                                      Ray
## 2124                                                                                                                                         Incredibles, The
## 2125                                                                                                                                        Finding Neverland
## 2126                                                                                                                                        National Treasure
## 2127                                                                                                                         SpongeBob SquarePants Movie, The
## 2128                                                                                                                                           Ocean's Twelve
## 2133                                                                                                                                            Bad Boy Bubby
## 2134                                                                                                                                                      Gia
## 2135                                                                                                                                          Ali G Indahouse
## 2137                                                                                                                                                  Old Boy
## 2138                                                                                                                                         Interpreter, The
## 2140                                                                                                                                        Scanner Darkly, A
## 2141                                                                                                                                      Million Dollar Baby
## 2142                                                                                                                                             Hotel Rwanda
## 2143                                                                                                                      Life Aquatic with Steve Zissou, The
## 2144                                                                                                                                             Aviator, The
## 2145                                                                                                                                         Meet the Fockers
## 2146                                                                                                                                                    Hitch
## 2147                                                                                                                                              Constantine
## 2148                                                                                                                                                 Sin City
## 2149                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 2150                                                                                                                     Enron: The Smartest Guys in the Room
## 2151                                                                                                                                                    Crash
## 2153                                                                                                                                         Mr. & Mrs. Smith
## 2155                                                                                                                                        War of the Worlds
## 2156                                                                                                         March of the Penguins (Marche de l'empereur, La)
## 2157                                                                                                                                           Fantastic Four
## 2158                                                                                                                                         Wedding Crashers
## 2159                                                                                                                                              Island, The
## 2160                                                                                                                                                  Stealth
## 2161                                                                                                                                                 Serenity
## 2162                                                                                                                                              Grizzly Man
## 2163                                                                                                                                  40-Year-Old Virgin, The
## 2164                                                                                                                                                  Red Eye
## 2165                                                                                                                                   Constant Gardener, The
## 2166                                                                                                                                              Lord of War
## 2167                                                                                                                                                Aeon Flux
## 2168                                                                                                                                             Corpse Bride
## 2169                                                                                                                                                   Capote
## 2171                                                                                                                                 Squid and the Whale, The
## 2173                                                                                                                                                  Syriana
## 2174                                                                                                                      Harry Potter and the Goblet of Fire
## 2175                                                                                                                                                   Munich
## 2177                                                                                                                                        Failure to Launch
## 2178                                                                                                                                           V for Vendetta
## 2179                                                                                                                                    Thank You for Smoking
## 2181                                                                                                             Lives of Others, The (Das leben der Anderen)
## 2182                                                                                                                     Youth of the Beast (Yaju no seishun)
## 2183                                                                                                                                      Lucky Number Slevin
## 2184                                                                                                                                                    Brick
## 2186                                                                                                                                  Mission: Impossible III
## 2187                                                                                                                                       Da Vinci Code, The
## 2188                                                                                                                                    X-Men: The Last Stand
## 2189                                                                                                                                                     Cars
## 2191                                                                                                                                                    Click
## 2192                                                                                                                                   Devil Wears Prada, The
## 2193                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 2194                                                                                                                                                Clerks II
## 2195                                                                                                                                   Inconvenient Truth, An
## 2196                                                                                                                                         Superman Returns
## 2197                                                                                                                                     Little Miss Sunshine
## 2198                                                                                                                                                    Babel
## 2199                                                                                                              Talladega Nights: The Ballad of Ricky Bobby
## 2200                                                                                                                                      Night at the Museum
## 2201                                                                                                                                    Stranger than Fiction
## 2202                                                                                                                                         Illusionist, The
## 2203                                                                                                                                               Jesus Camp
## 2204                                                                                                                                            Fountain, The
## 2205                                                                                                             Science of Sleep, The (La science des rêves)
## 2207                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 2208                                                                                                                                            Departed, The
## 2212                                                                                                                                        Déjà Vu (Deja Vu)
## 2213                                                                                                                                             Holiday, The
## 2214                                                                                                                                          Cocaine Cowboys
## 2215                                                                                                                                              Ratatouille
## 2217                                                                                                                                                 Hot Fuzz
## 2219                                                                                                                                                      300
## 2220                                                                                                                                          Blades of Glory
## 2221                                                                                                                                                 Sunshine
## 2222                                                                                                                                                 Fracture
## 2223                                                                                                                                             Spider-Man 3
## 2224                                                                                                                                               Knocked Up
## 2225                                                                                                                                         Ocean's Thirteen
## 2226                                                                                                                Fantastic Four: Rise of the Silver Surfer
## 2227                                                                                                                                                    Sicko
## 2228                                                                                                                                    Live Free or Die Hard
## 2230                                                                                                                Harry Potter and the Order of the Phoenix
## 2231                                                                                                                                      Simpsons Movie, The
## 2232                                                                                                                                    Bourne Ultimatum, The
## 2234                                                                                                                                                 Superbad
## 2236                                                                                                                                            Into the Wild
## 2237                                                                                                                                  Darjeeling Limited, The
## 2238                                                                                                                                          Michael Clayton
## 2239                                                                                                                                               Persepolis
## 2240                                                                                                                                        American Gangster
## 2241                                                                                                                                   No Country for Old Men
## 2242                                                                                                                                           Be Kind Rewind
## 2243                                                                                                                                              I Am Legend
## 2244                                                                                                                                                     Juno
## 2246                                                                                                                       National Treasure: Book of Secrets
## 2247                                                                                                                                      There Will Be Blood
## 2248                                                                                                                                              Cloverfield
## 2250                                                                                                                                                In Bruges
## 2251                                                                                                                                                   Jumper
## 2252                                                                                                                                            Bank Job, The
## 2254                                                                                                                                Forgetting Sarah Marshall
## 2257                                                                                                                                                    Taken
## 2258                                                                                                                                                  Reprise
## 2259                                                                                                       Indiana Jones and the Kingdom of the Crystal Skull
## 2260                                                                                                                                            Kung Fu Panda
## 2261                                                                                                                            You Don't Mess with the Zohan
## 2262                                                                                                                                           Happening, The
## 2263                                                                                                                                     Incredible Hulk, The
## 2265                                                                                                                                                   Wanted
## 2266                                                                                                                                                  Hancock
## 2267                                                                                                                                                Get Smart
## 2268                                                                                                                                           Up the Yangtze
## 2270                                                                                                                                              Man on Wire
## 2271                                                                                                                                        Pineapple Express
## 2272                                                                                                                                           Tropic Thunder
## 2273                                                                                                                                       Burn After Reading
## 2274                                                                                                                                         Onion Movie, The
## 2275                                                                                                                                             Body of Lies
## 2276                                                                                                                               Zack and Miri Make a Porno
## 2278                                                                                                                                      Slumdog Millionaire
## 2279                                                                                                                                        Quantum of Solace
## 2280                                                                                                                                              Role Models
## 2281                                                                                                                                                     Bolt
## 2282                                                                                                                                              Frost/Nixon
## 2283                                                                                                                                            Wrestler, The
## 2284                                                                                                                     Curious Case of Benjamin Button, The
## 2286                                                                                                                                     Paul Blart: Mall Cop
## 2287                                                                                                                                                 Coraline
## 2288                                                                                                                                                Chocolate
## 2289                                                                                                                              He's Just Not That Into You
## 2290                                                                                                                                             Mystery Team
## 2291                                                                                                                                               Away We Go
## 2292                                                                                                                           Dr. Horrible's Sing-Along Blog
## 2293                                                                                                                                          I Love You, Man
## 2294                                                                                                                                                Duplicity
## 2295                                                                                                                                Anvil! The Story of Anvil
## 2296                                                                                                                                            Adventureland
## 2298                                                                                                                                     Inglourious Basterds
## 2300                                                                                                                                                     Moon
## 2301                                                                                                                                 X-Men Origins: Wolverine
## 2302                                                                                                                               Girlfriend Experience, The
## 2305                                                                                                           Night at the Museum: Battle of the Smithsonian
## 2306                                                                                                                                                       Up
## 2307                                                                                                                                            Hangover, The
## 2308                                                                                                                              Taking of Pelham 1 2 3, The
## 2309                                                                                                                                            Proposal, The
## 2310                                                                                                                                                 Year One
## 2313                                                                                                                      Transformers: Revenge of the Fallen
## 2315                                                                                                                                            Julie & Julia
## 2317                                                                                                                                                  G-Force
## 2318                                                                                                                                        It Might Get Loud
## 2319                                                                                                                                          Informant!, The
## 2320                                                                                                                        Cloudy with a Chance of Meatballs
## 2321                                                                                                                                               Food, Inc.
## 2322                                                                                                                                                Cove, The
## 2323                                                                                                                                           Serious Man, A
## 2324                                                                                                                                               Zombieland
## 2325                                                                                                                                      Law Abiding Citizen
## 2326                                                                                                                                            Up in the Air
## 2327                                                                                                                                        Fantastic Mr. Fox
## 2328                                                                                                                                                     2012
## 2330                                                                                                                                          Sherlock Holmes
## 2331                                                                                                                                 Prophet, A (Un Prophète)
## 2332                                                                                                                                           Shutter Island
## 2334                                                                                                                                               Green Zone
## 2335                                                                                                                                     From Paris with Love
## 2336                                                                                                                                     Hot Tub Time Machine
## 2338                                                                                                                                                 Kick-Ass
## 2339                                                                                                                                               Date Night
## 2340                                                                                                                            Steam of Life (Miesten vuoro)
## 2341                                                                                                                                              Losers, The
## 2343                                                                                                                                               Iron Man 2
## 2344                                                                                                                                     Get Him to the Greek
## 2345                                                                                                                                              A-Team, The
## 2346                                                                                                                                              Toy Story 3
## 2348                                                                                                                                                Predators
## 2350                                                                                                                                           Knight and Day
## 2351                                                                                                                                  Kids Are All Right, The
## 2352                                                                                                                                                     Salt
## 2353                                                                                                                                      Dinner for Schmucks
## 2354                                                                                                                                         Expendables, The
## 2355                                                                                                                              Scott Pilgrim vs. the World
## 2356                                                                                                                                            American, The
## 2357                                                                                                                                                  GasLand
## 2358                                                                                                                                      Social Network, The
## 2360                                                                                                                                                  Catfish
## 2362                                                                                                                                                 Restrepo
## 2363                                                                                                                                   Waiting for 'Superman'
## 2364                                                                                                                                                      Red
## 2365                                                                                                                                               Black Swan
## 2366                                                                                                                                              Unstoppable
## 2367                                                                                                             Harry Potter and the Deathly Hallows: Part 1
## 2368                                                                                                                                       King's Speech, The
## 2369                                                                                                                                                  Tangled
## 2370                                                                                                                                             Fighter, The
## 2371                                                                                                                                             Tron: Legacy
## 2372                                                                                                                                       Gulliver's Travels
## 2373                                                                                                                                         Made in Dagenham
## 2374                                                                                                                                               Waste Land
## 2375                                                                                                                                        Green Hornet, The
## 2376                                                                                                                                         Cowboys & Aliens
## 2378                                                                                                                                                Limitless
## 2379                                                                                                                                      No Strings Attached
## 2380                                                                                                                                      Lincoln Lawyer, The
## 2381                                                                                                                                   Adjustment Bureau, The
## 2384                                                                                                                                                    Hanna
## 2385                                                                                                                                                     Thor
## 2386                                                                                                                  Fast Five (Fast and the Furious 5, The)
## 2389                                                                                                                                        Midnight in Paris
## 2390                                                                                                                                        Tree of Life, The
## 2391                                                                                                                                    Hangover Part II, The
## 2393                                                                                                                                       X-Men: First Class
## 2394                                                                                                                                                Beginners
## 2395                                                                                                                                                  Super 8
## 2396                                                                                                                                            Green Lantern
## 2397                                                                                                                                              Bad Teacher
## 2399                                                                                                                                          Horrible Bosses
## 2400                                                                                                                      Page One: Inside the New York Times
## 2401                                                                                                             Harry Potter and the Deathly Hallows: Part 2
## 2402                                                                                                                                                    Drive
## 2403                                                                                                                       Captain America: The First Avenger
## 2404                                                                                                                                     Crazy, Stupid, Love.
## 2405                                                                                                                                              Smurfs, The
## 2407                                                                                                                                         Conspirator, The
## 2408                                                                                                                                 Bill Cunningham New York
## 2409                                                                                                                                        Interrupters, The
## 2410                                                                                                                                                Contagion
## 2412                                                                                                                                            Avengers, The
## 2413                                                                                                                                             Killer Elite
## 2414                                                                                                                                               Real Steel
## 2415                                                                                                                                                     Buck
## 2417                                                                                                                                              Margin Call
## 2419                                                                                                                                Headhunters (Hodejegerne)
## 2420                                                                                                                                         Batman: Year One
## 2421                                                                                                                                            Puss in Boots
## 2422                                                                                                                                Adventures of Tintin, The
## 2423                                                                                                                                                     Hugo
## 2424                                                                                                                                                 Trespass
## 2425                                                                                                                                         The Hunger Games
## 2426                                                                                                                                             Clone (Womb)
## 2427                                                                                                                                   Dark Knight Rises, The
## 2428                                                                                                                                       Bourne Legacy, The
## 2429                                                                                                                       Sherlock Holmes: A Game of Shadows
## 2430                                                                                                                     Mission: Impossible - Ghost Protocol
## 2433                                                                                                                                               Contraband
## 2434                                                                                                                        Being Elmo: A Puppeteer's Journey
## 2435                                                                                                                                                Chronicle
## 2436                                                                                                                                               Safe House
## 2437                                                                                                                                           This Means War
## 2438                                                                                                                                              John Carter
## 2439                                                                                                                                           21 Jump Street
## 2440                                                                                                                                     Jiro Dreams of Sushi
## 2441                                                                                                                        American Reunion (American Pie 4)
## 2442                                                                                                                                  Cabin in the Woods, The
## 2443                                                                                                                                            Mirror Mirror
## 2444                                                                                                                                               Battleship
## 2445                                                                                                                                             Dark Shadows
## 2447                                                                                                                    Men in Black III (M.III.B.) (M.I.B.³)
## 2448                                                                                                                              Snow White and the Huntsman
## 2449                                                                                                                            Pirates! Band of Misfits, The
## 2450                                                                                                                                               Prometheus
## 2451                                                                                                                                         Moonrise Kingdom
## 2452                                                                                                                       Madagascar 3: Europe's Most Wanted
## 2453                                                                                                                                                    Brave
## 2454                                                                                                                     What to Expect When You're Expecting
## 2455                                                                                                                                                   Presto
## 2456                                                                                                                                Giant Mechanical Man, The
## 2457                                                                                                                                  Amazing Spider-Man, The
## 2458                                                                                                                              Beasts of the Southern Wild
## 2459                                                                                                                                             Total Recall
## 2460                                                                                                                                                  Skyfall
## 2461                                                                                                                                 Queen of Versailles, The
## 2462                                                                                                                                  Searching for Sugar Man
## 2463                                                                                                                                                   Looper
## 2464                                                                                                                                   Ai Weiwei: Never Sorry
## 2465                                                                                                                                                    Dredd
## 2466                                                                                                                                                     Argo
## 2467                                                                                                                                     House I Live In, The
## 2468                                                                                                                                            Imposter, The
## 2469                                                                                                                                           Wreck-It Ralph
## 2470                                                                                                                                                   Flight
## 2471                                                                                                                                               Life of Pi
## 2472                                                                                                                                    Indie Game: The Movie
## 2473                                                                                                                                                  Lincoln
## 2474                                                                                                                       Hobbit: An Unexpected Journey, The
## 2475                                                                                                                                         Zero Dark Thirty
## 2476                                                                                                                                              Warm Bodies
## 2477                                                                                                                                             Jack Reacher
## 2478                                                                                                                                         Django Unchained
## 2479                                                                                                                                          Misérables, Les
## 2480                                                                                                                                   Central Park Five, The
## 2482                                                                                                                                   Beauty Is Embarrassing
## 2483                                                                                                                                                 Movie 43
## 2484                                                                                                                                            Call Me Kuchu
## 2485                                                                                                                                             Side Effects
## 2486                                                                                                                                    World Before Her, The
## 2488                                                                                                                                                 Room 237
## 2489                                                                                                                                          Before Midnight
## 2490                                                                                                               TPB AFK: The Pirate Bay Away from Keyboard
## 2491                                                                                                                                    G.I. Joe: Retaliation
## 2492                                                                                                                                Oz the Great and Powerful
## 2493                                                                                                                                       Olympus Has Fallen
## 2494                                                                                                                                                 Oblivion
## 2495                                                                                                                                                       42
## 2496                                                                                                                                          This Is the End
## 2497                                                                                                                                               Iron Man 3
## 2498                                                                                                                                  Star Trek Into Darkness
## 2499                                                                                                                                               Frances Ha
## 2500                                                                                                                                              After Earth
## 2501                                                                                                                                           Now You See Me
## 2502                                                                                                                                             Man of Steel
## 2504                                                                                                                                              World War Z
## 2505                                                                                                                                                  Elysium
## 2506                                                                                                                                                Heat, The
## 2507                                                                                                                                                    Red 2
## 2508                                                                                                                                        We're the Millers
## 2509                                                                                                                                               Kick-Ass 2
## 2510                                                                                                                                                Blackfish
## 2511                                                                                                                                                     Koch
## 2512                                                                                                                                                  Gravity
## 2514                                                                                                                                         Captain Phillips
## 2515                                                                                                                                     Thor: The Dark World
## 2516                                                                                                                                  Marc Maron: Thinky Pain
## 2517                                                                                                                                            Muscle Shoals
## 2518                                                                                                                     Hobbit: The Desolation of Smaug, The
## 2519                                                                                                                                 Wolf of Wall Street, The
## 2520                                                                                                                                          American Hustle
## 2522                                                                                                                        Anchorman 2: The Legend Continues
## 2525                                                                                                                                Jack Ryan: Shadow Recruit
## 2526                                                                                                                                                Divergent
## 2527                                                                                                                                          I, Frankenstein
## 2528                                                                                                                                                    Enemy
## 2529                                                                                                                                           The Lego Movie
## 2530                                                                                                                                                  RoboCop
## 2531                                                                                                                                        Zero Theorem, The
## 2532                                                                                                                                Grand Budapest Hotel, The
## 2533                                                                                                                                             Interstellar
## 2534                                                                                                                                   300: Rise of an Empire
## 2535                                                                                                                                           Particle Fever
## 2536                                                                                                                                           Under the Skin
## 2538                                                                                                                                                     Noah
## 2539                                                                                                                                 The Amazing Spider-Man 2
## 2540                                                                                                                                            Transcendence
## 2541                                                                                                                                         Other Woman, The
## 2542                                                                              Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times, A
## 2543                                                                                                                                                     Lucy
## 2544                                                                                                                               X-Men: Days of Future Past
## 2550                                                                                                                                           22 Jump Street
## 2551                                                                                                                                           Equalizer, The
## 2552                                                                                                         Birdman: Or (The Unexpected Virtue of Ignorance)
## 2553                                                                                                                          Transformers: Age of Extinction
## 2554                                                                                                                                                 Whiplash
## 2557                                                                                                                                                 Sex Tape
## 2559                                                                                                                                        A Most Wanted Man
## 2560                                                                                                                                        Jupiter Ascending
## 2561                                                                                                                             Teenage Mutant Ninja Turtles
## 2562                                                                                                                                               Giver, The
## 2563                                                                                                                                                Coherence
## 2564                                                                                                                                         Maze Runner, The
## 2567                                                                                                                                             Rewrite, The
## 2569                                                                                                                                               Big Hero 6
## 2570                                                                                                                                               Ex Machina
## 2571                                                                                                                                               Foxcatcher
## 2572                                                                                                                                       The Imitation Game
## 2573                                                                                                                                            Inherent Vice
## 2574                                                                                                                    The Hunger Games: Mockingjay - Part 1
## 2576                                                                                                                                 The Theory of Everything
## 2578                                                                                                                                              Citizenfour
## 2579                                                                                                                The Hobbit: The Battle of the Five Armies
## 2580                                                                                                                                            The Interview
## 2581                                                                                                                             Kingsman: The Secret Service
## 2582                                                                                                                                                  Chappie
## 2583                                                                                                                                       Terminator Genisys
## 2584                                                                                                                                                 Red Army
## 2586                                                                                                                                       Mad Max: Fury Road
## 2587                                                                                                               Star Wars: Episode VII - The Force Awakens
## 2588                                                                                                                                                 Warcraft
## 2589                                                                                                                                  Avengers: Age of Ultron
## 2590                                                                                                                                                  Ant-Man
## 2591                                                                                                                                           Fantastic Four
## 2592                                                                                                                                                 Deadpool
## 2593                                                                                                                               Captain America: Civil War
## 2594                                                                                                                                        X-Men: Apocalypse
## 2595                                                                                                                                               True Story
## 2596                                                                                                                                        The Hateful Eight
## 2597                                                                                                                                            Run All Night
## 2598                                                                                                                                        While We're Young
## 2599                                                                                                                                                Insurgent
## 2600                                                                                                                                         Midnight Special
## 2601                                                                                                                                                Furious 7
## 2602                                                                                                                                                 Get Hard
## 2603                                                                                                                                             Tomorrowland
## 2604                                                                                                                                       The Age of Adaline
## 2605                                                                                                                                              San Andreas
## 2606                                                                                                                               Far from the Madding Crowd
## 2607                                                                                                                                              The Martian
## 2610                                                                                                                                               Inside Out
## 2611                                                                                                                    The Hunger Games: Mockingjay - Part 2
## 2612                                                                                                                                  The Secret Life of Pets
## 2613                                                                                                                             Independence Day: Resurgence
## 2614                                                                                                                                              Star Trek 3
## 2615                                                                                                                                                  Spectre
## 2616                                                                                                                                               Steve Jobs
## 2617                                                                                                                       Batman v Superman: Dawn of Justice
## 2618                                                                                                                                                      Amy
## 2619                                                                                                                                          The Jungle Book
## 2620                                                                                                                                  The Man from U.N.C.L.E.
## 2621                                                                                                                                             The Revenant
## 2622                                                                                                                                                  Sicario
## 2623                                                                                                                                          Best of Enemies
## 2624                                                                                                                                                Anomalisa
## 2625                                                                                                                                               The Intern
## 2628                                                                                                                                           American Ultra
## 2629                                                                                                                                                      Joy
## 2630                                                                                                                                                Spotlight
## 2631                                                                                                                                           Pawn Sacrifice
## 2632                                                                                                                                          Bridge of Spies
## 2633                                                                                                                                               Concussion
## 2634                                                                                                                                       Peanuts Movie, The
## 2635                                                                                                                                                    Creed
## 2636                                                                                                                                           Big Short, The
## 2637                                                                                                                                             Daddy's Home
## 2638                                                                                                                                                  Sisters
## 2640                                                                                                                                              Miles Ahead
## 2641                                                                                                                                      10 Cloverfield Lane
## 2642                                                                                                                                        London Has Fallen
## 2643                                                                                                                                                 Zootopia
## 2644                                                                                                                                                    Keanu
## 2645                                                                                                                                The Huntsman Winter's War
## 2646                                                                                                                             Neighbors 2: Sorority Rising
## 2647                                                                                                                                            Money Monster
## 2648                                                                                                                                             Finding Dory
## 2649                                                                                                                                             Mother's Day
## 2650                                                                                                                                            The Nice Guys
## 2651                                                                                                                                             The Shallows
## 2652                                                                                                                                         Now You See Me 2
## 2653                                                                                                         Teenage Mutant Ninja Turtles: Out of the Shadows
## 2654                                                                                                                       Popstar: Never Stop Never Stopping
## 2656                                                                                                                                  Approaching the Unknown
## 2657                                                                                                                                             Ghostbusters
## 2658                                                                                                                                     Central Intelligence
## 2659                                                                                                                                     The Legend of Tarzan
## 2660                                                                                                                                 The Purge: Election Year
## 2662                                                                                                                                                Sunspring
## 2670                                                                                                                                                 Rain Man
## 2672                                                                                                                                                    Ronin
## 2675                                                                                                                                                      Big
## 2678                                                                                                                                                 Chocolat
## 2686                                                                                                                                               Spider-Man
## 2690                                                                                                                                        Kill Bill: Vol. 1
## 2701                                                                                                                                          Johnny Mnemonic
## 2702                                                                                                                                                 Net, The
## 2705                                                                                                                                                   Clerks
## 2707                                                                                                                                       Heavenly Creatures
## 2708                                                                                                                       Star Wars: Episode IV - A New Hope
## 2709                                                                                                                                     Natural Born Killers
## 2712                                                                                                                Three Colors: Blue (Trois couleurs: Bleu)
## 2714                                                                                                                                    Bullets Over Broadway
## 2715                                                                                                                                             Forrest Gump
## 2716                                                                                                                                                    Speed
## 2718                                                                                                                                            Jurassic Park
## 2719                                                                                                                                              Killing Zoe
## 2724                                                                                                                                       Dances with Wolves
## 2726                                                                                                                                                    Fargo
## 2729                                                                                                                                                  Twister
## 2736                                                                                                                                         Some Like It Hot
## 2743                                                                                                                                                Notorious
## 2745                                                                                                                                                    Laura
## 2746                                                                                                                                            39 Steps, The
## 2747                                                                                                                                                 Die Hard
## 2749                                                                                                                                     Fish Called Wanda, A
## 2752                                                                                                                                      Glengarry Glen Ross
## 2753                                                                                                                                Streetcar Named Desire, A
## 2755                                                                                                                 Cook the Thief His Wife & Her Lover, The
## 2760                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 2770                                                                                                                                          Terminator, The
## 2771                                                                                                                                   Dead Alive (Braindead)
## 2776                                                                                                                                Femme Nikita, La (Nikita)
## 2777                                                                                                                                               8 1/2 (8½)
## 2779                                                                                                                                                Bad Taste
## 2780                                                                                                                                             Shining, The
## 2786                                                                                                                                               Birds, The
## 2788                                                                                                                                                 Sneakers
## 2792                                                                                                              Austin Powers: International Man of Mystery
## 2793                                                                                                                                   Tetsuo II: Body Hammer
## 2794                                                                                                                                Men in Black (a.k.a. MIB)
## 2795                                                                                                                                        Conspiracy Theory
## 2799                                                                                                                                     The Devil's Advocate
## 2804                                                                                                                                                  Titanic
## 2805                                                                                                                                             Jackie Brown
## 2808                                                                                                                                      Fireworks (Hana-bi)
## 2812                                                                                                                             There's Something About Mary
## 2817                                                                                                                                                     Dune
## 2819                                                                                                                                      Saving Private Ryan
## 2823                                                                                                                                Dead Men Don't Wear Plaid
## 2826                                                                                                                       Henry: Portrait of a Serial Killer
## 2828                                                                                                                                                    Blade
## 2831                                                                                                                                                    Ronin
## 2834                                                                                                                                       Enemy of the State
## 2839                                                                                                                                             Office Space
## 2840                                                                                                                                             Analyze This
## 2846                                                                                                                                               Idle Hands
## 2847                                                                                                                           Rocky Horror Picture Show, The
## 2848                                                                                                                                    Thirteenth Floor, The
## 2850                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 2852                                                                                                                                           Arlington Road
## 2853                                                                                                                                 Blair Witch Project, The
## 2854                                                                                                                                           Eyes Wide Shut
## 2857                                                                                                                                                Airplane!
## 2859                                                                                                                                           New Rose Hotel
## 2861                                                                                                                                 Ferris Bueller's Day Off
## 2862                                                                                                                                      Sydney (Hard Eight)
## 2869                                                                                                                                                 Magnolia
## 2870                                                                                                                                            Wayne's World
## 2875                                                                                                                                          Erin Brockovich
## 2879                                                                                                                                                  Network
## 2884                                                                                                                                        Conversation, The
## 2887                                                                                                                                              Scary Movie
## 2889                                                                                                                                                Cell, The
## 2891                                                                                                                                         Charlie's Angels
## 2894                                                                                                                               O Brother, Where Art Thou?
## 2897                                                                                                                                                Manhunter
## 2899                                                                                                                                                     Blow
## 2900                                                                                                                                    Bridget Jones's Diary
## 2902                                                                                                                                                    Shrek
## 2911                                                                                                                                           Monsters, Inc.
## 2912                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 2918                                                                                                                                        Beautiful Mind, A
## 2922                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 2924                                                                                                                                               Metropolis
## 2927                                                                                                                                                 Blade II
## 2928                                                                                                                                               Panic Room
## 2929                                                                                                                                 My Big Fat Greek Wedding
## 2930                                                                                                                                                   Enigma
## 2931                                                                                                                                               Spider-Man
## 2933                                                                                                                                     Bourne Identity, The
## 2936                                                                                                                                                    Signs
## 2937                                                                                                                                         Transporter, The
## 2942                                                                                                                            Russian Ark (Russkiy Kovcheg)
## 2944                                                                                                                                             Femme Fatale
## 2945                                                                                                                                                 Scanners
## 2948                                                                                                                                      Last Seduction, The
## 2949                                                                                                                                              Equilibrium
## 2953                                                                                                                                             Recruit, The
## 2956                                                                                                                              Irreversible (Irréversible)
## 2958                                                                                                                                              Phone Booth
## 2959                                                                                                                                         Anger Management
## 2960                                                                                                                                         Bulletproof Monk
## 2961                                                                                                                                               Confidence
## 2962                                                                                                                                                 Identity
## 2963                                                                                                                                     Matrix Reloaded, The
## 2964                                                                                                                                         Italian Job, The
## 2965                                                                                                           2 Fast 2 Furious (Fast and the Furious 2, The)
## 2967                                                                                                                                            28 Days Later
## 2968                                                                                                                          Charlie's Angels: Full Throttle
## 2971                                                                                                                                   What's Up, Tiger Lily?
## 2974                                                                                                                                           Matchstick Men
## 2975                                                                                                                                      Lost in Translation
## 2979                                                                                                                                                   Avalon
## 2980                                                                                                                        Knife in the Water (Nóz w wodzie)
## 2983                                                                                                                                              Funny Games
## 2984                                                                                                                                                 WarGames
## 2988                                                                                                                                 Night of the Hunter, The
## 2990                                                                                                                                            Wild at Heart
## 2993                                                                                                                                       Play It Again, Sam
## 3000                                                                                                                                                 Paycheck
## 3006                                                                                                                                              Man on Fire
## 3014                                                                                                              Tale of Two Sisters, A (Janghwa, Hongryeon)
## 3015                                                                                                                                          Death Race 2000
## 3016                                                                                                                           Avventura, L' (Adventure, The)
## 3018                                                                                                                                                  Shrek 2
## 3019                                                                                                                Blind Swordsman: Zatoichi, The (Zatôichi)
## 3022                                                                                                        Exterminating Angel, The (Ángel exterminador, El)
## 3023                                                                                                                                          Fahrenheit 9/11
## 3024                                                                                                                                                 I, Robot
## 3025                                                                                                                                    Bourne Supremacy, The
## 3026                                                                                                                                      Slaughterhouse-Five
## 3027                                                                                                                                Manchurian Candidate, The
## 3028                                                                                                                                             Village, The
## 3030                                                                                                                    Sky Captain and the World of Tomorrow
## 3031                                                                                                                                        Shaun of the Dead
## 3033                                                                                                                            Fearless Vampire Killers, The
## 3035                                                                                                                                                      Saw
## 3037                                                                                                                        Bad Education (La mala educación)
## 3038                                                                                                                House of Flying Daggers (Shi mian mai fu)
## 3039                                                                                                                                                     2046
## 3041                                                                                                                           Suicide Club (Jisatsu saakuru)
## 3044                                                                                                                                              Jacket, The
## 3047                                                                                                                                 Kung Fu Hustle (Gong fu)
## 3050                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 3051                                                                                                                                               Madagascar
## 3052                                                                                                       High Tension (Haute tension) (Switchblade Romance)
## 3053                                                                                                                                        War of the Worlds
## 3055                                                                                                                              Father of the Bride Part II
## 3057                                                                                                                                                  Sabrina
## 3058                                                                                                                                             Sudden Death
## 3059                                                                                                                                                    Nixon
## 3061                                                                                                                                               Four Rooms
## 3064                                                                                                                                         Dead Man Walking
## 3065                                                                                                                                         Mighty Aphrodite
## 3067                                                                                                                                             Bed of Roses
## 3068                                                                                                                                                Screamers
## 3069                                                                                                                                               Juror, The
## 3070                                                                                                                  Things to Do in Denver When You're Dead
## 3073                                                                                                                                              Mary Reilly
## 3074                                                                                                                                             Broken Arrow
## 3076                                                                                                                                    Up Close and Personal
## 3078                                                                                                                       Star Wars: Episode IV - A New Hope
## 3079                                                                                                                                          River Wild, The
## 3080                                                                                                                                       Executive Decision
## 3083                                                                                                                                               Diabolique
## 3084                                                                                                                                      Mission: Impossible
## 3086                                                                                                                                         Mulholland Falls
## 3088                                                                                                                                             Multiplicity
## 3090                                                                                                                                                  Twister
## 3091                                                                                                                                                 Spy Hard
## 3092                                                                                                                                             Arrival, The
## 3093                                                                                                                                               Striptease
## 3094                                                                                                                                                     Jack
## 3095                                                                                                                            Independence Day (a.k.a. ID4)
## 3098                                                                                                                                     Nutty Professor, The
## 3101                                                                                                                                     Very Brady Sequel, A
## 3102                                                                                                                                                   Ransom
## 3104                                                                                                                                                  Tin Cup
## 3105                                                                                                                                Island of Dr. Moreau, The
## 3106                                                                                                                                                Toy Story
## 3107                                                                                                                                                  Jumanji
## 3108                                                                                                                                         Grumpier Old Men
## 3109                                                                                                                                        Waiting to Exhale
## 3110                                                                                                                                                     Heat
## 3111                                                                                                                                                  Sabrina
## 3112                                                                                                                                             Sudden Death
## 3113                                                                                                                                                GoldenEye
## 3114                                                                                                                                  American President, The
## 3117                                                                                                                                               Get Shorty
## 3118                                                                                                                                                  Copycat
## 3119                                                                                                                                                Assassins
## 3120                                                                                                                                        Leaving Las Vegas
## 3121                                                                                                 City of Lost Children, The (Cité des enfants perdus, La)
## 3122                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 3124                                                                                                                                               Carrington
## 3125                                                                                                                                         Dead Man Walking
## 3126                                                                                                                                                 Clueless
## 3127                                                                                                                                          Dead Presidents
## 3128                                                                                                                                               To Die For
## 3130                                                                                                                                               Pocahontas
## 3132                                                                                                                                         Mighty Aphrodite
## 3133                                                                                                                                    Home for the Holidays
## 3134                                                                                                                               Postman, The (Postino, Il)
## 3135                                                                                 Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 3136                                                                                                                                            Two if by Sea
## 3138                                                                                                                                             Bed of Roses
## 3139                                                                                                                                             Nick of Time
## 3140                                                                                                                                          Beautiful Girls
## 3141                                                                                                                                             Broken Arrow
## 3143                                                                                                                                            Bottle Rocket
## 3144                                                                                                                           Bridges of Madison County, The
## 3145                                                                                                                                               Braveheart
## 3147                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 3148                                                                                                                                                Boomerang
## 3149                                                                                                                                   Flirting With Disaster
## 3150                                                                                                                                            Birdcage, The
## 3152                                                                                                                                                Apollo 13
## 3153                                                                                                                                           Batman Forever
## 3158                                                                                                                               Die Hard: With a Vengeance
## 3159                                                                                                                                     Doom Generation, The
## 3160                                                                                                                                          Johnny Mnemonic
## 3162                                                                                                                                        Lord of Illusions
## 3163                                                                                                                                                 Mad Love
## 3164                                                                                                                                                 Mallrats
## 3166                                                                                                                                                  Species
## 3167                                                                                                                                             Strange Days
## 3168                                                                                                                                            Total Eclipse
## 3169                                                                                                                                                 Unzipped
## 3170                                                                                                                                               Waterworld
## 3171                                                                                                                                       White Man's Burden
## 3172                                                                                                                                           Before Sunrise
## 3176                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 3177                                                                                                                                                  Ed Wood
## 3180                                                                                                                                         Immortal Beloved
## 3181                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 3185                                                                                                                                      Legends of the Fall
## 3186                                                                                                                             My Crazy Life (Mi vida loca)
## 3187                                                                                                                                               Milk Money
## 3188                                                                                                                                            Nobody's Fool
## 3189                                                                                                                                         New Jersey Drive
## 3194                                                                                                                                                Quiz Show
## 3198                                                                                                                                                 Stargate
## 3202                                                                                                                                   Star Trek: Generations
## 3203                                                                                                                                    Village of the Damned
## 3204                                                                                                                                                Tommy Boy
## 3206                                                                                                                              What's Eating Gilbert Grape
## 3208                                                                                                                                                 War, The
## 3209                                                                                                                               Ace Ventura: Pet Detective
## 3210                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 3211                                                                                                                                                 Backbeat
## 3213                                                                                                                                 Clear and Present Danger
## 3214                                                                                                                                              Client, The
## 3215                                                                                                                                                Crow, The
## 3216                                                                                                                                                     Cobb
## 3220                                                                                                                                           Lion King, The
## 3221                                                                                                                                            Little Buddha
## 3222                                                                          Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 3223                                                                                                                                                Mask, The
## 3224                                                                                                                       Mrs. Parker and the Vicious Circle
## 3225                                                                                                                                               Paper, The
## 3226                                                                                                                                            Reality Bites
## 3228                                                                                                                                          River Wild, The
## 3229                                                                                                                                                    Speed
## 3230                                                                                                                                                  Timecop
## 3231                                                                                                                                                True Lies
## 3232                                                                                                                                                     Wolf
## 3233                                                                                                                                               Wyatt Earp
## 3234                                                                                                                                  In the Mouth of Madness
## 3235                                                                                                                                    Age of Innocence, The
## 3236                                                                                                                                               Blown Away
## 3237                                                                                                                                            Bronx Tale, A
## 3240                                                                                                                                              Cliffhanger
## 3241                                                                                                                                                     Dave
## 3242                                                                                                                                       Dazed and Confused
## 3243                                                                                                                                           Fatal Instinct
## 3244                                                                                                                                                 Fearless
## 3245                                                                                                                                              With Honors
## 3246                                                                                                                                           Flesh and Bone
## 3247                                                                                                                                                Firm, The
## 3253                                                                                                                                     Hudsucker Proxy, The
## 3254                                                                                                                                      In the Line of Fire
## 3255                                                                                                                                In the Name of the Father
## 3256                                                                                                                                           Judgment Night
## 3258                                                                                                                                               Kalifornia
## 3259                                                                                                                                              Killing Zoe
## 3260                                                                                                                                         Last Action Hero
## 3261                                                                                                                                  Man Without a Face, The
## 3263                                                                                                                                       Executive Decision
## 3264                                                                                                                                           Mrs. Doubtfire
## 3266                                                                                                                                                No Escape
## 3267                                                                                                                                         Perfect World, A
## 3268                                                                                                                                             Philadelphia
## 3270                                                                                                                                        Radioland Murders
## 3272                                                                                                                                               Rising Sun
## 3273                                                                                                                                                RoboCop 3
## 3274                                                                                                                                Robin Hood: Men in Tights
## 3275                                                                                                                                           Romper Stomper
## 3277                                                                                                                              Searching for Bobby Fischer
## 3281                                                                                                                                                   Sirens
## 3284                                                                                                                                                Threesome
## 3286                                                                                                                                             True Romance
## 3287                                                                                                                                 Welcome to the Dollhouse
## 3288                                                                                                                                         Princess Caraboo
## 3289                                                                                                                                               Home Alone
## 3290                                                                                                                                                  Aladdin
## 3291                                                                                                                               Terminator 2: Judgment Day
## 3292                                                                                                                                       Dances with Wolves
## 3294                                                                                                                                Silence of the Lambs, The
## 3298                                                                                                                                             Pretty Woman
## 3302                                                                                                                                          Pallbearer, The
## 3303                                                                                                                                              Primal Fear
## 3304                                                                                                                                      Mission: Impossible
## 3305                                                                                                                                              Dragonheart
## 3307                                                                                                                                                     Fear
## 3310                                                                                                                                                     Boys
## 3311                                                                                                                                               Craft, The
## 3312                                                                                                                                                Rock, The
## 3313                                                                                                                                                  Twister
## 3314                                                                                                                                             Arrival, The
## 3316                                                                                                                            Independence Day (a.k.a. ID4)
## 3317                                                                                                                                           Cable Guy, The
## 3318                                                                                                                                                  Kingpin
## 3319                                                                                                                                                   Eraser
## 3320                                                                                                                                     Nutty Professor, The
## 3321                                                                                                                                         Frighteners, The
## 3322                                                                                                                                                Lone Star
## 3323                                                                                                                                               Phenomenon
## 3324                                                                                                                                          Time to Kill, A
## 3326                                                                                                                                Island of Dr. Moreau, The
## 3327                                                                          Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 3329                                                                                                                                   Breakfast at Tiffany's
## 3334                                                                                                                                               Casablanca
## 3336                                                                                                                                             My Fair Lady
## 3346                                                                                                                                               Spellbound
## 3347                                                                                                                                         To Catch a Thief
## 3359                                                                                                                                         Parent Trap, The
## 3363                                                                                                                                             Mary Poppins
## 3368                                                                                                                                       That Thing You Do!
## 3370                                                                                                                                                 Sleepers
## 3372                                                                                                                                                  Sleeper
## 3374                                                                                                                             Monty Python's Life of Brian
## 3375                                                                                                                                           Candidate, The
## 3378                                                                                                                                            Dirty Dancing
## 3381                                                                                                                                      Weekend at Bernie's
## 3382                                                                                                                                           Basic Instinct
## 3383                                                                                                                                               Doors, The
## 3387                                                                                                                                                  Top Gun
## 3390                                                                                                                                           On Golden Pond
## 3391                                                                                                                                           Drop Dead Fred
## 3392                                                                                                                                               Abyss, The
## 3394                                                                                                                                     Escape from New York
## 3398                                                                                                                        Tin Drum, The (Blechtrommel, Die)
## 3399                                                                                                                                              Bob Roberts
## 3400                                                                                                                                             Delicatessen
## 3404                                                                                                                                     English Patient, The
## 3408                                                                                                                                      Princess Bride, The
## 3424                                                                                                                           Big Blue, The (Grand bleu, Le)
## 3432                                                                                                                              Once Upon a Time in America
## 3442                                                                                                                                       Dead Poets Society
## 3443                                                                                                                                            Graduate, The
## 3452                                                                                                                                              Stand by Me
## 3460                                                                                                                                       Pump Up the Volume
## 3463                                                                                                                                     Fried Green Tomatoes
## 3464                                                                                                                                                   Patton
## 3466                                                                                                                                               Highlander
## 3472                                                                                                                                                 Heathers
## 3476                                                                                                                                   Some Kind of Wonderful
## 3477                                                                                                                       Indiana Jones and the Last Crusade
## 3480                                                                                                                                     Pink Floyd: The Wall
## 3482                                                                                                                                          Field of Dreams
## 3483                                                                                                                       Butch Cassidy and the Sundance Kid
## 3484                                                                                                       Until the End of the World (Bis ans Ende der Welt)
## 3485                                                                                                                                  When Harry Met Sally...
## 3486                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 3487                                                                                                                          American Werewolf in London, An
## 3488                                                                                                                                   Amityville Horror, The
## 3489                                                                                                                                           Believers, The
## 3491                                                                                                                                                Blob, The
## 3492                                                                                                                                               Body Parts
## 3493                                                                                                                          Dracula (Bram Stoker's Dracula)
## 3494                                                                                                                                                 Candyman
## 3498                                                                                                                               Nightmare on Elm Street, A
## 3500                                                                                                                                                Omen, The
## 3502                                                                                                                                 Star Trek: First Contact
## 3506                                                                                                                   Star Trek VI: The Undiscovered Country
## 3507                                                                                                                          Star Trek V: The Final Frontier
## 3508                                                                                                                          Star Trek II: The Wrath of Khan
## 3510                                                                                                                            Star Trek IV: The Voyage Home
## 3511                                                                                                                                           Batman Returns
## 3512                                                                                                                                               Young Guns
## 3513                                                                                                                                                   Grease
## 3514                                                                                                                                                 Grease 2
## 3515                                                                                                                                         Marked for Death
## 3516                                                                                                                                              Under Siege
## 3518                                                                                                                                                   Jaws 2
## 3519                                                                                                                                                 Jaws 3-D
## 3520                                                                                                                                            Mars Attacks!
## 3521                                                                                                                                            Jerry Maguire
## 3523                                                                                                                                                 Sneakers
## 3524                                                                                                                          Beavis and Butt-Head Do America
## 3525                                                                                                                                Last of the Mohicans, The
## 3526                                                                                                                                             Benny & Joon
## 3527                                                                                                                     Seven Samurai (Shichinin no samurai)
## 3529                                                                                                                                                Toy Story
## 3530                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 3531                                                                                                                                                     Babe
## 3532                                                                                                                                   Muppet Treasure Island
## 3533                                                                                                                                               Braveheart
## 3534                                                                                                                                                Apollo 13
## 3536                                                                                                                                    Walk in the Clouds, A
## 3537                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 3538                                                                                                                       Star Wars: Episode IV - A New Hope
## 3539                                                                                                                                             Pulp Fiction
## 3540                                                                                                                                                 Stargate
## 3542                                                                                                                               Ace Ventura: Pet Detective
## 3543                                                                                                                                             Forrest Gump
## 3544                                                                                                                                           Lion King, The
## 3545                                                                                                                                                Mask, The
## 3548                                                                                                                                            Jurassic Park
## 3550                                                                                                                                           Mrs. Doubtfire
## 3551                                                                                                                                         Schindler's List
## 3552                                                                                                                                                  Aladdin
## 3553                                                                                                                                       Dances with Wolves
## 3555                                                                                                                                Silence of the Lambs, The
## 3558                                                                                                                                                    Fargo
## 3561                                                                                                                                                  Twister
## 3565                                                                                                                                           Godfather, The
## 3566                                                                                                                                              Rear Window
## 3567                                                                                                                                    It Happened One Night
## 3568                                                                                                                                               Casablanca
## 3569                                                                                                                             20,000 Leagues Under the Sea
## 3570                                                                                                                               E.T. the Extra-Terrestrial
## 3574                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 3578                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 3579                                                                                                                                            Graduate, The
## 3581                                                                                                                                       Back to the Future
## 3582                                                                                                                                                   Gandhi
## 3583                                                                                                                                               Young Guns
## 3584                                                                                                                                             Benny & Joon
## 3589                                                                                                                                  Poseidon Adventure, The
## 3593                                                                                                                                         Sixth Sense, The
## 3594                                                                                                                                           Boys Don't Cry
## 3595                                                                                                                                               Fight Club
## 3596                                                                                                                                   Cider House Rules, The
## 3597                                                                                                                                                Stalag 17
## 3599                                                                                                                                                    U-571
## 3600                                                                                                                                          What About Bob?
## 3603                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 3611                                                                                                                                         Children of Dune
## 3613                                                                                                                                            Memphis Belle
## 3614                                                                                                                                   Farmer's Daughter, The
## 3615                                                                                                                                        Finding Neverland
## 3620                                                                                                                      Red Balloon, The (Ballon rouge, Le)
## 3624                                                                                                                                      Horton Hears a Who!
## 3627                                                                                                                                                GoldenEye
## 3628                                                                                                                                               Get Shorty
## 3631                                                                                                                                         Dead Man Walking
## 3632                                                                                                                                            Mortal Kombat
## 3634                                                                                                                                             Broken Arrow
## 3637                                                                                                                  Mighty Morphin Power Rangers: The Movie
## 3638                                                                                                                                                  Species
## 3639                                                                                                                                               Waterworld
## 3640                                                                                                                       Star Wars: Episode IV - A New Hope
## 3641                                                                                                                                      Legends of the Fall
## 3642                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 3643                                                                                                                                     Natural Born Killers
## 3644                                                                                                                                             Pulp Fiction
## 3645                                                                                                                                                 Stargate
## 3646                                                                                                                                   Star Trek: Generations
## 3647                                                                                                                                                Tommy Boy
## 3648                                                                                                                               Ace Ventura: Pet Detective
## 3651                                                                                                                                                  Timecop
## 3652                                                                                                                                                True Lies
## 3653                                                                                                                                           Street Fighter
## 3654                                                                                                                                           Demolition Man
## 3655                                                                                                                                            Fugitive, The
## 3656                                                                                                                                     Hot Shots! Part Deux
## 3657                                                                                                                                            Jurassic Park
## 3658                                                                                                                                         Last Action Hero
## 3661                                                                                                                                             Blade Runner
## 3662                                                                                                                             So I Married an Axe Murderer
## 3663                                                                                                                          Nightmare Before Christmas, The
## 3664                                                                                                                                                Tombstone
## 3665                                                                                                                                               Home Alone
## 3668                                                                                                                                                   Batman
## 3670                                                                                                                          Snow White and the Seven Dwarfs
## 3671                                                                                                                                     Beauty and the Beast
## 3672                                                                                                                                             Pretty Woman
## 3673                                                                                                                                              Heavy Metal
## 3674                                                                                                                                      Mission: Impossible
## 3675                                                                                                                                                Rock, The
## 3677                                                                                                                            Independence Day (a.k.a. ID4)
## 3678                                                                                                                                         Escape from L.A.
## 3680                                                                                                                                      Singin' in the Rain
## 3681                                                                                                                                       North by Northwest
## 3682                                                                                                                                         Some Like It Hot
## 3692                                                                                                                                                  Top Hat
## 3693                                                                                                                                                    Giant
## 3694                                                                                                                              Around the World in 80 Days
## 3698                                                                                                                                               Old Yeller
## 3699                                                                                                                             20,000 Leagues Under the Sea
## 3700                                                                                                                                               Cinderella
## 3701                                                                                                                                             Mary Poppins
## 3702                                                                                                                                 Bedknobs and Broomsticks
## 3703                                                                                                                                      Alice in Wonderland
## 3706                                                                                                                                     Fish Called Wanda, A
## 3707                                                                                                                             Monty Python's Life of Brian
## 3708                                                                                                                                            Dirty Dancing
## 3709                                                                                                                                           Reservoir Dogs
## 3711                                                                                                                                      Weekend at Bernie's
## 3712                                                                                                                               E.T. the Extra-Terrestrial
## 3713                                                                                                                                    Rebel Without a Cause
## 3716                                                                                                                                               Abyss, The
## 3717                                                                                                                                     Escape from New York
## 3718                                                                                                                                         Private Benjamin
## 3723                                                                                                                          One Flew Over the Cuckoo's Nest
## 3734                                                                                                                                  Godfather: Part II, The
## 3735                                                                                                                                        Full Metal Jacket
## 3739                                                                                                                                         Right Stuff, The
## 3740                                                                                                                                               Sting, The
## 3744                                                                                                                                                Chinatown
## 3745                                                                                                                           Day the Earth Stood Still, The
## 3747                                                                                                                                                Duck Soup
## 3750                                                                                                                                            Groundhog Day
## 3751                                                                                                                                               Unforgiven
## 3753                                                                                                                                               Highlander
## 3755                                                                                                                                                 Fantasia
## 3761                                                                                                                       Unbearable Lightness of Being, The
## 3763                                                                                                                                              Real Genius
## 3764                                                                                                                                     Pink Floyd: The Wall
## 3765                                                                                                                                         Forbidden Planet
## 3768                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 3770                                                                                                                                   Amityville Horror, The
## 3771                                                                                                                                                Blob, The
## 3772                                                                                                                                                   Carrie
## 3773                                                                                                                                               Cat People
## 3774                                                                                                                                                Omen, The
## 3775                                                                                                                                               Die Hard 2
## 3776                                                                                                                            Star Trek: The Motion Picture
## 3777                                                                                                                   Star Trek VI: The Undiscovered Country
## 3778                                                                                                                          Star Trek V: The Final Frontier
## 3780                                                                                                                      Star Trek III: The Search for Spock
## 3781                                                                                                                            Star Trek IV: The Voyage Home
## 3782                                                                                                                                                   Grease
## 3783                                                                                                                                                     Jaws
## 3784                                                                                                                                                   Jaws 2
## 3786                                                                                                                                                  Tin Men
## 3787                                                                                                                                               Turbulence
## 3788                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 3790                                                                                                                                            Mortal Kombat
## 3791                                                                                                                                     Seven (a.k.a. Se7en)
## 3792                                                                                                                                               Pocahontas
## 3793                                                                                                                                      From Dusk Till Dawn
## 3794                                                                                                                                           Batman Forever
## 3795                                                                                                                                                   Casper
## 3797                                                                                                                                              Judge Dredd
## 3798                                                                                                                                               Waterworld
## 3799                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 3800                                                                                                                                                  Ed Wood
## 3803                                                                                                                                              Major Payne
## 3805                                                                                                                                          Specialist, The
## 3806                                                                                                                                         Flintstones, The
## 3807                                                                                                                                             Forrest Gump
## 3808                                                                                                                                           Demolition Man
## 3811                                                                                                                                         Last Action Hero
## 3814                                                                                                                                    Three Musketeers, The
## 3816                                                                                                                                               Home Alone
## 3817                                                                                                                                                  Aladdin
## 3822                                                                                                                                           Cable Guy, The
## 3823                                                                                                                                                  Kingpin
## 3825                                                                                                                             Monty Python's Life of Brian
## 3827                                                                                                                               E.T. the Extra-Terrestrial
## 3828                                                                                                                                                  Top Gun
## 3829                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 3833                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 3834                                                                                                                                           Apocalypse Now
## 3836                                                                                                                                                    Alien
## 3840                                                                                                                                         Deer Hunter, The
## 3843                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 3846                                                                                                                            Star Trek: The Motion Picture
## 3848                                                                                                                          Star Trek II: The Wrath of Khan
## 3853                                                                                                                                            Mars Attacks!
## 3855                                                                                                                           Lost World: Jurassic Park, The
## 3857                                                                                                                                            Air Force One
## 3858                                                                                                                                                Game, The
## 3859                                                                                                                                          Full Monty, The
## 3860                                                                                                                                     The Devil's Advocate
## 3861                                                                                                                                         Truman Show, The
## 3862                                                                                                                                                  Amistad
## 3863                                                                                                                                                  Titanic
## 3864                                                                                                                                      Tomorrow Never Dies
## 3865                                                                                                                                 Replacement Killers, The
## 3867                                                                                                                                              Deep Impact
## 3869                                                                                                                           X-Files: Fight the Future, The
## 3870                                                                                                                                               Armageddon
## 3871                                                                                                                             There's Something About Mary
## 3872                                                                                                                                            Exorcist, The
## 3873                                                                                                                                       Mask of Zorro, The
## 3874                                                                                                                               Back to the Future Part II
## 3875                                                                                                                                 Godfather: Part III, The
## 3876                                                                                                                                      Little Mermaid, The
## 3877                                                                                                                     Indiana Jones and the Temple of Doom
## 3879                                                                                                                                                     Cube
## 3882                                                                                                                             History of the World: Part I
## 3883                                                                                                                                           Meet Joe Black
## 3884                                                                                                                               Rambo: First Blood Part II
## 3885                                                                                                                                              Patch Adams
## 3887                                                                                                                                             Office Space
## 3890                                                                                                                                               Entrapment
## 3891                                                                                                                                               Dick Tracy
## 3892                                                                                                                                               Mummy, The
## 3893                                                                                                                           Rocky Horror Picture Show, The
## 3894                                                                                                                                    Thirteenth Floor, The
## 3895                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 3896                                                                                                                     South Park: Bigger, Longer and Uncut
## 3897                                                                                                                                           Wild Wild West
## 3898                                                                                                                                 Blair Witch Project, The
## 3900                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 3901                                                                                                                                          Ghostbusters II
## 3902                                                                                                                                              Mystery Men
## 3904                                                                                                                                 Thomas Crown Affair, The
## 3906                                                                                                                                          Double Jeopardy
## 3907                                                                                                                           Home Alone 2: Lost in New York
## 3909                                                                                                                                                  RoboCop
## 3911                                                                                                                                          Licence to Kill
## 3913                                                                                                                                                    Dogma
## 3915                                                                                                                                 World Is Not Enough, The
## 3916                                                                                                                                          Green Mile, The
## 3917                                                                                                                                 Talented Mr. Ripley, The
## 3919                                                                                                                                            Wayne's World
## 3920                                                                                                                                               Beach, The
## 3921                                                                                                                                              Pitch Black
## 3922                                                                                                                                          Mission to Mars
## 3924                                                                                                                                          Erin Brockovich
## 3925                                                                                                                             Teenage Mutant Ninja Turtles
## 3928                                                                                                                                                Gladiator
## 3929                                                                                                                                   Mission: Impossible II
## 3930                                                                                                                                               Predator 2
## 3931                                                                                                                                              Chicken Run
## 3933                                                                                                                                          What About Bob?
## 3934                                                                                                                                               Hollow Man
## 3936                                                                                                                                         Charlie's Angels
## 3937                                                                                                                                              Unbreakable
## 3938                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 3939                                                                                                                                           Vertical Limit
## 3941                                                                                                                                    Dude, Where's My Car?
## 3942                                                                                                                               O Brother, Where Art Thou?
## 3945                                                                                                                                                     Blow
## 3946                                                                                                                                                 Scarface
## 3948                                                                                                                             A.I. Artificial Intelligence
## 3949                                                                                                             Crimson Rivers, The (Rivières pourpres, Les)
## 3950                                                                                                                                       Planet of the Apes
## 3952                                                                                                                                              Others, The
## 3953                                                                                                                                             Training Day
## 3955                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 3956                                                                                                                                           Ocean's Eleven
## 3959                                                                                                                                          Black Hawk Down
## 3961                                                                                                                                            Resident Evil
## 3962                                                                                                                                               Panic Room
## 3964                                                                                                                                    Sum of All Fears, The
## 3966                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 3967                                                                                                                                        Road to Perdition
## 3970                                                                                                                  Harry Potter and the Chamber of Secrets
## 3971                                                                                                                                          Die Another Day
## 3974                                                                                                                                      Catch Me If You Can
## 3977                                                                                                                                     Matrix Reloaded, The
## 3978                                                                                                                                           Bruce Almighty
## 3979                                                                                                                                            28 Days Later
## 3981                                                                                                      League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 3982                                                                                                                                               Underworld
## 3984                                                                                                                                         Italian Job, The
## 3985                                                                                                                                  Matrix Revolutions, The
## 3989                                                                                                                                         Dawn of the Dead
## 3990                                                                                                                                                  Hellboy
## 3992                                                                                                                                              Van Helsing
## 3994                                                                                                                                                  Shrek 2
## 3995                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 3997                                                                                                                                               Collateral
## 3998                                                                                                                                              Grudge, The
## 4001                                                                                                                                         Incredibles, The
## 4006                                                                                                             Star Wars: Episode III - Revenge of the Sith
## 4007                                                                                                                                            Batman Begins
## 4009                                                                                                                                                Toy Story
## 4010                                                                                                                                                     Heat
## 4011                                                                                                                                  American President, The
## 4013                                                                                                                           Ace Ventura: When Nature Calls
## 4014                                                                                                                                              Money Train
## 4015                                                                                                                                                   Powder
## 4017                                                                                                                                                     Babe
## 4020                                                                                                                               Postman, The (Postino, Il)
## 4023                                                                                                                                            Happy Gilmore
## 4024                                                                                                                                               Braveheart
## 4026                                                                                                                                                Apollo 13
## 4027                                                                                                                                           Batman Forever
## 4029                                                                                                                                          Johnny Mnemonic
## 4030                                                                                                                                                 Net, The
## 4037                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 4040                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 4041                                                                                                                                                 Outbreak
## 4045                                                                                                                Three Colors: Red (Trois couleurs: Rouge)
## 4046                                                                                                                Three Colors: Blue (Trois couleurs: Bleu)
## 4047                                                                                                                                                 Stargate
## 4051                                                                                                                               Ace Ventura: Pet Detective
## 4055                                                                                                                                                 Blue Sky
## 4056                                                                                                                                            Carlito's Way
## 4057                                                                                                                                           Demolition Man
## 4058                                                                                                                                            Fugitive, The
## 4059                                                                                                                                           Heaven & Earth
## 4060                                                                                                                                     Hudsucker Proxy, The
## 4061                                                                                                                                            Jurassic Park
## 4062                                                                                                                                         Last Action Hero
## 4067                                                                                                                                         Schindler's List
## 4068                                                                                                                                               Serial Mom
## 4070                                                                                                                                     Sleepless in Seattle
## 4071                                                                                                                                             Blade Runner
## 4072                                                                                                                                               Home Alone
## 4074                                                                                                                               Terminator 2: Judgment Day
## 4075                                                                                                                                       Dances with Wolves
## 4076                                                                                                                                                   Batman
## 4079                                                                                                                                             Pretty Woman
## 4083                                                                                                                                              Dragonheart
## 4089                                                                                                                            Independence Day (a.k.a. ID4)
## 4090                                                                                                                                     Nutty Professor, The
## 4091                                                                                                                                               Phenomenon
## 4092                                                                                                                                          Time to Kill, A
## 4097                                                                                                                                    American in Paris, An
## 4098                                                                                                                                                  Vertigo
## 4102                                                                                                                                           Apartment, The
## 4107                                                                                                                                             My Fair Lady
## 4108                                                                                                                                       Gone with the Wind
## 4111                                                                                                                                    2001: A Space Odyssey
## 4116                                                                                                                                         To Catch a Thief
## 4118                                                                                                                                                    Giant
## 4119                                                                                                                                             East of Eden
## 4120                                                                                                                              Around the World in 80 Days
## 4123                                                                                                                                         Bringing Up Baby
## 4124                                                                                                                                            39 Steps, The
## 4125                                                                                                                                       African Queen, The
## 4126                                                                                                                                    Cat on a Hot Tin Roof
## 4127                                                                                                                                      Sound of Music, The
## 4128                                                                                                                                                 Die Hard
## 4131                                                                                                                                                 Sleepers
## 4136                                                                                                                                           Reservoir Dogs
## 4138                                                                                                                                          Sophie's Choice
## 4140                                                                                                                                                  Top Gun
## 4145                                                                                                                                             Delicatessen
## 4146                                                                                              Double Life of Veronique, The (Double Vie de Véronique, La)
## 4149                                                                                                                                             My Left Foot
## 4155                                                                                                                                                   Brazil
## 4161                                                                                                                                    To Kill a Mockingbird
## 4164                                                                                                                Wings of Desire (Himmel über Berlin, Der)
## 4165                                                                                                                                           Third Man, The
## 4168                                                                                                                       Killer, The (Die xue shuang xiong)
## 4171                                                                                                                                        Full Metal Jacket
## 4173                                                                                                                              Once Upon a Time in America
## 4178                                                                                                                                    Boot, Das (Boat, The)
## 4179                                                                                                                                               Sting, The
## 4180                                                                                                                                         Harold and Maude
## 4182                                                                                                                                          Terminator, The
## 4183                                                                                                                                   Dead Alive (Braindead)
## 4184                                                                                                                    Rosencrantz and Guildenstern Are Dead
## 4185                                                                                                                                                Manhattan
## 4192                                                                                                                        Treasure of the Sierra Madre, The
## 4193                                                                                                                                                Duck Soup
## 4194                                                                                                                                             Shining, The
## 4197                                                                                                                                         Deer Hunter, The
## 4199                                                                                                                                               Unforgiven
## 4203                                                                                                                                                   Patton
## 4204                                                                                                                                       Cyrano de Bergerac
## 4206                                                                                                                                      Great Dictator, The
## 4209                                                                                                                                       This Is Spinal Tap
## 4210                                                                                                                       Indiana Jones and the Last Crusade
## 4215                                                                                                                                               Birds, The
## 4217                                                                                                        Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 4219                                                                                                                                 Star Trek: First Contact
## 4220                                                                                                                                           Batman Returns
## 4221                                                                                                                                                   Grease
## 4222                                                                                                                                                     Jaws
## 4223                                                                                                                                            Mars Attacks!
## 4226                                                                                                                                Last of the Mohicans, The
## 4227                                                                                                                                                   Hamlet
## 4228                                                                                                                                             Dante's Peak
## 4229                                                                                                                                             Lost Highway
## 4230                                                                                                                                                 Anaconda
## 4232                                                                                                                                                  Volcano
## 4233                                                                                                                                       Fifth Element, The
## 4234                                                                                                                           Lost World: Jurassic Park, The
## 4235                                                                                                                                                  Con Air
## 4236                                                                                                                                  Speed 2: Cruise Control
## 4237                                                                                                                                           Batman & Robin
## 4238                                                                                                                                Men in Black (a.k.a. MIB)
## 4240                                                                                                                                            Air Force One
## 4246                                                                                                                                        Good Will Hunting
## 4248                                                                                                                                      Tomorrow Never Dies
## 4252                                                                                                                                            U.S. Marshals
## 4253                                                                                                                                                  Everest
## 4254                                                                                                                                           City of Angels
## 4256                                                                                                                                          Misérables, Les
## 4257                                                                                                                                              Deep Impact
## 4258                                                                                                              Children of Heaven, The (Bacheha-Ye Aseman)
## 4259                                                                                                                                                    Mulan
## 4260                                                                                                                                               Armageddon
## 4261                                                                                                                           All Quiet on the Western Front
## 4263                                                                                                                                      Great Ziegfeld, The
## 4265                                                                                                                                                   Hamlet
## 4270                                                                                                                                   Man for All Seasons, A
## 4272                                                                                                                                                  Oliver!
## 4274                                                                                                                                   French Connection, The
## 4275                                                                                                                                                    Rocky
## 4277                                                                                                                                          Ordinary People
## 4278                                                                                                                                         Chariots of Fire
## 4279                                                                                                                                      Terms of Endearment
## 4280                                                                                                                                            Out of Africa
## 4281                                                                                                                                        Last Emperor, The
## 4283                                                                                                                                       Driving Miss Daisy
## 4284                                                                                                                                            Exorcist, The
## 4285                                                                                                                                          Lethal Weapon 3
## 4286                                                                                                                                               Metropolis
## 4291                                                                                                                                 Godfather: Part III, The
## 4292                                                                                                                                     Jane Austen's Mafia!
## 4294                                                                                                                                           Doctor Zhivago
## 4297                                                                                                                                               Snake Eyes
## 4299                                                                                                                                                   Legend
## 4300                                                                                                                                              Beetlejuice
## 4302                                                                                                                                                   Frenzy
## 4304                                                                                                                               Man Who Knew Too Much, The
## 4306                                                                                                                                        Untouchables, The
## 4308                                                                                                                                         Mr. & Mrs. Smith
## 4309                                                                                                                                                 Rounders
## 4310                                                                                                                                          Say Anything...
## 4311                                                                                                                                                Rush Hour
## 4315                                                                                                                                        Elephant Man, The
## 4317                                                                                                                      Life Is Beautiful (La Vita è bella)
## 4318                                                                                                                                       American History X
## 4319                                                                                                                                        Gods and Monsters
## 4320                                                                                                                                               Siege, The
## 4321                                                                                                                                                Elizabeth
## 4323                                                                                                                                       Enemy of the State
## 4325                                                                                                                                Celebration, The (Festen)
## 4327                                                                                                                                     Prince of Egypt, The
## 4330                                                                                                                                          You've Got Mail
## 4332                                                                                                                                      Color of Money, The
## 4335                                                                                                                                             Analyze This
## 4336                                                                                                                        Lock, Stock & Two Smoking Barrels
## 4338                                                                                                       Dreamlife of Angels, The (Vie rêvée des anges, La)
## 4339                                                                                                                                                       Go
## 4340                                                                                                                                                 Election
## 4342                                                                                                                                               Mummy, The
## 4343                                                                                                                Star Wars: Episode I - The Phantom Menace
## 4345                                                                                                                                                  Dracula
## 4347                                                                                                                           Rocky Horror Picture Show, The
## 4349                                                                                                                                            Arachnophobia
## 4352                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 4353                                                                                                                                                    Trick
## 4354                                                                                                                                            Runaway Bride
## 4357                                                                                                                                                   Lolita
## 4361                                                                                                                                   Little Shop of Horrors
## 4363                                                                                                                                         Mickey Blue Eyes
## 4364                                                                                                                                          American Beauty
## 4365                                                                                                                                              Deliverance
## 4368                                                                                                                                           Boys Don't Cry
## 4371                                                                                                                                               Goldfinger
## 4372                                                                                                                                      Sydney (Hard Eight)
## 4373                                                                                                                           Home Alone 2: Lost in New York
## 4374                                                                                                                                               Fight Club
## 4377                                                                                                                                 Who Framed Roger Rabbit?
## 4380                                                                                                                                         Drugstore Cowboy
## 4381                                                                                                                                             Falling Down
## 4382                                                                                                                                                    Dogma
## 4383                                                                                                                 Messenger: The Story of Joan of Arc, The
## 4385                                                                                                                                            Sleepy Hollow
## 4386                                                                                                                                 World Is Not Enough, The
## 4388                                                                                                                                                   Harvey
## 4390                                                                                                                                     Grapes of Wrath, The
## 4391                                                                                                                                 River Runs Through It, A
## 4392                                                                                                                                              Toy Story 2
## 4393                                                                                                                                          Green Mile, The
## 4394                                                                                                                                   Last Picture Show, The
## 4395                                                                                                                                        Anna and the King
## 4400                                                                                                                                         Five Easy Pieces
## 4403                                                                                                                          Sister Act 2: Back in the Habit
## 4405                                                                                                                                             Mariachi, El
## 4409                                                                                                                                           Searchers, The
## 4410                                                                                                                                          Bound for Glory
## 4412                                                                                                                                     Night to Remember, A
## 4414                                                                                                                                    Mirror, The (Zerkalo)
## 4419                                                                                                                                             Hustler, The
## 4421                                                                                                                                      Place in the Sun, A
## 4422                                                                                                                                            High Fidelity
## 4423                                                                                                                                                     Hook
## 4425                                                                                                                                       Solaris (Solyaris)
## 4426                                                                                                                                                  Network
## 4427                                                                                                                                                Frequency
## 4430                                                                                                                                                Limelight
## 4431                                                                                                                                  Idiots, The (Idioterne)
## 4433                                                                                                                                        Small Time Crooks
## 4434                                                                                                                                   Mission: Impossible II
## 4436                                                                                                                                         Romeo and Juliet
## 4437                                                                                                                                          Blazing Saddles
## 4438                                                                                                      For a Few Dollars More (Per qualche dollaro in più)
## 4439                                                                                                                                        Conversation, The
## 4441                                                                                                                                                 Badlands
## 4443                                                                                                                                             Patriot, The
## 4445                                                                                                                                      Anatomy of a Murder
## 4446                                                                                                                                          Steel Magnolias
## 4447                                                                                                                                                    Shane
## 4453                                                                                                                                                   Malèna
## 4459                                                                                                                                                 Chocolat
## 4460                                                                                                                                                Cast Away
## 4461                                                                                                                               O Brother, Where Art Thou?
## 4462                                                                                                                                                  Traffic
## 4463                                                                                                                                           House of Games
## 4464                                                                                                                                        Empire of the Sun
## 4465                                                                                                                                                 Hannibal
## 4466                                                                                                                                               15 Minutes
## 4467                                                                                                                                       Enemy at the Gates
## 4472                                                                                                                Triumph of the Will (Triumph des Willens)
## 4473                                                                                                                                        Fellini Satyricon
## 4474                                                                                                                    Pelle the Conqueror (Pelle erobreren)
## 4476                                                                                                                                             Pearl Harbor
## 4477                                                                                                                Himalaya (Himalaya - l'enfance d'un chef)
## 4478                                                                                                                                                Evolution
## 4479                                                                                                                                                Swordfish
## 4480                                                                                                                                     Seven Year Itch, The
## 4481                                                                                                                             A.I. Artificial Intelligence
## 4483                                                                                                                                   Sweet Smell of Success
## 4484                                                                                                                                           Legally Blonde
## 4485                                                                                                                                    Africa: The Serengeti
## 4486                                                                                                                                                   Always
## 4487                                                                                                                         Bill & Ted's Excellent Adventure
## 4490                                                                                                                                                Zoolander
## 4493                                                                                                                                      Fiddler on the Roof
## 4494                                                                                                                                                From Hell
## 4495                                                                                                                                             Donnie Darko
## 4496                                                                                                                                Man Who Wasn't There, The
## 4497                                                                                                                                           Monsters, Inc.
## 4498                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 4499                                                                                                                                                 Spy Game
## 4504                                                                                                                                              Vanilla Sky
## 4505                                                                                                                                                     Iris
## 4511                                                                                                                                                 I Am Sam
## 4512                                                                                                                                           Monster's Ball
## 4513                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 4514                                                                                                                  Son's Room, The (Stanza del figlio, La)
## 4515                                                                                                                                           Baby's Day Out
## 4524                                                                                                                                 My Big Fat Greek Wedding
## 4525                                                                                                  Rome, Open City (a.k.a. Open City) (Roma, città aperta)
## 4526                                                                                                                                         Hollywood Ending
## 4527                                                                                                                                               Spider-Man
## 4529                                                                                                                 Cranes Are Flying, The (Letyat zhuravli)
## 4530                                                                                                                                              About a Boy
## 4531                                                                                                             Star Wars: Episode II - Attack of the Clones
## 4532                                                                                                                                          Last Waltz, The
## 4533                                                                                                                                                 Insomnia
## 4534                                                                                                                                          Minority Report
## 4536                                                                                                                                            Reign of Fire
## 4537                                                                                                                                        Road to Perdition
## 4538                                                                                                                          The Importance of Being Earnest
## 4539                                                                                                     Nosferatu the Vampyre (Nosferatu: Phantom der Nacht)
## 4541                                                                                                                          Tabu: A Story of the South Seas
## 4542                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 4546                                                                                                                                                Ring, The
## 4547                                                                                                                                           Grey Zone, The
## 4549                                                                                                                  Harry Potter and the Chamber of Secrets
## 4552                                                                                                                                          Treasure Planet
## 4557                                                                                                                                                25th Hour
## 4558                                                                                                                                        Gangs of New York
## 4561                                                                                                                                                  Chicago
## 4565                                                                                                                                       Son, The (Le fils)
## 4567                                                                                                                                                    Gerry
## 4568                                                                                                                                                   Spider
## 4569                                                                                                                              Irreversible (Irréversible)
## 4573                                                                                                                                                 Identity
## 4574                                                                                                                                         X2: X-Men United
## 4576                                                                                                                                             Finding Nemo
## 4577                                                                                                                    White Sheik, The (Sceicco bianco, Lo)
## 4578                                                                                                                                               Intervista
## 4579                                                                                                                                              Barton Fink
## 4580                                                                                                                       Terminator 3: Rise of the Machines
## 4582                                                                                                                                      Dirty Pretty Things
## 4584                                                                                                                                                Accattone
## 4586                                                                                                                                        American Splendor
## 4587                                                                                           Code Unknown (Code inconnu: Récit incomplet de divers voyages)
## 4589                                                                            Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le)
## 4591                                                                                                                                           Matchstick Men
## 4592                                                                                                                               Once Upon a Time in Mexico
## 4593                                                                                                                                      Lost in Translation
## 4596                                                                                                                                          Boyz N the Hood
## 4597                                                                                                                       Monty Python's The Meaning of Life
## 4598                                                                                                                                       Station Agent, The
## 4599                                                                                                                                             Mystic River
## 4606                                                                                                                                  Matrix Revolutions, The
## 4607                                                                                                                                      Father of the Bride
## 4608                                                                                                          Master and Commander: The Far Side of the World
## 4609                                                                                                                                                 21 Grams
## 4610                                                                                                        Barbarian Invasions, The (Les invasions barbares)
## 4612                                                                                                                                        Ordet (Word, The)
## 4613                                                                                                                         Forbidden Games (Jeux interdits)
## 4616                                                                                                                                   Hannah and Her Sisters
## 4617                                                                                                                                         Kindergarten Cop
## 4618                                                                                                              Last Tango in Paris (Ultimo tango a Parigi)
## 4621                                                                                                                               Betty Blue (37°2 le matin)
## 4627                                                                                                                                                     1941
## 4628                                                                                                                                    Night at the Opera, A
## 4630                                                                                                                                               In America
## 4633                                                                                                                                                  Monster
## 4634                                                                                                                                     Cheaper by the Dozen
## 4635                                                                                                                                            Cold Mountain
## 4639                                                                                                                                            Secret Window
## 4642                                                                                                                                              After Hours
## 4643                                                                                                                                        Kill Bill: Vol. 2
## 4644                                                                                                                                                     Troy
## 4645                                                                                                                                      You Only Live Twice
## 4647                                                                                                                                               Cat People
## 4648                                                                                                                                           Pierrot le fou
## 4649                                                                                                                                               Nostalghia
## 4652                                                                                                                 Summer with Monika (Sommaren med Monika)
## 4653                                                                                                                 Dark Water (Honogurai mizu no soko kara)
## 4656                                                                                                                                           Dolce Vita, La
## 4657                                                                                                                           Avventura, L' (Adventure, The)
## 4658                                                                                                                                                Viridiana
## 4659                                                                                                                                          Black Narcissus
## 4662                                                                                                                                            Super Size Me
## 4663                                                                                                                                                   Freaks
## 4664                                                                                                                                            Terminal, The
## 4665                                                                                                                                             Spider-Man 2
## 4666                                                                                                    Short Film About Killing, A (Krótki film o zabijaniu)
## 4669                                                                                                                                                 Sideways
## 4672                                                                                                                                                   Kinsey
## 4675                                                                                                                                           Ocean's Twelve
## 4676                                                                                                                                                    Greed
## 4678                                                                                                                                             Atalante, L'
## 4683                                                                                                                                                     2046
## 4684                                                                                                                                       Audition (Ôdishon)
## 4685                                                                                                Very Long Engagement, A (Un long dimanche de fiançailles)
## 4687                                                                                                                                      Million Dollar Baby
## 4689                                                                                                                        Charlie and the Chocolate Factory
## 4690                                                                                                                                             Aviator, The
## 4693                                                                                                              Howl's Moving Castle (Hauru no ugoku shiro)
## 4694                                                                                                                                                 Sin City
## 4696                                                                                                                                        Kingdom of Heaven
## 4699                                                                                                                                            Batman Begins
## 4700                                                                                                            Edukators, The (Die Fetten Jahre sind vorbei)
## 4701                                                                                                                                        War of the Worlds
## 4702                                                                                                                                               Dark Water
## 4704                                                                                                                                           Broken Flowers
## 4705                                                                                                                                   Constant Gardener, The
## 4706                                                                                                                                              Lord of War
## 4708                                                                                                                                   History of Violence, A
## 4709                                                                                                                                             Oliver Twist
## 4716                                                                                                                                                  Jarhead
## 4719                                                                                                                      Harry Potter and the Goblet of Fire
## 4720                                                                                                                                            Walk the Line
## 4722                                                                                                                                                King Kong
## 4723                                                                                                                                      Memoirs of a Geisha
## 4724                                                                                                                 Three Burials of Melquiades Estrada, The
## 4727                                                                                                                                           New World, The
## 4728                                                                                                                                              Hoodwinked!
## 4731                                                                                                                                  Mission: Impossible III
## 4732                                                                                                                                       Da Vinci Code, The
## 4733                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 4734                                                                      Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 4736                                                                                                                                         Dead Man Walking
## 4738                                                                                                                                             Broken Arrow
## 4739                                                                                                                                                Apollo 13
## 4742                                                                                                                                                 Stargate
## 4746                                                                                                                                                  Aladdin
## 4748                                                                                                                                                   Batman
## 4749                                                                                                                                              Heavy Metal
## 4751                                                                                                                                                  Twister
## 4754                                                                                                                                                  Freeway
## 4756                                                                                                                                         Grumpier Old Men
## 4758                                                                                                                                      Crossing Guard, The
## 4761                                                                                                                                       Executive Decision
## 4762                                                                                                                                                    Fargo
## 4763                                                                                                                                              Dragonheart
## 4764                                                                                                                            Kids in the Hall: Brain Candy
## 4765                                                                                                                                         Mulholland Falls
## 4768                                                                                                                                           Cable Guy, The
## 4769                                                                                                                                                   Eraser
## 4770                                                                                                                                     Nutty Professor, The
## 4772                                                                                                                                                   Ransom
## 4773                                                                                                         Tales from the Crypt Presents: Bordello of Blood
## 4775                                                                                                                                       Breaking the Waves
## 4776                                                                                                                                 Star Trek: First Contact
## 4778                                                                                                                                            Mars Attacks!
## 4779                                                                                                                          Beavis and Butt-Head Do America
## 4780                                                                                                                                                  Michael
## 4781                                                                                                                                                    Crash
## 4786                                                                                 Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 4788                                                                                                                                           Batman Forever
## 4789                                                                                                                               Die Hard: With a Vengeance
## 4790                                                                                                                       Star Wars: Episode IV - A New Hope
## 4791                                                                                                                                             Pulp Fiction
## 4792                                                                                                                                                 Stargate
## 4794                                                                                                                               Ace Ventura: Pet Detective
## 4796                                                                                                                                                Mask, The
## 4797                                                                                                                                                    Speed
## 4798                                                                                                                                                True Lies
## 4799                                                                                                                                            Fugitive, The
## 4800                                                                                                                                            Jurassic Park
## 4801                                                                                                                                           Mrs. Doubtfire
## 4802                                                                                                                                             True Romance
## 4804                                                                                                                                Silence of the Lambs, The
## 4805                                                                                                                                                    Fargo
## 4806                                                                                                                                      Mission: Impossible
## 4807                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 4808                                                                                                                                                Rock, The
## 4810                                                                                                                            Independence Day (a.k.a. ID4)
## 4812                                                                                                                                                 Die Hard
## 4813                                                                                                                                           Reservoir Dogs
## 4814                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 4816                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 4817                                                                                                                          Beavis and Butt-Head Do America
## 4819                                                                                                                                Men in Black (a.k.a. MIB)
## 4820                                                                                                                                                  Gattaca
## 4821                                                                                                                                              Jackal, The
## 4823                                                                                                                                               Half Baked
## 4824                                                                                                                                            Lost in Space
## 4826                                                                                                                                      Saving Private Ryan
## 4834                                                                                                                                         Fisher King, The
## 4836                                                                                                                                          Green Mile, The
## 4838                                                                                                                                            High Fidelity
## 4839                                                                                                                                                Gladiator
## 4843                                                                                                                               O Brother, Where Art Thou?
## 4844                                                                                                                                             Mexican, The
## 4846                                                                                                                                                 Scarface
## 4849                                                                                                                                                  Bandits
## 4851                                                                                                                                           Ocean's Eleven
## 4852                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 4854                                                                                                                                        Beautiful Mind, A
## 4855                                                                                                                                          Black Hawk Down
## 4860                                                                                                                                                Secretary
## 4861                                                                                                                                              Equilibrium
## 4863                                                                                                                                                25th Hour
## 4864                                                                                                                                      Catch Me If You Can
## 4866                                                                                                                                         X2: X-Men United
## 4867                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 4868                                                                                                                                           Matchstick Men
## 4870                                                                                                                                             Mystic River
## 4873                                                                                                                    Eternal Sunshine of the Spotless Mind
## 4874                                                                                                                                        Kill Bill: Vol. 2
## 4876                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 4878                                                                                                                                             Garden State
## 4880                                                                                                                                        Shaun of the Dead
## 4882                                                                                                                                Tunnel, The (Tunnel, Der)
## 4884                                                                                                                      Life Aquatic with Steve Zissou, The
## 4885                                                                                                                                Downfall (Untergang, Der)
## 4889                                                                                                                                           Broken Flowers
## 4891                                                                                                                Green Street Hooligans (a.k.a. Hooligans)
## 4892                                                                                                                                                   Capote
## 4893                                                                                                         Wallace & Gromit in The Curse of the Were-Rabbit
## 4899                                                                                                                                      Lucky Number Slevin
## 4903                                                                                                                                          Children of Men
## 4906                                                                                                                                        Déjà Vu (Deja Vu)
## 4908                                                                                                                                          Cocaine Cowboys
## 4910                                                                                                                                                 Hot Fuzz
## 4915                                                                                                                                    Live Free or Die Hard
## 4917                                                                                                                                                 Superbad
## 4918                                                                                                                                         Eastern Promises
## 4919                                                                                                                        Tekkonkinkreet (Tekkon kinkurîto)
## 4921                                                                                                                                          Michael Clayton
## 4922                                                                                                                                   Lars and the Real Girl
## 4923                                                                                                                                        American Gangster
## 4924                                                                                                                                   No Country for Old Men
## 4925                                                                                                                                      There Will Be Blood
## 4926                                                                                                                                                In Bruges
## 4928                                                                                                                                                 Iron Man
## 4930                                                                                                                                                Fall, The
## 4932                                                                                                                                                   WALL·E
## 4934                                                                                                                                        Pineapple Express
## 4935                                                                                                                                       Burn After Reading
## 4937                                                                                                                                      Slumdog Millionaire
## 4939                                                                                                                                              In the Loop
## 4940                                                                                                                                     Inglourious Basterds
## 4941                                                                                                                                                Star Trek
## 4942                                                                                                                                                       Up
## 4943                                                                                                                                            Hangover, The
## 4944                                                                                      Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo)
## 4945                                                                                                                                           Serious Man, A
## 4946                                                                                                                                                   Avatar
## 4947                                                                                                                                          Sherlock Holmes
## 4949                                                                                                                                                Inception
## 4950                                                                                                                                                Town, The
## 4952                                                                                                                       Sherlock Holmes: A Game of Shadows
## 4966                                                                                                                                                  Titanic
## 4968                                                                                                                                                Celebrity
## 4969                                                                                                                                           Simple Plan, A
## 4970                                                                                                                                      Shakespeare in Love
## 4973                                                                                                                                 Blair Witch Project, The
## 4984                                                                                                                                                  Vertigo
## 4993                                                                                                                                    It's a Wonderful Life
## 5010                                                                                                                                            Lost in Space
## 5014                                                                                                                                       Driving Miss Daisy
## 5015                                                                                                                     Seven Samurai (Shichinin no samurai)
## 5016                                                                                                                                      Saving Private Ryan
## 5022                                                                                                                                      Romancing the Stone
## 5028                                                                                                                                 My Best Friend's Wedding
## 5029                                                                                                                              Mortal Kombat: Annihilation
## 5030                                                                                                                                                 Scream 2
## 5031                                                                                                                                Purple Rose of Cairo, The
## 5032                                                                                                                                                King Kong
## 5033                                                                                                                                    Babe: Pig in the City
## 5034                                                                                                                             Texas Chainsaw Massacre, The
## 5035                                                                                                                                             Pet Sematary
## 5037                                                                                                                                              Lake Placid
## 5038                                                                                                                                          Ghostbusters II
## 5039                                                                                                                                               Flashdance
## 5041                                                                                                                                  Mothman Prophecies, The
## 5042                                                                                                                                     Matrix Reloaded, The
## 5044                                                                                                                                  Matrix Revolutions, The
## 5048                                                                                                                                              Daybreakers
## 5050                                                                                                                                                  Jumanji
## 5056                                                                                                                                               Four Rooms
## 5060                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 5062                                                                                                                                          Dead Presidents
## 5063                                                                                                                                               To Die For
## 5067                                                                                                                              Indian in the Cupboard, The
## 5069                                                                                                                                      Crossing Guard, The
## 5073                                                                                                                                             If Lucy Fell
## 5076                                                                                                                                                   Casper
## 5078                                                                                                                                                    Crumb
## 5081                                                                                                                                                  Species
## 5082                                                                                                         To Wong Foo, Thanks for Everything! Julie Newmar
## 5083                                                                                                                                               Waterworld
## 5084                                                                                                                                       White Man's Burden
## 5086                                                                                                                                                Drop Zone
## 5087                                                                                                                               Destiny Turns on the Radio
## 5090                                                                                                                                       Jefferson in Paris
## 5096                                                                                                                                     Natural Born Killers
## 5102                                                                                                                               Ace Ventura: Pet Detective
## 5108                                                                                                                                           Lion King, The
## 5110                                                                                                                       Mrs. Parker and the Vicious Circle
## 5117                                                                                                                                                 Airheads
## 5118                                                                                                                                 Beverly Hillbillies, The
## 5121                                                                                                                                           Body Snatchers
## 5123                                                                                                             City Slickers II: The Legend of Curly's Gold
## 5145                                                                                                                                   Road to Wellville, The
## 5146                                                                                                                                         Ruby in Paradise
## 5148                                                                                                                                       Secret Garden, The
## 5149                                                                                                                                               Serial Mom
## 5153                                                                                                                                     Sleepless in Seattle
## 5159                                                                                                                                    Celluloid Closet, The
## 5161                                                                                                                                                    Ghost
## 5167                                                                                                                          Snow White and the Seven Dwarfs
## 5173                                                                                                                                               Diabolique
## 5175                                                                                                                                James and the Giant Peach
## 5176                                                                                                                                         Mulholland Falls
## 5179                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 5180                                                                                                                                               Striptease
## 5181                                                                                                                                                     Jack
## 5184                                                                                                                                                 Fan, The
## 5187                                                                                                                                         American Buffalo
## 5190                                                                                                                                              Kansas City
## 5212                                                                                                                                        Last Man Standing
## 5214                                                                                                                                            Love Bug, The
## 5215                                                                                                                                               Old Yeller
## 5217                                                                                                                                    Swiss Family Robinson
## 5218                                                                                                                                           That Darn Cat!
## 5220                                                                                                                            Robin Hood: Prince of Thieves
## 5225                                                                                                                                                 Sleepers
## 5226                                                                                                                      Willy Wonka & the Chocolate Factory
## 5227                                                                                                                                                  Bananas
## 5236                                                                                                                                      Weekend at Bernie's
## 5238                                                                                                                                               Doors, The
## 5245                                                                                                                                             Funeral, The
## 5248                                                                                                                                           Drop Dead Fred
## 5249                                                                                                                                     Escape from New York
## 5250                                                                                                                                         Private Benjamin
## 5251                                                                                                                                              Bob Roberts
## 5255                                                                                                                                      Thin Blue Line, The
## 5258                                                                                                                                      Princess Bride, The
## 5260                                                                                                                                                   Aliens
## 5261                                                                                                                                      Clockwork Orange, A
## 5265                                                                                                                                           Third Man, The
## 5278                                                                                                                                         Harold and Maude
## 5298                                                                                                                                       Young Frankenstein
## 5301                                                                                                                                        Somewhere in Time
## 5308                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 5316                                                                                                                                                   Carrie
## 5323                                                                                                                                           Batman Returns
## 5326                                                                                                                                              Under Siege
## 5328                                                                                                                                                   Jaws 2
## 5329                                                                                                                                      My Fellow Americans
## 5334                                                                                                                                            Marvin's Room
## 5336                                                                                                                                             Dante's Peak
## 5337                                                                                                                                            Amos & Andrew
## 5344                                                                                                              Austin Powers: International Man of Mystery
## 5347                                                                                                                                           Batman & Robin
## 5351                                                                                                                                     George of the Jungle
## 5352                                                                                                                                                 Cop Land
## 5356                                                                                                                                     My Own Private Idaho
## 5357                                                                                                                                                 In & Out
## 5361                                                                                                                                                Game, The
## 5368                                                                                                                                      Alien: Resurrection
## 5374                                                                                                                                             Postman, The
## 5376                                                                                                                                        Big Lebowski, The
## 5382                                                                                                                                                     Hush
## 5384                                                                                                                                           Primary Colors
## 5386                                                                                                                                              Sour Grapes
## 5389                                                                                                                                                 Godzilla
## 5390                                                                                                                           Fear and Loathing in Las Vegas
## 5395                                                                                                                              Greatest Show on Earth, The
## 5405                                                                                                                                      Terms of Endearment
## 5411                                                                                                                                                Halloween
## 5416                                                                                                                                          Lethal Weapon 3
## 5417                                                                                                                                                 Gremlins
## 5418                                                                                                                                            Soylent Green
## 5420                                                                                                                              Back to the Future Part III
## 5421                                                                                                                                  Poseidon Adventure, The
## 5422                                                                                                                             Absent-Minded Professor, The
## 5424                                                                                                                                             Rapture, The
## 5427                                                                                                                                 Honey, I Shrunk the Kids
## 5432                                                                                                                                         Jungle Book, The
## 5434                                                                                                                                        Mighty Ducks, The
## 5436                                                                                                                                                   Popeye
## 5438                                                                                                                                                     Tron
## 5440                                                                                                                                                Jerk, The
## 5441                                                                                                                                             Grand Canyon
## 5444                                                                                                                                   Lord of the Rings, The
## 5445                                                                                                                              1984 (Nineteen Eighty-Four)
## 5448                                                                                                                                                     Cujo
## 5449                                                                                                                                     Children of the Corn
## 5452                                                                                                                                     Nutty Professor, The
## 5453                                                                                                                                          Sixteen Candles
## 5454                                                                                                                                           Pretty in Pink
## 5456                                                                                                                                                    House
## 5457                                                                                                                       Henry: Portrait of a Serial Killer
## 5463                                                                                                                                                       54
## 5464                                                                                                                                                   Willow
## 5467                                                                                                                                              Simon Birch
## 5474                                                                                                                                                     Toys
## 5475                                                                                                                                    Young Doctors in Love
## 5476                                                                                                                                          Blame It on Rio
## 5477                                                                                                                                        Seventh Sign, The
## 5478                                                                                                                                          We're No Angels
## 5482                                                                                                                                                    Ronin
## 5483                                                                                                                      Fiendish Plot of Dr. Fu Manchu, The
## 5486                                                                                                                                  Night at the Roxbury, A
## 5491                                                                                                                           2010: The Year We Make Contact
## 5495                                                                                                                                       American History X
## 5496                                                                                                                                               Siege, The
## 5498                                                                                                                                      Stepford Wives, The
## 5499                                                                                                                           Pope of Greenwich Village, The
## 5503                                                                                                                                                King Kong
## 5505                                                                                                                                                   Fletch
## 5506                                                                                                                                                  Gung Ho
## 5508                                                                                                                                                   Psycho
## 5512                                                                                                                               Rambo: First Blood Part II
## 5513                                                                                                                         First Blood (Rambo: First Blood)
## 5519                                                                                                                                                Heartburn
## 5520                                                                                                                                        Nothing in Common
## 5521                                                                                                                                          Karate Kid, The
## 5523                                                                                                                                       Thin Red Line, The
## 5526                                                                                                                                               Hurlyburly
## 5530                                                                                                                                       Jumpin' Jack Flash
## 5534                                                                                                                                                      8MM
## 5535                                                                                                                                             Pet Sematary
## 5536                                                                                                                                                Christine
## 5537                                                                                                                                              Night Shift
## 5539                                                                                                                                             Airport 1975
## 5540                                                                                                                                            Rollercoaster
## 5542                                                                                                                                              Logan's Run
## 5544                                                                                                                           Beneath the Planet of the Apes
## 5545                                                                                                                        Battle for the Planet of the Apes
## 5546                                                                                                                       Conquest of the Planet of the Apes
## 5547                                                                                                                       Escape from the Planet of the Apes
## 5550                                                                                                                                             Dead Ringers
## 5552                                                                                                                                              Matrix, The
## 5553                                                                                                                                      Out-of-Towners, The
## 5554                                                                                                                                                Metroland
## 5559                                                                                                                                               Dick Tracy
## 5560                                                                                                                                               Mummy, The
## 5564                                                                                                                                             Superman III
## 5565                                                                                                                           Invasion of the Body Snatchers
## 5569                                                                                                                                           Wild Wild West
## 5570                                                                                                                                            Summer of Sam
## 5571                                                                                                                                           Arlington Road
## 5576                                                                                                                                      Crimes of the Heart
## 5582                                                                                                                                                  Frances
## 5585                                                                                                                                                Bowfinger
## 5588                                                                                                Final Conflict, The (a.k.a. Omen III: The Final Conflict)
## 5589                                                                                                                                                Airplane!
## 5590                                                                                                                           American Werewolf in Paris, An
## 5591                                                                                             European Vacation (aka National Lampoon's European Vacation)
## 5601                                                                                                                                                 Saturn 3
## 5617                                                                                                                                               Flashdance
## 5620                                                                                                                                         Blue Lagoon, The
## 5628                                                                                                                                    Bringing Out the Dead
## 5629                                                                                                                                         Crazy in Alabama
## 5635                                                                                                                                                     Coma
## 5636                                                                                                                                         Drugstore Cowboy
## 5642                                                                                                                                               Dead Again
## 5644                                                                                                                                               Poison Ivy
## 5649                                                                                                                                            Sleepy Hollow
## 5650                                                                                                                                 World Is Not Enough, The
## 5651                                                                                                                                                 Scrooged
## 5652                                                                                                                                     Grapes of Wrath, The
## 5659                                                                                                                                         Fisher King, The
## 5663                                                                                                                                  Bonfire of the Vanities
## 5664                                                                                                                                            Stealing Home
## 5666                                                                                                                                   Glass Bottom Boat, The
## 5672                                                                                                                               The Falcon and the Snowman
## 5673                                                                                                                                         Any Given Sunday
## 5676                                                                                                                                   Snow Falling on Cedars
## 5682                                                                                                                                                   Poison
## 5686                                                                                                                                               Sister Act
## 5692                                                                                                                                           Bodyguard, The
## 5693                                                                                                                                        Death Becomes Her
## 5695                                                                                                                                            Forever Young
## 5697                                                                                                                                                 Snow Day
## 5701                                                                                                                                           Reindeer Games
## 5711                                                                                                                                               Volunteers
## 5713                                                                                                                                         Who's That Girl?
## 5714                                                                                                                                               Blind Date
## 5721                                                                                                                                                 Red Dawn
## 5722                                                                                                                                       Eyes of Laura Mars
## 5726                                                                                                                                           Jacob's Ladder
## 5728                                                                                                                                   Road to El Dorado, The
## 5730                                                                                                                                                True Grit
## 5736                                                                                                                                       North Dallas Forty
## 5739                                                                                                                                                   Arthur
## 5741                                                                                                                                     Prince of Tides, The
## 5743                                                                                                                                          American Psycho
## 5754                                                                                                                                          Big Kahuna, The
## 5767                                                                                                                                                  Porky's
## 5768                                                                                                                                             Alien Nation
## 5770                                                                                                                               Mad Max Beyond Thunderdome
## 5778                                                                                                                                                      F/X
## 5781                                                                                                                                                 H.O.T.S.
## 5782                                                                                  Everything You Always Wanted to Know About Sex * But Were Afraid to Ask
## 5793                                                                                                                                               Billy Jack
## 5802                                                                                                                                                Punchline
## 5806                                                                                                                                        Miss Congeniality
## 5812                                                                                                                                                    Annie
## 5817                                                                                                                                        Prelude to a Kiss
## 5821                                                                                                                                Brave Little Toaster, The
## 5827                                                                                                                                                Mannequin
## 5828                                                                                                                                Million Dollar Hotel, The
## 5830                                                                                                                                               15 Minutes
## 5833                                                                                                                                     Revenge of the Nerds
## 5834                                                                                                                                                  Memento
## 5835                                                                                                                                            Heartbreakers
## 5842                                                                                                                             Nine to Five (a.k.a. 9 to 5)
## 5847                                                                                                                                              Ice Castles
## 5852                                                                                                                               Throw Momma from the Train
## 5855                                                                                                                                                     Shag
## 5859                                                                                                                                               Sexy Beast
## 5860                                                                                                                                      Cannonball Run, The
## 5862                                                                                                                                          Shadows and Fog
## 5867                                                                                                                                                  Beaches
## 5870                                                                                                                                                 Cocktail
## 5871                                                                                                                                                   Colors
## 5873                                                                                                                                             Criminal Law
## 5874                                                                                                                                        Crossing Delancey
## 5881                                                                                                                                My Stepmother Is an Alien
## 5882                                                                                                                                               Off Limits
## 5888                                                                                                                                    Last Exit to Brooklyn
## 5890                                                                                                                                       Look Who's Talking
## 5891                                                                                                                                         Miss Firecracker
## 5893                                                                                                                                              Next of Kin
## 5897                                                                                                                                    War of the Roses, The
## 5901                                                                                                                                           Altered States
## 5902                                                                                                                                    Any Which Way You Can
## 5903                                                                                                                                                 Rat Race
## 5911                                                                                                                                                    Carny
## 5916                                                                                                                                              Shallow Hal
## 5919                                                                                                                                                 Toy, The
## 5921                                                                                                                                             Flash Gordon
## 5922                                                                                                                                        Lord of the Flies
## 5929                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 5932                                                                                                                                          Another 48 Hrs.
## 5933                                                                                                                                             Formula, The
## 5935                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 5936                                                                                                                                              Mrs. Soffel
## 5941                                                                                                                                                Used Cars
## 5942                                                                                                                                                Dragonfly
## 5947                                                                                                                                         Jazz Singer, The
## 5950                                                                                                                                                 Oh, God!
## 5952                                                                                                                                    Smokey and the Bandit
## 5954                                                                                                                         Piano Teacher, The (La pianiste)
## 5956                                                                                                                                    Evil That Men Do, The
## 5960                                                                                                                                   Joe Versus the Volcano
## 5961                                                                                                                                  Taking Care of Business
## 5963                                                                                                                              Three Men and a Little Lady
## 5965                                                                                                                                       Coca-Cola Kid, The
## 5969                                                                                                                                                    Whore
## 5970                                                                                                                                Every Which Way But Loose
## 5975                                                                                                                                   Look Who's Talking Now
## 5977                                                                                                                                                  Perfect
## 5978                                                                                                                                                    Signs
## 5984                                                                                                                                                  Swimfan
## 5985                                                                                                                                          Betsy's Wedding
## 5988                                                                                                                                                 Fan, The
## 5990                                                                                                                                                Ring, The
## 5993                                                                                                                                            Staying Alive
## 5996                                                                                                                                             Wholly Moses
## 6001                                                                                                                                             Endless Love
## 6005                                                                                                                                                Neighbors
## 6011                                                                                                                                                  So Fine
## 6012                                                                                                                                         Southern Comfort
## 6014                                                                                                                                             Analyze That
## 6016                                                                                                                                          Author! Author!
## 6017                                                                                                                                             Best Friends
## 6021                                                                                                                                             Eating Raoul
## 6024                                                                                                                                                     Narc
## 6027                                                                                                                                         Body of Evidence
## 6033                                                                                                                                            Honkytonk Man
## 6034                                                                                                                                              Making Love
## 6035                                                                                                                                                  Missing
## 6036                                                                                                                                                Monsignor
## 6037                                                                                                                                            Personal Best
## 6039                                                                                                                                                    Q & A
## 6040                                                                                                                                        Gods and Generals
## 6041                                                                                                                                  Bringing Down the House
## 6042                                                                                                                                           Born Yesterday
## 6043                                                                                                                                                    Equus
## 6046                                                                                                                                             One Good Cop
## 6047                                                                                                                                                    Basic
## 6050                                                                                                                    Marrying Man, The (Too Hot to Handle)
## 6052                                                                                                                                   Electric Horseman, The
## 6062                                                                                                                                      Usual Suspects, The
## 6067                                                                                                                                            Reality Bites
## 6071                                                                                                                                            Trainspotting
## 6075                                                                                                                                      Weekend at Bernie's
## 6076                                                                                                                                 Sex, Lies, and Videotape
## 6084                                                                                                                                                    Evita
## 6095                                                                                                                                               Moonstruck
## 6096                                                                                                                                                 Scrooged
## 6102                                                                                                                                    Royal Tenenbaums, The
## 6106                                                                                                                                             Pianist, The
## 6107                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 6127                                                                                                                                 How to Train Your Dragon
## 6130                                                                                                                           Ace Ventura: When Nature Calls
## 6132                                                                                                                                            Mortal Kombat
## 6136                                                                                                                                                   Casper
## 6138                                                                                                                                             First Knight
## 6139                                                                                                                                              Judge Dredd
## 6142                                                                                                                                               Disclosure
## 6144                                                                                                                                                     I.Q.
## 6146                                                                                                                                      Legends of the Fall
## 6148                                                                                                                                             Pulp Fiction
## 6149                                                                                                                                                Quiz Show
## 6150                                                                                                                                                 Stargate
## 6151                                                                                                                                        Santa Clause, The
## 6152                                                                                                                                                Tommy Boy
## 6156                                                                                                                                              Client, The
## 6158                                                                                                                                           Lion King, The
## 6161                                                                                                                                                True Lies
## 6162                                                                                                                                     Addams Family Values
## 6163                                                                                                                                    Beverly Hills Cop III
## 6164                                                                                                                                            Bronx Tale, A
## 6165                                                                                                             City Slickers II: The Legend of Curly's Gold
## 6166                                                                                                                                              Cliffhanger
## 6172                                                                                                                                                  Aladdin
## 6176                                                                                                                                     Beauty and the Beast
## 6177                                                                                                                           Ace Ventura: When Nature Calls
## 6178                                                                                                                                              Black Sheep
## 6179                                                                                                                                           Canadian Bacon
## 6180                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 6182                                                                                                                                                    Speed
## 6186                                                                                                                                                 Basquiat
## 6192                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 6200                                                                                                                               Nightmare on Elm Street, A
## 6201                                                                                                                                       Jingle All the Way
## 6202                                                                                                                                          Raising Arizona
## 6204                                                                                                                                                 Scream 2
## 6205                                                                                                                                              Spice World
## 6207                                                                                                                                                Labyrinth
## 6208                                                                                                                                          Friday the 13th
## 6211                                                                                                                       Halloween III: Season of the Witch
## 6215                                                                                                                                              BASEketball
## 6217                                                                                                                                                   Popeye
## 6218                                                                                Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 6220                                                                                                                                       Wrongfully Accused
## 6221                                                                                                                                                   Willow
## 6224                                                                                                                                                 Rushmore
## 6227                                                                                                                                   Breakfast of Champions
## 6230                                                                                                                                               Mummy, The
## 6231                                                                                                                                                Get Bruce
## 6232                                                                                                                                             American Pie
## 6234                                                                                                                           American Werewolf in Paris, An
## 6236                                                                                                                                           Drive Me Crazy
## 6237                                                                                                                                             Happy, Texas
## 6240                                                                                                                                                Hairspray
## 6244                                                                                                                                            Stuart Little
## 6245                                                                                                                                                 Scream 3
## 6247                                                                                                                                              Wonder Boys
## 6248                                                                                                                                          Erin Brockovich
## 6249                                                                                                                                            High Fidelity
## 6250                                                                                                                                               Caddyshack
## 6251                                                                                                                                          Big Kahuna, The
## 6252                                                                                                                            Smiling Fish and Goat on Fire
## 6255                                                                                                                                               Jesus' Son
## 6256                                                                                                                                       Me, Myself & Irene
## 6257                                                                                                                                              Scary Movie
## 6260                                                                                                                                        Cecil B. DeMented
## 6261                                                                                                                            Original Kings of Comedy, The
## 6263                                                                                                                                              Nurse Betty
## 6264                                                                                                                                            Almost Famous
## 6265                                                                                                                                       Dancer in the Dark
## 6269                                                                                                                               O Brother, Where Art Thou?
## 6271                                                                                                                                                 Joe Dirt
## 6272                                                                                                                                  Josie and the Pussycats
## 6276                                                                                                                                               Sexy Beast
## 6277                                                                                                                                            Scary Movie 2
## 6278                                                                                                                                           Legally Blonde
## 6280                                                                                                                                                     Made
## 6282                                                                                                                                                   Colors
## 6283                                                                                                                                   Ernest Saves Christmas
## 6285                                                                                                                                                    Twins
## 6287                                                                                                                                                 Loverboy
## 6288                                                                                                                                              Ghost World
## 6289                                                                                                                                       Planet of the Apes
## 6293                                                                                                                                                      UHF
## 6296                                                                                                                                                 Rat Race
## 6297                                                                                                                                                 Silkwood
## 6302                                                                                                                                           Stunt Man, The
## 6303                                                                                                                                           Ocean's Eleven
## 6304                                                                                                                                   Not Another Teen Movie
## 6306                                                                                                                                       White Water Summer
## 6309                                                                                                                                               Crossroads
## 6315                                                                                                                                                     Heat
## 6318                                                                                                                                                 Clueless
## 6324                                                                                                                                             Strange Days
## 6332                                                                                                                                                    Speed
## 6333                                                                                                                                  In the Mouth of Madness
## 6334                                                                                                                                           Demolition Man
## 6345                                                                                                                                          Wild Bunch, The
## 6354                                                                                                                                        Wizard of Oz, The
## 6364                                                                                                                               E.T. the Extra-Terrestrial
## 6367                                                                                                                              People vs. Larry Flynt, The
## 6369                                                                                                                                             Howling, The
## 6372                                                                                                                                            Grifters, The
## 6374                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 6384                                                                                                                                         Army of Darkness
## 6386                                                                                                                                      Blues Brothers, The
## 6390                                                                                                                                               Sting, The
## 6402                                                                                                                                       Back to the Future
## 6406                                                                                                                                     Pink Floyd: The Wall
## 6408                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 6411                                                                                                       Bride of Frankenstein, The (Bride of Frankenstein)
## 6413                                                                                                                                                     Jaws
## 6416                                                                                                                                             Lost Highway
## 6417                                                                                                                                       Fifth Element, The
## 6418                                                                                                                                Men in Black (a.k.a. MIB)
## 6420                                                                                                                                        Conspiracy Theory
## 6423                                                                                                                                     The Devil's Advocate
## 6425                                                                                                                                        Starship Troopers
## 6426                                                                                                                                      Alien: Resurrection
## 6427                                                                                                                                                   Fallen
## 6430                                                                                                                                          Midnight Cowboy
## 6431                                                                                                                                                    Rocky
## 6432                                                                                                                                                 Repo Man
## 6442                                                                                                                    I Still Know What You Did Last Summer
## 6443                                                                                                                                       Enemy of the State
## 6446                                                                                                                                                   Cocoon
## 6448                                                                                                                                              Logan's Run
## 6450                                                                                                                                    Village of the Damned
## 6457                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 6459                                                                                                                           American Werewolf in Paris, An
## 6460                                                                                                                                                      Big
## 6468                                                                                                                                         Dirty Dozen, The
## 6469                                                                                                                                                   Dr. No
## 6472                                                                                                                                                  RoboCop
## 6477                                                                                                                                        Tora! Tora! Tora!
## 6481                                                                                                                                            Patriot Games
## 6482                                                                                                                                                 Snow Day
## 6485                                                                                                                                          Thelma & Louise
## 6501                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 6502                                                                                                                                                   Powder
## 6503                                                                                                                                        Dolores Claiborne
## 6504                                                                                                                                       Heavenly Creatures
## 6506                                                                                                                                               Craft, The
## 6508                                                                                                                                             My Fair Lady
## 6509                                                                                                                                                    Dumbo
## 6510                                                                                                                                 Long Kiss Goodnight, The
## 6511                                                                                                                                        Strictly Ballroom
## 6512                                                                                                                                         Right Stuff, The
## 6513                                                                                                                                Femme Nikita, La (Nikita)
## 6514                                                                                                                                Manchurian Candidate, The
## 6515                                                                                                                                                     Tron
## 6517                                                                                                                                              Player, The
## 6518                                                                                                                                                Elizabeth
## 6519                                                                                                                                             Time Bandits
## 6521                                                                                                                                       Perfect Storm, The
## 6522                                                                                                                                                     Heat
## 6523                                                                                                                                                   Casino
## 6525                                                                                                                                               Get Shorty
## 6527                                                                                                                                          Dangerous Minds
## 6530                                                                                                                                              Richard III
## 6533                                                                                                                                         Mighty Aphrodite
## 6540                                                                                                                                                 Bad Boys
## 6541                                                                                                                                  Basketball Diaries, The
## 6542                                                                                                                                                  Rob Roy
## 6543                                                                                                                               Die Hard: With a Vengeance
## 6544                                                                                                                                            Billy Madison
## 6547                                                                                                                                              French Kiss
## 6550                                                                                                                                               Houseguest
## 6552                                                                                                                                                     I.Q.
## 6554                                                                                                                                                   Junior
## 6559                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 6560                                                                                                                                   Miracle on 34th Street
## 6561                                                                                                                                                     Nell
## 6569                                                                                                                                  Stuart Saves His Family
## 6575                                                                                                                                    Bullets Over Broadway
## 6576                                                                                                                                              Client, The
## 6577                                                                                                                                             Forrest Gump
## 6580                                                                                                                                                 Maverick
## 6581                                                                                                                                            Reality Bites
## 6582                                                                                                                                 When a Man Loves a Woman
## 6583                                                                                                                                                     Wolf
## 6585                                                                                                                                    Beverly Hills Cop III
## 6587                                                                                                             City Slickers II: The Legend of Curly's Gold
## 6588                                                                                                                                              Cliffhanger
## 6589                                                                                                                                                     Dave
## 6590                                                                                                                                                Firm, The
## 6591                                                                                                                                            Fugitive, The
## 6594                                                                                                                                            Jurassic Park
## 6596                                                                                                                                  Man Without a Face, The
## 6599                                                                                                                                  Remains of the Day, The
## 6601                                                                                                                                                     Rudy
## 6604                                                                                                                                               Serial Mom
## 6606                                                                                                                                     Sleepless in Seattle
## 6607                                                                                                                                                   Sliver
## 6608                                                                                                                             So I Married an Axe Murderer
## 6609                                                                                                                          Nightmare Before Christmas, The
## 6610                                                                                                                                               Home Alone
## 6611                                                                                                                                                    Ghost
## 6612                                                                                                                                                  Aladdin
## 6613                                                                                                                                       Dances with Wolves
## 6614                                                                                                                                                   Batman
## 6616                                                                                                                                             Pretty Woman
## 6617                                                                                                                                               Diabolique
## 6620                                                                                                                                     Nutty Professor, The
## 6622                                                                                                                                                 Die Hard
## 6623                                                                                               Return of Martin Guerre, The (Retour de Martin Guerre, Le)
## 6625                                                                                                                                           101 Dalmatians
## 6629                                                                                                                                   Breakfast at Tiffany's
## 6632                                                                                                                            Adventures of Robin Hood, The
## 6634                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 6641                                                                                                                                                Rush Hour
## 6647                                                                                                                                              Chicken Run
## 6649                                                                                                                                         Charlie's Angels
## 6651                                                                                                                                                   Snatch
## 6653                                                                                                                                    Dude, Where's My Car?
## 6656                                                                                                                                      Save the Last Dance
## 6668                                                                                                                                                Mask, The
## 6671                                                                                                                                       Dances with Wolves
## 6686                                                                                                                                        Good Will Hunting
## 6687                                                                                                                                            Lethal Weapon
## 6688                                                                                                                                                   Lolita
## 6691                                                                                                                                     Return of Jafar, The
## 6693                                                                                                                                        Untouchables, The
## 6707                                                                                                                                  Not Without My Daughter
## 6708                                                                                                                                                     Fame
## 6716                                                                                                                                     Matrix Reloaded, The
## 6727                                                                                                                                        Kill Bill: Vol. 2
## 6740                                                                                                                                            Into the Wild
## 6756                                                                                                                                                   Wadjda
## 6772                                                                                                                                               Get Shorty
## 6774                                                                                                                                          Dangerous Minds
## 6776                                                                                                                                      Usual Suspects, The
## 6777                                                                                                                                                   Friday
## 6779                                                                                                                                          Misérables, Les
## 6780                                                                                                                                                Screamers
## 6782                                                                                                                                                 Bad Boys
## 6784                                                                                                                                           Batman Forever
## 6785                                                                                                                                                    Congo
## 6788                                                                                                                                             First Knight
## 6789                                                                                                                                                  Hackers
## 6790                                                                                                                                                     Kids
## 6793                                                                                                                                            Prophecy, The
## 6799                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 6807                                                                                                                                      Tales from the Hood
## 6808                                                                                                                                    Village of the Damned
## 6809                                                                                                                                                Tommy Boy
## 6810                                                                                                                                               Virtuosity
## 6813                                                                          Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 6815                                                                                                                                           Body Snatchers
## 6820                                                                                                                                                  Aladdin
## 6821                                                                                                                                       Dances with Wolves
## 6822                                                                                                                                                   Batman
## 6823                                                                                                                                Silence of the Lambs, The
## 6824                                                                                                                                     Beauty and the Beast
## 6859                                                                                                                                           Shutter Island
## 6874                                                                                                                                                  Jumanji
## 6879                                                                                                                                          Johnny Mnemonic
## 6881                                                                                                                                                  Species
## 6887                                                                                                                                                 Stargate
## 6892                                                                                                                                             Forrest Gump
## 6895                                                                                                                                           Body Snatchers
## 6897                                                                                                                                           Demolition Man
## 6901                                                                                                                                              Heavy Metal
## 6905                                                                                                                                             Arrival, The
## 6911                                                                                                                                            Fly Away Home
## 6912                                                                                                                                       Lawnmower Man, The
## 6916                                                                                                                                               Abyss, The
## 6920                                                                                                                                      Clockwork Orange, A
## 6928                                                                                                                                          Field of Dreams
## 6930                                                                                                                                               Birds, The
## 6932                                                                                                                            Star Trek: The Motion Picture
## 6941                                                                                                                                                  Con Air
## 6947                                                                                                                                              Wag the Dog
## 6950                                                                                                                                                   Sphere
## 6951                                                                                                                                              Deep Impact
## 6954                                                                                                                                                 Repo Man
## 6956                                                                                                                                          Lethal Weapon 2
## 6957                                                                                                                                                 Gremlins
## 6960                                                                                                                              Back to the Future Part III
## 6965                                                                                                                                                     Cube
## 6967                                                                                                                                                  Soldier
## 6968                                                                                                                                                 Fly, The
## 6969                                                                                                                                                 Fly, The
## 6970                                                                                                                                                  Airport
## 6971                                                                                                                                             Airport 1975
## 6975                                                                                                                           Beneath the Planet of the Apes
## 6976                                                                                                                        Battle for the Planet of the Apes
## 6977                                                                                                                       Conquest of the Planet of the Apes
## 6978                                                                                                                               Concorde: Airport '79, The
## 6981                                                                                                                                                 eXistenZ
## 6983                                                                                                                                              Superman II
## 6984                                                                                                                                             Superman III
## 6985                                                                                                                                                   Lolita
## 6986                                                                                                                                   Little Shop of Horrors
## 6990                                                                                                                                             Total Recall
## 6996                                                                                                                                            Wayne's World
## 6998                                                                                                                                          Mission to Mars
## 7003                                                                                                                                                Moonraker
## 7004                                                                                                                                         Running Man, The
## 7005                                                                                                                                                  Starman
## 7009                                                                                                                                               Titan A.E.
## 7011                                                                                                                                                 Freejack
## 7012                                                                                                                                                Cell, The
## 7014                                                                                                                                                  Runaway
## 7015                                                                                                                                             6th Day, The
## 7020                                                                                                                                                  Outland
## 7023                                                                                                                                               Millennium
## 7025                                                                                                                                                Def-Con 4
## 7028                                                                                                                                                    K-PAX
## 7031                                                                                                                                               Spider-Man
## 7033                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 7034                                                                                                                                            Reign of Fire
## 7035                                                                                                                                              The Big Bus
## 7039                                                                                                                                            Staying Alive
## 7041                                                                                                                                                  Solaris
## 7046                                                                                                                                                Core, The
## 7052                                                                                                                                            28 Days Later
## 7053                                                                                                                       Terminator 3: Rise of the Machines
## 7056                                                                                                                                     Handmaid's Tale, The
## 7066                                                                                                                                                   Zardoz
## 7074                                                                                                                               Die Hard: With a Vengeance
## 7080                                                                                                                                                True Lies
## 7083                                                                                                                                             Philadelphia
## 7088                                                                                                                                                Rock, The
## 7097                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 7098                                                                                                                                               Die Hard 2
## 7100                                                                                                                                                 Face/Off
## 7104                                                                                                                                              Matrix, The
## 7107                                                                                                                                                    X-Men
## 7108                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 7117                                                                                                                                            Batman Begins
## 7118                                                                                                                      Harry Potter and the Goblet of Fire
## 7124                                                                                                                                      Slumdog Millionaire
## 7125                                                                                                                                                Star Trek
## 7129                                                                                                                                           Shutter Island
## 7134                                                                                                                                   Dark Knight Rises, The
## 7135                                                                                                                       Hobbit: An Unexpected Journey, The
## 7136                                                                                                                     Hobbit: The Desolation of Smaug, The
## 7139                                                                                                                                         Edge of Tomorrow
## 7140                                                                                                                                  Guardians of the Galaxy
## 7142                                                                                                                                               Inside Out
## 7146                                                                                                                                      From Dusk Till Dawn
## 7147                                                                                                                                            Happy Gilmore
## 7149                                                                                                                                            Billy Madison
## 7150                                                                                                                                                   Clerks
## 7151                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 7155                                                                                                                                           Mrs. Doubtfire
## 7156                                                                                                                                                     Rudy
## 7158                                                                                                                                   Brady Bunch Movie, The
## 7159                                                                                                                                                  Aladdin
## 7160                                                                                                                               Terminator 2: Judgment Day
## 7165                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 7166                                                                                                                                                   Grease
## 7167                                                                                                                                            Fools Rush In
## 7170                                                                                                              Austin Powers: International Man of Mystery
## 7171                                                                                                                           Lost World: Jurassic Park, The
## 7175                                                                                                                                            Boogie Nights
## 7176                                                                                                                                             Postman, The
## 7177                                                                                                                                      Wedding Singer, The
## 7178                                                                                                                                                   Paulie
## 7179                                                                                                                              Object of My Affection, The
## 7180                                                                                                                                                 Bulworth
## 7181                                                                                                                                        Can't Hardly Wait
## 7182                                                                                                                                                    Mulan
## 7184                                                                                                                                      Breakfast Club, The
## 7186                                                                                                                                            Lethal Weapon
## 7187                                                                                                                                                 Gremlins
## 7188                                                                                                                                Gremlins 2: The New Batch
## 7189                                                                                                                                 Honey, I Shrunk the Kids
## 7191                                                                                                                                        Mighty Ducks, The
## 7192                                                                                                                                                Jerk, The
## 7193                                                                                                                                          Sixteen Candles
## 7194                                                                                                                                  Gods Must Be Crazy, The
## 7195                                                                                                                                          Rosemary's Baby
## 7196                                                                                                                                      Edward Scissorhands
## 7200                                                                                                                                             Little Voice
## 7201                                                                                                                                                 Rushmore
## 7203                                                                                                                                            Varsity Blues
## 7204                                                                                                                                                 Fly, The
## 7205                                                                                                                                                 Fly, The
## 7206                                                                                                                                      Blast from the Past
## 7207                                                                                                                                             Analyze This
## 7208                                                                                                          William Shakespeare's A Midsummer Night's Dream
## 7210                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 7211                                                                                                                                  General's Daughter, The
## 7213                                                                                                                     South Park: Bigger, Longer and Uncut
## 7215                                                                                                                                              Mystery Men
## 7216                                                                                                                                                Bowfinger
## 7217                                                                                                                                                Airplane!
## 7219                                                                                                                                       Outside Providence
## 7222                                                                                                                                           Three to Tango
## 7224                                                                                                                                      Bone Collector, The
## 7225                                                                                                                                                    Dogma
## 7227                                                                                                                                         Bicentennial Man
## 7229                                                                                                                                         Any Given Sunday
## 7231                                                                                                                                               Sister Act
## 7232                                                                                                                                          Wayne's World 2
## 7233                                                                                                                                   League of Their Own, A
## 7234                                                                                                                                                 Snow Day
## 7235                                                                                                                                    Whole Nine Yards, The
## 7237                                                                                                                                           Grumpy Old Men
## 7238                                                                                                                                            High Fidelity
## 7241                                                                                                                                           Bachelor Party
## 7242                                                                                                                                          American Psycho
## 7243                                                                                                                                                    U-571
## 7244                                                                                                                                            Shanghai Noon
## 7245                                                                                                                                                 Soapdish
## 7247                                                                                                                                              House Party
## 7248                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 7249                                                                                                                  Naked Gun 2 1/2: The Smell of Fear, The
## 7250                                                                                                                                               Hellraiser
## 7251                                                                                                                                         Meet the Parents
## 7255                                                                                                                              Father of the Bride Part II
## 7256                                                                                                                                                     Heat
## 7257                                                                                                                                    Sense and Sensibility
## 7258                                                                                                                                        Leaving Las Vegas
## 7259                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 7261                                                                                                                                             Broken Arrow
## 7264                                                                                                                                            Birdcage, The
## 7265                                                                                                                       Star Wars: Episode IV - A New Hope
## 7266                                                                                                                                       Executive Decision
## 7267                                                                                                                                              Primal Fear
## 7268                                                                                                                                               Sgt. Bilko
## 7269                                                                                                                                      Mission: Impossible
## 7273                                                                                                                                                   Eraser
## 7274                                                                                                                                     Nutty Professor, The
## 7275                                                                                                                                               Phenomenon
## 7277                                                                                                                                 Long Kiss Goodnight, The
## 7278                                                                                                                                Robin Hood: Men in Tights
## 7283                                                                                                                                              Chasing Amy
## 7286                                                                                                                               10 Things I Hate About You
## 7288                                                                                                                                            Arachnophobia
## 7289                                                                                                                                                    Dogma
## 7292                                                                                                                                             Patriot, The
## 7294                                                                                                                                    Bridget Jones's Diary
## 7295                                                                                                                                        Beautiful Mind, A
## 7342                                                                                                                                                 Clueless
## 7344                                                                                                                                             Broken Arrow
## 7348                                                                                                                                                    Congo
## 7352                                                                                                                                               Waterworld
## 7353                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 7355                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 7356                                                                                                                                      Legends of the Fall
## 7360                                                                                                                                                Quiz Show
## 7364                                                                                                                               Ace Ventura: Pet Detective
## 7367                                                                                                                                     Addams Family Values
## 7368                                                                                                                                    Beverly Hills Cop III
## 7370                                                                                                                                           Demolition Man
## 7373                                                                                                                                                   Batman
## 7375                                                                                                                                     Beauty and the Beast
## 7377                                                                                                                                                  Jumanji
## 7378                                                                                                                                                     Babe
## 7380                                                                                                                                              Taxi Driver
## 7381                                                                                                                                                   Casper
## 7382                                                                                                                                                Desperado
## 7383                                                                                                                                                   Clerks
## 7384                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 7385                                                                                                                                     Natural Born Killers
## 7388                                                                                                                               Ace Ventura: Pet Detective
## 7391                                                                                                                                                Mask, The
## 7392                                                                                                                                            Jurassic Park
## 7393                                                                                                                                                    Naked
## 7396                                                                                                                                 Welcome to the Dollhouse
## 7397                                                                                                                                Silence of the Lambs, The
## 7398                                                                                                                                     Beauty and the Beast
## 7399                                                                                                                                      Mission: Impossible
## 7400                                                                                                                                                Space Jam
## 7403                                                                                                                                           Cable Guy, The
## 7406                                                                                                                               E.T. the Extra-Terrestrial
## 7407                                                                                                                                               Abyss, The
## 7408                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 7411                                                                                                                                      Clockwork Orange, A
## 7412                                                                                                                                                    Alien
## 7413                                                                                                                                        Full Metal Jacket
## 7414                                                                                                                                          Terminator, The
## 7416                                                                                                                                       Back to the Future
## 7417                                                                                                                                                    Akira
## 7419                                                                                                                                                   Scream
## 7420                                                                                                                                                Liar Liar
## 7421                                                                                                                                                 Anaconda
## 7422                                                                                                                                       Fifth Element, The
## 7423                                                                                                                           Lost World: Jurassic Park, The
## 7424                                                                                                                                Men in Black (a.k.a. MIB)
## 7425                                                                                                                                                    Spawn
## 7426                                                                                                                                        Starship Troopers
## 7427                                                                                                                                         Truman Show, The
## 7429                                                                                                                                        Big Lebowski, The
## 7431                                                                                                                                                 Godzilla
## 7433                                                                                                                                               Armageddon
## 7435                                                                                                                             There's Something About Mary
## 7436                                                                                                                                            Exorcist, The
## 7437                                                                                                                                       Mask of Zorro, The
## 7438                                                                                                                                                    Blade
## 7439                                                                                                                                                     Cube
## 7440                                                                                                                                               Thing, The
## 7442                                                                                                                                                     Antz
## 7443                                                                                                                                                Happiness
## 7446                                                                                                                                            Bug's Life, A
## 7447                                                                                                                                                 Fly, The
## 7448                                                                                                                        Lock, Stock & Two Smoking Barrels
## 7450                                                                                                                                               Mummy, The
## 7451                                                                                                                                Run Lola Run (Lola rennt)
## 7452                                                                                                                     South Park: Bigger, Longer and Uncut
## 7453                                                                                                                                             American Pie
## 7454                                                                                                                                 Blair Witch Project, The
## 7455                                                                                                                                            Deep Blue Sea
## 7456                                                                                                                                         Sixth Sense, The
## 7457                                                                                                                                                 Stigmata
## 7459                                                                                                                                 Who Framed Roger Rabbit?
## 7460                                                                                                                                     Being John Malkovich
## 7462                                                                                                                                              Toy Story 2
## 7464                                                                                                                                                 Predator
## 7467                                                                                                                                       Gone in 60 Seconds
## 7468                                                                                                                                               Titan A.E.
## 7469                                                                                                                                              Chicken Run
## 7470                                                                                                                                                    X-Men
## 7472                                                                                                                                                Bedazzled
## 7474                                                                                                                                Emperor's New Groove, The
## 7475                                                                                                                                                Cast Away
## 7476                                                                                                                                                  Memento
## 7477                                                                                                                                       Mummy Returns, The
## 7479                                                                                                                                Fast and the Furious, The
## 7480                                                                                                                        Final Fantasy: The Spirits Within
## 7481                                                                                                                                              Others, The
## 7483                                                                                                                                           Monsters, Inc.
## 7484                                                                                                          Devil's Backbone, The (Espinazo del diablo, El)
## 7486                                                                                                                                              Vanilla Sky
## 7492                                                                                                                  And Your Mother Too (Y tu mamá también)
## 7493                                                                                                                                               Spider-Man
## 7494                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 7495                                                                                                                                                    Signs
## 7496                                                                                                                                           Thesis (Tesis)
## 7499                                                                                                                                                Ring, The
## 7502                                                                                                                                              Equilibrium
## 7507                                                                                                                              Irreversible (Irréversible)
## 7508                                                                                                                                                     Spun
## 7509                                                                                                                                             Ringu (Ring)
## 7510                                                                                                Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 7511                                                                                                                              Lilya 4-Ever (Lilja 4-ever)
## 7513                                                                                                                                     Matrix Reloaded, The
## 7517                                                                                                                                      Lost in Translation
## 7518                                                                                                                            Ninja Scroll (Jûbei ninpûchô)
## 7519                                                                                                                                                 Elephant
## 7520                                                                                                                                  Matrix Revolutions, The
## 7521                                                                                                                                                 21 Grams
## 7523                                                                                                                                                 Big Fish
## 7525                                                                                                                            Ichi the Killer (Koroshiya 1)
## 7528                                                                                                                                         Dawn of the Dead
## 7530                                                                                                                                                  Hellboy
## 7531                                                                                                                         I'm Not Scared (Io non ho paura)
## 7534                                                                                                                       Jin Roh: The Wolf Brigade (Jin-Rô)
## 7535                                                                                                                                                  Shrek 2
## 7536                                                                                                                                        Napoleon Dynamite
## 7539                                                                                                        Maria Full of Grace (Maria, Llena eres de gracia)
## 7543                                                                                                                                       Cannibal Holocaust
## 7544                                                                                                                                               Shark Tale
## 7546                                                                                                                                                      Saw
## 7547                                                                                                                                         Incredibles, The
## 7548                                                                                                                                       Polar Express, The
## 7552                                                                                                                     My Sassy Girl (Yeopgijeogin geunyeo)
## 7553                                                                                                                                           Animatrix, The
## 7555                                                                                                    Last Life in the Universe (Ruang rak noi nid mahasan)
## 7557                                                                                                                                                  Old Boy
## 7558                                                                                                    Interstella 5555: The 5tory of the 5ecret 5tar 5ystem
## 7559                                                                                                                      Ong-Bak: The Thai Warrior (Ong Bak)
## 7560                                                                                                                                               Mean Creek
## 7562                                                                                                                                             Yes Men, The
## 7564                                                                                                                        Charlie and the Chocolate Factory
## 7569                                                                                                                                 Kung Fu Hustle (Gong fu)
## 7570                                                                                                                                                   Robots
## 7571                                                                                                                                      Memories (Memorîzu)
## 7575                                                                                                                                                    Crash
## 7576                                                                                                                                               Madagascar
## 7577                                                                                                                                         Mr. & Mrs. Smith
## 7578                                                                                                                                     Devil's Rejects, The
## 7579                                                                                                                                                 Serenity
## 7580                                                                                                                            Hidden (a.k.a. Cache) (Caché)
## 7581                                                                                                                                Everything Is Illuminated
## 7582                                                                                                                                             Corpse Bride
## 7583                                                                                                                       Final Fantasy VII: Advent Children
## 7584                                                                                                         Wallace & Gromit in The Curse of the Were-Rabbit
## 7586                                                                                                                                                King Kong
## 7587                                                                                                                                     Mozart and the Whale
## 7588                                                                                                                                                   Hostel
## 7589                                                                                                                                  Ice Age 2: The Meltdown
## 7590                                                                                                                                           V for Vendetta
## 7591                                                                                                                                     Hills Have Eyes, The
## 7594                                                                                                                                                  Slither
## 7595                                                                                                                                               Hard Candy
## 7598                                                                                                                                   Devil Wears Prada, The
## 7600                                                                                                                                     Little Miss Sunshine
## 7601                                                                                                                                            Monster House
## 7602                                                                                                                                    Stranger than Fiction
## 7603                                                                                                                                Pursuit of Happyness, The
## 7604                                                                                                                                           Ant Bully, The
## 7608                                                                                                                                            Fountain, The
## 7610                                                                      Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 7612                                                                                                                                              Open Season
## 7613                                                                                                                                          Children of Men
## 7614                                                                                                                                            Prestige, The
## 7615                                                                                                                                             Flushed Away
## 7617                                                                                                                                        Déjà Vu (Deja Vu)
## 7618                                                                                                                                        Linda Linda Linda
## 7620                                                                                                                                              Ratatouille
## 7621                                                                                                                                                 Hot Fuzz
## 7622                                                                                                                                                   Zodiac
## 7624                                                                                                                                               Grindhouse
## 7625                                                                                                                                       Meet the Robinsons
## 7627                                                                                                                                                 Sunshine
## 7628                                                                                                                                                Disturbia
## 7629                                                                                                                                             Spider-Man 3
## 7630                                                                                                                                          Shrek the Third
## 7631                                                                                                                                               Them (Ils)
## 7632                                                                                                                                                Surf's Up
## 7633                                                                                                                                              Death Proof
## 7636                                                                                                                                             Transformers
## 7637                                                                                                                                      Simpsons Movie, The
## 7638                                                                                                                                                 Superbad
## 7644                                                                                                                                                Bee Movie
## 7646                                                                                                                                      Man from Earth, The
## 7647                                                                                                                                                  Beowulf
## 7648                                                                                                                                             Murder Party
## 7649                                                                                                                                                      XXY
## 7650                                                                                                                                                Mist, The
## 7651                                                                                                                                              I Am Legend
## 7653                                                                                                                                                     Juno
## 7655                                                                                                           Sweeney Todd: The Demon Barber of Fleet Street
## 7656                                                                                                                                      There Will Be Blood
## 7658                                                                                                                                                    [REC]
## 7660                                                                                                                                                 Arranged
## 7662                                                                                                                              Hellboy II: The Golden Army
## 7664                                                                                                 Art of Negative Thinking, The (Kunsten å tenke negativt)
## 7665                                                                                                                                      Horton Hears a Who!
## 7666                                                                                                                                                 Penelope
## 7667                                                                                                                                       Class, The (Klass)
## 7670                                                                                                                                            Son of Rambow
## 7674                                                                                                                                            Kung Fu Panda
## 7676                                                                                                                                                Get Smart
## 7677                                                                                                                 Futurama: The Beast with a Billion Backs
## 7679                                                                                                                                                 Watchmen
## 7680                                                                                                                                            American Teen
## 7682                                                                                                                                       Burn After Reading
## 7684                                                                                                                                       Gomorrah (Gomorra)
## 7685                                                                                                                                  Futurama: Bender's Game
## 7686                                                                                                                              Madagascar: Escape 2 Africa
## 7687                                                                                                                                      Slumdog Millionaire
## 7688                                                                                                                                              Role Models
## 7689                                                                                                                              Class, The (Entre les murs)
## 7690                                                                                                                                                     Bolt
## 7693                                                                                                                     Curious Case of Benjamin Button, The
## 7694                                                                                                                                                  Yes Man
## 7695                                                                                                                                                 Valkyrie
## 7698                                                                                                                              Ponyo (Gake no ue no Ponyo)
## 7700                                                                                                                                                 Coraline
## 7701                                                                                                                                   Departures (Okuribito)
## 7702                                                                                                                                                  Knowing
## 7704                                                                                                                                      Monsters vs. Aliens
## 7705                                                                                                                                            Adventureland
## 7708                                                                                                                                                Star Trek
## 7709                                                               Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei)
## 7712                                                                                                                      Transformers: Revenge of the Fallen
## 7713                                                                                                                           Ice Age: Dawn of the Dinosaurs
## 7714                                                                                                                                       My Sister's Keeper
## 7721                                                                                                                                                        9
## 7722                                                                                                                        Cloudy with a Chance of Meatballs
## 7723                                                                                                                                               Food, Inc.
## 7726                                                                                                                                                      Ink
## 7727                                                                                                                                  Invention of Lying, The
## 7728                                                                                                                                               Zombieland
## 7729                                                                                                                                            Education, An
## 7731                                                                                                                                                  Balance
## 7732                                                                                                                                                Astro Boy
## 7733                                                                                                                                         Fourth Kind, The
## 7734                                                                                                                                        Lovely Bones, The
## 7735                                                                                                                                         Everybody's Fine
## 7738                                                                                                                                              Daybreakers
## 7739                                                                                                                                         Book of Eli, The
## 7740                                                                                                                                                 Collapse
## 7741                                                                                                                    Dragon Hunters (Chasseurs de dragons)
## 7743                                                                                                                                                 Triangle
## 7745                                                                                                                                      Alice in Wonderland
## 7748                                                                                                                                                 Kick-Ass
## 7750                                                                                                                    Human Centipede, The (First Sequence)
## 7751                                                                                                                                               Iron Man 2
## 7757                                                                                                                                               Mr. Nobody
## 7759                                                                                                                                                Heartless
## 7761                                                                                                                                                  Flipped
## 7762                                                                                                                                                Let Me In
## 7763                                                                                                                                                  Catfish
## 7765                                                                                                                       Illusionist, The (L'illusionniste)
## 7766                                                                                                                                                127 Hours
## 7767                                                                                                                                                 Megamind
## 7769                                                                                                                                       King's Speech, The
## 7770                                                                                                                                                  Tangled
## 7771                                                                                                                                             Tron: Legacy
## 7772                                                                                                                        I Saw the Devil (Akmareul boatda)
## 7773                                                                                                  Secret World of Arrietty, The (Kari-gurashi no Arietti)
## 7774                                                                                                                                    Tucker & Dale vs Evil
## 7775                                                                                                                                              Day & Night
## 7778                                                                                                                                                     Paul
## 7781                                                                                                                         Troll Hunter, The (Trolljegeren)
## 7783                                                                                                                                             Sucker Punch
## 7786                                                                                                                                                Insidious
## 7787                                                                                                                                      Hobo with a Shotgun
## 7789                                                                                                                                                     Thor
## 7790                                                                                                                                    Louis C.K.: Chewed Up
## 7791                                                                                                                                        Idiots and Angels
## 7794                                                                                                                                                  Super 8
## 7795                                                                                                                                            Green Lantern
## 7796                                                                                                                           Transformers: Dark of the Moon
## 7797                                                                                                                       Captain America: The First Avenger
## 7798                                                                                                                           Rise of the Planet of the Apes
## 7799                                                                                                                                            Avengers, The
## 7800                                                                                                                                                Kill List
## 7801                                                                                                                                    Paranormal Activity 3
## 7802                                                                                                                                                    Shame
## 7803                                                                                                                                            Puss in Boots
## 7804                                                                                                                                Adventures of Tintin, The
## 7805                                                                                                                                         Arthur Christmas
## 7806                                                                                                                                   Dark Knight Rises, The
## 7807                                                                                                                       Sherlock Holmes: A Game of Shadows
## 7808                                                                                                                  Human Centipede II (Full Sequence), The
## 7809                                                                                                                                                Chronicle
## 7810                                                                                                                                     Dr. Seuss' The Lorax
## 7811                                                                                                                                     The Raid: Redemption
## 7812                                                                                                                                  Cabin in the Woods, The
## 7815                                                                                                                                                 Boundin'
## 7816                                                                                                                                  Amazing Spider-Man, The
## 7817                                                                                                                             Ice Age 4: Continental Drift
## 7819                                                                                                                                             Total Recall
## 7820                                                                                                                                               ParaNorman
## 7821                                                                                                                                                  Samsara
## 7822                                                                                                                                                   Looper
## 7825                                                                                                                                                 Sinister
## 7826                                                                                                                                       Hotel Transylvania
## 7828                                                                                                                                           Wreck-It Ralph
## 7829                                                                                                                                  Silver Linings Playbook
## 7830                                                                                                                                               Life of Pi
## 7832                                                                                                                                                    Amour
## 7833                                                                                                                                    Rise of the Guardians
## 7838                                                                                                                                              Croods, The
## 7839                                                                                                                                               Iron Man 3
## 7841                                                                                                                                             Man of Steel
## 7842                                                                                                                                              Pacific Rim
## 7843                                                                                                                                              World War Z
## 7844                                                                                                                                                  Elysium
## 7845                                                                                                                                            American Mary
## 7846                                                                                                                                          Despicable Me 2
## 7847                                                                                                                                           Conjuring, The
## 7848                                                                                                                                                  Gravity
## 7849                                                                                                                                             Ender's Game
## 7850                                                                                                                                     Thor: The Dark World
## 7851                                                                                                                                                    Pieta
## 7853                                                                                                                                                   Frozen
## 7854                                                                                                                                              Snowpiercer
## 7855                                                                                                                     Paranormal Activity: The Marked Ones
## 7856                                                                                                                            Dragon Ball Z: Battle of Gods
## 7857                                                                                                                                                Divergent
## 7858                                                                                                                                                  RoboCop
## 7859                                                                                                                                             Interstellar
## 7860                                                                                                                                                 Non-Stop
## 7861                                                                                                                                   300: Rise of an Empire
## 7862                                                                                                                                    Mr. Peabody & Sherman
## 7863                                                                                                                                           Under the Skin
## 7864                                                                                                                                           Need for Speed
## 7865                                                                                                                      Captain America: The Winter Soldier
## 7866                                                                                                                                                     Noah
## 7867                                                                                                                                     The Raid 2: Berandal
## 7868                                                                                                                                 The Amazing Spider-Man 2
## 7869                                                                                                                                                   Oculus
## 7870                                                                                                                                                    Rio 2
## 7871                                                                                                                                            Transcendence
## 7872                                                                                                                               X-Men: Days of Future Past
## 7873                                                                                                                                                 Godzilla
## 7874                                                                                                                                               Maleficent
## 7876                                                                                                                               How to Train Your Dragon 2
## 7877                                                                                                                          Transformers: Age of Extinction
## 7878                                                                                                                                            Babadook, The
## 7879                                                                                                                           Dawn of the Planet of the Apes
## 7880                                                                                                                                  Guardians of the Galaxy
## 7881                                                                                                                                                Coherence
## 7882                                                                                                                                         Maze Runner, The
## 7883                                                                                                                                           Predestination
## 7884                                                                                                                                                John Wick
## 7885                                                                                                                                                    Ouija
## 7886                                                                                                                                               Big Hero 6
## 7887                                                                                                                       Dream Home (Wai dor lei ah yut ho)
## 7888                                                                                                                The Hobbit: The Battle of the Five Armies
## 7890                                                                                                                              Indian in the Cupboard, The
## 7892                                                                                                                                              Judge Dredd
## 7893                                                                                                                            Kid in King Arthur's Court, A
## 7894                                                                                                                                  Quick and the Dead, The
## 7895                                                                                                                                   Star Trek: Generations
## 7897                                                                                                                                             Black Beauty
## 7899                                                                                                                                                     Rudy
## 7900                                                                                                                                       Dances with Wolves
## 7901                                                                                                                                                   Batman
## 7903                                                                                                                                               Barbarella
## 7904                                                                                                                                     Operation Dumbo Drop
## 7905                                                                                                                                                Rock, The
## 7913                                                                                                                              Around the World in 80 Days
## 7916                                                                                                                                    Swiss Family Robinson
## 7920                                                                                                                                     Escape from New York
## 7926                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 7933                                                                                                                          Star Trek II: The Wrath of Khan
## 7936                                                                                                                                            Mars Attacks!
## 7937                                                                                                                                Men in Black (a.k.a. MIB)
## 7938                                                                                                                                        Starship Troopers
## 7940                                                                                                                                  Poseidon Adventure, The
## 7941                                                                                                                                 Honey, I Shrunk the Kids
## 7942                                                                                                                                                   Popeye
## 7943                                                                                                                                           Rocketeer, The
## 7944                                                                                                                                                     Tron
## 7949                                                                                                                                                King Kong
## 7950                                                                                                                               Rambo: First Blood Part II
## 7952                                                                                                                                    Young Sherlock Holmes
## 7955                                                                                                                                    Towering Inferno, The
## 7956                                                                                                                            Beyond the Poseidon Adventure
## 7958                                                                                                                                           Pork Chop Hill
## 7959                                                                                                               Allan Quatermain and the Lost City of Gold
## 7960                                                                                                                                               Iron Eagle
## 7961                                                                                                                                            Iron Eagle II
## 7962                                                                                                                                     Aces: Iron Eagle III
## 7963                                                                                                                                              Deliverance
## 7964                                                                                                                                            South Pacific
## 7969                                                                                                                                        Tora! Tora! Tora!
## 7971                                                                                                                                               Sister Act
## 7972                                                                                                                                            Forever Young
## 7974                                                                                                                                     Bear, The (Ours, L')
## 7976                                                                                                                                                 Red Dawn
## 7977                                                                                                                                        Lord of the Flies
## 7978                                                                                                                                   Force 10 from Navarone
## 7982                                                                                                                                           Kelly's Heroes
## 7983                                                                                                                                         Fantastic Voyage
## 7985                                                                                                                                               Alamo, The
## 7989                                                                                                                                               Get Shorty
## 7990                                                                                                                                                 Clueless
## 7991                                                                                                                                     Seven (a.k.a. Se7en)
## 7992                                                                                                                                             Broken Arrow
## 7994                                                                                                                                                Apollo 13
## 7995                                                                                                                                                    Congo
## 7998                                                                                                                                                 Net, The
## 7999                                                                                                                                               Waterworld
## 8000                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 8001                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 8002                                                                                                                                                     Nell
## 8005                                                                                                                                          Specialist, The
## 8006                                                                                                                                                 Stargate
## 8007                                                                                                                              What's Eating Gilbert Grape
## 8009                                                                                                                               Ace Ventura: Pet Detective
## 8010                                                                                                                                 Clear and Present Danger
## 8015                                                                                                                                                    Speed
## 8016                                                                                                                                                True Lies
## 8017                                                                                                                                    Beverly Hills Cop III
## 8018                                                                                                                                              Cliffhanger
## 8020                                                                                                                                           Demolition Man
## 8021                                                                                                                                                Firm, The
## 8022                                                                                                                                            Fugitive, The
## 8024                                                                                                                                               Piano, The
## 8026                                                                                                                                     Sleepless in Seattle
## 8027                                                                                                                                                Tombstone
## 8028                                                                                                                                                    Ghost
## 8030                                                                                                                                       Dances with Wolves
## 8031                                                                                                                                             Pretty Woman
## 8033                                                                                                                                                   Eraser
## 8035                                                                                                                                                     Stag
## 8036                                                                                                                                              Hope Floats
## 8040                                                                                                                                Desperately Seeking Susan
## 8041                                                                                                                                      Shakespeare in Love
## 8047                                                                                                                                           Wild Wild West
## 8050                                                                                                                                            Runaway Bride
## 8051                                                                                                                                      Mosquito Coast, The
## 8056                                                                                                                                                 Stigmata
## 8066                                                                                                                                            Little Buddha
## 8067                                                                                                                                                  Go Fish
## 8072                                                                                                                                              Chasing Amy
## 8074                                                                                                           Nightmare on Elm Street 2: Freddy's Revenge, A
## 8075                                                                                                                    I Still Know What You Did Last Summer
## 8077                                                                                                                                       Cocoon: The Return
## 8078                                                                                                                                     Teaching Mrs. Tingle
## 8082                                                                                                                                                    X-Men
## 8085                                                                                                                                                   Bounce
## 8088                                                                                                                                            Heartbreakers
## 8092                                                                                                                                    Kissing Jessica Stein
## 8093                                                                                                                                      Sweetest Thing, The
## 8101                                                                                                                                      Final Destination 2
## 8104                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 8105                                                                                                                        Lagaan: Once Upon a Time in India
## 8111                                                                                                                                Manchurian Candidate, The
## 8112                                                                                                                                                   Eulogy
## 8114                                                                                                                House of Flying Daggers (Shi mian mai fu)
## 8117                                                                                                                                         Meet the Fockers
## 8119                                                                                                                                               Flightplan
## 8120                                                                                                                                 Squid and the Whale, The
## 8123                                                                                                                                      Memoirs of a Geisha
## 8126                                                                                                                                       Da Vinci Code, The
## 8127                                                                                                                                              Ratatouille
## 8128                                                                                                                                             Gray Matters
## 8132                                                                                                                                 Vicky Cristina Barcelona
## 8135                                                                                                              Far From Home: The Adventures of Yellow Dog
## 8136                                                                                                                      Secret Adventures of Tom Thumb, The
## 8137                                                                                                                                    Beverly Hills Cop III
## 8138                                                                                                                                             Black Beauty
## 8139                                                                                                                                                   Lassie
## 8142                                                                                                                                               Die Hard 2
## 8143                                                                                                                                Men in Black (a.k.a. MIB)
## 8146                                                                                                                                             Dr. Dolittle
## 8148                                                                                                                           Poltergeist II: The Other Side
## 8149                                                                                                                                          Lethal Weapon 3
## 8150                                                                                                                                             Return to Oz
## 8152                                                                                                                                          King Kong Lives
## 8153                                                                                                                                     Prince of Egypt, The
## 8155                                                                                                                                                  Rocky V
## 8160                                                                                                                     South Park: Bigger, Longer and Uncut
## 8161                                                                                                                                       Muppets From Space
## 8162                                                                                                                                 Blair Witch Project, The
## 8163                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 8164                                                                                                                                          Ghostbusters II
## 8165                                                                                                                                         Inspector Gadget
## 8166                                                                                                                                          Iron Giant, The
## 8168                                                                                                                                                 Stigmata
## 8169                                                                                                                                               Limey, The
## 8171                                                                                                                                 Who Framed Roger Rabbit?
## 8172                                                                                                                                     Being John Malkovich
## 8174                                                                                                                                              Toy Story 2
## 8175                                                                                                                                                 Magnolia
## 8184                                                                                                                                               Birds, The
## 8187                                                                                                                                      Crocodile Dundee II
## 8188                                                                                                                                              Matrix, The
## 8189                                                                                                                                         Live and Let Die
## 8191                                                                                                                                             Modern Times
## 8194                                                                                                                      Adventures of Baron Munchausen, The
## 8200                                                                                                               Asterix and the Gauls (Astérix le Gaulois)
## 8202                                                                                                                                             Hotel Rwanda
## 8203                                                                                                                                            Batman Begins
## 8207                                                                                                            Elementary Particles, The (Elementarteilchen)
## 8209                                                                                                                         Perfume: The Story of a Murderer
## 8211                                                                                                                                   No Country for Old Men
## 8216                                                                                                                                           Public Enemies
## 8220                                                                                                                                                Inception
## 8221                                                                                                         Asterix and the Vikings (Astérix et les Vikings)
## 8223                                                                                                                                                Toy Story
## 8224                                                                                                                              Father of the Bride Part II
## 8226                                                                                                                                                  Sabrina
## 8227                                                                                                                                             Sudden Death
## 8230                                                                                                                                             Bed of Roses
## 8231                                                                                                                                               Juror, The
## 8232                                                                                                                                             Broken Arrow
## 8233                                                                                                                                                City Hall
## 8235                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 8239                                                                                                                                       Executive Decision
## 8240                                                                                                                                                    Fargo
## 8241                                                                                                                 Homeward Bound II: Lost in San Francisco
## 8245                                                                                                                                         Mulholland Falls
## 8246                                                                                                                             Truth About Cats & Dogs, The
## 8250                                                                                                                                                  Twister
## 8251                                                                                                                                                Barb Wire
## 8252                                                                                                                                             Phantom, The
## 8254                                                                                                                                           Cable Guy, The
## 8257                                                                                                                                               Phenomenon
## 8260                                                                                                                      Willy Wonka & the Chocolate Factory
## 8264                                                                                                                                               Get Shorty
## 8272                                                                                                                                  Basketball Diaries, The
## 8273                                                                                                                                                    Congo
## 8277                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 8280                                                                                                                       Star Wars: Episode IV - A New Hope
## 8281                                                                                                                                                 Outbreak
## 8285                                                                                                                                                Tommy Boy
## 8287                                                                                                                                         Muriel's Wedding
## 8291                                                                                                                                           Demolition Man
## 8300                                                                                                                                                Space Jam
## 8301                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 8307                                                                                                                                    2001: A Space Odyssey
## 8309                                                                                                                                                    Laura
## 8316                                                                                                                                         Crying Game, The
## 8319                                                                                                                              People vs. Larry Flynt, The
## 8321                                                                                                                  Cinema Paradiso (Nuovo cinema Paradiso)
## 8323                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 8331                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 8337                                                                                                                                               Annie Hall
## 8339                                                                                                                                          Terminator, The
## 8340                                                                                                                                                Manhattan
## 8341                                                                                                                                            Graduate, The
## 8347                                                                                                                                         Deer Hunter, The
## 8356                                                                                                                       Butch Cassidy and the Sundance Kid
## 8357                                                                                                                                  When Harry Met Sally...
## 8367                                                                                                                                        Starship Troopers
## 8372                                                                                                                                       As Good as It Gets
## 8376                                                                                                                                          Midnight Cowboy
## 8380                                                                                                                                      Terms of Endearment
## 8381                                                                                                                                                 Rain Man
## 8383                                                                                                                                            Lethal Weapon
## 8386                                                                                                                               Back to the Future Part II
## 8388                                                                                                                                     D2: The Mighty Ducks
## 8391                                                                                                                                              'burbs, The
## 8392                                                                                                                                        Mighty Ducks, The
## 8396                                                                                                                                        Untouchables, The
## 8398                                                                                                                                                     Toys
## 8401                                                                                                                      Life Is Beautiful (La Vita è bella)
## 8407                                                                                                                               10 Things I Hate About You
## 8412                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 8422                                                                                                                                               Goldfinger
## 8423                                                                                                          Fistful of Dollars, A (Per un pugno di dollari)
## 8427                                                                                                                                           Trading Places
## 8432                                                                                                                                             Natural, The
## 8433                                                                                                                                             Midnight Run
## 8435                                                                                                                                   Last Picture Show, The
## 8437                                                                                                                             Fast Times at Ridgemont High
## 8439                                                                                                                                   League of Their Own, A
## 8440                                                                                                                               Stop! Or My Mom Will Shoot
## 8442                                                                                                                                              Bull Durham
## 8446                                                                                                                                             Hustler, The
## 8448                                                                                                                                                     Hook
## 8450                                                                                                                                               Caddyshack
## 8452                                                                                                                                  Pee-wee's Big Adventure
## 8460                                                                                                                                            Almost Famous
## 8461                                                                                                                                      Remember the Titans
## 8462                                                                                                              Legend of Drunken Master, The (Jui kuen II)
## 8463                                                                                                       How the Grinch Stole Christmas (a.k.a. The Grinch)
## 8469                                                                                                                                        Beverly Hills Cop
## 8471                                                                                                                                         Eddie Murphy Raw
## 8473                                                                                                                                                 Scarface
## 8476                                                                                                                        Man Who Shot Liberty Valance, The
## 8481                                                                                                                                             Training Day
## 8482                                                                                                                                                Zoolander
## 8485                                                                                                                                Man Who Wasn't There, The
## 8500                                                                                                                                                  My Girl
## 8502                                                                                                                          Confessions of a Dangerous Mind
## 8504                                                                                                                                               Old School
## 8505                                                                                                                                           Bruce Almighty
## 8507                                                                                                                         Shaolin Soccer (Siu lam juk kau)
## 8512                                                                                                                                             Mystic River
## 8513                                                                                                                                      Intolerable Cruelty
## 8517                                                                                                                                            Love Actually
## 8518                                                                                                                                                  Slacker
## 8519                                                                                                                                        Presumed Innocent
## 8520                                                                                                                          Battle Royale (Batoru rowaiaru)
## 8521                                                                                                                                                Teen Wolf
## 8533                                                                                                                         Dodgeball: A True Underdog Story
## 8536                                                                                                                                             Garden State
## 8539                                                                                                                                                   Primer
## 8542                                                                                                                                        National Treasure
## 8544                                                                                                                                   Eddie Murphy Delirious
## 8548                                                                                                                                              Fever Pitch
## 8549                                                                                                                                                    Crash
## 8553                                                                                                                          Me and You and Everyone We Know
## 8557                                                                                                                                   History of Violence, A
## 8566                                                                                                                                               Inside Man
## 8570                                                                                                                                Pursuit of Happyness, The
## 8580                                                                                                                                                      300
## 8584                                                                                                                 Pirates of the Caribbean: At World's End
## 8590                                                                                                                                                Atonement
## 8591                                                                                                                                         Eastern Promises
## 8592                                                                                                                                            Into the Wild
## 8593                                                                                                                                        American Gangster
## 8596                                                                                                                                              I Am Legend
## 8601                                                                                                                                        Meet the Spartans
## 8603                                                                                                                                                   Jumper
## 8606                                                                                                                                                 Iron Man
## 8607                                                                                                                                                    Taken
## 8608                                                                                                                                                 Watchmen
## 8614                                                                                                                                        Quantum of Solace
## 8617                                                                                                                                                 Valkyrie
## 8625                                                                                                                              Taking of Pelham 1 2 3, The
## 8637                                                                                                                                            Single Man, A
## 8657                                                                                                                                                Burlesque
## 8664                                                                                                                                    Hangover Part II, The
## 8665                                                                                                                                       X-Men: First Class
## 8667                                                                                                                                             Larry Crowne
## 8668                                                                                                                                          Horrible Bosses
## 8671                                                                                                                                                Help, The
## 8672                                                                                                                                       30 Minutes or Less
## 8680                                                                                                                                   Dark Knight Rises, The
## 8682                                                                                                                                                Project X
## 8691                                                                                                                                                      Ted
## 8694                                                                                                                                            Campaign, The
## 8700                                                                                                                                      Here Comes the Boom
## 8702                                                                                                                                  Silver Linings Playbook
## 8703                                                                                                                                                   Flight
## 8706                                                                                                                                               This Is 40
## 8708                                                                                                                                           Upstream Color
## 8711                                                                                                                                                Host, The
## 8718                                                                                                                                           Conjuring, The
## 8722                                                                                                                                              Just Wright
## 8724                                                                                                                            Jackass Presents: Bad Grandpa
## 8729                                                                                                                                          American Hustle
## 8731                                                                                                                                         Saving Mr. Banks
## 8734                                                                                                                                               Ride Along
## 8737                                                                                                                               X-Men: Days of Future Past
## 8738                                                                                                                                                  Blended
## 8744                                                                                                                                                Gone Girl
## 8745                                                                                                                                  Guardians of the Galaxy
## 8747                                                                                                                                            Let's Be Cops
## 8748                                                                                                               Two Days, One Night (Deux jours, une nuit)
## 8751                                                                                                                                       The Skeleton Twins
## 8757                                                                                                               Star Wars: Episode VII - The Force Awakens
## 8761                                                                                                                                   People, Places, Things
## 8766                                                                                                                                                Kung Fury
## 8768                                                                                                                       Batman v Superman: Dawn of Justice
## 8772                                                                                                                                   Straight Outta Compton
## 8777                                                                                                                                           Big Short, The
## 8790                                                                                                                                    Devil in a Blue Dress
## 8796                                                                                                                                              Client, The
## 8797                                                                                                                                             Forrest Gump
## 8809                                                                                                                                                   Batman
## 8812                                                                                                                                      Mission: Impossible
## 8818                                                                                                                                 Apple Dumpling Gang, The
## 8828                                                                                                                                      Weekend at Bernie's
## 8829                                                                                                                                           Basic Instinct
## 8836                                                                                                                                                 Fog, The
## 8837                                                                                                                                     Escape from New York
## 8849                                                                                                                                                   Aliens
## 8850                                                                                                                                           Apocalypse Now
## 8851                                                                                                                                                    Alien
## 8859                                                                                                                                          Terminator, The
## 8868                                                                                                                                       Back to the Future
## 8869                                                                                                                                                   Patton
## 8870                                                                                                                                               Highlander
## 8873                                                                                                                                       This Is Spinal Tap
## 8880                                                                                                                                           Amityville 3-D
## 8881                                                                                                                            Amityville II: The Possession
## 8895                                                                                                                                           Murder at 1600
## 8898                                                                                                                                      Conan the Barbarian
## 8902                                                                                                                                                Game, The
## 8909                                                                                                                                                  Titanic
## 8910                                                                                                                                        Big Lebowski, The
## 8911                                                                                                                                                   Fallen
## 8914                                                                                                                           X-Files: Fight the Future, The
## 8916                                                                                                                                               Armageddon
## 8917                                                                                                                                          Lethal Weapon 4
## 8930                                                                                                                                                Labyrinth
## 8932                                                                                                                                          Friday the 13th
## 8933                                                                                                                                   Friday the 13th Part 2
## 8934                                                                                                               Friday the 13th Part IV: The Final Chapter
## 8935                                                                                                                  Friday the 13th Part V: A New Beginning
## 8936                                                                                                                     Friday the 13th Part VI: Jason Lives
## 8937                                                                                                         Friday the 13th Part VIII: Jason Takes Manhattan
## 8939                                                                                                                                             Halloween II
## 8940                                                                                                                       Halloween III: Season of the Witch
## 8941                                                                                                                                               Prom Night
## 8943                                                                                                                           Poltergeist II: The Other Side
## 8944                                                                                                                                          Poltergeist III
## 8948                                                                                                                                                 Gremlins
## 8949                                                                                                                                             Goonies, The
## 8951                                                                                                                                            Soylent Green
## 8954                                                                                                                                     Jane Austen's Mafia!
## 8957                                                                                                                                Devil and Max Devlin, The
## 8958                                                                                                                                 Honey, I Shrunk the Kids
## 8960                                                                                                                                                   Popeye
## 8961                                                                                                                          Something Wicked This Way Comes
## 8965                                                                                                                                 Man with Two Brains, The
## 8968                                                                                                                                           Dead Zone, The
## 8969                                                                                                                                                     Cujo
## 8970                                                                                                                                     Children of the Corn
## 8973                                                                                                                                                   Legend
## 8974                                                                                                                                          Sixteen Candles
## 8975                                                                                                                                            Avengers, The
## 8976                                                                                                                                   NeverEnding Story, The
## 8977                                                                                                                           Attack of the Killer Tomatoes!
## 8987                                                                                                                                           Producers, The
## 8988                                                                                                                             History of the World: Part I
## 8993                                                                                                                           Ace Ventura: When Nature Calls
## 8995                                                                                                                               Ace Ventura: Pet Detective
## 8996                                                                                                                                     Addams Family Values
## 8997                                                                                                                                         Another Stakeout
## 9000                                                                                                                                           Apartment, The
## 9002                                                                                                                            Adventures of Robin Hood, The
## 9003                                                                                                                              Around the World in 80 Days
## 9006                                                                                                                                     2 Days in the Valley
## 9007                                                                                                                                 Apple Dumpling Gang, The
## 9010                                                                                                                                               Abyss, The
## 9015                                                                                                                                               Annie Hall
## 9017                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 9021                                                                                                                                                 Anaconda
## 9022                                                                                                              Austin Powers: International Man of Mystery
## 9025                                                                                                                                       As Good as It Gets
## 9028                                                                                                                             Absent-Minded Professor, The
## 9029                                                                                                                     Apple Dumpling Gang Rides Again, The
## 9030                                                                                                                                              'burbs, The
## 9031                                                                                                          101 Dalmatians (One Hundred and One Dalmatians)
## 9032                                                                                                                                       Addams Family, The
## 9034                                                                                                                                            Avengers, The
## 9039                                                                                                                                               52 Pick-Up
## 9041                                                                                                                                                  Airport
## 9042                                                                                                                                              Airport '77
## 9043                                                                                                                                             Dead Ringers
## 9044                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 9048                                                                                                                                     Aces: Iron Eagle III
## 9049                                                                                                                                    Astronaut's Wife, The
## 9052                                                                                                                                7th Voyage of Sinbad, The
## 9058                                                                                                                                          American Psycho
## 9060                                                                                                                                          American Gigolo
## 9061                                                                                                                                                    Benji
## 9064                                                                                                                                           Action Jackson
## 9065                                                                                                                                  American President, The
## 9068                                                                                                                                              Taxi Driver
## 9070                                                                                                                                                   Clerks
## 9071                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 9072                                                                                                                                                 Outbreak
## 9075                                                                                                                                Shawshank Redemption, The
## 9076                                                                                                                                                Mask, The
## 9077                                                                                                                                                True Lies
## 9078                                                                                                                                     Addams Family Values
## 9083                                                                                                                                               Home Alone
## 9084                                                                                                                                       Dances with Wolves
## 9085                                                                                                                                Silence of the Lambs, The
## 9090                                                                                                                                        Wizard of Oz, The
## 9093                                                                                                                          One Flew Over the Cuckoo's Nest
## 9094                                                                                                                                               Goodfellas
## 9096                                                                                                                                 Star Trek: First Contact
## 9098                                                                                                                                      Tomorrow Never Dies
## 9099                                                                                                                             There's Something About Mary
## 9100                                                                                                                                                 Rain Man
## 9101                                                                                                                                      Breakfast Club, The
## 9102                                                                                                                                      Saving Private Ryan
## 9103                                                                                                                                                     Tron
## 9104                                                                                                                                   NeverEnding Story, The
## 9106                                                                                                                                                   Willow
## 9107                                                                                                                                        Untouchables, The
## 9108                                                                                                                                          My Cousin Vinny
## 9110                                                                                                                                      Shakespeare in Love
## 9111                                                                                                                                         Crocodile Dundee
## 9112                                                                                                                        Lock, Stock & Two Smoking Barrels
## 9114                                                                                                                                                 Superman
## 9115                                                                                                                                             Notting Hill
## 9116                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 9118                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 9119                                                                                                                                 Thomas Crown Affair, The
## 9120                                                                                                                                                      Big
## 9123                                                                                                                                     Being John Malkovich
## 9126                                                                                                                                   Mission: Impossible II
## 9128                                                                                                                                             Best in Show
## 9129                                                                                                                                         Meet the Parents
## 9130                                                                                                                                                    Shrek
## 9132                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 9133                                                                                                                                               Spider-Man
## 9140                                                                                                                                               Krays, The
## 9141                                                                                                                                            Batman Begins
## 9144                                                                                                                                               Get Shorty
## 9147                                                                                                                                              Judge Dredd
## 9152                                                                                                                                              Dragonheart
## 9154                                                                                                                          Wallace & Gromit: A Close Shave
## 9162                                                                                                                                                   Grease
## 9163                                                                                                                                                Liar Liar
## 9168                                                                                                                     Indiana Jones and the Temple of Doom
## 9174                                                                                                                                              Re-Animator
## 9175                                                                                                                                                 Magnolia
## 9177                                                                                                                                   Assault on Precinct 13
## 9184                                                                                                                   Lord of the Rings: The Two Towers, The
## 9189                                                                                                                                                Bad Santa
## 9195                                                                                                                      Ong-Bak: The Thai Warrior (Ong Bak)
## 9198                                                                                                                                                  Jumanji
## 9199                                                                                                                                                     Babe
## 9200                                                                                                                                               Pocahontas
## 9203                                                                                                                                                   Casper
## 9205                                                                                                                                        Santa Clause, The
## 9206                                                                                                                                           Lion King, The
## 9208                                                                                                                          Nightmare Before Christmas, The
## 9209                                                                                                                                   Brady Bunch Movie, The
## 9210                                                                                                                                               Home Alone
## 9212                                                                                                                                                  Aladdin
## 9214                                                                                                                                Silence of the Lambs, The
## 9215                                                                                                                          Snow White and the Seven Dwarfs
## 9216                                                                                                                                     Beauty and the Beast
## 9217                                                                                                                                                Pinocchio
## 9218                                                                                                                                          Aristocats, The
## 9219                                                                                                                                James and the Giant Peach
## 9220                                                                                                                                                Space Jam
## 9221                                                                                                                                          Harriet the Spy
## 9222                                                                                                                                        Wizard of Oz, The
## 9223                                                                                                                                    It's a Wonderful Life
## 9224                                                                                                                                            Love Bug, The
## 9225                                                                                                                                               Cinderella
## 9226                                                                                                                                             Mary Poppins
## 9227                                                                                                                                                    Dumbo
## 9229                                                                                                                     William Shakespeare's Romeo + Juliet
## 9230                                                                                                                      Willy Wonka & the Chocolate Factory
## 9231                                                                                                                               E.T. the Extra-Terrestrial
## 9234                                                                                                                                    To Kill a Mockingbird
## 9235                                                                                                                                      Blues Brothers, The
## 9236                                                                                                                                           101 Dalmatians
## 9237                                                                                                                                                   Grease
## 9239                                                                                                                                Men in Black (a.k.a. MIB)
## 9240                                                                                                                                      Wedding Singer, The
## 9242                                                                                                                                                    Rocky
## 9244                                                                                                                                                    Bambi
## 9245                                                                                                                                 Honey, I Shrunk the Kids
## 9246                                                                                                                                         Jungle Book, The
## 9247                                                                                                                                       Lady and the Tramp
## 9248                                                                                                                                      Little Mermaid, The
## 9249                                                                                                          101 Dalmatians (One Hundred and One Dalmatians)
## 9250                                                                                                                                                Peter Pan
## 9251                                                                                                                                    All Dogs Go to Heaven
## 9252                                                                                                                                          Sixteen Candles
## 9253                                                                                                                                   NeverEnding Story, The
## 9254                                                                                                                                              Beetlejuice
## 9255                                                                                                                                                Rush Hour
## 9257                                                                                                                                            Bug's Life, A
## 9258                                                                                                                                    Babe: Pig in the City
## 9262                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 9263                                                                                                                                          Iron Giant, The
## 9264                                                                                                                                       Christmas Story, A
## 9267                                                                                                                           Home Alone 2: Lost in New York
## 9268                                                                                                                                              Toy Story 2
## 9269                                                                                                                                         Romeo and Juliet
## 9270                                                                                                                                              Chicken Run
## 9271                                                                                                       How the Grinch Stole Christmas (a.k.a. The Grinch)
## 9272                                                                                                                                Emperor's New Groove, The
## 9273                                                                                                                                        Miss Congeniality
## 9274                                                                                                                                                 Spy Kids
## 9275                                                                                                                                    Bridget Jones's Diary
## 9276                                                                                                                                                    Shrek
## 9278                                                                                                                                              Rush Hour 2
## 9279                                                                                                                                           Monsters, Inc.
## 9280                                                                                                                                              Shallow Hal
## 9281                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 9283                                                                                                                                 My Big Fat Greek Wedding
## 9285                                                                                                                                            Lilo & Stitch
## 9286                                                                                                                                                Mr. Deeds
## 9287                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 9288                                                                                                                              Austin Powers in Goldmember
## 9290                                                                                                                                     Saturday Night Fever
## 9291                                                                                                                  Harry Potter and the Chamber of Secrets
## 9294                                                                                                                                     Bend It Like Beckham
## 9296                                                                                                                                           Bruce Almighty
## 9297                                                                                                                                             Finding Nemo
## 9298                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 9299                                                                                                                                              Jungle Book
## 9301                                                                                                                                                      Elf
## 9304                                                                                                                                     Cheaper by the Dozen
## 9306                                                                                                                                                  Shrek 2
## 9307                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 9308                                                                                                                                        Napoleon Dynamite
## 9309                                                                                                                                            Super Size Me
## 9310                                                                                                                           Now You See Him, Now You Don't
## 9312                                                                                                                                        Finding Neverland
## 9314                                                                                                          Lemony Snicket's A Series of Unfortunate Events
## 9315                                                                                                                        Charlie and the Chocolate Factory
## 9316                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 9317                                                                                                                                               Madagascar
## 9318                                                                                                                                           Cinderella Man
## 9321                                                                                                                                           Fantastic Four
## 9323                                                                                                                                        Pride & Prejudice
## 9325                                                                                          Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 9328                                                                                                                                           Over the Hedge
## 9329                                                                                                                                                     Cars
## 9331                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 9335                                                                                                                                    Stranger than Fiction
## 9336                                                                                                                                         Illusionist, The
## 9341                                                                                                                                          Shrek the Third
## 9342                                                                                                                 Pirates of the Caribbean: At World's End
## 9344                                                                                                                Fantastic Four: Rise of the Silver Surfer
## 9346                                                                                                                Harry Potter and the Order of the Phoenix
## 9347                                                                                                                                      Simpsons Movie, The
## 9349                                                                                                                                           Be Kind Rewind
## 9350                                                                                                                                               Darfur Now
## 9354                                                                                                           Sweeney Todd: The Demon Barber of Fleet Street
## 9355                                                                                                                              Hellboy II: The Golden Army
## 9357                                                                                                                                                   Jumper
## 9362                                                                                                                                                  Hancock
## 9366                                                                                                                                Shawshank Redemption, The
## 9378                                                                                                                                            Blood Diamond
## 9383                                                                                                                                         Hurt Locker, The
## 9389                                                                                                                                       Bourne Legacy, The
## 9390                                                                                                                                             Intouchables
## 9392                                                                                                                                                 Oblivion
## 9393                                                                                                                                        From the Sky Down
## 9401                                                                                                         Birdman: Or (The Unexpected Virtue of Ignorance)
## 9404                                                                                                                                          American Sniper
## 9405                                                                                                                                                John Wick
## 9406                                                                                                                                             Nightcrawler
## 9409                                                                                                                                                 Blackhat
## 9411                                                                                                                                                  Ant-Man
## 9418                                                                                                                                  American President, The
## 9420                                                                                                                               Postman, The (Postino, Il)
## 9421                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 9423                                                                                                                                                  Rob Roy
## 9424                                                                                                                                              Hoop Dreams
## 9426                                                                                                                                          Specialist, The
## 9428                                                                                                                                                True Lies
## 9430                                                                                                                                            Fugitive, The
## 9432                                                                                                                                  Remains of the Day, The
## 9433                                                                                                                                Robin Hood: Men in Tights
## 9437                                                                                                                                                   Ransom
## 9438                                                                                                                   Homeward Bound: The Incredible Journey
## 9441                                                                                                                   Children of the Corn IV: The Gathering
## 9446                                                                                                                                               Annie Hall
## 9447                                                                                                                                               Sting, The
## 9450                                                                                                                                  When Harry Met Sally...
## 9452                                                                                                                   Star Trek VI: The Undiscovered Country
## 9454                                                                                                                            Star Trek IV: The Voyage Home
## 9456                                                                                                                   Jungle2Jungle (a.k.a. Jungle 2 Jungle)
## 9457                                                                                                                   Romy and Michele's High School Reunion
## 9462                                                                                                                                          Full Monty, The
## 9465                                                                                                                                                 Rain Man
## 9468                                                                                                                                   Lord of the Rings, The
## 9469                                                                                                                                              Beetlejuice
## 9471                                                                                                                                          My Cousin Vinny
## 9478                                                                                                                                         Sixth Sense, The
## 9489                                                                                                                                          Erin Brockovich
## 9493                                                                                                                                              Chicken Run
## 9499                                                                                                                                                Cast Away
## 9509                                                                                                      League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 9513                                                                                                                               Passion of the Christ, The
## 9515                                                                                                                                                Apollo 13
## 9517                                                                                                                               Die Hard: With a Vengeance
## 9518                                                                                                                                             First Knight
## 9519                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 9525                                                                                                                               Ace Ventura: Pet Detective
## 9534                                                                                                                                     Beauty and the Beast
## 9538                                                                                                                                       Gone with the Wind
## 9543                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 9546                                                                                                                                               Local Hero
## 9548                                                                                                                                       Back to the Future
## 9550                                                                                                                                       This Is Spinal Tap
## 9555                                                                                                                                          Ordinary People
## 9563                                                                                                                                                  Copycat
## 9564                                                                                                                           Bridges of Madison County, The
## 9583                                                                                                                                                   Aliens
## 9588                                                                                                                                               Highlander
## 9589                                                                                                                                                 Face/Off
## 9590                                                                                                                                Men in Black (a.k.a. MIB)
## 9592                                                                                                                                        Big Lebowski, The
## 9599                                                                                                                                           Simple Plan, A
## 9600                                                                                                                                                 Fly, The
## 9601                                                                                                                                              Fly II, The
## 9602                                                                                                                                              Matrix, The
## 9607                                                                                                                                                 Predator
## 9610                                                                                                                                               Billy Jack
## 9611                                                                                                                                                Toy Story
## 9613                                                                                                                              Dracula: Dead and Loving It
## 9619                                                                                                                                          Dead Presidents
## 9622                                                                                                                                       Mr. Holland's Opus
## 9624                                                                                                                                              Black Sheep
## 9625                                                                                                                                          Beautiful Girls
## 9626                                                                                                                                             Broken Arrow
## 9627                                                                                                                                            Happy Gilmore
## 9628                                                                                                                                   Muppet Treasure Island
## 9630                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 9631                                                                                                                                            Birdcage, The
## 9634                                                                                                              Far From Home: The Adventures of Yellow Dog
## 9637                                                                                                                                      Legends of the Fall
## 9645                                                                                                                                        Perez Family, The
## 9648                                                                                                                                                 Stargate
## 9651                                                                                                                                              Client, The
## 9654                                                                                                                                         Jungle Book, The
## 9656                                                                                                                                                 Maverick
## 9660                                                                                                                                              Cliffhanger
## 9662                                                                                                                                                Firm, The
## 9664                                                                                                                                      In the Line of Fire
## 9671                                                                                                                                                     Rudy
## 9676                                                                                                                                                    Ghost
## 9679                                                                                                                                                   Batman
## 9683                                                                                                                 Homeward Bound II: Lost in San Francisco
## 9687                                                                                                                                              Primal Fear
## 9688                                                                                                                                  All Dogs Go to Heaven 2
## 9689                                                                                                                                               Sgt. Bilko
## 9690                                                                                                                                      Mission: Impossible
## 9692                                                                                                                                              Dragonheart
## 9693                                                                                                                                                 Faithful
## 9694                                                                                                                                          Substitute, The
## 9696                                                                                                                             Truth About Cats & Dogs, The
## 9698                                                                                                                                                  Flipper
## 9699                                                                                                                                             Multiplicity
## 9700                                                                                                                                               Craft, The
## 9703                                                                                                                                                 Spy Hard
## 9705                                                                                                                                           Cable Guy, The
## 9706                                                                                                                                     Nutty Professor, The
## 9707                                                                                                                                         Escape from L.A.
## 9708                                                                                                                                                  Tin Cup
## 9710                                                                                                                                      Sound of Music, The
## 9715                                                                                                                                                  Jumanji
## 9716                                                                                                                                  American President, The
## 9718                                                                                                                       Star Wars: Episode IV - A New Hope
## 9719                                                                                                                                        Santa Clause, The
## 9722                                                                                                                                                Mask, The
## 9726                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 9729                                                                                                                                         Schindler's List
## 9730                                                                                                                                     Sleepless in Seattle
## 9731                                                                                                                                             Blade Runner
## 9732                                                                                                                                               Home Alone
## 9734                                                                                                                                       Dances with Wolves
## 9735                                                                                                                                                   Batman
## 9736                                                                                                                                             Pretty Woman
## 9737                                                                                                                                            Trainspotting
## 9738                                                                                                                            Independence Day (a.k.a. ID4)
## 9743                                                                                                                                         To Catch a Thief
## 9744                                                                                                                                      Father of the Bride
## 9747                                                                                                                      Willy Wonka & the Chocolate Factory
## 9749                                                                                                                                             My Left Foot
## 9751                                                                                                                                      Princess Bride, The
## 9753                                                                                                                                                   Aliens
## 9763                                                                                                                                                  Michael
## 9766                                                                                                                                                  Titanic
## 9771                                                                                                                                    Babe: Pig in the City
## 9772                                                                                                                                          Karate Kid, The
## 9774                                                                                                                                    Peggy Sue Got Married
## 9776                                                                                                                                   Little Shop of Horrors
## 9778                                                                                                                                          Heaven Can Wait
## 9779                                                                                                                                                Airplane!
## 9780                                                                                                                                                      Big
## 9782                                                                                                                                             Time Bandits
## 9783                                                                                                                                               Moonstruck
## 9784                                                                                                                                   Cider House Rules, The
## 9785                                                                                                                                               Sister Act
## 9787                                                                                                                                                Gladiator
## 9789                                                                                                                                       Perfect Storm, The
## 9792                                                                                                                                           Monsters, Inc.
## 9793                                                                                                                                           Ocean's Eleven
## 9794                                                                                                                                           Kate & Leopold
## 9797                                                                                                                                                  Ice Age
## 9798                                                                                                                                 My Big Fat Greek Wedding
## 9800                                                                                                                                     Bourne Identity, The
## 9804                                                                                                                                             Pianist, The
## 9805                                                                                                                                     Bend It Like Beckham
## 9806                                                                                                                                                    Holes
## 9807                                                                                                                                           Bruce Almighty
## 9808                                                                                                                                             Finding Nemo
## 9810                                                                                                                                           School of Rock
## 9811                                                                                                                                        Kill Bill: Vol. 1
## 9812                                                                                                                                                 Big Fish
## 9814                                                                                                                    Eternal Sunshine of the Spotless Mind
## 9816                                                                                                                                            Terminal, The
## 9819                                                                                                                    Sky Captain and the World of Tomorrow
## 9822                                                                                                                                 Spirit of St. Louis, The
## 9824                                                                                                                                      Million Dollar Baby
## 9825                                                                                                                                             Hotel Rwanda
## 9826                                                                                                                                             Aviator, The
## 9828                                                                                                              Howl's Moving Castle (Hauru no ugoku shiro)
## 9830                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 9831                                                                                                                                           Over the Hedge
## 9832                                                                                                                                                     Cars
## 9833                                                                                                                                          Lake House, The
## 9834                                                                                                                                    Stranger than Fiction
## 9835                                                                                                                                                 Stardust
## 9838                                                                                                                                                  Jumanji
## 9845                                                                                                                                                   Casper
## 9848                                                                                                                                             Pulp Fiction
## 9854                                                                                                                                              Richie Rich
## 9855                                                                                                                                     Addams Family Values
## 9856                                                                                                                                           Mrs. Doubtfire
## 9861                                                                                                                                                Pinocchio
## 9863                                                                                                                                     Nutty Professor, The
## 9867                                                                                                                                             Mary Poppins
## 9873                                                                                                                   Romy and Michele's High School Reunion
## 9877                                                                                                                                                    Rocky
## 9882                                                                                                                                 Honey, I Shrunk the Kids
## 9883                                                                                                                                         Parent Trap, The
## 9884                                                                                                                                     Nutty Professor, The
## 9889                                                                                                                 Police Academy 2: Their First Assignment
## 9895                                                                                                                                         Romeo and Juliet
## 9897                                                                                                                           Nutty Professor II: The Klumps
## 9898                                                                                                                                         Meet the Parents
## 9899                                                                                                                                         Charlie's Angels
## 9900                                                                                                                          Crocodile Dundee in Los Angeles
## 9902                                                                                                                                             Donnie Darko
## 9907                                                                                                                                               Spider-Man
## 9915                                                                                                                                        Definitely, Maybe
## 9921                                                                                                                                                  Sabrina
## 9922                                                                                                                                             Sudden Death
## 9923                                                                                                                              Dracula: Dead and Loving It
## 9924                                                                                                                                                    Nixon
## 9935                                                                                                                                                 Bio-Dome
## 9941                                                                                                                                              Black Sheep
## 9945                                                                                                                                            Happy Gilmore
## 9951                                                                                                                                       Executive Decision
## 9957                                                                                                                                               Sgt. Bilko
## 9958                                                                                                                                               Diabolique
## 9959                                                                                                                                      Mission: Impossible
## 9962                                                                                                                            Kids in the Hall: Brain Candy
## 9964                                                                                                                  Mystery Science Theater 3000: The Movie
## 9965                                                                                                                                                Space Jam
## 9972                                                                                                                                               Craft, The
## 9975                                                                                                                                                Barb Wire
## 9976                                                                                                                                                 Spy Hard
## 9978                                                                                                                                             Arrival, The
## 9979                                                                                                                                             Phantom, The
## 9982                                                                                                                                           Cable Guy, The
## 9989                                                                                                                                                   Kazaam
## 10002                                                                                                                              Terminator 2: Judgment Day
## 10014                                                                                                                                     She's Gotta Have It
## 10021                                                                                                                             Unsinkable Molly Brown, The
## 10024                                                                                                                                               Toy Story
## 10025                                                                                                                                                 Jumanji
## 10026                                                                                                                                    Seven (a.k.a. Se7en)
## 10028                                                                                                                                              Braveheart
## 10029                                                                                                                                               Apollo 13
## 10030                                                                                                                      Star Wars: Episode IV - A New Hope
## 10034                                                                                                                                           Jurassic Park
## 10037                                                                                                                               Silence of the Lambs, The
## 10041                                                                                                                                              Casablanca
## 10043                                                                                                                                                Die Hard
## 10044                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 10045                                                                                                                                                  Aliens
## 10051                                                                                                                                      Dead Poets Society
## 10053                                                                                                                                      Back to the Future
## 10054                                                                                                                                        Truman Show, The
## 10055                                                                                                                                                Rain Man
## 10056                                                                                                                                      Mask of Zorro, The
## 10057                                                                                                                                     Saving Private Ryan
## 10059                                                                                                                                                Rushmore
## 10060                                                                                                                                             Matrix, The
## 10061                                                                                                               Star Wars: Episode I - The Phantom Menace
## 10062                                                                                                                               Run Lola Run (Lola rennt)
## 10065                                                                                                                                Ferris Bueller's Day Off
## 10067                                                                                                                                             Toy Story 2
## 10068                                                                                                                                           High Fidelity
## 10069                                                                                                                                               Gladiator
## 10070                                                                                                                                      Gone in 60 Seconds
## 10071                                                                                                                                            Patriot, The
## 10072                                                                                                                                                   X-Men
## 10073                                                                                                                                           Almost Famous
## 10074                                                                                                                                     Requiem for a Dream
## 10075                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 10076                                                                                                                                                  Snatch
## 10077                                                                                                                                         What Women Want
## 10079                                                                                                                                       Miss Congeniality
## 10080                                                                                                                              O Brother, Where Art Thou?
## 10082                                                                                                                                   Bridget Jones's Diary
## 10084                                                                                                                                                   Shrek
## 10085                                                                                                                                          Legally Blonde
## 10086                                                                                                                                             Others, The
## 10088                                                                                                                                          Monsters, Inc.
## 10089                                                                                                                                          Ocean's Eleven
## 10090                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 10091                                                                                                                                   Royal Tenenbaums, The
## 10092                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 10093                                                                                                                                       Beautiful Mind, A
## 10094                                                                                                                                                 Ice Age
## 10095                                                                                                                                              Spider-Man
## 10096                                                                                                            Star Wars: Episode II - Attack of the Clones
## 10097                                                                                                                                    Bourne Identity, The
## 10098                                                                                                                                         Minority Report
## 10099                                                                                                                                               Ring, The
## 10100                                                                                                                                             Equilibrium
## 10101                                                                                                                  Lord of the Rings: The Two Towers, The
## 10102                                                                                                                                     Catch Me If You Can
## 10103                                                                                                                                            Pianist, The
## 10104                                                                                                                                        X2: X-Men United
## 10105                                                                                                                                            Finding Nemo
## 10106                                                                                                                                           28 Days Later
## 10107                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 10109                                                                                                                                          School of Rock
## 10110                                                                                                                                       Kill Bill: Vol. 1
## 10111                                                                                                                                 Matrix Revolutions, The
## 10112                                                                                                                                       Last Samurai, The
## 10113                                                                                                                                                Big Fish
## 10114                                                                                                          Lord of the Rings: The Return of the King, The
## 10115                                                                                                                                    The Butterfly Effect
## 10116                                                                                                                   Eternal Sunshine of the Spotless Mind
## 10117                                                                                                                                       Kill Bill: Vol. 2
## 10118                                                                                                                                                    Troy
## 10119                                                                                                                                        Band of Brothers
## 10120                                                                                                                                                I, Robot
## 10121                                                                                                                                       Shaun of the Dead
## 10122                                                                                                                                           The Machinist
## 10123                                                                                                                                        Incredibles, The
## 10124                                                                                                                                             Constantine
## 10125                                                                                                                                           Batman Begins
## 10126                                                                                                                                             Lord of War
## 10127                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 10128                                                                                                                                          V for Vendetta
## 10129                                                                                                                                   Thank You for Smoking
## 10130                                                                                                                                      Da Vinci Code, The
## 10131                                                                                                                                    Little Miss Sunshine
## 10132                                                                                                                                        Illusionist, The
## 10133                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 10134                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 10135                                                                                                                                           Departed, The
## 10136                                                                                                                                           Casino Royale
## 10138                                                                                                                                                Hot Fuzz
## 10139                                                                                                                                                  Zodiac
## 10140                                                                                                                                                     300
## 10141                                                                                                                                              Grindhouse
## 10142                                                                                                                                            Spider-Man 3
## 10143                                                                                                                                              Knocked Up
## 10144                                                                                                                                          28 Weeks Later
## 10145                                                                                                                Pirates of the Caribbean: At World's End
## 10146                                                                                                                                        Ocean's Thirteen
## 10147                                                                                                                                             Death Proof
## 10148                                                                                                                                   Live Free or Die Hard
## 10149                                                                                                                                            Transformers
## 10150                                                                                                               Harry Potter and the Order of the Phoenix
## 10151                                                                                                                                                Stardust
## 10152                                                                                                                                     Simpsons Movie, The
## 10153                                                                                                                                   Bourne Ultimatum, The
## 10154                                                                                                                                                Superbad
## 10155                                                                                                                                            3:10 to Yuma
## 10156                                                                                                                                           Into the Wild
## 10157                                                                                                                                 Darjeeling Limited, The
## 10158                                                                                                                                       American Gangster
## 10160                                                                                                                                             I Am Legend
## 10162                                                                                                          Sweeney Todd: The Demon Barber of Fleet Street
## 10164                                                                                                                                        Dark Knight, The
## 10165                                                                                                                                                Iron Man
## 10167                                                                                                                                      Burn After Reading
## 10168                                                                                                                    Curious Case of Benjamin Button, The
## 10169                                                                                                                                    Inglourious Basterds
## 10170                                                                                                                                X-Men Origins: Wolverine
## 10171                                                                                                                                               Star Trek
## 10173                                                                                                                                           Hangover, The
## 10174                                                                                                                                                  Avatar
## 10175                                                                                                                                          Shutter Island
## 10176                                                                                                                                               Inception
## 10177                                                                                                                             Scott Pilgrim vs. the World
## 10178                                                                                                                                               127 Hours
## 10179                                                                                                                                              Black Swan
## 10180                                                                                                                                               True Grit
## 10181                                                                                                                                       Midnight in Paris
## 10182                                                                                                                      Captain America: The First Avenger
## 10183                                                                                                                          Rise of the Planet of the Apes
## 10184                                                                                                                                               Moneyball
## 10185                                                                                                                                           Avengers, The
## 10186                                                                                                                                  Dark Knight Rises, The
## 10189                                                                                                                                             Cloud Atlas
## 10190                                                                                                                                              Life of Pi
## 10191                                                                                                                                        Django Unchained
## 10192                                                                                                                                 Star Trek Into Darkness
## 10193                                                                                                                                             World War Z
## 10194                                                                                                                                              About Time
## 10195                                                                                                                                                 Gravity
## 10196                                                                                                                                        12 Years a Slave
## 10197                                                                                                                                      Dallas Buyers Club
## 10199                                                                                                                                            Interstellar
## 10200                                                                                                                                                Whiplash
## 10201                                                                                                                                 Guardians of the Galaxy
## 10202                                                                                                                                         American Sniper
## 10203                                                                                                                                              Ex Machina
## 10204                                                                                                                                      The Imitation Game
## 10205                                                                                                                                The Theory of Everything
## 10207                                                                                                              Star Wars: Episode VII - The Force Awakens
## 10208                                                                                                                                                Deadpool
## 10209                                                                                                                              Captain America: Civil War
## 10210                                                                                                                                             The Martian
## 10211                                                                                                                      Batman v Superman: Dawn of Justice
## 10212                                                                                                                                            The Revenant
## 10213                                                                                                                                               Spotlight
## 10214                                                                                                                               The Huntsman Winter's War
## 10216                                                                                                                                                 Jumanji
## 10218                                                                                                                                               GoldenEye
## 10219                                                                                                                                        Cutthroat Island
## 10221                                                                                                                          Ace Ventura: When Nature Calls
## 10222                                                                                                                                              Get Shorty
## 10224                                                                                                                                         Dangerous Minds
## 10226                                                                                                                                                    Babe
## 10229                                                                                                                                           Mortal Kombat
## 10231                                                                                                                                              Pocahontas
## 10233                                                                                                                             Indian in the Cupboard, The
## 10234                                                                                Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 10235                                                                                                                                                Bio-Dome
## 10237                                                                                                                                     From Dusk Till Dawn
## 10238                                                                                                                                                Shopping
## 10239                                                                                                                                           Bottle Rocket
## 10240                                                                                                                                           Happy Gilmore
## 10241                                                                                                                                  Muppet Treasure Island
## 10243                                                                                                                                             Taxi Driver
## 10244                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 10245                                                                                                                                                Bad Boys
## 10247                                                                                                                                               Apollo 13
## 10248                                                                                                                                          Batman Forever
## 10249                                                                                                                                                  Casper
## 10250                                                                                                                                                   Congo
## 10251                                                                                                                                               Desperado
## 10252                                                                                                                              Die Hard: With a Vengeance
## 10253                                                                                                                                            First Knight
## 10254                                                                                                                        Free Willy 2: The Adventure Home
## 10255                                                                                                                                         Johnny Mnemonic
## 10256                                                                                                                                             Judge Dredd
## 10258                                                                                                                                       Lord of Illusions
## 10259                                                                                                                                                Mallrats
## 10260                                                                                                                                                Net, The
## 10261                                                                                                                                               Showgirls
## 10263                                                                                                                                              Waterworld
## 10267                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 10270                                                                                                                                          Goofy Movie, A
## 10273                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 10274                                                                                                                                                  Junior
## 10275                                                                                                                           Kid in King Arthur's Court, A
## 10278                                                                                                                                             Major Payne
## 10279                                                                                                                                    Natural Born Killers
## 10280                                                                                                                                                Outbreak
## 10284                                                                                                                                                Stargate
## 10288                                                                                                                                               Tank Girl
## 10289                                                                                                                                               Tommy Boy
## 10290                                                                                                                             What's Eating Gilbert Grape
## 10291                                                                                                                                              Virtuosity
## 10292                                                                                                                              Ace Ventura: Pet Detective
## 10293                                                                                                                                Clear and Present Danger
## 10294                                                                                                                                                Crooklyn
## 10298                                                                                                                                               Mask, The
## 10299                                                                                                                                                Maverick
## 10300                                                                                                                                             Richie Rich
## 10301                                                                                                                                                   Speed
## 10302                                                                                                                                               True Lies
## 10303                                                                                                                                 In the Mouth of Madness
## 10304                                                                                                                                           Above the Rim
## 10305                                                                                                                                    Addams Family Values
## 10306                                                                                                                                                Airheads
## 10308                                                                                                                                           Carlito's Way
## 10309                                                                                                                                               Coneheads
## 10310                                                                                                                                      Dazed and Confused
## 10311                                                                                                                                          Demolition Man
## 10314                                                                                                                                    Hot Shots! Part Deux
## 10316                                                                                                                                     In the Line of Fire
## 10318                                                                                                                                              Kalifornia
## 10320                                                                                                                                        Last Action Hero
## 10322                                                                                                                                  Much Ado About Nothing
## 10323                                                                                                                                          Mrs. Doubtfire
## 10324                                                                                                                                    Next Karate Kid, The
## 10325                                                                                                                                        Perfect World, A
## 10327                                                                                                                                          Poetic Justice
## 10328                                                                                                                                                Ref, The
## 10330                                                                                                                                          Romper Stomper
## 10333                                                                                                                         Nightmare Before Christmas, The
## 10336                                                                                                                                     Little Rascals, The
## 10337                                                                                                                                  Brady Bunch Movie, The
## 10338                                                                                                                                              Home Alone
## 10340                                                                                                                              Terminator 2: Judgment Day
## 10344                                                                                                                         Snow White and the Seven Dwarfs
## 10346                                                                                                                                               Pinocchio
## 10347                                                                                                                                            Pretty Woman
## 10349                                                                                                                                             Heavy Metal
## 10351                                                                                                                                 All Dogs Go to Heaven 2
## 10352                                                                                                                                     Mission: Impossible
## 10353                                                                                                                                             Dragonheart
## 10354                                                                                                                                               Space Jam
## 10355                                                                                                                                         Substitute, The
## 10356                                                                                                                                              Quest, The
## 10357                                                                                                                            Truth About Cats & Dogs, The
## 10358                                                                                                                                            Multiplicity
## 10359                                                                                                                                               Rock, The
## 10361                                                                                                                                                 Twister
## 10362                                                                                                                                               Barb Wire
## 10364                                                                                                                                                 Thinner
## 10366                                                                                                                                            Arrival, The
## 10367                                                                                                                                            Phantom, The
## 10369                                                                                                                           Independence Day (a.k.a. ID4)
## 10370                                                                                                                                          Cable Guy, The
## 10371                                                                                                                                                 Kingpin
## 10372                                                                                                                                                  Eraser
## 10373                                                                                                                                    Nutty Professor, The
## 10374                                                                                                                                        Frighteners, The
## 10375                                                                                                                                              Phenomenon
## 10376                                                                                                                                                  Ransom
## 10377                                                                                                                                        Escape from L.A.
## 10379                                                                                                                               Island of Dr. Moreau, The
## 10383                                                                                                                                   2001: A Space Odyssey
## 10386                                                                                                                  Homeward Bound: The Incredible Journey
## 10387                                                                                                                                           Cool Runnings
## 10388                                                                                                                                              Cinderella
## 10389                                                                                                                                 Sword in the Stone, The
## 10390                                                                                                                           Robin Hood: Prince of Thieves
## 10391                                                                                                                                                   Dumbo
## 10392                                                                                                                                     Alice in Wonderland
## 10393                                                                                                                                  Fox and the Hound, The
## 10395                                                                                                                             Ghost and the Darkness, The
## 10396                                                                                                                    William Shakespeare's Romeo + Juliet
## 10400                                                                                                                                          Reservoir Dogs
## 10402                                                                                                                                              Doors, The
## 10403                                                                                                                                        Crying Game, The
## 10405                                                                                                                                                 Top Gun
## 10406                                                                                                                             People vs. Larry Flynt, The
## 10409                                                                                                                         Monty Python and the Holy Grail
## 10412                                                                                                                                Sex, Lies, and Videotape
## 10430                                                                                                                                     Blues Brothers, The
## 10433                                                                                                                                                 Amadeus
## 10437                                                                                                                                                   Glory
## 10439                                                                                                                                      Dead Poets Society
## 10444                                                                                                                                             Stand by Me
## 10454                                                                                                                                                Heathers
## 10455                                                                                                                                      This Is Spinal Tap
## 10458                                                                                                                                    Pink Floyd: The Wall
## 10459                                                                                                                                     Killing Fields, The
## 10460                                                                                                                                         Field of Dreams
## 10461                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 10462                                                                                                                         American Werewolf in London, An
## 10463                                                                                                                         Dracula (Bram Stoker's Dracula)
## 10464                                                                                                                                                Candyman
## 10467                                                                                                                              Nightmare on Elm Street, A
## 10468                                                                                                                                               Omen, The
## 10469                                                                                                                                Star Trek: First Contact
## 10471                                                                                                                                      Jingle All the Way
## 10472                                                                                                                                          101 Dalmatians
## 10473                                                                                                                                              Die Hard 2
## 10474                                                                                                                  Star Trek VI: The Undiscovered Country
## 10476                                                                                                                                          Batman Returns
## 10479                                                                                                                                           Mars Attacks!
## 10483                                                                                                                         Beavis and Butt-Head Do America
## 10485                                                                                                                               Last of the Mohicans, The
## 10486                                                                                                                                            Dante's Peak
## 10487                                                                                                                                               Pest, The
## 10488                                                                                                                                            Lost Highway
## 10490                                                                                                                                              Saint, The
## 10491                                                                                                                                               Liar Liar
## 10492                                                                                                                                                Anaconda
## 10494                                                                                                                                                 Volcano
## 10495                                                                                                             Austin Powers: International Man of Mystery
## 10496                                                                                                                                      Fifth Element, The
## 10497                                                                                                                          Lost World: Jurassic Park, The
## 10498                                                                                                                                                 Con Air
## 10499                                                                                                                                          Batman & Robin
## 10501                                                                                                                                                Face/Off
## 10502                                                                                                                               Men in Black (a.k.a. MIB)
## 10503                                                                                                                                                 Contact
## 10506                                                                                                                                                   Spawn
## 10507                                                                                                                                Free Willy 3: The Rescue
## 10508                                                                                                                                       Conspiracy Theory
## 10509                                                                                                                                                   Steel
## 10510                                                                                                                                                   Mimic
## 10511                                                                                                                                           Air Force One
## 10514                                                                                                                                             Chasing Amy
## 10515                                                                                                                         I Know What You Did Last Summer
## 10516                                                                                                                                    The Devil's Advocate
## 10517                                                                                                                                                 Gattaca
## 10519                                                                                                                                                 Witness
## 10520                                                                                                                                       Starship Troopers
## 10521                                                                                                                             Mortal Kombat: Annihilation
## 10523                                                                                                                                     Alien: Resurrection
## 10525                                                                                                                                            Home Alone 3
## 10526                                                                                                                                                 Titanic
## 10527                                                                                                                                            Jackie Brown
## 10530                                                                                                                                               Hard Rain
## 10532                                                                                                                                             Spice World
## 10533                                                                                                                                             Deep Rising
## 10534                                                                                                                                     Wedding Singer, The
## 10535                                                                                                                                                  Sphere
## 10537                                                                                                                                        King of New York
## 10538                                                                                                                                           U.S. Marshals
## 10539                                                                                                                                Barney's Great Adventure
## 10540                                                                                                                                             He Got Game
## 10541                                                                                                                           Mr. Nice Guy (Yat goh ho yan)
## 10542                                                                                                                                              Species II
## 10543                                                                                                                                             Deep Impact
## 10544                                                                                                                                                Godzilla
## 10545                                                                                                                          Fear and Loathing in Las Vegas
## 10546                                                                                                                          X-Files: Fight the Future, The
## 10547                                                                                                                                            Dr. Dolittle
## 10550                                                                                                                                              Armageddon
## 10551                                                                                                                                          Small Soldiers
## 10552                                                                                                                            There's Something About Mary
## 10553                                                                                                                                  French Connection, The
## 10556                                                                                                                                                Repo Man
## 10559                                                                                                                                         Friday the 13th
## 10561                                                                                                                                            Child's Play
## 10568                                                                                                                                      Mask of Zorro, The
## 10571                                                                                                                             Back to the Future Part III
## 10573                                                                                                                                                    Dune
## 10574                                                                                                                                Godfather: Part III, The
## 10576                                                                                                                                     Black Cauldron, The
## 10577                                                                                                                                             Hocus Pocus
## 10578                                                                                                                                Honey, I Shrunk the Kids
## 10579                                                                                                                                         Negotiator, The
## 10580                                                                                                                                             BASEketball
## 10583                                                                                                                                      Lady and the Tramp
## 10584                                                                                                                                     Little Mermaid, The
## 10585                                                                                                                                       Mighty Ducks, The
## 10586                                                                                                                                               Peter Pan
## 10587                                                                                                                                Rescuers Down Under, The
## 10588                                                                                                                                           Rescuers, The
## 10590                                                                                                                                         Sleeping Beauty
## 10591                                                                                                                                                    Tron
## 10594                                                                                                                                      Addams Family, The
## 10599                                                                                                                     American Tail: Fievel Goes West, An
## 10600                                                                                                                                                  Legend
## 10602                                                                                                                                                   House
## 10603                                                                                                                                 Gods Must Be Crazy, The
## 10604                                                                                                                      Henry: Portrait of a Serial Killer
## 10605                                                                                                                                  NeverEnding Story, The
## 10606                                                                                                                                     Surf Nazis Must Die
## 10607                                                                                                                                                   Blade
## 10611                                                                                                                                              Dirty Work
## 10614                                                                                                                                         Say Anything...
## 10616                                                                                                                                               Rush Hour
## 10620                                                                                                                                     Edward Scissorhands
## 10621                                                                                                                                                    Antz
## 10622                                                                                                                                         My Cousin Vinny
## 10624                                                                                                                        Bride of Chucky (Child's Play 4)
## 10626                                                                                                                                           Pleasantville
## 10627                                                                                                                     Life Is Beautiful (La Vita è bella)
## 10628                                                                                                                      Tales from the Darkside: The Movie
## 10630                                                                                                                                           Waterboy, The
## 10631                                                                                                                                          Meet Joe Black
## 10632                                                                                                                                      Enemy of the State
## 10633                                                                                                                                           Bug's Life, A
## 10635                                                                                                                                          Police Academy
## 10636                                                                                                                                         Very Bad Things
## 10637                                                                                                                                          Simple Plan, A
## 10638                                                                                                                                    Prince of Egypt, The
## 10641                                                                                                                              Rambo: First Blood Part II
## 10642                                                                                                                        First Blood (Rambo: First Blood)
## 10643                                                                                                                                               Rambo III
## 10644                                                                                                                                     Romancing the Stone
## 10646                                                                                                                                               Rocky III
## 10647                                                                                                                                                Rocky IV
## 10648                                                                                                                                                 Rocky V
## 10651                                                                                                                               Karate Kid, Part III, The
## 10652                                                                                                                                         You've Got Mail
## 10654                                                                                                                                            Faculty, The
## 10655                                                                                                                                        Mighty Joe Young
## 10657                                                                                                                                               Gate, The
## 10660                                                                                                                          Texas Chainsaw Massacre 2, The
## 10662                                                                                                                                        Crocodile Dundee
## 10663                                                                                                                                                 Payback
## 10664                                                                                                             Fantastic Planet, The (Planète sauvage, La)
## 10666                                                                                                                                             Logan's Run
## 10668                                                                                                                                        Cruel Intentions
## 10670                                                                                                                                            Dead Ringers
## 10671                                                                                                                                           Baby Geniuses
## 10674                                                                                                                              10 Things I Hate About You
## 10676                                                                                                                          Twin Dragons (Shuang long hui)
## 10679                                                                                                                                              Entrapment
## 10680                                                                                                                                              Idle Hands
## 10681                                                                                                                                              Mummy, The
## 10682                                                                                                               Star Wars: Episode I - The Phantom Menace
## 10683                                                                                                                          Rocky Horror Picture Show, The
## 10684                                                                                                                                            Notting Hill
## 10685                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 10688                                                                                                                                               Big Daddy
## 10689                                                                                                                                           Arachnophobia
## 10690                                                                                                                    South Park: Bigger, Longer and Uncut
## 10691                                                                                                                                          Wild Wild West
## 10692                                                                                                                                            American Pie
## 10694                                                                                                                                Blair Witch Project, The
## 10696                                                                                                                                             Lake Placid
## 10698                                                                                                                                         Ghostbusters II
## 10699                                                                                                                                        Inspector Gadget
## 10700                                                                                                                                           Deep Blue Sea
## 10701                                                                                                                                             Mystery Men
## 10702                                                                                                                                           Runaway Bride
## 10704                                                                                                                                     Mosquito Coast, The
## 10705                                                                                                                                  Little Shop of Horrors
## 10706                                                                                                                                         Iron Giant, The
## 10708                                                                                                                                               Bowfinger
## 10709                                                                                                                                               Airplane!
## 10710                                                                                                                                                     Big
## 10711                                                                                                                                           Problem Child
## 10713                                                                                                                                       Universal Soldier
## 10716                                                                                                                                             Blue Streak
## 10717                                                                                                                                                Caligula
## 10720                                                                                                                                               Excalibur
## 10721                                                                                Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak)
## 10722                                                                                                                                             Three Kings
## 10723                                                                                                                                           Monkey Shines
## 10724                                                                                                                                                Phantasm
## 10725                                                                                                                                          Risky Business
## 10734                                                                                                                          Home Alone 2: Lost in New York
## 10736                                                                                                                                            Time Bandits
## 10737                                                                                                                                                    Bats
## 10739                                                                                                                                Who Framed Roger Rabbit?
## 10742                                                                                                                                    Bride of Re-Animator
## 10744                                                                                                                                             Re-Animator
## 10747                                                                                                                                              Spaceballs
## 10750                                                                                                                                                   Dogma
## 10751                                                                                             Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 10752                                                                                                                                           Sleepy Hollow
## 10753                                                                                                                                World Is Not Enough, The
## 10754                                                                                                                                        Fatal Attraction
## 10757                                                                                                                                             End of Days
## 10759                                                                                                                              Deuce Bigalow: Male Gigolo
## 10760                                                                                                                                         Green Mile, The
## 10762                                                                                                                                                Magnolia
## 10763                                                                                                                                        Any Given Sunday
## 10765                                                                                                                                            Galaxy Quest
## 10767                                                                                                                            Fast Times at Ridgemont High
## 10770                                                                                                                                           Wayne's World
## 10771                                                                                                                                         Wayne's World 2
## 10772                                                                                                                                  League of Their Own, A
## 10773                                                                                                                                           Patriot Games
## 10776                                                                                                                                            Mariachi, El
## 10777                                                                                                                                                Scream 3
## 10778                                                                                                                                    Boondock Saints, The
## 10780                                                                                                                                             Pitch Black
## 10782                                                                                                                             Hoosiers (a.k.a. Best Shot)
## 10783                                                                                                                                             Bull Durham
## 10787                                                                                                                                            Jungle Fever
## 10788                                                                                                                            Teenage Mutant Ninja Turtles
## 10789                                                                                                 Teenage Mutant Ninja Turtles II: The Secret of the Ooze
## 10790                                                                                                                        Teenage Mutant Ninja Turtles III
## 10791                                                                                                                                   Good Morning, Vietnam
## 10792                                                                                                                      Close Encounters of the Third Kind
## 10796                                                                                                                                                    Hook
## 10798                                                                                                                                                Predator
## 10801                                                                                                                                     Love and Basketball
## 10802                                                                                                                                                   U-571
## 10803                                                                                                                                             Carnosaur 2
## 10804                                                                                                                             Carnosaur 3: Primal Species
## 10807                                                                                                                                       Battlefield Earth
## 10808                                                                                                                                               Road Trip
## 10809                                                                                                                                  Mission: Impossible II
## 10810                                                                                                                                         Blazing Saddles
## 10812                                                                                                                                  Light Years (Gandahar)
## 10813                                                                                                                                                 Porky's
## 10816                                                                                                                                                 Mad Max
## 10817                                                                                                                           Road Warrior, The (Mad Max 2)
## 10818                                                                                                                              Mad Max Beyond Thunderdome
## 10820                                                                                                                                      Gone in 60 Seconds
## 10821                                                                                                                                               Near Dark
## 10824                                                                                                                             Big Trouble in Little China
## 10825                                                                                                                                              Titan A.E.
## 10826                                                                                                                                             Chicken Run
## 10827                                                                                                                                      Me, Myself & Irene
## 10828                                                                                                                                            Patriot, The
## 10829                                                                                                                                      Perfect Storm, The
## 10831                                                                                                                                             Scary Movie
## 10832                                                                                                                                                   X-Men
## 10833                                                                                                                          Nutty Professor II: The Klumps
## 10834                                                                                                                                              Hollow Man
## 10836                                                                                                                                       Tao of Steve, The
## 10837                                                                                                                                       Replacements, The
## 10838                                                                                                                                             Bring It On
## 10840                                                                                                                                     Remember the Titans
## 10841                                                                                                                                              Hellraiser
## 10844                                                                                                                                               Tigerland
## 10845                                                                                                                                         Ladies Man, The
## 10846                                                                                                                                                Ghoulies
## 10847                                                                                                                                             Ghoulies II
## 10848                                                                                                                                            Billy Elliot
## 10851                                                                                                                                        Charlie's Angels
## 10852                                                                                                                                            Little Nicky
## 10853                                                                                                                                            6th Day, The
## 10854                                                                                                                                             Unbreakable
## 10855                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 10856                                                                                                                            Planes, Trains & Automobiles
## 10861                                                                                                                                   Dude, Where's My Car?
## 10862                                                                                                                                         What Women Want
## 10863                                                                                                                                       Finding Forrester
## 10864                                                                                                                                               Cast Away
## 10865                                                                                                                                       Miss Congeniality
## 10868                                                                                                                                     Save the Last Dance
## 10869                                                                                                                                    Wedding Planner, The
## 10870                                                                                                                                       Beverly Hills Cop
## 10873                                                                                                                                          Lost Boys, The
## 10874                                                                                                                                      Monster Squad, The
## 10875                                                                                                                                                Hannibal
## 10876                                                                                                                                    Revenge of the Nerds
## 10877                                                                                                                                      Enemy at the Gates
## 10879                                                                                                                                                Spy Kids
## 10881                                                                                                                                   Bridget Jones's Diary
## 10882                                                                                                                                     Freddy Got Fingered
## 10884                                                                                                                                      Mummy Returns, The
## 10886                                                                                                                                        Knight's Tale, A
## 10888                                                                                                                                            Moulin Rouge
## 10889                                                                                                                                            Pearl Harbor
## 10890                                                                                                                                             Animal, The
## 10891                                                                                                                                               Evolution
## 10892                                                                                                                                               Swordfish
## 10895                                                                                                                                 Lara Croft: Tomb Raider
## 10897                                                                                                                            A.I. Artificial Intelligence
## 10898                                                                                                                                              Sexy Beast
## 10899                                                                                                                                           Scary Movie 2
## 10900                                                                                                                            Cheech & Chong's Nice Dreams
## 10901                                                                                                                                                Suspiria
## 10903                                                                                                                                           Game of Death
## 10906                                                                                                                                          Legally Blonde
## 10907                                                                                                                                              Score, The
## 10908                                                                                                                                                    More
## 10910                                                                                                                                                  Colors
## 10912                                                                                                                          Return of the Living Dead, The
## 10914                                                                                                                        Bill & Ted's Excellent Adventure
## 10916                                                                                                                                               Kickboxer
## 10917                                                                                                                                               Leviathan
## 10918                                                                                                                                         Little Monsters
## 10919                                                                                                                                      Look Who's Talking
## 10921                                                                                                                                       Jurassic Park III
## 10924                                                                                                                                      Planet of the Apes
## 10925                                                                                                                                             Basket Case
## 10926                                                                                                                                             Rush Hour 2
## 10928                                                                                                                                          American Pie 2
## 10929                                                                                                                                             Others, The
## 10930                                                                                                                                                Rat Race
## 10931                                                                                                                          Jay and Silent Bob Strike Back
## 10932                                                                                                                                        Jeepers Creepers
## 10933                                                                                                                                                 Glitter
## 10934                                                                                                                                            Training Day
## 10936                                                                                                                                               Zoolander
## 10937                                                                                                                                             Serendipity
## 10939                                                                                                                                        Mulholland Drive
## 10941                                                                                                                                               From Hell
## 10945                                                                                                                                          Monsters, Inc.
## 10946                                                                                                                                             Shallow Hal
## 10947                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 10948                                                                                                                                            Black Knight
## 10949                                                                                                                                        Beastmaster, The
## 10950                                                                                                                                          Ocean's Eleven
## 10951                                                                                                                                  Not Another Teen Movie
## 10952                                                                                                                                             Vanilla Sky
## 10954                                                                                                                              Bill & Ted's Bogus Journey
## 10955                                                                                                           Spacehunter: Adventures in the Forbidden Zone
## 10956                                                                                                                                                How High
## 10961                                                                                                                                           Orange County
## 10962                                                                                                                                     Conan the Destroyer
## 10963                                                                                                                             Dragon: The Bruce Lee Story
## 10965                                                                                                                                              Rollerball
## 10967                                                                                                                                          Super Troopers
## 10968                                                                                                                                     Bad News Bears, The
## 10970                                                                                                                                   40 Days and 40 Nights
## 10971                                                                                                                                        We Were Soldiers
## 10974                                                                                                                                              Motel Hell
## 10975                                                                          Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le)
## 10976                                                                                                                                                 Ice Age
## 10977                                                                                                                                           Resident Evil
## 10979                                                                                                                                              Panic Room
## 10980                                                                                                                           National Lampoon's Van Wilder
## 10981                                                                                                                                                 Frailty
## 10982                                                                                                                                My Big Fat Greek Wedding
## 10983                                                                                                                                       The Scorpion King
## 10986                                                                                                            Star Wars: Episode II - Attack of the Clones
## 10987                                                                                                                                                Insomnia
## 10988                                                                                                                                      Undercover Brother
## 10989                                                                                                                                    Bourne Identity, The
## 10990                                                                                                                                         Minority Report
## 10991                                                                                                                                               Mr. Deeds
## 10992                                                                                                                                  Look Who's Talking Now
## 10993                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 10994                                                                                                                                           Reign of Fire
## 10995                                                                                                                                       Road to Perdition
## 10996                                                                                                                             Austin Powers in Goldmember
## 10997                                                                                                                                                   Signs
## 10998                                                                                                                   Spy Kids 2: The Island of Lost Dreams
## 10999                                                                                                                                                     xXx
## 11000                                                                                                                                              Blue Crush
## 11002                                                                                                                                              Hot Shots!
## 11003                                                                                                                                              Barbershop
## 11004                                                                                                                                        Transporter, The
## 11005                                                                                                                                    Ernest Scared Stupid
## 11006                                                                                                                                               Secretary
## 11008                                                                                                                                             Tuxedo, The
## 11009                                                                                                                                              Red Dragon
## 11013                                                                                                                                               Ring, The
## 11015                                                                                                                    Jason Goes to Hell: The Final Friday
## 11016                                                                                                                                        Faces of Death 2
## 11017                                                                                                                                          Faces of Death
## 11018                                                                                                                                        Faces of Death 3
## 11019                                                                                                                                        Faces of Death 4
## 11021                                                                                                                                                  8 Mile
## 11022                                                                                                                 Harry Potter and the Chamber of Secrets
## 11023                                                                                                                                         Treasure Planet
## 11026                                                                                                                                          Hot Chick, The
## 11027                                                                                                                                       Maid in Manhattan
## 11030                                                                                                                                          Antwone Fisher
## 11031                                                                                                                                       Gangs of New York
## 11034                                                                                                                                                 Chicago
## 11037                                                                                                                            How to Lose a Guy in 10 Days
## 11038                                                                                                                                        Shanghai Knights
## 11039                                                                                                                                               Daredevil
## 11040                                                                                                                                              Old School
## 11041                                                                                                                                 Bringing Down the House
## 11042                                                                                                                                        Tears of the Sun
## 11043                                                                                                                                    Bend It Like Beckham
## 11045                                                                                                                                             Phone Booth
## 11046                                                                                                                                        Anger Management
## 11047                                                                                                                                    Malibu's Most Wanted
## 11048                                                                                                                                   Andromeda Strain, The
## 11050                                                                                                                                        X2: X-Men United
## 11051                                                                                                                                          Daddy Day Care
## 11052                                                                                                                                    Matrix Reloaded, The
## 11053                                                                                                                                          Bruce Almighty
## 11055                                                                                                                                        Italian Job, The
## 11056                                                                                                                                              Wrong Turn
## 11057                                                                                                          2 Fast 2 Furious (Fast and the Furious 2, The)
## 11059                                                                                                                                           28 Days Later
## 11060                                                                                                                         Charlie's Angels: Full Throttle
## 11061                                                                                                                                                    Hulk
## 11062                                                                                                                      Terminator 3: Rise of the Machines
## 11064                                                                                                                                             Bad Boys II
## 11066                                                                                                              Lara Croft Tomb Raider: The Cradle of Life
## 11067                                                                                                                                              Seabiscuit
## 11068                                                                                                                                 Spy Kids 3-D: Game Over
## 11069                                                                                                                     Remo Williams: The Adventure Begins
## 11070                                                                                                                       American Wedding (American Pie 3)
## 11071                                                                                                                                           Freaky Friday
## 11072                                                                                                                                                S.W.A.T.
## 11073                                                                                                                                            Brain Damage
## 11074                                                                                                                                        Freddy vs. Jason
## 11076                                                                                                                                                Commando
## 11077                                                                                                                                      Jeepers Creepers 2
## 11078                                                                                                                                             Cabin Fever
## 11082                                                                                                                                              Underworld
## 11084                                                                                                                                              Videodrome
## 11087                                                                                                                      Monty Python's The Meaning of Life
## 11089                                                                                                                                            Ginger Snaps
## 11090                                                                                                                           Ninja Scroll (Jûbei ninpûchô)
## 11091                                                                                                                                          School of Rock
## 11094                                                                                                                                                   Radio
## 11095                                                                                                                                           Scary Movie 3
## 11096                                                                                                                                           Interstate 60
## 11097                                                                                                                                 Matrix Revolutions, The
## 11098                                                                                                                                                     Elf
## 11099                                                                                                         Master and Commander: The Far Side of the World
## 11100                                                                                                                                                 Gothika
## 11101                                                                                                                                                21 Grams
## 11102                                                                                                                                               Bad Santa
## 11103                                                                                                                                           New Jack City
## 11107                                                                                                                                               Teen Wolf
## 11108                                                                                                                                            Witches, The
## 11109                                                                                                                                Witches of Eastwick, The
## 11113                                                                                                                                              Leprechaun
## 11115                                                                                                                                       Last Samurai, The
## 11116                                                                                                                                                Big Fish
## 11118                                                                                                                                    Cheaper by the Dozen
## 11120                                                                                                                                    The Butterfly Effect
## 11122                                                                                                                                          50 First Dates
## 11123                                                                                                                                    King Solomon's Mines
## 11125                                                                                                                              Passion of the Christ, The
## 11126                                                                                                                                                 Hidalgo
## 11127                                                                                                                                         Starsky & Hutch
## 11128                                                                                                                                     Girl Next Door, The
## 11129                                                                                                                                        Dawn of the Dead
## 11131                                                                                                                                        Ladykillers, The
## 11132                                                                                                                                                 Hellboy
## 11133                                                                                                                                        Dawn of the Dead
## 11134                                                                                                                                                Munchies
## 11137                                                                                                                                             Man on Fire
## 11138                                                                                                                                             Van Helsing
## 11139                                                                                                                                                    Troy
## 11143                                                                                                                                  Look Who's Talking Too
## 11144                                                                                                                                               Explorers
## 11146                                                                                                                                                    Dune
## 11148                                                                                                                                 Tremors II: Aftershocks
## 11149                                                                                                                           Tremors 3: Back to Perfection
## 11150                                                                                                                       Samurai Fiction (SF: Episode One)
## 11152                                                                                                                                             From Beyond
## 11153                                                                                                                                                   Dolls
## 11156                                                                                                                                                 Shrek 2
## 11157                                                                                                                                 Day After Tomorrow, The
## 11158                                                                                                                                              Soul Plane
## 11159                                                                                                                Harry Potter and the Prisoner of Azkaban
## 11160                                                                                                                              Chronicles of Riddick, The
## 11161                                                                                                                                     Garfield: The Movie
## 11162                                                                                                                                     Stepford Wives, The
## 11163                                                                                                                                       Napoleon Dynamite
## 11164                                                                                                                                                  Freaks
## 11165                                                                                                                             Around the World in 80 Days
## 11166                                                                                                                        Dodgeball: A True Underdog Story
## 11168                                                                                                                                            White Chicks
## 11169                                                                                                                                         Fahrenheit 9/11
## 11170                                                                                                                                            Spider-Man 2
## 11172                                                                                                                                             King Arthur
## 11174                                                                                                                                                I, Robot
## 11175                                                                                                                                   Bourne Supremacy, The
## 11176                                                                                                                                            Village, The
## 11178                                                                                                                                              Collateral
## 11179                                                                                                                     Harold and Kumar Go to White Castle
## 11180                                                                                                                                 AVP: Alien vs. Predator
## 11181                                                                                                                                               Yu-Gi-Oh!
## 11182                                                                                                                                     Night of the Demons
## 11183                                                                                                                            SuperBabies: Baby Geniuses 2
## 11184                                                                                                                               Resident Evil: Apocalypse
## 11188                                                                                                                                                  Primer
## 11189                                                                                                                              Team America: World Police
## 11190                                                                                                                           Fearless Vampire Killers, The
## 11191                                                                                                                                             Grudge, The
## 11192                                                                                                                                                Sideways
## 11195                                                                                                                                        Incredibles, The
## 11196                                                                                                                                       National Treasure
## 11197                                                                                                                                          Ocean's Twelve
## 11200                                                                                                                                             Hobbit, The
## 11201                                                                                                                                Raiders of Atlantis, The
## 11203                                                                                                                 Better Tomorrow, A (Ying hung boon sik)
## 11204                                                                                                                                      Prince of Darkness
## 11206                                                                                                                                           Frankenhooker
## 11208                                                                                                             Hearts of Darkness: A Filmmakers Apocalypse
## 11211                                                                                                                              From the Earth to the Moon
## 11216                                                                                                                                  Daria: Is It Fall Yet?
## 11217                                                                                                                                         Ali G Indahouse
## 11220                                                                                                                                    Battlestar Galactica
## 11223                                                                                                Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka)
## 11224                                                                                                         Lemony Snicket's A Series of Unfortunate Events
## 11225                                                                                                                                       Ju-on: The Grudge
## 11227                                                                                                                        Ginger Snaps Back: The Beginning
## 11228                                                                                                             Starship Troopers 2: Hero of the Federation
## 11229                                                                                                   Interstella 5555: The 5tory of the 5ecret 5tar 5ystem
## 11231                                                                                                                                               Spanglish
## 11233                                                                                                                                       Scanner Darkly, A
## 11237                                                                                                                                            Aviator, The
## 11238                                                                                                                                           Woodsman, The
## 11239                                                                                                                                        Meet the Fockers
## 11241                                                                                                                                            Coach Carter
## 11242                                                                                                               Beastmaster 2: Through the Portal of Time
## 11243                                                                                                                                       Are We There Yet?
## 11244                                                                                                                                               Boogeyman
## 11246                                                                                                                                                   Hitch
## 11247                                                                                                                                             Constantine
## 11248                                                                                                                                Kung Fu Hustle (Gong fu)
## 11249                                                                                                      Thief and the Cobbler, The (a.k.a. Arabian Knight)
## 11252                                                                                                                                                  Sahara
## 11253                                                                                                                   Hitchhiker's Guide to the Galaxy, The
## 11255                                                                                                                                            House of Wax
## 11258                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 11259                                                                                                                                        Mr. & Mrs. Smith
## 11261                                                                                                                                        Land of the Dead
## 11262                                                                                                                                       War of the Worlds
## 11263                                                                                                                                          Fantastic Four
## 11264                                                                                                                                        Wedding Crashers
## 11265                                                                                                                                             Island, The
## 11266                                                                                                                                                Serenity
## 11267                                                                                                                                          Broken Flowers
## 11268                                                                                                                          Deuce Bigalow: European Gigolo
## 11269                                                                                                                                 40-Year-Old Virgin, The
## 11270                                                                                                                                           Transporter 2
## 11271                                                                                                                                             Lord of War
## 11272                                                                                                    Family Guy Presents Stewie Griffin: The Untold Story
## 11273                                                                                                                                               Aeon Flux
## 11276                                                                                                                                     Kiss Kiss Bang Bang
## 11277                                                                                                                                        Proposition, The
## 11278                                                                                                                                                  Saw II
## 11279                                                                                                                                                 Jarhead
## 11280                                                                                                                                  Get Rich or Die Tryin'
## 11281                                                                                                                                       Pride & Prejudice
## 11283                                                                                                                     Harry Potter and the Goblet of Fire
## 11284                                                                                                                                             Match Point
## 11285                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 11286                                                                                                                                               King Kong
## 11288                                                                                                                                  Fun with Dick and Jane
## 11289                                                                                                                                                  Hostel
## 11290                                                                                                                                           Grandma's Boy
## 11291                                                                                                                                                   Troll
## 11292                                                                                                                                              Date Movie
## 11294                                                                                                                                               16 Blocks
## 11296                                                                                                                                   Thank You for Smoking
## 11299                                                                                                                                    Hills Have Eyes, The
## 11302                                                                                                                                           Scary Movie 4
## 11304                                                                                                    Protector, The (a.k.a. Warrior King) (Tom yum goong)
## 11305                                                                                                                                 Mission: Impossible III
## 11306                                                                                                                                      Da Vinci Code, The
## 11308                                                                                                                                             Nacho Libre
## 11309                                                                                                                                                   Click
## 11310                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 11311                                                                                                                                      You, Me and Dupree
## 11312                                                                                                                                               Clerks II
## 11314                                                                                    Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The)
## 11315                                                                                                                         Garfield: A Tail of Two Kitties
## 11316                                                                                                                                    Little Miss Sunshine
## 11317                                                                                                                                              Little Man
## 11318                                                                                                                                       Snakes on a Plane
## 11319                                                                                                             Talladega Nights: The Ballad of Ricky Bobby
## 11320                                                                                                                                     Night at the Museum
## 11322                                                                                                                               Pursuit of Happyness, The
## 11323                                                                                                                                                   Crank
## 11325                                                                                                                                                Beerfest
## 11326                                                                                                                                               Crossover
## 11328                                                                                                                                           Fountain, The
## 11329                                                                                                                                              Apocalypto
## 11330                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 11331                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 11333                                                                                                                                           Grudge 2, The
## 11335                                                                                                                                                Shortbus
## 11338                                                                                                                                                 Saw III
## 11340                                                                                                                                       Déjà Vu (Deja Vu)
## 11341                                                                                                          National Lampoon's Van Wilder: The Rise of Taj
## 11342                                                                                                                                                Turistas
## 11343                                                                                                                                           Blood Diamond
## 11344                                                                                                                                                  Eragon
## 11345                                                                                                                                            Rocky Balboa
## 11348                                                                                                                                                   Kenny
## 11349                                                                                                                                            Smokin' Aces
## 11350                                                                                                                                              Epic Movie
## 11351                                                                                                                                                  Norbit
## 11352                                                                                                                                             Ratatouille
## 11353                                                                                                                                                Hot Fuzz
## 11356                                                                                                                                                     300
## 11358                                                                                                                                 Hills Have Eyes II, The
## 11359                                                                                                                                         Blades of Glory
## 11360                                                                                                                                              Grindhouse
## 11361                                                                                                                                                Sunshine
## 11362                                                                                                                                               Disturbia
## 11363                                                                                                    Aqua Teen Hunger Force Colon Movie Film for Theaters
## 11365                                                                                                                                            Spider-Man 3
## 11367                                                                                                                                              Knocked Up
## 11368                                                                                                                                          28 Weeks Later
## 11369                                                                                                                                         Shrek the Third
## 11370                                                                                                                Pirates of the Caribbean: At World's End
## 11372                                                                                                                                        Ocean's Thirteen
## 11374                                                                                                                                             Death Proof
## 11376                                                                                                                                   Live Free or Die Hard
## 11377                                                                                                                                            Transformers
## 11378                                                                                                               Harry Potter and the Order of the Phoenix
## 11379                                                                                                                                     Across the Universe
## 11380                                                                                                                                     Simpsons Movie, The
## 11381                                                                                                                                   Bourne Ultimatum, The
## 11382                                                                                                                                        Bratz: The Movie
## 11385                                                                                                                                             Rush Hour 3
## 11386                                                                                                                                          Rocket Science
## 11387                                                                                                                                           Planet Terror
## 11392                                                                                                                               Resident Evil: Extinction
## 11393                                                                                                                                         Good Luck Chuck
## 11395                                                                                                                                 Darjeeling Limited, The
## 11397                                                                                                                                                  Saw IV
## 11399                                                                                                                                       American Gangster
## 11400                                                                                                                      Before the Devil Knows You're Dead
## 11402                                                                                                                                          Be Kind Rewind
## 11403                                                                                                                                                 Beowulf
## 11404                                                                                                                                         Southland Tales
## 11406                                                                                                                                             I Am Legend
## 11407                                                                                                                            Futurama: Bender's Big Score
## 11408                                                                                                                                                    Juno
## 11409                                                                                                                                        Bucket List, The
## 11410                                                                                                          Sweeney Todd: The Demon Barber of Fleet Street
## 11411                                                                                                                      National Treasure: Book of Secrets
## 11413                                                                                                                     AVPR: Aliens vs. Predator - Requiem
## 11414                                                                                                                                             Cloverfield
## 11415                                                                                                                                         Rambo (Rambo 4)
## 11416                                                                                                                                       Meet the Spartans
## 11417                                                                                                                             Hellboy II: The Golden Army
## 11419                                                                                                                                                  Jumper
## 11420                                                                                                                                      Witless Protection
## 11421                                                                                                                                               10,000 BC
## 11422                                                                                                                                           Bank Job, The
## 11424                                                                                                                                          Love Guru, The
## 11427                                                                                                                                         Never Back Down
## 11428                                                                                                                                                      21
## 11429                                                                                                                                              Ruins, The
## 11430                                                                                                                               Forgetting Sarah Marshall
## 11431                                                                                                                                         Superhero Movie
## 11432                                                                                                               Harold & Kumar Escape from Guantanamo Bay
## 11433                                                                                                                                                Iron Man
## 11434                                                                                                                                                   Taken
## 11435                                                                                                                                               Fall, The
## 11436                                                                                                      Indiana Jones and the Kingdom of the Crystal Skull
## 11437                                                                                                                                           Kung Fu Panda
## 11438                                                                                                                           You Don't Mess with the Zohan
## 11440                                                                                                                                          Happening, The
## 11441                                                                                                                                                  WALL·E
## 11442                                                                                                                                                  Wanted
## 11443                                                                                                                                                 Hancock
## 11444                                                                                                                                               Get Smart
## 11447                                                                                                                   It's the Great Pumpkin, Charlie Brown
## 11449                                                                                                                                                Watchmen
## 11450                                                                                                                                                   Felon
## 11452                                                                                                                                       Pineapple Express
## 11453                                                                                                                                          Tropic Thunder
## 11454                                                                                                                                              Death Race
## 11455                                                                                                                                      Burn After Reading
## 11456                                                                                                                                          Disaster Movie
## 11457                                                                                                                                        Onion Movie, The
## 11458                                                                                                                                               Max Payne
## 11459                                                                                                                              Zack and Miri Make a Porno
## 11461                                                                                                                      High School Musical 3: Senior Year
## 11462                                                                                                                                 Futurama: Bender's Game
## 11463                                                                                                                                               Road, The
## 11465                                                                                                                                       Quantum of Solace
## 11466                                                                                                                                             Role Models
## 11467                                                                                                                                 Beverly Hills Chihuahua
## 11468                                                                                                                                                Splinter
## 11470                                                                                                                                                Twilight
## 11472                                                                                                                           Starship Troopers 3: Marauder
## 11478                                                                                                                                                Valkyrie
## 11480                                                                                                                 Poultrygeist: Night of the Chicken Dead
## 11482                                                                                                                                               Outlander
## 11483                                                                                                                                           Grudge 3, The
## 11485                                                                                                                    Futurama: Into the Wild Green Yonder
## 11486                                                                                                                              Afro Samurai: Resurrection
## 11488                                                                                                                    Ong-Bak 2: The Beginning (Ong Bak 2)
## 11490                                                                                                                               Anvil! The Story of Anvil
## 11491                                                                                                                                      Observe and Report
## 11492                                                                                                                                           Adventureland
## 11493                                                                                                            Fast & Furious (Fast and the Furious 4, The)
## 11498                                                                                                                                X-Men Origins: Wolverine
## 11499                                                                                                                                               Star Trek
## 11500                                                                                                                                  Great Buck Howard, The
## 11501                                                                                                                                         Angels & Demons
## 11502                                                                                                                                               Chop Shop
## 11503                                                                                                                                         Drag Me to Hell
## 11505                                      Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono)
## 11506                                                                                                                                             Dance Flick
## 11507                                                                                                                                           Hangover, The
## 11508                                                                                                                             Taking of Pelham 1 2 3, The
## 11510                                                                                                                                          Public Enemies
## 11511                                                                                                                               Daria: Is It College Yet?
## 11512                                                                                                                  Watchmen: Tales of the Black Freighter
## 11514                                                                                                                  Harry Potter and the Half-Blood Prince
## 11515                                                                                                                                              District 9
## 11517                                                                                                                                                 Troll 2
## 11518                                                                                                                                                       9
## 11521                                                                                                                                                 Extract
## 11522                                                                                                                                     Paranormal Activity
## 11526                                                                                                                                            Next Day Air
## 11528                                                                                                                               Where the Wild Things Are
## 11529                                                                                                                                     Law Abiding Citizen
## 11531                                                                                                                                          Black Dynamite
## 11533                                                                                                                                        Merry Madagascar
## 11538                                                                                                                                             Daybreakers
## 11539                                                                                                                                        Book of Eli, The
## 11544                                                                                                                                    From Paris with Love
## 11545                                                                                                                                       Brooklyn's Finest
## 11547                                                                                                                                         Leaves of Grass
## 11548                                                                                                                                    Slammin' Salmon, The
## 11549                                                                                                                                    Hot Tub Time Machine
## 11552                                                                                                                                  Five Minutes of Heaven
## 11553                                                                                                                                              Iron Man 2
## 11554                                                                                                                                              Four Lions
## 11555                                                                                                                                     You Don't Know Jack
## 11556                                                                                                                                              Robin Hood
## 11557                                                                                                                                    Get Him to the Greek
## 11558                                                                                                                                                  Splice
## 11559                                                                                                                                                    Exam
## 11560                                                                                                                                             A-Team, The
## 11562                                                                                                                                           Winter's Bone
## 11563                                                                                                                             Twilight Saga: Eclipse, The
## 11565                                                                                                                                               Predators
## 11568                                                                                                                                 Kids Are All Right, The
## 11569                                                                                                                           Serbian Film, A (Srpski film)
## 11572                                                                                                                                                Ip Man 2
## 11573                                                                                                                                        Expendables, The
## 11575                                                                                                                                          Animal Kingdom
## 11576                                                                                                                                    Piranha (Piranha 3D)
## 11577                                                                                      Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese)
## 11582                                                                                                                                               Let Me In
## 11583                                                                                                                                                   Devil
## 11584                                                                                                                                                  Kaboom
## 11585                                                                                                                                               127 Hours
## 11588                                                                                                  1990: The Bronx Warriors (1990: I guerrieri del Bronx)
## 11592                                                                                                                                         Loved Ones, The
## 11597                                                                                                                                        Cowboys & Aliens
## 11599                                                                                                                                                    Paul
## 11605                                                                                                                                                 Win Win
## 11607                                                                                                                 Fast Five (Fast and the Furious 5, The)
## 11612                                                                                                                                      Everything Must Go
## 11614                                                                                                                                         Horrible Bosses
## 11617                                                                                                                                                   Drive
## 11618                                                                                                                      Captain America: The First Avenger
## 11620                                                                                                                          Rise of the Planet of the Apes
## 11621                                                                                                                                           Another Earth
## 11623                                                                                                                                               Red State
## 11624                                                                                                                                               Contagion
## 11627                                                                                                                                                   50/50
## 11628                                                                                                                             We Need to Talk About Kevin
## 11629                                                                                                                                                 Carnage
## 11630                                                                                                                                             Margin Call
## 11632                                                                                                                                      Expendables 2, The
## 11637                                                                                                                                               Grey, The
## 11638                                                                                                                                         Innkeepers, The
## 11640                                                                                                                                             John Carter
## 11641                                                                                                                                                    Goon
## 11643                                                                                                                       American Reunion (American Pie 4)
## 11647                                                                                                                                              Battleship
## 11650                                                                                                                           Pirates! Band of Misfits, The
## 11654                                                                 Dragon Ball: Sleeping Princess in Devil's Castle (Doragon bôru: Majinjô no nemuri hime)
## 11655 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)
## 11656                                                               Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen)
## 11658                                                              Dragon Ball Z: The Return of Cooler (Doragon bôru Z 6: Gekitotsu! Hyakuoku pawâ no senshi)
## 11662                                                                                                                             Beasts of the Southern Wild
## 11663                                                                    Dragon Ball Z: Bio-Broly (Doragon bôru Z 11: Sûpâ senshi gekiha! Katsu no wa ore da)
## 11664                                                                  Dragon Ball Z: Fusion Reborn (Doragon bôru Z 12: Fukkatsu no fyushon!! Gokû to Bejîta)
## 11665                                                                                                                                            Total Recall
## 11666                                                Dragon Ball Z: Wrath of the Dragon (Doragon bôru Z 13: Ryûken bakuhatsu!! Gokû ga yaraneba dare ga yaru)
## 11669                                                           Dragon Ball GT: A Hero's Legacy (Doragon bôru GT: Gokû gaiden! Yûki no akashi wa sû-shin-chû)
## 11671                                                                                                                                           Campaign, The
## 11672                                                                                                                                              ParaNorman
## 11673                                                                                                                                                 Lawless
## 11674                                                                                                                                           Pitch Perfect
## 11676                                                                                                                                                   Dredd
## 11681                                                                                                                                     Killing Them Softly
## 11682                                                                                                                                          Wreck-It Ralph
## 11684                                                                                                                                                  Flight
## 11686                                                                                                                                                 Redline
## 11690                                                                                                                                            Jack Reacher
## 11693                                                                                                                                          Gangster Squad
## 11698                                                                                                                                                Oblivion
## 11699                                                                                                                                             Pain & Gain
## 11703                                                                                                                                       Great Gatsby, The
## 11705                                                                                                          Fast & Furious 6 (Fast and the Furious 6, The)
## 11707                                                                                                                                            Man of Steel
## 11709                                                                                                                                             Pacific Rim
## 11710                                                                                                                                             World War Z
## 11711                                                                                                                                                 Elysium
## 11712                                                                                                                                        Lone Ranger, The
## 11713                                                                                                                                       Fruitvale Station
## 11714                                                                                                                                          Conjuring, The
## 11715                                                                                                                                          Wolverine, The
## 11719                                                                                                                                                 Don Jon
## 11721                                                                                                                                            Ender's Game
## 11724                                                                                                                         The Hunger Games: Catching Fire
## 11725                                                                                                                    Hobbit: The Desolation of Smaug, The
## 11726                                                                                                                                                47 Ronin
## 11729                                                                                                                        Secret Life of Walter Mitty, The
## 11731                                                                                                                                           Lone Survivor
## 11732                                                                                                                       Anchorman 2: The Legend Continues
## 11734                                                                                                                           Dragon Ball Z: Battle of Gods
## 11735                                                                                                                             Dragon ball Z 04: Lord Slug
## 11736                                                                                        Dragon Ball: The Path to Power (Doragon bôru: Saikyô e no michi)
## 11737                                                                                                                                               Divergent
## 11740                                                                                                                                 Nymphomaniac: Volume II
## 11744                                                                                                                                          Need for Speed
## 11745                                                                                                                                               Bad Words
## 11746                                                                                                                                                    Noah
## 11749                                                                                                                                                   Locke
## 11750                                                                                                                                                    Lucy
## 11752                                                                                                                                                Godzilla
## 11753                                                                                                                                             Kelly & Cal
## 11754                                                                                                                                              Maleficent
## 11756                                                                                                                      Mission: Impossible - Rogue Nation
## 11759                                                                                                                                                 Boyhood
## 11760                                                                                                                                           Babadook, The
## 11763                                                                                                                          Dawn of the Planet of the Apes
## 11764                                                                                                                                     Purge: Anarchy, The
## 11767                                                                                                                            Teenage Mutant Ninja Turtles
## 11768                                                                                                                            Sin City: A Dame to Kill For
## 11770                                                                                                                                        Maze Runner, The
## 11772                                                                                                                                                    Tusk
## 11775                                                                                                                                               John Wick
## 11779                                                                                                                      Simpsons: The Longest Daycare, The
## 11780                                                                                                                                                       9
## 11781                                                                                                                                      Stonehearst Asylum
## 11783                                                                                                                   The Hunger Games: Mockingjay - Part 1
## 11784                                                                                                                                       Dear White People
## 11786                                                                                                                                          Jurassic World
## 11787                                                                                                                                              The Voices
## 11788                                                                                                               The Hobbit: The Battle of the Five Armies
## 11789                                                                                                                            Kingsman: The Secret Service
## 11790                                                                                                                                                 Chappie
## 11791                                                                                                                                              It Follows
## 11795                                                                                                                                                 Ant-Man
## 11797                                                                                                                                       X-Men: Apocalypse
## 11798                                                                                                                          Rudolph the Red-Nosed Reindeer
## 11799                                                                                                                                                    Dope
## 11801                                                                                                                                             Backcountry
## 11802                                                                                                                                                    Muck
## 11803                                                                                                                                             The Lobster
## 11805                                                                                                                                                 Minions
## 11806                                                                                                                                         The Jungle Book
## 11809                                                                                                                                                 Sicario
## 11810                                                                                                                                               The Witch
## 11812                                                                                                                                               Deathgasm
## 11815                                                                                                                                          Big Short, The
## 11816                                                                                                                                     10 Cloverfield Lane
## 11817                                                                                                                                    The Brothers Grimsby
## 11819                                                                                                                                                    Hush
## 11821                                                                                                                                          The Video Dead
## 11822                                                                                                                                         The Conjuring 2
## 11823                                                                                                                           Kingsglaive: Final Fantasy XV
## 11826                                                                                                                                                  Casino
## 11835                                                                                                                                         Pallbearer, The
## 11838                                                                                                                            Monty Python's Life of Brian
## 11839                                                                                                                              E.T. the Extra-Terrestrial
## 11849                                                                                                                                                 Titanic
## 11851                                                                                                                                             Deep Impact
## 11854                                                                                                                                                   Rocky
## 11861                                                                                                                                                      54
## 11866                                                                                                                                          Wing Commander
## 11870                                                                                                                                                Superman
## 11874                                                                                                                                               Toy Story
## 11875                                                                                                                                        Grumpier Old Men
## 11880                                                                                                                                                Stargate
## 11882                                                                                                                                             Client, The
## 11885                                                                                                                                                Maverick
## 11887                                                                                                                                                 Timecop
## 11888                                                                                                                                          Demolition Man
## 11889                                                                                                                                           Jurassic Park
## 11890                                                                                                                                              Piano, The
## 11891                                                                                                                               Robin Hood: Men in Tights
## 11895                                                                                                                                                  Batman
## 11897                                                                                                                                                  Eraser
## 11898                                                                                                                                               Lone Star
## 11899                                                                                                                                          Godfather, The
## 11900                                                                                                                               Island of Dr. Moreau, The
## 11901                                                                                                                                     Singin' in the Rain
## 11908                                                                                                                            Monty Python's Life of Brian
## 11909                                                                                                                                              Abyss, The
## 11911                                                                                                                                     Princess Bride, The
## 11913                                                                                      Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 11914                                                                                                                                   To Kill a Mockingbird
## 11915                                                                                                                                          Apocalypse Now
## 11918                                                                                                                                 Godfather: Part II, The
## 11919                                                                                                                                                 Amadeus
## 11920                                                                                                                                              Sting, The
## 11921                                                                                                                                         Terminator, The
## 11925                                                                                                                                           Groundhog Day
## 11931                                                                                                                                             Real Genius
## 11932                                                                                                                                Star Trek: First Contact
## 11933                                                                                                                                             Sling Blade
## 11934                                                                                                                           Star Trek IV: The Voyage Home
## 11935                                                                                                                                            Benny & Joon
## 11936                                                                                                             Austin Powers: International Man of Mystery
## 11937                                                                                                                               Men in Black (a.k.a. MIB)
## 11940                                                                                                                                                 Titanic
## 11941                                                                                                                                              Armageddon
## 11942                                                                                                                                               Labyrinth
## 11943                                                                                                                                             Poltergeist
## 11944                                                                                                                                                Gremlins
## 11945                                                                                                                                            Goonies, The
## 11947                                                                                                                             Back to the Future Part III
## 11948                                                                                                                    Indiana Jones and the Temple of Doom
## 11949                                                                                                                                           Weird Science
## 11951                                                                                                                                                   Blade
## 11952                                                                                                                                             Beetlejuice
## 11954                                                                                                                                                Rounders
## 11957                                                                                                                          2010: The Year We Make Contact
## 11958                                                                                                                                           Bug's Life, A
## 11959                                                                                                                                                  Fletch
## 11961                                                                                                                                         You've Got Mail
## 11965                                                                                                                                                eXistenZ
## 11967                                                                                                                                          Arlington Road
## 11968                                                                                                                                Blair Witch Project, The
## 11969                                                                                                                                                     Big
## 11971                                                                                                                                            Total Recall
## 11972                                                                                                                                              Fight Club
## 11973                                                                                                                                        Live and Let Die
## 11975                                                                                                                                            Falling Down
## 11977                                                                                                                                                Scrooged
## 11978                                                                                                                                         Green Mile, The
## 11979                                                                                                                                        Scent of a Woman
## 11981                                                                                                                                               Frequency
## 11983                                                                                                                                                   X-Men
## 11984                                                                                                                                        Meet the Parents
## 11986                                                                                                                                      Enemy at the Gates
## 11988                                                                                                                                                   Shrek
## 11989                                                                                                                        Bill & Ted's Excellent Adventure
## 11994                                                                                                                              Bill & Ted's Bogus Journey
## 11996                                                                                                                                              Brainstorm
## 11997                                                                                                                                       Time Machine, The
## 12001                                                                                                                                                Identity
## 12002                                                                                                                      Terminator 3: Rise of the Machines
## 12007                                                                                                                                               Explorers
## 12011                                                                                                                                          Blade: Trinity
## 12012                                                                                                                                             Jacket, The
## 12018                                                                                                                                    Hills Have Eyes, The
## 12020                                                                                                                                 Quick and the Dead, The
## 12021                                                                                                                                      Secret Garden, The
## 12025                                                                                                                                            My Left Foot
## 12026                                                                                                                                    Arsenic and Old Lace
## 12029                                                                                                                                               Peter Pan
## 12032                                                                                                                                         Blazing Saddles
## 12034                                                                                                      How the Grinch Stole Christmas (a.k.a. The Grinch)
## 12037                                                                                                                                           Blood Diamond
## 12038                                                                                                                                                Stardust
## 12040                                                                                                                                                    Heat
## 12041                                                                                                                                               GoldenEye
## 12043                                                                                                                                                    Babe
## 12044                                                                                                                                                Clueless
## 12046                                                                                                                                      Mr. Holland's Opus
## 12047                                                                                                                                     From Dusk Till Dawn
## 12048                                                                                                                                               Screamers
## 12049                                                                                                                                            Broken Arrow
## 12050                                                                                                                                              Braveheart
## 12052                                                                                                                                           Birdcage, The
## 12053                                                                                                                                            Crimson Tide
## 12054                                                                                                                                               Desperado
## 12055                                                                                                                              Die Hard: With a Vengeance
## 12056                                                                                                                                             Judge Dredd
## 12057                                                                                                                                                Net, The
## 12058                                                                                                                                              Waterworld
## 12060                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 12061                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 12063                                                                                                                                    Natural Born Killers
## 12064                                                                                                                                                Outbreak
## 12066                                                                                                                                            Pulp Fiction
## 12069                                                                                                                                  Star Trek: Generations
## 12070                                                                                                                                 While You Were Sleeping
## 12071                                                                                                                              Ace Ventura: Pet Detective
## 12072                                                                                                                                Clear and Present Danger
## 12074                                                                                                                                            Forrest Gump
## 12075                                                                                                                                          Lion King, The
## 12076                                                                                                                                               Mask, The
## 12077                                                                                                                                                   Speed
## 12078                                                                                                                                               True Lies
## 12079                                                                                                                                                Airheads
## 12080                                                                                                                                          Demolition Man
## 12081                                                                                                                                           Fugitive, The
## 12082                                                                                                                                           Jurassic Park
## 12083                                                                                                                                          Mrs. Doubtfire
## 12084                                                                                                                                            Blade Runner
## 12086                                                                                                                                              Home Alone
## 12087                                                                                                                                                   Ghost
## 12088                                                                                                                                                 Aladdin
## 12090                                                                                                                                      Dances with Wolves
## 12091                                                                                                                                                  Batman
## 12092                                                                                                                               Silence of the Lambs, The
## 12093                                                                                                                                    Beauty and the Beast
## 12094                                                                                                                                            Pretty Woman
## 12095                                                                                                                                                   Fargo
## 12096                                                                                                                                     Mission: Impossible
## 12097                                                                                                         Wallace & Gromit: The Best of Aardman Animation
## 12098                                                                                                                                               Rock, The
## 12099                                                                                                                                                 Twister
## 12101                                                                                                                         Wallace & Gromit: A Close Shave
## 12103                                                                                                                           Independence Day (a.k.a. ID4)
## 12104                                                                                                                               Crow: City of Angels, The
## 12105                                                                                                                                        Escape from L.A.
## 12107                                                                                                                                   2001: A Space Odyssey
## 12108                                                                                                                                                Die Hard
## 12110                                                                                                                                    Fish Called Wanda, A
## 12112                                                                                                                              E.T. the Extra-Terrestrial
## 12115                                                                                                                    Wallace & Gromit: The Wrong Trousers
## 12122                                                                                                                                          Apocalypse Now
## 12124                                                                                                                                                   Alien
## 12126                                                                                                                                                     Ran
## 12128                                                                                                                                       Full Metal Jacket
## 12129                                                                                                                Grand Day Out with Wallace and Gromit, A
## 12131                                                                                                                                            Shining, The
## 12134                                                                                                                                      Back to the Future
## 12135                                                                                                                                                   Akira
## 12136                                                                                                                                      Young Frankenstein
## 12140                                                                                                                                                  Grease
## 12141                                                                                                                                                    Jaws
## 12142                                                                                                                                           Jerry Maguire
## 12145                                                                                                                                                 Con Air
## 12146                                                                                                                               Men in Black (a.k.a. MIB)
## 12147                                                                                                                                                 Contact
## 12148                                                                                                                                                   Spawn
## 12150                                                                                                                                                 Gattaca
## 12152                                                                                                                                        Truman Show, The
## 12153                                                                                                                                       Good Will Hunting
## 12154                                                                                                                                                 Titanic
## 12155                                                                                                                                       Big Lebowski, The
## 12156                                                                                                                                     Blues Brothers 2000
## 12157                                                                                                                                                  Sphere
## 12158                                                                                                                                      As Good as It Gets
## 12159                                                                                                                                              Armageddon
## 12160                                                                                                                            There's Something About Mary
## 12161                                                                                                                                                Rain Man
## 12163                                                                                                                                     Breakfast Club, The
## 12164                                                                                                                                           Lethal Weapon
## 12165                                                                                                                                         Lethal Weapon 2
## 12168                                                                                                                             Back to the Future Part III
## 12169                                                                                                                                                    Dune
## 12170                                                                                                                                Honey, I Shrunk the Kids
## 12171                                                                                                                                     Little Mermaid, The
## 12179                                                                                                                                     Edward Scissorhands
## 12181                                                                                                                                           Bug's Life, A
## 12182                                                                                                                                                Rushmore
## 12183                                                                                                                                         Howard the Duck
## 12185                                                                                                                                             Logan's Run
## 12186                                                                                                                                      Planet of the Apes
## 12187                                                                                                                                        Cruel Intentions
## 12190                                                                                                                                                Election
## 12192                                                                                                               Star Wars: Episode I - The Phantom Menace
## 12193                                                                                                                                                Superman
## 12194                                                                                                                                             Superman II
## 12195                                                                                                                                            Notting Hill
## 12198                                                                                                                                            American Pie
## 12199                                                                                                                                      Muppets From Space
## 12200                                                                                                                                Blair Witch Project, The
## 12204                                                                                                                                                     Big
## 12205                                                                                                                                       Universal Soldier
## 12206                                                                                                                                         American Beauty
## 12207                                                                                                                                            Total Recall
## 12211                                                                                                                                                 RoboCop
## 12212                                                                                                                                               RoboCop 2
## 12213                                                                                                                                Who Framed Roger Rabbit?
## 12218                                                                                                                                           Sleepy Hollow
## 12219                                                                                                                                             Toy Story 2
## 12221                                                                                                                                  Cider House Rules, The
## 12222                                                                                                                                            Galaxy Quest
## 12225                                                                                                                                Buffy the Vampire Slayer
## 12228                                                                                                                                 Great Muppet Caper, The
## 12229                                                                                                                             Muppets Take Manhattan, The
## 12230                                                                                                                                         Erin Brockovich
## 12231                                                                                                                                         Thelma & Louise
## 12233                                                                                                                                       Creature Comforts
## 12234                                                                                                                            Teenage Mutant Ninja Turtles
## 12235                                                                                                 Teenage Mutant Ninja Turtles II: The Secret of the Ooze
## 12238                                                                                                                                               Gladiator
## 12239                                                                                                                                  Mission: Impossible II
## 12243                                                                                                                              Mad Max Beyond Thunderdome
## 12244                                                                                                                                             Chicken Run
## 12245                                                                                                                                            Patriot, The
## 12247                                                                                                                                             Bring It On
## 12248                                                                                                                                           Almost Famous
## 12249                                                                                                                                        Charlie's Angels
## 12251                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 12253                                                                                                                              O Brother, Where Art Thou?
## 12254                                                                                                                    Don't Tell Mom the Babysitter's Dead
## 12255                                                                                                                                             Cherry 2000
## 12256                                                                                                                                   Bridget Jones's Diary
## 12257                                                                                                                                      Mummy Returns, The
## 12258                                                                                                                                                   Shrek
## 12259                                                                                                                       Final Fantasy: The Spirits Within
## 12260                                                                                                                                          Legally Blonde
## 12263                                                                                                                          Return of the Living Dead, The
## 12265                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 12266                                                                                                                                          Ocean's Eleven
## 12267                                                                                                                                   Royal Tenenbaums, The
## 12268                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 12269                                                                                                                                       Time Machine, The
## 12271                                                                                                                                                Blade II
## 12273                                                                                                            Star Wars: Episode II - Attack of the Clones
## 12274                                                                                                                                         Minority Report
## 12275                                                                                                                                                   Signs
## 12278                                                                                                                                            Strange Brew
## 12279                                                                                                                                   Bowling for Columbine
## 12281                                                                                                                 Harry Potter and the Chamber of Secrets
## 12283                                                                                                                                       Last Unicorn, The
## 12284                                                                                                                                               Daredevil
## 12285                                                                                                                                             Phone Booth
## 12286                                                                                                                                   Andromeda Strain, The
## 12287                                                                                                                                          Fahrenheit 451
## 12288                                                                                                                                                Wiz, The
## 12291                                                                                                                                    Matrix Reloaded, The
## 12292                                                                                                                                            Finding Nemo
## 12293                                                                                                                      Terminator 3: Rise of the Machines
## 12296                                                                                                                                                THX 1138
## 12297                                                                                                                                       Pink Panther, The
## 12301                                                                                                                                       Kill Bill: Vol. 1
## 12302                                                                                                                                 Matrix Revolutions, The
## 12304                                                                                                                                       Last Samurai, The
## 12306                                                                                                                                                Paycheck
## 12311                                                                                                                                       Kill Bill: Vol. 2
## 12313                                                                                                                                               Bedazzled
## 12320                                                                                                                Harry Potter and the Prisoner of Azkaban
## 12322                                                                                                                                         Fahrenheit 9/11
## 12324                                                                                                                                                I, Robot
## 12327                                                                                                                                                     Ray
## 12329                                                                                                                                Twilight Zone: The Movie
## 12330                                                                                                                                         Nuns on the Run
## 12331                                                                                                                                       Bring It On Again
## 12333                                                                                                                                                 Wizards
## 12334                                                                                                                                                 Elektra
## 12336                                                                                                                                Kung Fu Hustle (Gong fu)
## 12338                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 12340                                                                                                                                             Island, The
## 12342                                                                                                    Family Guy Presents Stewie Griffin: The Untold Story
## 12345                                                                                                        Wallace & Gromit in The Curse of the Were-Rabbit
## 12346                                                                                                                                            Descent, The
## 12349                                                                                                                                   X-Men: The Last Stand
## 12351                                                                                                                                             Half Nelson
## 12353                                                                                                                                                   Sicko
## 12354                                                                                                                                                 Jumanji
## 12358                                                                                                                                                    Babe
## 12362                                                                                                                                              Braveheart
## 12363                                                                                                                                             Taxi Driver
## 12365                                                                                                                                               Apollo 13
## 12379                                                                                                                                          Lion King, The
## 12381                                                                                                                                           Jurassic Park
## 12385                                                                                                                                                 Aladdin
## 12392                                                                                                                                    Nutty Professor, The
## 12394                                                                                                                                       Wizard of Oz, The
## 12395                                                                                                                                   2001: A Space Odyssey
## 12397                                                                                                                                          Reservoir Dogs
## 12399                                                                                                                              E.T. the Extra-Terrestrial
## 12400                                                                                                                         Monty Python and the Holy Grail
## 12403                                                                                                                                     Clockwork Orange, A
## 12407                                                                                                                                                   Alien
## 12410                                                                                                                                           Groundhog Day
## 12413                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 12419                                                                                                                           Star Trek IV: The Voyage Home
## 12422                                                                                                             Austin Powers: International Man of Mystery
## 12425                                                                                                                               Men in Black (a.k.a. MIB)
## 12427                                                                                                                                               G.I. Jane
## 12433                                                                                                                                        Truman Show, The
## 12444                                                                                                                            There's Something About Mary
## 12449                                                                                                                                     Saving Private Ryan
## 12450                                                                               Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 12465                                                                                                                          Rocky Horror Picture Show, The
## 12466                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 12476                                                                                                                                   House on Haunted Hill
## 12486                                                                                                                                                 Network
## 12487                                                                                                                                    Virgin Suicides, The
## 12492                                                                                                                                      Perfect Storm, The
## 12498                                                                                                                                            Billy Elliot
## 12499                                                                                                                                        Charlie's Angels
## 12502                                                                                                                                             Unbreakable
## 12506                                                                                                                                   Dude, Where's My Car?
## 12507                                                                                                                                         What Women Want
## 12508                                                                                                                                               Cast Away
## 12514                                                                                                                                                   Shrek
## 12524                                                                                                                                        Jeepers Creepers
## 12526                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 12536                                                                                                                                           Reign of Fire
## 12540                                                                                                                                              Ghost Ship
## 12548                                                                                                                                            Finding Nemo
## 12550                                                                                                                      Terminator 3: Rise of the Machines
## 12551                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 12567                                                                                                                Harry Potter and the Prisoner of Azkaban
## 12568                                                                                                                                           Super Size Me
## 12575                                                                                                                                             Grudge, The
## 12576                                                                                                                                       National Treasure
## 12583                                                                                                                                       War of the Worlds
## 12587                                                                                                                     Harry Potter and the Goblet of Fire
## 12589                                                                                                                                          V for Vendetta
## 12594                                                                                                                                           Casino Royale
## 12617                                                                                                                                               Toy Story
## 12618                                                                                                                                                 Jumanji
## 12619                                                                                                                                                 Sabrina
## 12620                                                                                                                                               Apollo 13
## 12621                                                                                                                      Star Wars: Episode IV - A New Hope
## 12622                                                                                                                              Ace Ventura: Pet Detective
## 12624                                                                                                                                               Mask, The
## 12625                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 12626                                                                                                                                           Jurassic Park
## 12627                                                                                                                                               RoboCop 3
## 12628                                                                                                                                                   Ghost
## 12629                                                                                                                                                 Aladdin
## 12630                                                                                                                                                  Batman
## 12631                                                                                                                                     Mission: Impossible
## 12632                                                                                                                                                 Twister
## 12633                                                                                                                                           Trainspotting
## 12634                                                                                                                           Independence Day (a.k.a. ID4)
## 12635                                                                                                                                   2001: A Space Odyssey
## 12636                                                                                                                              E.T. the Extra-Terrestrial
## 12637                                                                                                                                                 Top Gun
## 12638                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 12639                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 12640                                                                                                                      Indiana Jones and the Last Crusade
## 12641                                                                                                             Austin Powers: International Man of Mystery
## 12642                                                                                                                               Men in Black (a.k.a. MIB)
## 12643                                                                                                                                                 Titanic
## 12644                                                                                                                                              Armageddon
## 12645                                                                                                                                 Poseidon Adventure, The
## 12646                                                                                                                                 Gods Must Be Crazy, The
## 12647                                                                                                                               Karate Kid, Part III, The
## 12648                                                                                                                                             Matrix, The
## 12649                                                                                                               Star Wars: Episode I - The Phantom Menace
## 12650                                                                                                                                                Superman
## 12651                                                                                                                                             Superman II
## 12652                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 12653                                                                                                                                Ferris Bueller's Day Off
## 12654                                                                                                                                               Bamba, La
## 12655                                                                                                                                               Gladiator
## 12656                                                                                                                                              Predator 2
## 12657                                                                                                                                                 Mad Max
## 12658                                                                                                                                                   X-Men
## 12659                                                                                                                 Godzilla 2000 (Gojira ni-sen mireniamu)
## 12660                                                                                                                                                   Shrek
## 12661                                                                                                                                          Monsters, Inc.
## 12662                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 12663                                                                                                                                              Spider-Man
## 12664                                                                                                                  Lord of the Rings: The Two Towers, The
## 12665                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 12666                                                                                                          Lord of the Rings: The Return of the King, The
## 12667                                                                                                                                                  Robots
## 12668                                                                                                                              Good Night, and Good Luck.
## 12669                                                                                                                                   Underworld: Evolution
## 12670                                                                                                                                             Silent Hill
## 12671                                                                                                                                           Blood Diamond
## 12672                                                                                                                                                 Jumanji
## 12675                                                                                                                                               GoldenEye
## 12677                                                                                                                                             Money Train
## 12682                                                                                                                           How to Make an American Quilt
## 12683                                                                                                                                     Usual Suspects, The
## 12685                                                                                                                                            Nick of Time
## 12686                                                                                                                                     Vampire in Brooklyn
## 12687                                                                                                                                            Broken Arrow
## 12688                                                                                                                                               City Hall
## 12689                                                                                                                          Bridges of Madison County, The
## 12691                                                                                                                                           Birdcage, The
## 12693                                                                                                                                     Scarlet Letter, The
## 12695                                                                                                                                             Heavy Metal
## 12700                                                                                                                                              Striptease
## 12705                                                                                                                                              Phenomenon
## 12711                                                                                                                                                    Safe
## 12713                                                                                                                Three Colors: White (Trzy kolory: Bialy)
## 12714                                                                                                                               Shawshank Redemption, The
## 12715                                                                                                              In the Realm of the Senses (Ai no corrida)
## 12716                                                                                                                                              Piano, The
## 12721                                                                                                                                     Singin' in the Rain
## 12727                                                                                                                 Manon of the Spring (Manon des sources)
## 12728                                                                                                                         Monty Python and the Holy Grail
## 12732                                                                                      Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 12734                                                                                                                                              Goodfellas
## 12741                                                                                                                      Unbearable Lightness of Being, The
## 12743                                                                                                                         Dracula (Bram Stoker's Dracula)
## 12745                                                                                                                                  Picnic at Hanging Rock
## 12750                                                                                                                                         You've Got Mail
## 12761                                                                                                                                               Gladiator
## 12768                                                                                                                                            Billy Elliot
## 12780                                                                                                                                            Donnie Darko
## 12781                                                                                               That Obscure Object of Desire (Cet obscur objet du désir)
## 12783                                                                                                                                          Don't Look Now
## 12786                                                                                                                                         Simone (S1m0ne)
## 12788                                                                                                                                          White Oleander
## 12792                                                                                                                             Irreversible (Irréversible)
## 12793                                                                                                                                              Straw Dogs
## 12803                                                                                                                                           Dreamers, The
## 12810                                                                                                                                           Genghis Blues
## 12814                                                                       Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom)
## 12821                                                                                                                                           Notebook, The
## 12835                                                                                                               Green Street Hooligans (a.k.a. Hooligans)
## 12837                                                                                                                                           Tony Takitani
## 12838                                                                                                                                                  Volver
## 12841                                                                                                                                        Illusionist, The
## 12842                                                                                                                                           Fountain, The
## 12847                                                                                                                                           Paranoid Park
## 12850                                                                                                                                Vicky Cristina Barcelona
## 12854                                                                                                                                                    Nana
## 12857                                                                                                                                    (500) Days of Summer
## 12859                                                                                                                       Still Walking (Aruitemo aruitemo)
## 12860                                                                                                                                                  Avatar
## 12863                                                                                                                                               Inception
## 12864                                                                                                                                     Social Network, The
## 12866                                                                                                                                              Black Swan
## 12868                                                                                                                                               True Grit
## 12869                                                                                                                                               GoldenEye
## 12870                                                                                                                                              Get Shorty
## 12877                                                                                                                                          Batman Forever
## 12878                                                                                                                                                   Congo
## 12879                                                                                                                              Die Hard: With a Vengeance
## 12880                                                                                                                                              Waterworld
## 12884                                                                                                                                    Natural Born Killers
## 12885                                                                                                                                                Outbreak
## 12888                                                                                                                                                Stargate
## 12890                                                                                                                                  Star Trek: Generations
## 12892                                                                                                                              Ace Ventura: Pet Detective
## 12895                                                                                                                                               Mask, The
## 12896                                                                                                                                               True Lies
## 12897                                                                                                                                    Addams Family Values
## 12898                                                                                                                                   Beverly Hills Cop III
## 12899                                                                                                                                             Cliffhanger
## 12900                                                                                                                                               Coneheads
## 12901                                                                                                                                               Firm, The
## 12902                                                                                                                                           Fugitive, The
## 12905                                                                                                                                                  Batman
## 12909                                                                                                                                              Get Shorty
## 12912                                                                                                                                                  Friday
## 12913                                                                                                                                           Bottle Rocket
## 12916                                                                                                                                                 Rob Roy
## 12922                                                                                                                                        Corrina, Corrina
## 12925                                                                                                                                                   Speed
## 12927                                                                                                                                           Jurassic Park
## 12929                                                                                                                                              Serial Mom
## 12934                                                                                                                                        Frighteners, The
## 12946                                                                                                                                         Terminator, The
## 12956                                                                                                                                             Sling Blade
## 12967                                                                                                                                              Armageddon
## 12968                                                                                                                                          Small Soldiers
## 12969                                                                                                                            There's Something About Mary
## 12971                                                                                                                                           Lethal Weapon
## 12972                                                                                                                                               Jerk, The
## 12979                                                                                                                                                  Fletch
## 12983                                                                                                                                             Matrix, The
## 12998                                                                                                                                                Scrooged
## 13000                                                                                                                                                Magnolia
## 13003                                                                                                                            Fast Times at Ridgemont High
## 13005                                                                                                                                           Wayne's World
## 13021                                                                                                                                            Patriot, The
## 13025                                                                                                                 Naked Gun 2 1/2: The Smell of Fear, The
## 13027                                                                                                                                            Best in Show
## 13028                                                                                                                                               Tigerland
## 13029                                                                                                                                       Miss Congeniality
## 13034                                                                                                                                     Freddy Got Fingered
## 13039                                                                                                                                                   Twins
## 13040                                                                                                                        Bill & Ted's Excellent Adventure
## 13043                                                                                                                                               Novocaine
## 13045                                                                                                                                             Vanilla Sky
## 13051                                                                                                                                         Minority Report
## 13052                                                                                                                                        Ladykillers, The
## 13053                                                                                                                                            Strange Brew
## 13055                                                                                                                                        Punch-Drunk Love
## 13056                                                                                                                                              Adaptation
## 13057                                                                                                                                          Bruce Almighty
## 13058                                                                                                                                                 Tremors
## 13064                                                                                                                        Dodgeball: A True Underdog Story
## 13068                                                                                                                                 40-Year-Old Virgin, The
## 13069                                                                                                                                               Toy Story
## 13073                                                                                                                                            Forrest Gump
## 13074                                                                                                                              Terminator 2: Judgment Day
## 13077                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 13079                                                                                                                               Hunt for Red October, The
## 13080                                                                                                                                     Saving Private Ryan
## 13081                                                                                                                                         Few Good Men, A
## 13082                                                                                                                                      American History X
## 13084                                                                                                                                         American Beauty
## 13087                                                                                                                                             Toy Story 2
## 13090                                                                                                                                  Mission: Impossible II
## 13093                                                                                                                                      Me, Myself & Irene
## 13096                                                                                                                                             Unbreakable
## 13097                                                                                                                                         Family Man, The
## 13099                                                                                                                                      Mummy Returns, The
## 13101                                                                                                                                            Pearl Harbor
## 13102                                                                                                                                             Rush Hour 2
## 13106                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 13111                                                                                                                                    Bourne Identity, The
## 13112                                                                                                                                         Minority Report
## 13113                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 13114                                                                                                                             Austin Powers in Goldmember
## 13115                                                                                                                                              Red Dragon
## 13117                                                                                                                                     Catch Me If You Can
## 13119                                                                                                                                        Anger Management
## 13120                                                                                                                                    Matrix Reloaded, The
## 13121                                                                                                                                          Bruce Almighty
## 13122                                                                                                                                            Finding Nemo
## 13123                                                                                                                                        Italian Job, The
## 13124                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 13127                                                                                                                                    The Butterfly Effect
## 13128                                                                                                                                          50 First Dates
## 13131                                                                                                                                 Day After Tomorrow, The
## 13133                                                                                                                                            White Chicks
## 13134                                                                                                                                                I, Robot
## 13135                                                                                                                                   Bourne Supremacy, The
## 13137                                                                                                                                       National Treasure
## 13138                                                                                                                                        Meet the Fockers
## 13140                                                                                                                                                Sin City
## 13143                                                                                                                                        Wedding Crashers
## 13145                                                                                                                                             Lord of War
## 13146                                                                                                                     Harry Potter and the Goblet of Fire
## 13147                                                                                                                                              Inside Man
## 13148                                                                                                                                      Da Vinci Code, The
## 13150                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 13151                                                                                                                Pirates of the Caribbean: At World's End
## 13152                                                                                                               Harry Potter and the Order of the Phoenix
## 13153                                                                                                                                     Simpsons Movie, The
## 13155                                                                                                                                             I Am Legend
## 13158                                                                                                                                                Iron Man
## 13160                                                                                                                                                  Ip Man
## 13161                                                                                                                                    Inglourious Basterds
## 13162                                                                                                                                               Star Trek
## 13164                                                                                                                  Harry Potter and the Half-Blood Prince
## 13169                                                                                                                                                     Red
## 13170                                                                              Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro)
## 13172                                                                                                                                        The Hunger Games
## 13174                                                                                                                        Girl with the Dragon Tattoo, The
## 13177                                                                                                                                                 Skyfall
## 13178                                                                                                                                        Django Unchained
## 13179                                                                                                                                              Iron Man 3
## 13180                                                                                                                         The Hunger Games: Catching Fire
## 13186                                                                                                                                        Grumpier Old Men
## 13187                                                                                                                             Father of the Bride Part II
## 13189                                                                                                                          Ace Ventura: When Nature Calls
## 13191                                                                                                                                               Assassins
## 13192                                                                                                                                           Mortal Kombat
## 13193                                                                                                                              Postman, The (Postino, Il)
## 13196                                                                                                                                                  Casper
## 13197                                                                                                                                                   Congo
## 13200                                                                                                                                                 Hackers
## 13201                                                                                                                                         Johnny Mnemonic
## 13203                                                                                                                                       Lord of Illusions
## 13204                                                                                                                 Mighty Morphin Power Rangers: The Movie
## 13205                                                                                                                                                Net, The
## 13206                                                                                                                                             Nine Months
## 13207                                                                                                                                           Prophecy, The
## 13208                                                                                                                                                 Species
## 13209                                                                                                        To Wong Foo, Thanks for Everything! Julie Newmar
## 13210                                                                                                                                              Waterworld
## 13211                                                                                                                                           Billy Madison
## 13213                                                                                                                                       Dolores Claiborne
## 13216                                                                                                                                      Heavenly Creatures
## 13217                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 13220                                                                                                                                            Little Women
## 13221                                                                                                                                              Mixed Nuts
## 13222                                                                                                                                  Miracle on 34th Street
## 13223                                                                                                                                                    Nell
## 13225                                                                                                                                           Poison Ivy II
## 13233                                                                                                                                               Tank Girl
## 13236                                                                                                                                 While You Were Sleeping
## 13239                                                                                                                                             Client, The
## 13240                                                                                                                                        Flintstones, The
## 13242                                                                                                                             Four Weddings and a Funeral
## 13243                                                                                                                                          Lion King, The
## 13244                                                                         Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 13247                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 13248                                                                                                                                             Richie Rich
## 13251                                                                                   Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 13253                                                                                                                                        Another Stakeout
## 13254                                                                                                                                   Beverly Hills Cop III
## 13256                                                                                                                                             Cliffhanger
## 13257                                                                                                                                     Cops and Robbersons
## 13259                                                                                                                                               Firm, The
## 13261                                                                                                                                    Hot Shots! Part Deux
## 13262                                                                                                                                    Hudsucker Proxy, The
## 13264                                                                                                                                        Last Action Hero
## 13266                                                                                                                                            Philadelphia
## 13267                                                                                                                                               RoboCop 3
## 13268                                                                                                                               Robin Hood: Men in Tights
## 13269                                                                                                                                        Schindler's List
## 13271                                                                                                                                       Super Mario Bros.
## 13273                                                                                                                         Nightmare Before Christmas, The
## 13275                                                                                                                                            True Romance
## 13276                                                                                                                                              Home Alone
## 13277                                                                                                                                                   Ghost
## 13278                                                                                                                                                 Aladdin
## 13280                                                                                                                                      Dances with Wolves
## 13283                                                                                                                         Snow White and the Seven Dwarfs
## 13284                                                                                                                                    Beauty and the Beast
## 13286                                                                                                                                             Heavy Metal
## 13289                                                                                                                                    Operation Dumbo Drop
## 13290                                                                                                                                        Oliver & Company
## 13292                                                                                                                                               Toy Story
## 13293                                                                                                                                 American President, The
## 13297                                                                                                                          Ace Ventura: When Nature Calls
## 13298                                                                                                                                              Get Shorty
## 13299                                                                                                                                       Leaving Las Vegas
## 13305                                                                                                                                                    Babe
## 13310                                                                                                                           How to Make an American Quilt
## 13313                                                                                                                                      Mr. Holland's Opus
## 13316                                                                                                                                         Misérables, Les
## 13318                                                                                                                                Antonia's Line (Antonia)
## 13321                                                                                                                          Bridges of Madison County, The
## 13322                                                                                                                                              Braveheart
## 13324                                                                                                                                Boys of St. Vincent, The
## 13325                                                                                                                 Star Maker, The (Uomo delle stelle, L')
## 13326                                                                                                                              NeverEnding Story III, The
## 13328                                                                                                                                  Brothers McMullen, The
## 13333                                                                                                                                                Clockers
## 13334                                                                                                                                                   Congo
## 13335                                                                                                                                                   Crumb
## 13337                                                                                                                                         Johnny Mnemonic
## 13339                                                                                                                                                Mallrats
## 13340                                                                                                                                             Nine Months
## 13342                                                                                                                                            Strange Days
## 13344                                                                                                                                              Waterworld
## 13348                                                                                                                                        Don Juan DeMarco
## 13350                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 13354                                                                                                                                             Hoop Dreams
## 13357                                                                                                                                                    I.Q.
## 13361                                                                                                                                            Little Women
## 13362                                                                                                                                       Ladybird Ladybird
## 13364                                                                                                                                     Legends of the Fall
## 13367                                                                                                              Mary Shelley's Frankenstein (Frankenstein)
## 13368                                                                                                                                                    Nell
## 13369                                                                                                                                      Nina Takes a Lover
## 13370                                                                                                                                    Natural Born Killers
## 13372                                                                                                                                                Outbreak
## 13376                                                                                                                         Queen Margot (Reine Margot, La)
## 13377                                                                                                                           Ready to Wear (Pret-A-Porter)
## 13381                                                                                                                               Secret of Roan Inish, The
## 13382                                                                                                                                                Stargate
## 13385                                                                                                            Strawberry and Chocolate (Fresa y chocolate)
## 13386                                                                                                                                          Sum of Us, The
## 13388                                                                                                                                               Tom & Viv
## 13389                                                                                                                                   Village of the Damned
## 13393                                                                                                                                   Bullets Over Broadway
## 13395                                                                                                                                        Jungle Book, The
## 13399                                                                                                                                           Reality Bites
## 13400                                                                                   Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 13401                                                                                                                                Beverly Hillbillies, The
## 13402                                                                                                                                           Boxing Helena
## 13405                                                                                                                  Farewell My Concubine (Ba wang bie ji)
## 13406                                                                                                                                               Firm, The
## 13408                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 13409                                                                                                                               House of the Spirits, The
## 13412                                                                                                                          What's Love Got to Do with It?
## 13413                                                                                                                                           Jurassic Park
## 13414                                                                                                                                              Kalifornia
## 13417                                                                                                                                          Mrs. Doubtfire
## 13419                                                                                                                                            Philadelphia
## 13423                                                                                                                                      Secret Garden, The
## 13427                                                                                                                                    Sleepless in Seattle
## 13432                                                                                                                                      Bhaji on the Beach
## 13434                                                                                                                                              Home Alone
## 13435                                                                                                                                                   Ghost
## 13436                                                                                                                                                 Aladdin
## 13437                                                                                                                              Terminator 2: Judgment Day
## 13438                                                                                                                                      Dances with Wolves
## 13439                                                                                                                                                  Batman
## 13442                                                                                                                                    Beauty and the Beast
## 13444                                                                                                                                            Pretty Woman
## 13446                                                                                                                                               Jane Eyre
## 13447                                                                                                                                         Aristocats, The
## 13449                                                                                                                                              Diabolique
## 13450                                                                                                                                           Moll Flanders
## 13451                                                                                                                               James and the Giant Peach
## 13454                                                                                                                            Truth About Cats & Dogs, The
## 13456                                                                                                                                              Craft, The
## 13458                                                                                                                                    Month by the Lake, A
## 13459                                                                                                                  Carmen Miranda: Bananas Is My Business
## 13462                                                                                                                           Independence Day (a.k.a. ID4)
## 13463                                                                                                                            Hunchback of Notre Dame, The
## 13464                                                                                                                                          Cable Guy, The
## 13465                                                                                                                            Adventures of Pinocchio, The
## 13466                                                                                                                                   First Wives Club, The
## 13467                                                                                                            Story of Xinghua, The (Xinghua san yue tian)
## 13468                                                                                                                                           Twelfth Night
## 13470                                                                                                                                                Die Hard
## 13473                                                                                                                    William Shakespeare's Romeo + Juliet
## 13476                                                                                                                                        Bonnie and Clyde
## 13479                                                                                                                                         Mina Tannenbaum
## 13482                                                                                                                                               Toy Story
## 13483                                                                                                                                                 Sabrina
## 13485                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 13487                                                                                                                                      Mr. Holland's Opus
## 13488                                                                                                                                             Black Sheep
## 13489                                                                                                                                            Broken Arrow
## 13491                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 13497                                                                                                                                     Mission: Impossible
## 13498                                                                                                                           Kids in the Hall: Brain Candy
## 13500                                                                                                                                               Rock, The
## 13501                                                                                                                                                 Twister
## 13502                                                                                                                                              Striptease
## 13503                                                                                                                                           Trainspotting
## 13504                                                                                                                           Independence Day (a.k.a. ID4)
## 13506                                                                                                                                                  Eraser
## 13507                                                                                                                                              Phenomenon
## 13508                                                                                                                                                 Tin Cup
## 13509                                                                                                                     Willy Wonka & the Chocolate Factory
## 13510                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 13512                                                                                                                         Beavis and Butt-Head Do America
## 13513                                                                                                                                                 Jumanji
## 13515                                                                                                                                 American President, The
## 13516                                                                                                                                              Get Shorty
## 13517                                                                                                                                         Dangerous Minds
## 13519                                                                                                                                                Clueless
## 13521                                                                                                                                      Mr. Holland's Opus
## 13522                                                                                                                                            Broken Arrow
## 13523                                                                                                                                           Happy Gilmore
## 13526                                                                                                                                          Batman Forever
## 13527                                                                                                                                                   Congo
## 13528                                                                                                                                               Desperado
## 13529                                                                                                                              Die Hard: With a Vengeance
## 13530                                                                                                                                                Net, The
## 13532                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 13533                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 13534                                                                                                                                                  Junior
## 13536                                                                                                                                            Little Women
## 13537                                                                                                                                    Natural Born Killers
## 13538                                                                                                                                            Pulp Fiction
## 13539                                                                                                                                                Stargate
## 13541                                                                                                                             What's Eating Gilbert Grape
## 13543                                                                                                                              Ace Ventura: Pet Detective
## 13544                                                                                                       Adventures of Priscilla, Queen of the Desert, The
## 13545                                                                                                                                             Client, The
## 13550                                                                                                                                                   Speed
## 13551                                                                                                                                               True Lies
## 13552                                                                                                                                               Coneheads
## 13553                                                                                                                                                    Dave
## 13554                                                                                                                                               Firm, The
## 13555                                                                                                                                           Fugitive, The
## 13556                                                                                                                                           Jurassic Park
## 13558                                                                                                                                          Mrs. Doubtfire
## 13561                                                                                                                               Robin Hood: Men in Tights
## 13563                                                                                                                                    Sleepless in Seattle
## 13566                                                                                                                                   Three Musketeers, The
## 13567                                                                                                                                               Tombstone
## 13568                                                                                                                                              Home Alone
## 13569                                                                                                                                                 Aladdin
## 13570                                                                                                                                                  Batman
## 13571                                                                                                                               Silence of the Lambs, The
## 13573                                                                                                                                    Beauty and the Beast
## 13575                                                                                                                                                   Fargo
## 13576                                                                                                                                     Mission: Impossible
## 13577                                                                                                                            Truth About Cats & Dogs, The
## 13578                                                                                                                                               Rock, The
## 13579                                                                                                                                                 Twister
## 13580                                                                                                                         Wallace & Gromit: A Close Shave
## 13582                                                                                                                           Independence Day (a.k.a. ID4)
## 13583                                                                                                                                              Phenomenon
## 13588                                                                                                                                            Mary Poppins
## 13589                                                                                                                     Willy Wonka & the Chocolate Factory
## 13591                                                                                                                            Monty Python's Life of Brian
## 13592                                                                                                                              E.T. the Extra-Terrestrial
## 13594                                                                                                                         Monty Python and the Holy Grail
## 13595                                                                                                                                    English Patient, The
## 13597                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 13602                                                                                                                                            Shining, The
## 13604                                                                                                                                           Groundhog Day
## 13605                                                                                                                                      Back to the Future
## 13608                                                                                                                      Indiana Jones and the Last Crusade
## 13610                                                                                                                                         Field of Dreams
## 13612                                                                                                                                                  Grease
## 13613                                                                                                                                           Mars Attacks!
## 13614                                                                                                                                           Jerry Maguire
## 13615                                                                                                                                         Raising Arizona
## 13616                                                                                                                                                  Scream
## 13617                                                                                                                                               Liar Liar
## 13619                                                                                                             Austin Powers: International Man of Mystery
## 13621                                                                                                                                                Face/Off
## 13622                                                                                                                               Men in Black (a.k.a. MIB)
## 13625                                                                                                                                                 Witness
## 13628                                                                                                                                     Wedding Singer, The
## 13629                                                                                                                                      As Good as It Gets
## 13630                                                                                                                          X-Files: Fight the Future, The
## 13631                                                                                                                                              Armageddon
## 13632                                                                                                                                                Rain Man
## 13633                                                                                                                                     Breakfast Club, The
## 13634                                                                                                                              Back to the Future Part II
## 13635                                                                                                                                Honey, I Shrunk the Kids
## 13636                                                                                                                                                  Splash
## 13637                                                                                                                    Indiana Jones and the Temple of Doom
## 13639                                                                                                                                         Few Good Men, A
## 13641                                                                                                                                         My Cousin Vinny
## 13642                                                                                                                                           Pleasantville
## 13643                                                                                                                                      American History X
## 13644                                                                                                                                      Enemy of the State
## 13645                                                                                                                                           Bug's Life, A
## 13650                                                                                                                                              Mummy, The
## 13651                                                                                                               Star Wars: Episode I - The Phantom Menace
## 13652                                                                                                                                                Superman
## 13655                                                                                                                                Blair Witch Project, The
## 13656                                                                                                                                          Eyes Wide Shut
## 13657                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 13659                                                                                                                                Thomas Crown Affair, The
## 13660                                                                                                                                               Airplane!
## 13666                                                                                                                                                   Dogma
## 13667                                                                                                                                           Sleepy Hollow
## 13670                                                                                                                                  League of Their Own, A
## 13672                                                                                                                                         Thelma & Louise
## 13673                                                                                                                                        Double Indemnity
## 13676                                                                                                                                               Gladiator
## 13677                                                                                                                                             Chicken Run
## 13678                                                                                                                                            Patriot, The
## 13679                                                                                                                                      Perfect Storm, The
## 13680                                                                                                                                                   X-Men
## 13682                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 13687                                                                                                                                                 Memento
## 13689                                                                                                                                            Moulin Rouge
## 13690                                                                                                                                             Others, The
## 13692                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 13697                                                                                                                                       Beautiful Mind, A
## 13698                                                                                                                                                 Ice Age
## 13699                                                                                                                                My Big Fat Greek Wedding
## 13700                                                                                                                                              Spider-Man
## 13702                                                                                                            Star Wars: Episode II - Attack of the Clones
## 13704                                                                                                                                         Minority Report
## 13705                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 13707                                                                                                                                               Ring, The
## 13708                                                                                                                  Lord of the Rings: The Two Towers, The
## 13709                                                                                                                                                 Chicago
## 13712                                                                                                                                          Bruce Almighty
## 13717                                                                                                                                          School of Rock
## 13723                                                                                                          Lord of the Rings: The Return of the King, The
## 13728                                                                                                                Harry Potter and the Prisoner of Azkaban
## 13729                                                                                                                                            Spider-Man 2
## 13733                                                                                                                                       Shaun of the Dead
## 13734                                                                                                                                     Million Dollar Baby
## 13735                                                                                                                       Charlie and the Chocolate Factory
## 13736                                                                                                                                                Sin City
## 13737                                                                                                                                             Fever Pitch
## 13738                                                                                                                                           Batman Begins
## 13739                                                                                                                                                Serenity
## 13740                                                                                                                                 40-Year-Old Virgin, The
## 13742                                                                                                                     Harry Potter and the Goblet of Fire
## 13745                                                                                                                                      Da Vinci Code, The
## 13750                                                                                                                                              Knocked Up
## 13752                                                                                                                                 Darjeeling Limited, The
## 13755                                                                                                      Indiana Jones and the Kingdom of the Crystal Skull
## 13756                                                                                                                                                Watchmen
## 13758                                                                                                                                              The Island
## 13762                                                                                                                                      International, The
## 13763                                                                                                                                               Duplicity
## 13764                                                                                                                     The Butterfly Effect 3: Revelations
## 13778                                                                                                                                               Tank Girl
## 13789                                                                                                                            20,000 Leagues Under the Sea
## 13791                                                                                                                                                   Alien
## 13794                                                                                                                                             Under Siege
## 13836                                                                                                                                       Leaving Las Vegas
## 13840                                                                                                                                              Juror, The
## 13842                                                                                                                                           Birdcage, The
## 13846                                                                                                                               James and the Giant Peach
## 13848                                                                                                                                                 Twister
## 13849                                                                                                                                      I Shot Andy Warhol
## 13851                                                                                                                           Independence Day (a.k.a. ID4)
## 13852                                                                                                                            Hunchback of Notre Dame, The
## 13855                                                                                                                                   First Wives Club, The
## 13862                                                                                                                     Willy Wonka & the Chocolate Factory
## 13869                                                                                                                                            Dante's Peak
## 13871                                                                                                                                              Saint, The
## 13873                                                                                                                  Romy and Michele's High School Reunion
## 13874                                                                                                                                                 Volcano
## 13883                                                                                                                                           Air Force One
## 13885                                                                                                                             Dracula: Dead and Loving It
## 13887                                                                                                                                               Assassins
## 13888                                                                                                                                                    Babe
## 13894                                                                                                                                             Major Payne
## 13903                                                                                                                                            Stupids, The
## 13919                                                                                                                                           Waterboy, The
## 13920                                                                                                                Police Academy 2: Their First Assignment
## 13921                                                                                                                      Police Academy 3: Back in Training
## 13922                                                                                                                    Police Academy 4: Citizens on Patrol
## 13923                                                                                                               Police Academy 5: Assignment: Miami Beach
## 13929                                                                                                                              Deuce Bigalow: Male Gigolo
## 13930                                                                                                                                      Who's Harry Crumb?
## 13933                                                                                                                          Nutty Professor II: The Klumps
## 13935                                                                                                                                            Little Nicky
## 13937                                                                                                                                   Dude, Where's My Car?
## 13938                                                                                                                                    Beverly Hills Cop II
## 13940                                                                                                                                             Animal, The
## 13948                                                                                                                 Dumb and Dumberer: When Harry Met Lloyd
## 13949                                                                                                                                          Johnny English
## 13950                                                                                                                                                  Duplex
## 13955                                                                                                                                            White Chicks
## 13961                                                                                                                                       Pink Panther, The
## 13964                                                                                                                                           Scary Movie 4
## 13966                                                                                                                                              Little Man
## 13967                                                                                                                                                  Norbit
## 13968                                                                                                                                      Mr. Bean's Holiday
## 13972                                                                                                                                           Balls of Fury
## 13973                                                                                                                                       Meet the Spartans
## 13975                                                                                                                                         Superhero Movie
## 13978                                                                                                                           You Don't Mess with the Zohan
## 13987                                                                                                                                                 Killers
## 13992                                                                                                                                     Dinner for Schmucks
## 13993                                                                                                                                                  Easy A
## 13996                                                                                                                                          Little Fockers
## 14000                                                                                                                                        The Hunger Games
## 14009                                                                                                                                           That's My Boy
## 14013                                                                                                                                        World's End, The
## 14016                                                                                                                                             Grown Ups 2
## 14018                                                                                                                         The Hunger Games: Catching Fire
## 14029                                                                                                                                      Dumb and Dumber To
## 14030                                                                                                                                  Paul Blart: Mall Cop 2
## 14035                                                                                                                                                 Jumanji
## 14036                                                                                                                                                    Heat
## 14037                                                                                                                                               GoldenEye
## 14039                                                                                                                          Ace Ventura: When Nature Calls
## 14043                                                                                                                                                Clueless
## 14044                                                                                                                                           Mortal Kombat
## 14048                                                                                                                                      Mr. Holland's Opus
## 14049                                                                                                                                               Screamers
## 14050                                                                                                                                            Broken Arrow
## 14054                                                                                                                                                Bad Boys
## 14055                                                                                                                                               Apollo 13
## 14056                                                                                                                                                 Rob Roy
## 14057                                                                                                                                          Batman Forever
## 14058                                                                                                                                                   Congo
## 14061                                                                                                                              Die Hard: With a Vengeance
## 14062                                                                                                                                         Johnny Mnemonic
## 14063                                                                                                                                             Judge Dredd
## 14064                                                                                                                                       Lord of Illusions
## 14065                                                                                                                 Mighty Morphin Power Rangers: The Movie
## 14066                                                                                                                                             Nine Months
## 14067                                                                                                                                           Prophecy, The
## 14068                                                                                                                                               Showgirls
## 14069                                                                                                                                                 Species
## 14071                                                                                                                                              Waterworld
## 14073                                                                                                                                        Don Juan DeMarco
## 14074                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 14076                                                                                                                                            Forget Paris
## 14078                                                                                                                                                    I.Q.
## 14079                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 14080                                                                                                                                     Legends of the Fall
## 14081                                                                                                              Mary Shelley's Frankenstein (Frankenstein)
## 14082                                                                                                                                    Natural Born Killers
## 14083                                                                                                                                                Outbreak
## 14087                                                                                                                                         Specialist, The
## 14088                                                                                                                                                Stargate
## 14089                                                                                                                                       Santa Clause, The
## 14092                                                                                                             Tales from the Crypt Presents: Demon Knight
## 14093                                                                                                                                  Star Trek: Generations
## 14094                                                                                                                                     Tales from the Hood
## 14095                                                                                                                                   Village of the Damned
## 14096                                                                                                                                               Tommy Boy
## 14097                                                                                                                                 While You Were Sleeping
## 14098                                                                                                                              Ace Ventura: Pet Detective
## 14099                                                                                                                                Clear and Present Danger
## 14100                                                                                                                                             Client, The
## 14101                                                                                                                                               Crow, The
## 14102                                                                                                                                        Flintstones, The
## 14104                                                                                                                             Four Weddings and a Funeral
## 14105                                                                                                                                        Jungle Book, The
## 14106                                                                                                                                          Lion King, The
## 14107                                                                         Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 14108                                                                                                                                               Mask, The
## 14110                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 14111                                                                                                                                                   Speed
## 14113                                                                                                                                                Airheads
## 14114                                                                                                                                   Beverly Hills Cop III
## 14115                                                                                                                                          Body Snatchers
## 14116                                                                                                            City Slickers II: The Legend of Curly's Gold
## 14117                                                                                                                                             Cliffhanger
## 14118                                                                                                                                               Coneheads
## 14119                                                                                                                                                    Dave
## 14120                                                                                                                                          Demolition Man
## 14121                                                                                                                                               Firm, The
## 14122                                                                                                                                              Free Willy
## 14124                                                                                                                                    Hot Shots! Part Deux
## 14128                                                                                                                                        Last Action Hero
## 14130                                                                                                                                          Mrs. Doubtfire
## 14131                                                                                                                                            Philadelphia
## 14132                                                                                                                                              Piano, The
## 14133                                                                                                                               Robin Hood: Men in Tights
## 14135                                                                                                                             Searching for Bobby Fischer
## 14136                                                                                                                                              Serial Mom
## 14137                                                                                                                                    Sleepless in Seattle
## 14138                                                                                                                            So I Married an Axe Murderer
## 14139                                                                                                                         Nightmare Before Christmas, The
## 14140                                                                                                                                   Three Musketeers, The
## 14143                                                                                                                                                   Ghost
## 14144                                                                                                                                                 Aladdin
## 14147                                                                                                                                                  Batman
## 14149                                                                                                                                            Pretty Woman
## 14150                                                                                                                         Candyman: Farewell to the Flesh
## 14152                                                                                                                                             Heavy Metal
## 14154                                                                                                                                                 Twister
## 14156                                                                                                                           Independence Day (a.k.a. ID4)
## 14158                                                                                                                                 American President, The
## 14161                                                                                                                                       Leaving Las Vegas
## 14164                                                                                                                                      Mr. Holland's Opus
## 14166                                                                                                                                              Waterworld
## 14168                                                                                                     Like Water for Chocolate (Como agua para chocolate)
## 14169                                                                                                                                     Legends of the Fall
## 14172                                                                                                                                        Muriel's Wedding
## 14173                                                                                                                             Four Weddings and a Funeral
## 14174                                                                                                                                          Lion King, The
## 14175                                                                                                                                                Maverick
## 14179                                                                                                                                 Remains of the Day, The
## 14182                                                                                                                                              Home Alone
## 14183                                                                                                                                                   Ghost
## 14184                                                                                                                                                 Aladdin
## 14186                                                                                                                                                  Batman
## 14188                                                                                                                                            Pretty Woman
## 14189                                                                                                                                     Mission: Impossible
## 14190                                                                                                                                               Rock, The
## 14193                                                                                                                                  Breakfast at Tiffany's
## 14196                                                                                                                                        Some Like It Hot
## 14198                                                                                                                                            My Fair Lady
## 14202                                                                                                                     Willy Wonka & the Chocolate Factory
## 14210                                                                                                                                         Terminator, The
## 14211                                                                                                                                                   Glory
## 14212                                                                                                                                      Dead Poets Society
## 14213                                                                                                                                           Graduate, The
## 14216                                                                                                                                      Back to the Future
## 14218                                                                                                                      Indiana Jones and the Last Crusade
## 14221                                                                                                                                                  Grease
## 14222                                                                                                                                                    Jaws
## 14223                                                                                                                                           Jerry Maguire
## 14225                                                                                                                               Men in Black (a.k.a. MIB)
## 14228                                                                                                                                        Truman Show, The
## 14232                                                                                                                                      As Good as It Gets
## 14234                                                                                                                            There's Something About Mary
## 14236                                                                                                                                     Breakfast Club, The
## 14237                                                                                                                              Back to the Future Part II
## 14238                                                                                                                                     Little Mermaid, The
## 14239                                                                                                                                                  Splash
## 14240                                                                                                                    Indiana Jones and the Temple of Doom
## 14243                                                                                                                                     Edward Scissorhands
## 14246                                                                                                                                           Bug's Life, A
## 14248                                                                                                                                     Romancing the Stone
## 14249                                                                                                                                        Crocodile Dundee
## 14251                                                                                                                          Rocky Horror Picture Show, The
## 14252                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 14255                                                                                                                                              Moonstruck
## 14258                                                                                                                                Talented Mr. Ripley, The
## 14259                                                                                                                                  League of Their Own, A
## 14260                                                                                                                                           Patriot Games
## 14262                                                                                                                                         Erin Brockovich
## 14263                                                                                                                      Close Encounters of the Third Kind
## 14266                                                                                                                                                Chocolat
## 14267                                                                                                                                               Cast Away
## 14268                                                                                                                              O Brother, Where Art Thou?
## 14270                                                                                                                                       Beverly Hills Cop
## 14272                                                                                                                                                   Shrek
## 14274                                                                                                                                          Monsters, Inc.
## 14279                                                                                                                                My Big Fat Greek Wedding
## 14280                                                                                                                                             About a Boy
## 14283                                                                                                                                            Finding Nemo
## 14285                                                                                                                                          School of Rock
## 14286                                                                                                                                           Love Actually
## 14287                                                                                                                                                Big Fish
## 14289                                                                                                                                                 Shrek 2
## 14290                                                                                                                                            Spider-Man 2
## 14295                                                                                                                                               King Kong
## 14297                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 14299                                                                                                                                           Casino Royale
## 14300                                                                                                                                             Ratatouille
## 14304                                                                                                      Indiana Jones and the Kingdom of the Crystal Skull
## 14305                                                                                                                                                  WALL·E
## 14309                                                                                                                                     Alice in Wonderland
## 14315                                                                                                         What Women Want (a.k.a. I Know a Woman's Heart)
## 14317                                                                                                                                                  Casino
## 14319                                                                                                                                                  Friday
## 14320                                                                                                                                           Happy Gilmore
## 14322                                                                                                                                             Taxi Driver
## 14324                                                                                                                                            Crimson Tide
## 14325                                                                                                                                              Waterworld
## 14327                                                                                                                      Star Wars: Episode IV - A New Hope
## 14328                                                                                                                                                Outbreak
## 14330                                                                                                                                                Stargate
## 14332                                                                                                                              Ace Ventura: Pet Detective
## 14333                                                                                                                                               Crow, The
## 14335                                                                                                                                               Mask, The
## 14336                                                                                                                                          Demolition Man
## 14337                                                                                                                                           Jurassic Park
## 14339                                                                                                                         Nightmare Before Christmas, The
## 14342                                                                                                                                               Rock, The
## 14343                                                                                                                           Independence Day (a.k.a. ID4)
## 14345                                                                                                                                            Citizen Kane
## 14346                                                                                                                             Ghost and the Darkness, The
## 14347                                                                                                                                          Reservoir Dogs
## 14349                                                                                                                 Cinema Paradiso (Nuovo cinema Paradiso)
## 14350                                                                                                                         One Flew Over the Cuckoo's Nest
## 14351                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 14354                                                                                                                                   Boot, Das (Boat, The)
## 14355                                                                                                                                      Dead Poets Society
## 14356                                                                                                                                               Chinatown
## 14357                                                                                                                                           Groundhog Day
## 14359                                                                                                                                           Jerry Maguire
## 14360                                                                                                                                                 Con Air
## 14361                                                                                                                               Men in Black (a.k.a. MIB)
## 14363                                                                                                                                       L.A. Confidential
## 14369                                                                                                                                            Postman, The
## 14370                                                                                                                                     Wedding Singer, The
## 14371                                                                                                                                      As Good as It Gets
## 14374                                                                                                                             Back to the Future Part III
## 14376                                                                                                                    Indiana Jones and the Temple of Doom
## 14382                                                                                                               Star Wars: Episode I - The Phantom Menace
## 14383                                                                                                                               Run Lola Run (Lola rennt)
## 14384                                                                                                                                            American Pie
## 14385                                                                                                                                Blair Witch Project, The
## 14386                                                                                                                                        Sixth Sense, The
## 14387                                                                                                                             National Lampoon's Vacation
## 14390                                                                                                                                            Total Recall
## 14394                                                                                                                                            Galaxy Quest
## 14396                                                                                                                                              Encino Man
## 14397                                                                                                                                       Final Destination
## 14398                                                                                                                                                Red Dawn
## 14399                                                                                                                                          Grumpy Old Men
## 14400                                                                                                                      Close Encounters of the Third Kind
## 14402                                                                                                                                       Battlefield Earth
## 14404                                                                                                                                        Meet the Parents
## 14406                                                                                                                                                  Snatch
## 14407                                                                                                                                                Chocolat
## 14416                                                                                                                                                 Ice Age
## 14419                                                                                                                                         Minority Report
## 14420                                                                                                                                       Road to Perdition
## 14421                                                                                                                                                   Signs
## 14422                                                                                                                                               Ring, The
## 14426                                                                                                                            City of God (Cidade de Deus)
## 14427                                                                                                                                    Matrix Reloaded, The
## 14428                                                                                                                                          Bruce Almighty
## 14430                                                                                                                                        Italian Job, The
## 14431                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 14432                                                                                                                                     Dirty Pretty Things
## 14433                                                                                                                                     Lost in Translation
## 14435                                                                                                                                            Mystic River
## 14436                                                                                                                                       Kill Bill: Vol. 1
## 14437                                                                                                                                 Matrix Revolutions, The
## 14439                                                                                                                                    The Butterfly Effect
## 14440                                                                                                                   Eternal Sunshine of the Spotless Mind
## 14441                                                                                                                                       Kill Bill: Vol. 2
## 14443                                                                                                                                                 Shrek 2
## 14444                                                                                                                                           Super Size Me
## 14445                                                                                                                                            Spider-Man 2
## 14446                                                                                                                                                I, Robot
## 14447                                                                                                       Maria Full of Grace (Maria, Llena eres de gracia)
## 14448                                                                                                                               Manchurian Candidate, The
## 14449                                                                                                                                            Garden State
## 14450                                                                                                                                              Collateral
## 14451                                                                                                        Motorcycle Diaries, The (Diarios de motocicleta)
## 14452                                                                                                                                       Shaun of the Dead
## 14453                                                                                                                                                Sideways
## 14454                                                                                                                                        Incredibles, The
## 14457                                                                                                                       Charlie and the Chocolate Factory
## 14461                                                                                                                                           Batman Begins
## 14462                                                                                                                                        Wedding Crashers
## 14463                                                                                                                                                Serenity
## 14465                                                                                                                              Good Night, and Good Luck.
## 14469                                                                                                                                   Thank You for Smoking
## 14470                                                                                                                                                  Tsotsi
## 14471                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 14474                                                                                                                               Pursuit of Happyness, The
## 14475                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 14478                                                                                                                                           Prestige, The
## 14479                                                                                                                                   Letters from Iwo Jima
## 14480                                                                                                                                             Ratatouille
## 14482                                                                                                                                            Transformers
## 14483                                                                                                                                     Simpsons Movie, The
## 14484                                                                                                                                                Superbad
## 14486                                                                                                                                  No Country for Old Men
## 14487                                                                                                                                             I Am Legend
## 14488                                                                                                                                                    Juno
## 14491                                                                                                                                                Iron Man
## 14495                                                                                                                                     Slumdog Millionaire
## 14497                                                                                                                                             Frost/Nixon
## 14498                                                                                                                                             Reader, The
## 14500                                                                                                                                               Star Trek
## 14503                                                                                                                                        Hurt Locker, The
## 14508                                                                                                                                          Shutter Island
## 14509                                                                                                                                                Kick-Ass
## 14513                                                                                                                                            Sudden Death
## 14522                                                                                                                                               Jury Duty
## 14523                                                                                                                                                 Species
## 14533                                                                                                             Tales from the Crypt Presents: Demon Knight
## 14534                                                                                                                                  Star Trek: Generations
## 14535                                                                                                                                   Village of the Damned
## 14538                                                                                                                                          I Love Trouble
## 14544                                                                                                                                               RoboCop 3
## 14548                                                                                                                                              Craft, The
## 14553                                                                                                                                              Relic, The
## 14557                                                                                                                                      Lawnmower Man, The
## 14574                                                                                                                        Amityville 1992: It's About Time
## 14590                                                                                                                         I Know What You Did Last Summer
## 14592                                                                                                                                                Phantoms
## 14593                                                                                                                                     Alien: Resurrection
## 14595                                                                                                                                             Deep Rising
## 14597                                                                                                                                              Armageddon
## 14601                                                                                                           Nightmare on Elm Street 5: The Dream Child, A
## 14602                                                                   Freddy's Dead: The Final Nightmare (Nightmare on Elm Street Part 6: Freddy's Dead, A)
## 14604                                                                                                                                  Friday the 13th Part 2
## 14606                                                                                                                                            Halloween II
## 14607                                                                                                                      Halloween III: Season of the Witch
## 14608                                                                                                                Halloween 4: The Return of Michael Myers
## 14609                                                                                                                                           Prom Night II
## 14611                                                                                                                          Poltergeist II: The Other Side
## 14615                                                                                                                                 Poseidon Adventure, The
## 14616                                                                                                                                     Disturbing Behavior
## 14618                                                                                                                                  Trip to Bountiful, The
## 14620                                                                                                                                                    Tron
## 14623                                                                                                        Graveyard Shift (Stephen King's Graveyard Shift)
## 14626                                                                                                                                          Needful Things
## 14627                                                                                                                                                    Cujo
## 14630                                                                                                                              House II: The Second Story
## 14631                                                                                                                                         Rosemary's Baby
## 14632                                                                                                                          Attack of the Killer Tomatoes!
## 14634                                                                                                                                                      54
## 14641                                                                                                                               Desperately Seeking Susan
## 14646                                                                                                                                Karate Kid, Part II, The
## 14649                                                                                                                                          At First Sight
## 14654                                                         Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre)
## 14655                                                                                                                                           Deadly Friend
## 14667                                                                                                                                             Superman II
## 14669                                                                                                                                   Thirteenth Floor, The
## 14673                                                                                                                                          Wild Wild West
## 14674                                                                                                                                           Summer of Sam
## 14677                                                                                                                                             Lake Placid
## 14680                                                                                                                                           Deep Blue Sea
## 14684                                                                                                                                         Damien: Omen II
## 14691                                                                                                                                          Drive Me Crazy
## 14697                                                                                                                                   Bringing Out the Dead
## 14702                                                                                                                                             Creepshow 2
## 14703                                                                                                                                             Re-Animator
## 14704                                                                                                                                                 Piranha
## 14706                                                                                                                                       Anywhere But Here
## 14718                                                                                                                                           Forever Young
## 14719                                                                                                                                                Scream 3
## 14723                                                                                                                                        Who's That Girl?
## 14726                                                                                                                                                Red Dawn
## 14727                                                                                                                                   Good Morning, Vietnam
## 14732                                                                                                                                         American Psycho
## 14735                                                                                                                                  Mission: Impossible II
## 14737                                                                                                                                      Toxic Avenger, The
## 14739                                                                                                                                            Sleepwalkers
## 14741                                                                                                        F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion)
## 14743                                                                                                                                              Hollow Man
## 14744                                                                                                                                             Pumpkinhead
## 14745                                                                                                                                          Sleepaway Camp
## 14747                                                                                                                                               Supergirl
## 14751                                                                                                                                                Ghoulies
## 14753                                                                                                                                             Unbreakable
## 14756                                                                                                                                         What Women Want
## 14762                                                                                                                                       Jaws: The Revenge
## 14769                                                                                                                                                C.H.U.D.
## 14770                                                                                                                                           Forsaken, The
## 14778                                                                                                                                          Johnny Be Good
## 14780                                                                                                                                                Watchers
## 14783                                                                                                                                           Punisher, The
## 14784                                                                                                                                   America's Sweethearts
## 14788                                                                                                                                             Basket Case
## 14793                                                                                                                                         Invasion U.S.A.
## 14796                                                                                                                                                 48 Hrs.
## 14797                                                                                                                                                Slackers
## 14798                                                                                                                                            Sandlot, The
## 14802                                                                                                                                  Joe Versus the Volcano
## 14804                                                                                                                             Three Men and a Little Lady
## 14805                                                                                                                                                  Nomads
## 14806                                                                                                                                               Temp, The
## 14810                                                                                                                                               Mr. Deeds
## 14811                                                                                                                                         Dangerous Minds
## 14813                                                                                                                               Shawshank Redemption, The
## 14814                                                                                                                                        Schindler's List
## 14816                                                                                                                                             Primal Fear
## 14817                                                                                                                                              Craft, The
## 14832                                                                                                                                        Bonnie and Clyde
## 14837                                                                                                                                                   Glory
## 14844                                                                                                                                             Wag the Dog
## 14846                                                                                                                                    Strangers on a Train
## 14848                                                                                                                                         Say Anything...
## 14849                                                                                                                                               Elizabeth
## 14850                                                                                                                               Run Lola Run (Lola rennt)
## 14851                                                                                                                                         American Beauty
## 14854                                                                                                                                       Conversation, The
## 14860                                                                                                                            Talk to Her (Hable con Ella)
## 14861                                                                                                                                                Dogfight
## 14873                                                                                                                                       Book of Life, The
## 14880                                                                                                            Lives of Others, The (Das leben der Anderen)
## 14882                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 14886                                                                                                                                                    Juno
## 14887                                                                                                                                               Toy Story
## 14890                                                                                                                                              Braveheart
## 14891                                                                                                                                                  Clerks
## 14892                                                                                                 Léon: The Professional (a.k.a. The Professional) (Léon)
## 14895                                                                                                                                            Forrest Gump
## 14896                                                                                                                                          Lion King, The
## 14897                                                                                                                                           Jurassic Park
## 14898                                                                                                                                        Schindler's List
## 14900                                                                                                                                                 Aladdin
## 14901                                                                                                                              Terminator 2: Judgment Day
## 14902                                                                                                                               Silence of the Lambs, The
## 14903                                                                                                                                    Beauty and the Beast
## 14904                                                                                                                                            Pretty Woman
## 14907                                                                                                                                          Godfather, The
## 14909                                                                                                                                             Rear Window
## 14910                                                                                                                                      North by Northwest
## 14911                                                                                                                                              Casablanca
## 14914                                                                                                                                                Die Hard
## 14915                                                                                                                                        Bonnie and Clyde
## 14916                                                                                                                                           Dirty Dancing
## 14917                                                                                                                                          Reservoir Dogs
## 14919                                                                                                                         One Flew Over the Cuckoo's Nest
## 14922                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 14923                                                                                                                                                  Aliens
## 14926                                                                                                                                      Lawrence of Arabia
## 14927                                                                                                                                   To Kill a Mockingbird
## 14928                                                                                                                                          Apocalypse Now
## 14931                                                                                                                                              Goodfellas
## 14932                                                                                                                                                  Psycho
## 14933                                                                                                                                 Godfather: Part II, The
## 14934                                                                                                                                             Raging Bull
## 14935                                                                                                                                         Terminator, The
## 14937                                                                                                                                           Groundhog Day
## 14939                                                                                                                                      Back to the Future
## 14941                                                                                                                      Indiana Jones and the Last Crusade
## 14942                                                                                                                                                    Jaws
## 14943                                                                                                                                      Fifth Element, The
## 14944                                                                                                                               Men in Black (a.k.a. MIB)
## 14945                                                                                                                                                 Titanic
## 14947                                                                                                                          Fear and Loathing in Las Vegas
## 14948                                                                                                                                           Exorcist, The
## 14949                                                                                                                                           Lethal Weapon
## 14951                                                                                                                                     Saving Private Ryan
## 14955                                                                                                                       Lock, Stock & Two Smoking Barrels
## 14956                                                                                                                                             Matrix, The
## 14957                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 14958                                                                                                                                                     Big
## 14959                                                                                                                                Ferris Bueller's Day Off
## 14960                                                                                                                                              Fight Club
## 14961                                                                                                                                    Being John Malkovich
## 14962                                                                                                                                              Spaceballs
## 14963                                                                                                                                           Wayne's World
## 14964                                                                                                                                            Animal House
## 14965                                                                                                                      Close Encounters of the Third Kind
## 14966                                                                                                                                                Predator
## 14967                                                                                                                                              Caddyshack
## 14968                                                                                                                                               Gladiator
## 14969                                                                                                         Naked Gun: From the Files of Police Squad!, The
## 14971                                                                                                                                                 Memento
## 14975                                                                                                                                   Royal Tenenbaums, The
## 14977                                                                                                                                              Adaptation
## 14978                                                                                                                                             Equilibrium
## 14979                                                                                                                  Lord of the Rings: The Two Towers, The
## 14983                                                                                                          Lord of the Rings: The Return of the King, The
## 14984                                                                                                                   Eternal Sunshine of the Spotless Mind
## 14985                                                                                                                                       Napoleon Dynamite
## 14987                                                                                                                                            Garden State
## 14988                                                                                                                                                Sideways
## 14989                                                                                                                                           The Machinist
## 14991                                                                                                             Howl's Moving Castle (Hauru no ugoku shiro)
## 14992                                                                                                                   Hitchhiker's Guide to the Galaxy, The
## 14993                                                                                                                                        Mr. & Mrs. Smith
## 14994                                                                                                                                          Broken Flowers
## 14995                                                                                                                                 40-Year-Old Virgin, The
## 14999                                                                                                             Talladega Nights: The Ballad of Ricky Bobby
## 15001                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 15002                                                                                                                                           Departed, The
## 15008                                                                                                                                        Dark Knight, The
## 15009                                                                                                                               Forgetting Sarah Marshall
## 15012                                                                                                                                  Dark Knight Rises, The
## 15013                                                                                                                                        Moonrise Kingdom
## 15014                                                                                                                                         American Sniper
## 15015                                                                                                                             Father of the Bride Part II
## 15016                                                                                                                                                Clueless
## 15018                                                                                                                                 While You Were Sleeping
## 15020                                                                                                                             Four Weddings and a Funeral
## 15024                                                                                                                                      Gone with the Wind
## 15036                                                                                                                                                  Willow
## 15039                                                                                                                                                Election
## 15043                                                                                                                                         American Beauty
## 15044                                                                                                                                           Sleepy Hollow
## 15050                                                                                                                                       Maid in Manhattan
## 15051                                                                                                                            How to Lose a Guy in 10 Days
## 15052                                                                                                              Lara Croft Tomb Raider: The Cradle of Life
## 15059                                                                                                                                                    Troy
## 15068                                                                                                                                  Lars and the Real Girl
## 15071                                                                                                                                                      Up
## 15073                                                                                                                               Where the Wild Things Are
## 15074                                                                                                                                               Inception
## 15079                                                                                                                         The Hunger Games: Catching Fire
## 15083                                                                                                                                             Zoolander 2
## 15084                                                                                                                         Pride and Prejudice and Zombies
## 15087                                                                                                                                                 Jumanji
## 15088                                                                                                                                   Sense and Sensibility
## 15089                                                                                                                                              Persuasion
## 15091                                                                                                                                    Seven (a.k.a. Se7en)
## 15093                                                                                                                          Bridges of Madison County, The
## 15094                                                                                                                                              Braveheart
## 15095                                                                                                                       Beauty of the Day (Belle de jour)
## 15096                                                                                                                                                   Congo
## 15097                                                                                                                                                 Hackers
## 15098                                                                                                                                              Waterworld
## 15099                                                                                                                                            Pulp Fiction
## 15100                                                                                                                                                Stargate
## 15104                                                                                                                                               Mask, The
## 15106                                                                                                                                               True Lies
## 15107                                                                                                                                              Free Willy
## 15109                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 15111                                                                                                                                  Much Ado About Nothing
## 15114                                                                                                                                       Super Mario Bros.
## 15115                                                                                                                                                 Aladdin
## 15122                                                                                                                                               Rock, The
## 15123                                                                                                                                                 Twister
## 15128                                                                                                                                   American in Paris, An
## 15129                                                                                                                                  Breakfast at Tiffany's
## 15133                                                                                                                                          Apartment, The
## 15139                                                                                                                                   2001: A Space Odyssey
## 15146                                                                                                                                               Pollyanna
## 15147                                                                                                                                         Shaggy Dog, The
## 15148                                                                                                                                   Swiss Family Robinson
## 15149                                                                                                                            20,000 Leagues Under the Sea
## 15150                                                                                                                                              Cinderella
## 15151                                                                                                                                 Sword in the Stone, The
## 15153                                                                                                                                                   Dumbo
## 15154                                                                                                                                     Alice in Wonderland
## 15155                                                                                                                                     Sound of Music, The
## 15156                                                                                                                                         Great Race, The
## 15159                                                                                                                                    English Patient, The
## 15163                                                                                                                                                  Psycho
## 15165                                                                                                                                           Graduate, The
## 15168                                                                                                                                                Fantasia
## 15169                                                                                                                                          Big Sleep, The
## 15172                                                                                                                                               Blob, The
## 15173                                                                                                                                             Sling Blade
## 15174                                                                                                                                           Jerry Maguire
## 15175                                                                                                                               Men in Black (a.k.a. MIB)
## 15176                                                                                                                                               G.I. Jane
## 15177                                                                                                                                                Cop Land
## 15178                                                                                                                                                   Spawn
## 15182                                                                                                                                       Starship Troopers
## 15184                                                                                                                                       Big Lebowski, The
## 15187                                                                                                                                     Wedding Singer, The
## 15189                                                                                                                                          Small Soldiers
## 15190                                                                                                                                            Going My Way
## 15194                                                                                                                                  Man for All Seasons, A
## 15196                                                                                                                                                 Oliver!
## 15198                                                                                                                                      Mask of Zorro, The
## 15199                                                                                                                            Absent-Minded Professor, The
## 15204                                                                                                         101 Dalmatians (One Hundred and One Dalmatians)
## 15205                                                                                                                                          Rocketeer, The
## 15208                                                                                                                                              Swing Kids
## 15209                                                                                                                                              Snake Eyes
## 15210                                                                                                                         Who's Afraid of Virginia Woolf?
## 15211                                                                                                                                         Doctor Dolittle
## 15212                                                                                                                                    Nutty Professor, The
## 15213                                                                                                                                         Rosemary's Baby
## 15217                                                                                                                                 Star Trek: Insurrection
## 15218                                                                                                                                     Shakespeare in Love
## 15219                                                                                                                                         You've Got Mail
## 15221                                                                                                                                      Tea with Mussolini
## 15223                                                                                                                                      Planet of the Apes
## 15224                                                                                                                                            Analyze This
## 15225                                                                                                                                         King and I, The
## 15228                                                                                                                                                  Tarzan
## 15230                                                                                                                                         Iron Giant, The
## 15231                                                                                                              Oscar and Lucinda (a.k.a. Oscar & Lucinda)
## 15232                                                                                                                                      Outside Providence
## 15236                                                                                                                                              Fight Club
## 15237                                                                                                                                     Straight Story, The
## 15239                                                                                                                                  End of the Affair, The
## 15243                                                                                                                                         Man on the Moon
## 15244                                                                                                                                       Girl, Interrupted
## 15245                                                                                                                                             Boiler Room
## 15247                                                                                                                                               Gladiator
## 15249                                                                                                                                                Croupier
## 15250                                                                                                                                           Almost Famous
## 15252                                                                                                                                            Best in Show
## 15253                                                                                                                                        Meet the Parents
## 15257                                                                                                                                       Finding Forrester
## 15258                                                                                                                                               Cast Away
## 15259                                                                                                                              O Brother, Where Art Thou?
## 15260                                                                                                                                           Thirteen Days
## 15276                                                                                                                                                    Heat
## 15277                                                                                                                                                 Sabrina
## 15280                                                                                                                                        Mighty Aphrodite
## 15281                                                                                                                                      Mr. Holland's Opus
## 15282                                                                                                                                            White Squall
## 15283                                                                                                                                             Black Sheep
## 15284                                                                                                                                            Broken Arrow
## 15285                                                                                                                                          Down Periscope
## 15286                                                                                                                                           Birdcage, The
## 15288                                                                                                                                     Mission: Impossible
## 15289                                                                                                                               James and the Giant Peach
## 15290                                                                                                                            Truth About Cats & Dogs, The
## 15291                                                                                                                                               Rock, The
## 15292                                                                                                                                                 Twister
## 15294                                                                                                                           Independence Day (a.k.a. ID4)
## 15295                                                                                                                                                  Eraser
## 15299                                                                                                                                                Bad Boys
## 15300                                                                                                                                               Desperado
## 15301                                                                                                                                         Johnny Mnemonic
## 15302                                                                                                                                                 Species
## 15304                                                                                                                                         Specialist, The
## 15306                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 15307                                                                                                                                           Fugitive, The
## 15308                                                                                                                               Robin Hood: Men in Tights
## 15312                                                                                                                                              Striptease
## 15313                                                                                                                                                Die Hard
## 15318                                                                                                                                                   Alien
## 15319                                                                                                                                         Terminator, The
## 15325                                                                                                                          X-Files: Fight the Future, The
## 15326                                                                                                                                           Lethal Weapon
## 15330                                                                                                                                         Few Good Men, A
## 15331                                                                                                                                         My Cousin Vinny
## 15334                                                                                                                                           Arachnophobia
## 15335                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 15336                                                                                                                                               Bowfinger
## 15339                                                                                                                                                Predator
## 15360                                                                                                                                  Across the Sea of Time
## 15366                                                                                                                                     From Dusk Till Dawn
## 15368                                                                                                                                         Beautiful Girls
## 15382                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 15384                                                                                                                                            Little Women
## 15390                                                                                                                               Secret of Roan Inish, The
## 15391                                                                                                                               Shawshank Redemption, The
## 15396                                                                                                                                                Backbeat
## 15399                                                                                                                                                    Wolf
## 15400                                                                                                                                    Addams Family Values
## 15404                                                                                                                                           Fugitive, The
## 15406                                                                                                                                     In the Line of Fire
## 15409                                                                                                                                                 Orlando
## 15410                                                                                                                                        Perfect World, A
## 15411                                                                                                                                            Philadelphia
## 15420                                                                                                                                            True Romance
## 15425                                                                                                                                      Dances with Wolves
## 15438                                                                                                                           Independence Day (a.k.a. ID4)
## 15439                                                                                                                                        Frighteners, The
## 15441                                                                                                                                              Phenomenon
## 15481                                                                                                                                Escape to Witch Mountain
## 15491                                                                                                                                                Sleepers
## 15502                                                                                                                                                 Platoon
## 15503                                                                                                                                              Doors, The
## 15527                                                                                                                                       Strictly Ballroom
## 15541                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 15568                                                                                                                                      Dead Poets Society
## 15586                                                                                                                                      Pump Up the Volume
## 15587                                                                                                                                      Back to the Future
## 15606                                                                                                                                         Field of Dreams
## 15608                                                                                                                                 When Harry Met Sally...
## 15609                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 15611                                                                                                                                          Amityville 3-D
## 15614                                                                                                                         Dracula (Bram Stoker's Dracula)
## 15617                                                                                                                                                Candyman
## 15619                                                                                                                                              Cat People
## 15624                                                                                                                                             Sling Blade
## 15628                                                                                                                                          Batman Returns
## 15632                                                                                                                                                Jaws 3-D
## 15633                                                                                                                                           Jerry Maguire
## 15645                                                                                                                                                 Contact
## 15646                                                                                                                                   In the Company of Men
## 15647                                                                                                                               Hunt for Red October, The
## 15650                                                                                                                         I Know What You Did Last Summer
## 15656                                                                                                                                       Good Will Hunting
## 15666                                                                                                                                         Kurt & Courtney
## 15668                                                                                                                          Fear and Loathing in Las Vegas
## 15669                                                                                                                                             Hope Floats
## 15670                                                                                                                                       Can't Hardly Wait
## 15671                                                                                                                            There's Something About Mary
## 15692                                                                                                                                      Driving Miss Daisy
## 15702                                                                                                                                       Exorcist III, The
## 15703                                                                                                                                           Lethal Weapon
## 15704                                                                                                                                         Lethal Weapon 2
## 15705                                                                                                                                                Gremlins
## 15712                                                                                                                                Godfather: Part III, The
## 15713                                                                                                                      Darby O'Gill and the Little People
## 15731                                                                                                                                                    Tron
## 15732                                                                               Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 15734                                                                                                                               Dead Men Don't Wear Plaid
## 15735                                                                                                                                            Grand Canyon
## 15737                                                                                                                                                    Cujo
## 15744                                                                                                                                       Dark Crystal, The
## 15745                                                                                                                                         Sixteen Candles
## 15746                                                                                                                                          Pretty in Pink
## 15747                                                                                                                                         St. Elmo's Fire
## 15752                                                                                                                                                  Willow
## 15759                                                                                                                                            My Bodyguard
## 15760                                                                                                                                          Broadcast News
## 15770                                                                                                                                Children of a Lesser God
## 15773                                                                                                                                           Pleasantville
## 15777                                                                                                                                            Desert Bloom
## 15779                                                                                                                                          Big Chill, The
## 15784                                                                                                                                               King Kong
## 15788                                                                                                                                             Mass Appeal
## 15789                                                                                                                                     Romancing the Stone
## 15790                                                                                                                                                  Cocoon
## 15791                                                                                                                                         Karate Kid, The
## 15792                                                                                              Christmas Vacation (National Lampoon's Christmas Vacation)
## 15794                                                                                                                                  Boy Who Could Fly, The
## 15796                                                                                                                                                Fly, The
## 15798                                                                                                                                               Christine
## 15802                                                                                                                                        Cruel Intentions
## 15803                                                                                                                                     Rage: Carrie 2, The
## 15805                                                                                                                                              Dick Tracy
## 15812                                                                                                                                   Thirteenth Floor, The
## 15815                                                                                                                                           Summer of Sam
## 15816                                                                                                                                Blair Witch Project, The
## 15819                                                                                                                                         Ghostbusters II
## 15840                                                                                                                                                     Big
## 15847                                                                                                                                       Stop Making Sense
## 15848                                                                                                                                     Hard Day's Night, A
## 15851                                                                                                                                               Excalibur
## 15854                                                                                                                                               Psycho II
## 15875                                                                                                                                Who Framed Roger Rabbit?
## 15885                                                                                                                                          Trading Places
## 15886                                                                                                                                        Commitments, The
## 15892                                                                                                                                       Stand and Deliver
## 15901                                                                                                                                 Bonfire of the Vanities
## 15904                                                                                                                                         Green Mile, The
## 15908                                                                                                                              The Falcon and the Snowman
## 15909                                                                                                                                Talented Mr. Ripley, The
## 15910                                                                                                                                          Angela's Ashes
## 15921                                                                                                                                            Agnes of God
## 15922                                                                                                                                           Wayne's World
## 15924                                                                                                                           Twin Peaks: Fire Walk with Me
## 15928                                                                                                                                                Scream 3
## 15929                                                                                                                                              Beach, The
## 15930                                                                                                                                   Whole Nine Yards, The
## 15932                                                                                                                                       Flamingo Kid, The
## 15933                                                                                                                                             Wonder Boys
## 15934                                                                                                                                           Drowning Mona
## 15935                                                                                                                                          Beyond the Mat
## 15937                                                                                                                                                   Birdy
## 15939                                                                                                                                         Mission to Mars
## 15942                                                                                                                                             Bull Durham
## 15946                                                                                                                                                     JFK
## 15948                                                                                                                                         Erin Brockovich
## 15951                                                                                                                                            Animal House
## 15957                                                                                                                                                Red Dawn
## 15958                                                                                                                                   Good Morning, Vietnam
## 15965                                                                                                                                               Bamba, La
## 15968                                                                                                                                             Skulls, The
## 15973                                                                                                                                         Ready to Rumble
## 15976                                                                                                                                              Parenthood
## 15977                                                                                                                                    Prince of Tides, The
## 15979                                                                                                                                            East is East
## 15990                                                                                                                     Flintstones in Viva Rock Vegas, The
## 15991                                                                                                                                      Where the Heart Is
## 15995                                                                                                                                                 Mr. Mom
## 16015                                                                                                                                        Running Man, The
## 16019                                                                                                                              Mad Max Beyond Thunderdome
## 16020                                                                                                                                             Angel Heart
## 16021                                                                                                                                             Firestarter
## 16028                                                                                                                             Big Trouble in Little China
## 16035                                                                                                                                               Fair Game
## 16036                                                                                                                                                 Species
## 16038                                                                                                                                          Street Fighter
## 16039                                                                                                                                               RoboCop 3
## 16041                                                                                                                              Terminator 2: Judgment Day
## 16042                                                                                                                                                  Batman
## 16046                                                                                                                                                 Twister
## 16049                                                                                                                           Independence Day (a.k.a. ID4)
## 16051                                                                                                                                      Lawnmower Man, The
## 16052                                                                                                                                                 Top Gun
## 16053                                                                                                                                    Escape from New York
## 16057                                                                                                                                        Army of Darkness
## 16059                                                                                                                                  Dead Alive (Braindead)
## 16060                                                                                                                                               Bad Taste
## 16062                                                                                                                                                   Akira
## 16063                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 16064                                                                                                                         Dracula (Bram Stoker's Dracula)
## 16065                                                                                                                                             Under Siege
## 16066                                                                                                                                                Jaws 3-D
## 16068                                                                                                                                                 Con Air
## 16069                                                                                                                                          Batman & Robin
## 16070                                                                                                                               Men in Black (a.k.a. MIB)
## 16071                                                                                                                                                 Contact
## 16072                                                                                                                                                   Steel
## 16073                                                                                                                                    The Devil's Advocate
## 16074                                                                                                                                                 Gattaca
## 16076                                                                                                                                     Alien: Resurrection
## 16077                                                                                                                                                 Titanic
## 16078                                                                                                                                             Wild Things
## 16079                                                                                                                                                    Dune
## 16082                                                                                                                                  Jewel of the Nile, The
## 16083                                                                                                                                          Wing Commander
## 16085                                                                                                                                              Entrapment
## 16086                                                                                                                                          Wild Wild West
## 16088                                                                                                                                            Total Recall
## 16090                                                                                                                                                 RoboCop
## 16093                                                                                                                                                Predator
## 16095                                                                                                                                              Predator 2
## 16097                                                                                                                                               Cell, The
## 16098                                                                                                                                          Evil Dead, The
## 16107                                                                                                                                          One Hour Photo
## 16108                                                                                                                                             The Pumaman
## 16114                                                                                                                           Ninja Scroll (Jûbei ninpûchô)
## 16116                                                                                                                           Highlander II: The Quickening
## 16121                                                                                                                                              Enemy Mine
## 16123                                                                                                                                           Shiri (Swiri)
## 16125                                                                                                                                            Spider-Man 2
## 16135                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 16136                                                                                                                                                Face/Off
## 16137                                                                                                                                             Matrix, The
## 16141                                                                                                                                                  Wasabi
## 16144                                                                                                                                    Matrix Reloaded, The
## 16148                                                                                                                                                    Troy
## 16149                                                                                                                              Chronicles of Riddick, The
## 16152                                                                                                                                       National Treasure
## 16153                                                                                                                                    Battlestar Galactica
## 16155                                                                                                                                   Underworld: Evolution
## 16160                                                                                                                Pirates of the Caribbean: At World's End
## 16162                                                                                                                             Hellboy II: The Golden Army
## 16168                                                                                                                          Underworld: Rise of the Lycans
## 16171                                                                                                                                                Pandorum
## 16180                                                                                                                                            Tron: Legacy
## 16184                                                                                                                      Captain America: The First Avenger
## 16189                                                                                                                   Men in Black III (M.III.B.) (M.I.B.³)
## 16191                                                                                                                                    Thor: The Dark World
## 16195                                                                                                                                          Equalizer, The
## 16201                                                                                                                                                   Focus
## 16202                                                                                                                                                    Heat
## 16203                                                                                                                                               GoldenEye
## 16204                                                                                                                                 American President, The
## 16206                                                                                                                          Ace Ventura: When Nature Calls
## 16207                                                                                                                                              Get Shorty
## 16208                                                                                                                                                 Copycat
## 16211                                                                                                                                        Dead Man Walking
## 16215                                                                                                                                            Broken Arrow
## 16216                                                                                                                                           Happy Gilmore
## 16217                                                                                                                          Bridges of Madison County, The
## 16218                                                                                                                                              Braveheart
## 16220                                                                                                                                               Apollo 13
## 16221                                                                                                                                                 Rob Roy
## 16222                                                                                                                                          Batman Forever
## 16224                                                                                                                              Die Hard: With a Vengeance
## 16225                                                                                                                                            First Knight
## 16226                                                                                                                                             Judge Dredd
## 16227                                                                                                                                                 Species
## 16229                                                                                                                                              Waterworld
## 16230                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 16231                                                                                                                      Star Wars: Episode IV - A New Hope
## 16232                                                                                                                             Madness of King George, The
## 16233                                                                                                                                    Natural Born Killers
## 16234                                                                                                                                      Once Were Warriors
## 16235                                                                                                                                                Outbreak
## 16238                                                                                                                                               Quiz Show
## 16239                                                                                                                           Ready to Wear (Pret-A-Porter)
## 16240                                                                                                                                                Stargate
## 16241                                                                                                                               Shawshank Redemption, The
## 16242                                                                                                                                 While You Were Sleeping
## 16243                                                                                                                              Ace Ventura: Pet Detective
## 16244                                                                                                                                   Bullets Over Broadway
## 16245                                                                                                                                Clear and Present Danger
## 16246                                                                                                                                            Forrest Gump
## 16248                                                                                                                                          Lion King, The
## 16249                                                                                                                                               Mask, The
## 16250                                                                                                                                                Maverick
## 16251                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 16252                                                                                                                                                   Speed
## 16253                                                                                                                                               True Lies
## 16254                                                                                                                                When a Man Loves a Woman
## 16256                                                                                                                                              Wyatt Earp
## 16257                                                                                                                                    Addams Family Values
## 16258                                                                                                                                   Beverly Hills Cop III
## 16259                                                                                                                                           Boxing Helena
## 16261                                                                                                            City Slickers II: The Legend of Curly's Gold
## 16262                                                                                                                                             Cliffhanger
## 16263                                                                                                                                               Coneheads
## 16264                                                                                                                                                    Dave
## 16265                                                                                                                                          Demolition Man
## 16266                                                                                                                                               Firm, The
## 16267                                                                                                                                           Fugitive, The
## 16268                                                                                                                            Geronimo: An American Legend
## 16269                                                                                                                                            Getaway, The
## 16270                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 16272                                                                                                                                     In the Line of Fire
## 16273                                                                                                                                           Jurassic Park
## 16274                                                                                                                                              Kalifornia
## 16275                                                                                                                                  Much Ado About Nothing
## 16276                                                                                                                                          Mrs. Doubtfire
## 16277                                                                                                                                            Philadelphia
## 16279                                                                                                                                          Romper Stomper
## 16281                                                                                                                                    Sleepless in Seattle
## 16283                                                                                                                                            True Romance
## 16284                                                                                                                                              Home Alone
## 16285                                                                                                                                                   Ghost
## 16286                                                                                                                              Terminator 2: Judgment Day
## 16287                                                                                                                                      Dances with Wolves
## 16290                                                                                                                                            Pretty Woman
## 16292                                                                                                                                     Mission: Impossible
## 16294                                                                                                                                    Operation Dumbo Drop
## 16295                                                                                                                                               Rock, The
## 16296                                                                                                                                                 Twister
## 16297                                                                                                                                              Striptease
## 16299                                                                                                                           Independence Day (a.k.a. ID4)
## 16300                                                                                                                                          Cable Guy, The
## 16302                                                                                                                                    Nutty Professor, The
## 16303                                                                                                                                                  Ransom
## 16304                                                                                                                                                 Tin Cup
## 16306                                                                                                                                                   Bound
## 16307                                                                                                                                              Casablanca
## 16309                                                                                                                                       Last Man Standing
## 16310                                                                                                                                           Cool Runnings
## 16311                                                                                                                           Robin Hood: Prince of Thieves
## 16314                                                                                                                                Everyone Says I Love You
## 16316                                                                                                                                    Fish Called Wanda, A
## 16317                                                                                                                            Monty Python's Life of Brian
## 16318                                                                                                                                           Dirty Dancing
## 16322                                                                                                                                                 Top Gun
## 16324                                                                                                                                              Abyss, The
## 16325                                                                                                                                    Escape from New York
## 16326                                                                                                                         Monty Python and the Holy Grail
## 16328                                                                                                                Cook the Thief His Wife & Her Lover, The
## 16330                                                                                                                                           Grifters, The
## 16332                                                                                                                                            My Left Foot
## 16334                                                                                                                                            Passion Fish
## 16336                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 16339                                                                                                                                                  Aliens
## 16342                                                                                                                                          Apocalypse Now
## 16343                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 16346                                                                                                                          Big Blue, The (Grand bleu, Le)
## 16347                                                                                                                                     Blues Brothers, The
## 16350                                                                                                                                                 Amadeus
## 16351                                                                                                                             Once Upon a Time in America
## 16353                                                                                                                                              Sting, The
## 16356                                                                                                                                      Dead Poets Society
## 16361                                                                                                                                             Stand by Me
## 16364                                                                                                                                      Back to the Future
## 16365                                                                                                                                              Highlander
## 16366                                                                                                                                      Cyrano de Bergerac
## 16368                                                                                                                      Indiana Jones and the Last Crusade
## 16369                                                                                                                                    Pink Floyd: The Wall
## 16371                                                                                                                    My Life as a Dog (Mitt liv som hund)
## 16374                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 16375                                                                                                                         American Werewolf in London, An
## 16376                                                                                                                                              Birds, The
## 16377                                                                                                                                              Cat People
## 16378                                                                                                                                          101 Dalmatians
## 16379                                                                                                                                              Die Hard 2
## 16381                                                                                                                                              Young Guns
## 16382                                                                                                                                                  Grease
## 16384                                                                                                                                           Mars Attacks!
## 16385                                                                                                                                            Citizen Ruth
## 16386                                                                                                                                           Jerry Maguire
## 16387                                                                                                                                         Raising Arizona
## 16388                                                                                                                                                 Tin Men
## 16389                                                                                                                                                  Scream
## 16390                                                                                                                                            Dante's Peak
## 16392                                                                                                                                  Smilla's Sense of Snow
## 16393                                                                                                                                                Anaconda
## 16395                                                                                                                                 8 Heads in a Duffel Bag
## 16396                                                                                                                                      Fifth Element, The
## 16397                                                                                                                          Lost World: Jurassic Park, The
## 16398                                                                                                                                                 Con Air
## 16399                                                                                                                                                Face/Off
## 16401                                                                                                                                               G.I. Jane
## 16403                                                                                                                                           Air Force One
## 16404                                                                                                                               Hunt for Red October, The
## 16408                                                                                                                                         Full Monty, The
## 16410                                                                                                                                        Truman Show, The
## 16411                                                                                                                                                 Titanic
## 16412                                                                                                                                    Horse Whisperer, The
## 16416                                                                                                                               Man in the Iron Mask, The
## 16417                                                                                                                                          Primary Colors
## 16419                                                                                                                                                Godzilla
## 16420                                                                                                                          Fear and Loathing in Las Vegas
## 16423                                                                                                                                              Armageddon
## 16425                                                                                                                                  French Connection, The
## 16427                                                                                                                                      Driving Miss Daisy
## 16429                                                                                                                                     Breakfast Club, The
## 16431                                                                                                                                           Lethal Weapon
## 16432                                                                                                                                         Lethal Weapon 2
## 16433                                                                                                                                         Lethal Weapon 3
## 16434                                                                                                                                      Mask of Zorro, The
## 16435                                                                                                                              Back to the Future Part II
## 16437                                                                                                                                Godfather: Part III, The
## 16438                                                                                                                                     Saving Private Ryan
## 16439                                                                                                                                         Negotiator, The
## 16440                                                                                                                    Indiana Jones and the Temple of Doom
## 16441                                                                                                                                  Lord of the Rings, The
## 16442                                                                                                                                      Addams Family, The
## 16443                                                                                                                                              Snake Eyes
## 16445                                                                                                                                                   Blade
## 16447                                                                                                                                       Untouchables, The
## 16450                                                                                                                                      Married to the Mob
## 16451                                                                                                                                         Few Good Men, A
## 16454                                                                                                                                                    Antz
## 16456                                                                                                                                          Big Chill, The
## 16457                                                                                                                                      Enemy of the State
## 16458                                                                                                                                    Prince of Egypt, The
## 16459                                                                                                                                                Rushmore
## 16460                                                                                                                                     Shakespeare in Love
## 16461                                                                                                                                  Jewel of the Nile, The
## 16462                                                                                                                                     Romancing the Stone
## 16463                                                                                              Christmas Vacation (National Lampoon's Christmas Vacation)
## 16464                                                                                                                                      Thin Red Line, The
## 16465                                                                                                                                                Fly, The
## 16466                                                                                                              Name of the Rose, The (Name der Rose, Der)
## 16467                                                                                                                                          ¡Three Amigos!
## 16469                                                                                                                                            Pet Sematary
## 16470                                                                                                                                      Planet of the Apes
## 16471                                                                                                                                            Analyze This
## 16474                                                                                                                                             Matrix, The
## 16476                                                                                                                                              Dick Tracy
## 16477                                                                                                                                              Mummy, The
## 16478                                                                                                                                                Superman
## 16479                                                                                                                                            Notting Hill
## 16480                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 16481                                                                                                                               Run Lola Run (Lola rennt)
## 16482                                                                                                                                           Arachnophobia
## 16483                                                                                                                                          Wild Wild West
## 16484                                                                                                                                Blair Witch Project, The
## 16485                                                                                                                                          Eyes Wide Shut
## 16487                                                                                                                                         Ghostbusters II
## 16488                                                                                                                                  Little Shop of Horrors
## 16489                                                                                                                                        Sixth Sense, The
## 16490                                                                                                                                Thomas Crown Affair, The
## 16491                                                                                               Final Conflict, The (a.k.a. Omen III: The Final Conflict)
## 16492                                                                                                                          American Werewolf in Paris, An
## 16493                                                                                                                                                     Big
## 16494                                                                                                                                            Medicine Man
## 16496                                                                                                                                                Caligula
## 16497                                                                                                                                             Three Kings
## 16501                                                                                                                                              Flashdance
## 16502                                                                                                                                              Fight Club
## 16504                                                                                                                                                 RoboCop
## 16505                                                                                                                                Who Framed Roger Rabbit?
## 16508                                                                                                                                        Drugstore Cowboy
## 16511                                                                                                                                              Moonstruck
## 16512                                                                                                                                           Sleepy Hollow
## 16513                                                                                                                                World Is Not Enough, The
## 16515                                                                                                                                              Holy Smoke
## 16516                                                                                                                                 Bonfire of the Vanities
## 16517                                                                                                                                          Two Jakes, The
## 16518                                                                                                                                         Green Mile, The
## 16519                                                                                                                                           Stuart Little
## 16520                                                                                                                                              Easy Rider
## 16521                                                                                                                                Talented Mr. Ripley, The
## 16522                                                                                                                                  Snow Falling on Cedars
## 16523                                                                                                                                                Papillon
## 16525                                                                                                                            Fast Times at Ridgemont High
## 16526                                                                                                                                               Malcolm X
## 16527                                                                                                                                           Wayne's World
## 16528                                                                                                                                  League of Their Own, A
## 16529                                                                                                                                          Bodyguard, The
## 16530                                                                                                                                    White Men Can't Jump
## 16531                                                                                                                                         Of Mice and Men
## 16532                                                                                                                                              Beach, The
## 16533                                                                                                                                           Drowning Mona
## 16534                                                                                                                       Ghost Dog: The Way of the Samurai
## 16535                                                                                                                                                     JFK
## 16536                                                                                                                                         Erin Brockovich
## 16537                                                                                                                                         Thelma & Louise
## 16540                                                                                                                                            Jungle Fever
## 16541                                                                                                                                   Good Morning, Vietnam
## 16542                                                                                                                                          Grumpy Old Men
## 16546                                                                                                                                                    Hook
## 16549                                                                                                                                      Solaris (Solyaris)
## 16550                                                                                                                                                Predator
## 16551                                                                                                                         Postman Always Rings Twice, The
## 16552                                                                                                                                              Caddyshack
## 16553                                                                                                                                              Jennifer 8
## 16555                                                                                                                                              Breathless
## 16557                                                                                                                                              Eraserhead
## 16561                                                                                                                                              Flatliners
## 16562                                                                                                                                              Predator 2
## 16564                                                                                                                           Road Warrior, The (Mad Max 2)
## 16565                                                                                                                                      Gone in 60 Seconds
## 16567                                                                                                                             Big Trouble in Little China
## 16568                                                                                                                                                   Shaft
## 16569                                                                                                                                      Me, Myself & Irene
## 16570                                                                                                                                            Patriot, The
## 16571                                                                                                                                      Perfect Storm, The
## 16572                                                                                                                                                Croupier
## 16573                                                                                                                                                   X-Men
## 16575                                                                                                                                             Coyote Ugly
## 16576                                                                                                                                              Hollow Man
## 16577                                                                                                                                            Saving Grace
## 16578                                                                                                                                          Kelly's Heroes
## 16580                                                                                                                                Hellbound: Hellraiser II
## 16581                                                                                                                                              Get Carter
## 16582                                                                                                                                            Billy Elliot
## 16583                                                                                                                                            Men of Honor
## 16584                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 16585                                                                                                                            Planes, Trains & Automobiles
## 16586                                                                                                                                             Wall Street
## 16588                                                                                                                              O Brother, Where Art Thou?
## 16590                                                                                                                             Officer and a Gentleman, An
## 16592                                                                                                                                    Beverly Hills Cop II
## 16593                                                                                                                                                Hannibal
## 16594                                                                                                                                            Mexican, The
## 16595                                                                                                                    Harley Davidson and the Marlboro Man
## 16598                                                                                                                                      Enemy at the Gates
## 16600                                                                                                                                   Tailor of Panama, The
## 16603                                                                                                                                   Bridget Jones's Diary
## 16605                                                                                                                                                Scarface
## 16606                                                                                                                            World According to Garp, The
## 16607                                                                                                                                           City Slickers
## 16609                                                                                                                                                 Tootsie
## 16610                                                                                                                                 Lara Croft: Tomb Raider
## 16612                                                                                                                                              Score, The
## 16613                                                                                                                     Adventures of Baron Munchausen, The
## 16615                                                                                                                                 Bright Lights, Big City
## 16616                                                                                                                                                Cocktail
## 16617                                                                                                                           Tucker: The Man and His Dream
## 16618                                                                                                                                                   Twins
## 16619                                                                                                                                              Black Rain
## 16620                                                                                                                                      Planet of the Apes
## 16621                                                                                                                                              Road House
## 16622                                                                                                                                            Tango & Cash
## 16624                                                                                                                                   War of the Roses, The
## 16625                                                                                                                                           Osmosis Jones
## 16627                                                                                                                                            Training Day
## 16628                                                                                                                                                Cruising
## 16629                                                                                                                                             Dirty Harry
## 16630                                                                                                                                            Donnie Darko
## 16631                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 16632                                                                                                                                                Spy Game
## 16633                                                                                                                                      Behind Enemy Lines
## 16634                                                                                                                                          Ocean's Eleven
## 16635                                                                                                                                   Royal Tenenbaums, The
## 16637                                                                                                                                       Beautiful Mind, A
## 16638                                                                                                                        Nine Lives of Fritz the Cat, The
## 16639                                                                                                                                            Gosford Park
## 16643                                                                                                                        Great Rock 'n' Roll Swindle, The
## 16645                                                                                                                                My Big Fat Greek Wedding
## 16646                                                                                                                                                Breakout
## 16647                                                                                                                                    Three Men and a Baby
## 16648                                                                                                                             Three Men and a Little Lady
## 16649                                                                                                                                            Cadillac Man
## 16650                                                                                                                                              Spider-Man
## 16653                                                                                                                                   Sum of All Fears, The
## 16655                                                                                                                                              Scooby-Doo
## 16656                                                                                                                                         Minority Report
## 16659                                                                                                                                              Red Dragon
## 16660                                                                                                                                   Bowling for Columbine
## 16662                                                                                                                                               Gallipoli
## 16663                                                                                                                 Harry Potter and the Chamber of Secrets
## 16664                                                                                                                                                   Thief
## 16665                                                                                                                            Talk to Her (Hable con Ella)
## 16666                                                                                                                                            Analyze That
## 16667                                                                                                                                              Adaptation
## 16669                                                                                                                                           About Schmidt
## 16671                                                                                                                                               25th Hour
## 16673                                                                                                                                     Catch Me If You Can
## 16675                                                                                                                 Monty Python Live at the Hollywood Bowl
## 16677                                                                                                                                              Old School
## 16678                                                                                                                                    Bend It Like Beckham
## 16679                                                                                                                                              Green Card
## 16680                                                                                                                             Lilya 4-Ever (Lilja 4-ever)
## 16681                                                                                                                           101 Reykjavik (101 Reykjavík)
## 16682                                                                                                                                    Matrix Reloaded, The
## 16683                                                                                                                                            Finding Nemo
## 16684                                                                                                                                        Italian Job, The
## 16685                                                                                                                                           28 Days Later
## 16686                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 16687                                                                                                                                                S.W.A.T.
## 16690                                                                                                                                              Videodrome
## 16691                                                                                                                                 All the President's Men
## 16692                                                                                                                                         Boyz N the Hood
## 16694                                                                                                                                            Mystic River
## 16698                                                                                                                                                   Hoffa
## 16699                                                                                                                                              King Ralph
## 16700                                                                                                                                            Passenger 57
## 16702                                                                                                                                  Jesus Christ Superstar
## 16703                                                                                                                                                    1941
## 16705                                                                                                                                  Something's Gotta Give
## 16707                                                                                                                        Adventures of Ford Fairlane, The
## 16708                                                                                                                                    Super Fly (Superfly)
## 16710                                                                                                                                           Warriors, The
## 16711                                                                                                                                               Woodstock
## 16712                                                                                                                                            Mean Streets
## 16713                                                                                                           Maltese Falcon, The (a.k.a. Dangerous Female)
## 16715                                                                                                                                       Shaun of the Dead
## 16719                                                                                                                                        Wedding Crashers
## 16721                                                                                                                                               King Kong
## 16724                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 16725                                                                                                                                           Departed, The
## 16726                                                                                                                                                Hot Fuzz
## 16728                                                                                                                         Nightmare Before Christmas, The
## 16734                                                                                                                                             Hocus Pocus
## 16735                                                                                                                                          Pretty in Pink
## 16737                                                                                                                                            Urban Legend
## 16739                                                                                                                                   Thirteenth Floor, The
## 16740                                                                                                                                        Sixth Sense, The
## 16744                                                                                                                    Don't Tell Mom the Babysitter's Dead
## 16747                                                                                                                                     Sweetest Thing, The
## 16750                                                                                                                                    Cheaper by the Dozen
## 16752                                                                                                                                                 Shrek 2
## 16755                                                                                                                                        Incredibles, The
## 16756                                                                                                                               Left Behind: World at War
## 16758                                                                                                                                              Date Movie
## 16760                                                                                                                                          Over the Hedge
## 16761                                                                                                                                   Stranger than Fiction
## 16766                                                                                                                                                    Juno
## 16772                                                                                                 Léon: The Professional (a.k.a. The Professional) (Léon)
## 16775                                                                                                                                              Entrapment
## 16776                                                                                                                                          Wild Wild West
## 16777                                                                                                                                        Mickey Blue Eyes
## 16779                                                                                                                                     Bone Collector, The
## 16780                                                                                                                                World Is Not Enough, The
## 16781                                                                                                                                                Magnolia
## 16782                                                                                                                                Talented Mr. Ripley, The
## 16783                                                                                                                                             Pitch Black
## 16784                                                                                                                                       Final Destination
## 16785                                                                                                                                      Perfect Storm, The
## 16786                                                                                                                                             Scary Movie
## 16787                                                                                                                                                    Blow
## 16788                                                                                                                                               Swordfish
## 16789                                                                                                                            A.I. Artificial Intelligence
## 16790                                                                                                                                          Legally Blonde
## 16791                                                                                                                                          American Pie 2
## 16792                                                                                                                                               Zoolander
## 16794                                                                                                                                                   Signs
## 16799                                                                                                                                           28 Days Later
## 16803                                                                                                                                              Ex Machina
## 16805                                                                                                                                                    Babe
## 16806                                                                                                                                    Seven (a.k.a. Se7en)
## 16807                                                                                                                                              Braveheart
## 16808                                                                                                                                          Batman Forever
## 16809                                                                                                                                            Crimson Tide
## 16810                                                                                                                                                Net, The
## 16812                                                                                                                                              Disclosure
## 16813                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 16814                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 16815                                                                                                                                    Natural Born Killers
## 16816                                                                                                                                            Pulp Fiction
## 16818                                                                                                                                 While You Were Sleeping
## 16819                                                                                                                              Ace Ventura: Pet Detective
## 16822                                                                                                                                               Mask, The
## 16824                                                                                                                                               True Lies
## 16825                                                                                                                                             Cliffhanger
## 16826                                                                                                                                               Firm, The
## 16831                                                                                                                              Terminator 2: Judgment Day
## 16832                                                                                                                                      Dances with Wolves
## 16835                                                                                                                                                  Casino
## 16839                                                                                                                                          Demolition Man
## 16852                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 16854                                                                                                                                                   X-Men
## 16869                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 16870                                                                                                                                                    Babe
## 16873                                                                                                                                    Seven (a.k.a. Se7en)
## 16874                                                                                                                                              Juror, The
## 16880                                                                                                                                          Batman Forever
## 16881                                                                                                                                                   Congo
## 16886                                                                                                                                             Judge Dredd
## 16900                                                                                                                                        Immortal Beloved
## 16902                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 16906                                                                                                                                     Legends of the Fall
## 16912                                                                                                                                 Quick and the Dead, The
## 16915                                                                                                                               Shawshank Redemption, The
## 16916                                                                                                                                               Tank Girl
## 16920                                                                                                       Adventures of Priscilla, Queen of the Desert, The
## 16925                                                                                                                                          Lion King, The
## 16935                                                                                                                                        Another Stakeout
## 16950                                                                                                                                               RoboCop 3
## 16953                                                                                                                                              Serial Mom
## 16967                                                                                                                                    Beauty and the Beast
## 16972                                                                                                                                                 Twister
## 16978                                                                                                                             Father of the Bride Part II
## 16979                                                                                                                                                 Sabrina
## 16980                                                                                                                                               GoldenEye
## 16982                                                                                                                                              Four Rooms
## 16984                                                                                                                                         Dangerous Minds
## 16985                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 16987                                                                                                                                              To Die For
## 16990                                                                                                                 Things to Do in Denver When You're Dead
## 16991                                                                                                                                            Broken Arrow
## 16992                                                                                                                          Bridges of Madison County, The
## 16994                                                                                                                                               Boomerang
## 16995                                                                                                                                           Birdcage, The
## 16998                                                                                                                                                Net, The
## 16999                                                                                                                                           Billy Madison
## 17002                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 17003                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 17005                                                                                                                                                Outbreak
## 17007                                                                                                                                               Quiz Show
## 17009                                                                                                                                               Tank Girl
## 17011                                                                                                                              Ace Ventura: Pet Detective
## 17012                                                                                                       Adventures of Priscilla, Queen of the Desert, The
## 17013                                                                                                                                               Crow, The
## 17014                                                                                                                                            Forrest Gump
## 17015                                                                                                                                          Lion King, The
## 17016                                                                                                                                               Mask, The
## 17018                                                                                                                                           Reality Bites
## 17019                                                                                                                                                   Speed
## 17022                                                                                                                                               Firm, The
## 17024                                                                                                                                           Jurassic Park
## 17026                                                                                                                                            Philadelphia
## 17028                                                                                                                                    Sleepless in Seattle
## 17029                                                                                                                                            Blade Runner
## 17030                                                                                                                                              Son in Law
## 17031                                                                                                                         Nightmare Before Christmas, The
## 17032                                                                                                                                   Three Musketeers, The
## 17033                                                                                                                                              Home Alone
## 17034                                                                                                                                                   Ghost
## 17035                                                                                                                                                 Aladdin
## 17039                                                                                                                                    Beauty and the Beast
## 17040                                                                                                                                            Pretty Woman
## 17042                                                                                                                                      Courage Under Fire
## 17043                                                                                                                                     Mission: Impossible
## 17045                                                                                                                                               Rock, The
## 17047                                                                                                                            Hunchback of Notre Dame, The
## 17049                                                                                                                                              Phenomenon
## 17051                                                                                                                                                Basquiat
## 17052                                                                                                                                                 Tin Cup
## 17058                                                                                                                                Long Kiss Goodnight, The
## 17060                                                                                                                            Monty Python's Life of Brian
## 17061                                                                                                                                           Dirty Dancing
## 17064                                                                                                                               Streetcar Named Desire, A
## 17067                                                                                                                                    English Patient, The
## 17074                                                                                                                                              Sting, The
## 17076                                                                                                                                           Groundhog Day
## 17080                                                                                                                                 When Harry Met Sally...
## 17081                                                                                                                                              Birds, The
## 17082                                                                                                                                           Mars Attacks!
## 17083                                                                                                                                           Jerry Maguire
## 17087                                                                                                                                      Fifth Element, The
## 17088                                                                                                                                        Addicted to Love
## 17089                                                                                                                          Lost World: Jurassic Park, The
## 17091                                                                                                                                                 Contact
## 17092                                                                                                                                         Picture Perfect
## 17093                                                                                                                                           Air Force One
## 17097                                                                                                                                       House of Yes, The
## 17098                                                                                                                                                 Gattaca
## 17100                                                                                                                                        Truman Show, The
## 17103                                                                                                                                                 Titanic
## 17104                                                                                                                                             Wag the Dog
## 17105                                                                                                                                             Spice World
## 17107                                                                                                                                      As Good as It Gets
## 17109                                                                                                                                           Suicide Kings
## 17110                                                                                                                                        Newton Boys, The
## 17111                                                                                                                        Major League: Back to the Minors
## 17112                                                                                                                                             Hope Floats
## 17113                                                                                                                                            Out of Sight
## 17114                                                                                                                                              Armageddon
## 17115                                                                                                                                                      Pi
## 17116                                                                                                                            There's Something About Mary
## 17117                                                                                                                             Greatest Show on Earth, The
## 17118                                                                                                                                                Rain Man
## 17121                                                                                                                                           Freaky Friday
## 17123                                                                                                                                 Flight of the Navigator
## 17124                                                                                                                                        Parent Trap, The
## 17125                                                                                                                                     Little Mermaid, The
## 17127                                                                                                                                              Swing Kids
## 17128                                                                                                                    Indiana Jones and the Temple of Doom
## 17129                                                                                                                          Ever After: A Cinderella Story
## 17131                                                                                                                                           Weird Science
## 17132                                                                                                                                           Avengers, The
## 17135                                                                                                                                                    Hero
## 17136                                                                                                                                           Pleasantville
## 17139                                                                                                                      Police Academy 3: Back in Training
## 17140                                                                                                                                                Rushmore
## 17142                                                                                                                                                 Stepmom
## 17143                                                                                                                                           Varsity Blues
## 17144                                                                                                                                        Crocodile Dundee
## 17148                                                                                                                                        Forces of Nature
## 17152                                                                                                                          Open Your Eyes (Abre los ojos)
## 17155                                                                                                                                              Entrapment
## 17156                                                                                                                                              Dick Tracy
## 17157                                                                                                               Star Wars: Episode I - The Phantom Menace
## 17159                                                                                                                                            Notting Hill
## 17160                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 17162                                                                                                                                            American Pie
## 17163                                                                                                                                          Eyes Wide Shut
## 17165                                                                                                                                             Mystery Men
## 17166                                                                                                                                               Bowfinger
## 17171                                                                                                                                                   Tommy
## 17172                                                                                                                                             Three Kings
## 17175                                                                                                                          Home Alone 2: Lost in New York
## 17177                                                                                                                                    Being John Malkovich
## 17178                                                                                                                                           Bachelor, The
## 17184                                                                                                                                             Toy Story 2
## 17185                                                                                                                                                Magnolia
## 17186                                                                                                                                        Any Given Sunday
## 17187                                                                                                                            Fast Times at Ridgemont High
## 17188                                                                                                                                              Sister Act
## 17189                                                                                                                                        Scent of a Woman
## 17193                                                                                                                                          Bodyguard, The
## 17194                                                                                                                                                 Singles
## 17196                                                                                                                                                Scream 3
## 17197                                                                                                                                             Boiler Room
## 17198                                                                                                                                             Wonder Boys
## 17201                                                                                                                                         Thelma & Louise
## 17203                                                                                                                                   Good Morning, Vietnam
## 17205                                                                                                                                           High Fidelity
## 17206                                                                                                                                              Parenthood
## 17207                                                                                                                                                 28 Days
## 17208                                                                                                                                               Gladiator
## 17209                                                                                                                                 Pee-wee's Big Adventure
## 17210                                                                                                                                        Running Man, The
## 17211                                                                                                                                                Soapdish
## 17212                                                                                                                                            Patriot, The
## 17215                                                                                                                                             Coyote Ugly
## 17216                                                                                                                                              Crush, The
## 17217                                                                                                                                       Tao of Steve, The
## 17219                                                                                                                                             Nurse Betty
## 17220                                                                                                                                           Almost Famous
## 17221                                                                                                                                            Best in Show
## 17224                                                                                                                                            Billy Elliot
## 17225                                                                                                                                               Bedazzled
## 17226                                                                                                                                             Unbreakable
## 17229                                                                                                                                                 Pollock
## 17232                                                                                                                                               Antitrust
## 17233                                                                                                                                              Innerspace
## 17234                                                                                                                                           Maid to Order
## 17235                                                                                                                                               Mannequin
## 17240                                                                                                                                           Heartbreakers
## 17243                                                                                                                                        Knight's Tale, A
## 17244                                                                                                                                             Startup.com
## 17246                                                                                                                                            Pearl Harbor
## 17247                                                                                                                                           City Slickers
## 17249                                                                                                                                               Swordfish
## 17250                                                                                                                                             Point Break
## 17252                                                                                                                                 Lara Croft: Tomb Raider
## 17254                                                                                                                                           Short Circuit
## 17258                                                                                                                                   Princess Diaries, The
## 17259                                                                                                                          Jay and Silent Bob Strike Back
## 17260                                                                                                                                               Rock Star
## 17261                                                                                                                                            Training Day
## 17263                                                                                                                                             Serendipity
## 17264                                                                                                                                                 Bandits
## 17266                                                                                                                      Ocean's Eleven (a.k.a. Ocean's 11)
## 17269                                                                                                                                             Vanilla Sky
## 17271                                                                                                                              Bill & Ted's Bogus Journey
## 17272                                                                                                                                          Kate & Leopold
## 17276                                                                                                                                           Sorority Boys
## 17277                                                                                                                           National Lampoon's Van Wilder
## 17278                                                                                                                                    Three Men and a Baby
## 17281                                                                                                                                    Bourne Identity, The
## 17282                                                                                                                                             Men at Work
## 17283                                                                                                                             Austin Powers in Goldmember
## 17289                                                                                                                 Harry Potter and the Chamber of Secrets
## 17290                                                                                                                                         Men with Brooms
## 17291                                                                                                                                              Adaptation
## 17293                                                                                                                                        Two Weeks Notice
## 17294                                                                                                                                              Blue Steel
## 17295                                                                                                                                                 Chicago
## 17299                                                                                                                                            Finding Nemo
## 17303                                                                                                                      Terminator 3: Rise of the Machines
## 17304                                                                                                                                             Valley Girl
## 17305                                                                                                                                             Once Bitten
## 17307                                                                                                                                           Leap of Faith
## 17310                                                                                                                                           Doc Hollywood
## 17312                                                                                                                           Win a Date with Tad Hamilton!
## 17318                                                                                                                                  How I Got Into College
## 17321                                                                                                                                                    Heat
## 17322                                                                                                                                              Four Rooms
## 17323                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 17326                                                                                                                                            Broken Arrow
## 17330                                                                                                                                     Mission: Impossible
## 17333                                                                                                                                                 Twister
## 17341                                                                                                                                       Waiting to Exhale
## 17346                                                                                                                                               GoldenEye
## 17369                                                                                                                                          Batman Forever
## 17371                                                                                                                              Die Hard: With a Vengeance
## 17374                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 17375                                                                                                                                             Major Payne
## 17376                                                                                                                                    Natural Born Killers
## 17389                                                                                                                                                  Batman
## 17390                                                                                                                               Silence of the Lambs, The
## 17395                                                                                                                                              To Die For
## 17396                                                                                                                                                   Congo
## 17399                                                                                                                                        Muriel's Wedding
## 17400                                                                                                                                    Hot Shots! Part Deux
## 17403                                                                                                                            So I Married an Axe Murderer
## 17405                                                                                                                                          Cable Guy, The
## 17407                                                                                                                                          Reservoir Dogs
## 17415                                                                                                                                     Grosse Pointe Blank
## 17416                                                                                                                                             Chasing Amy
## 17419                                                                                                                            There's Something About Mary
## 17420                                                                                                                                         Lethal Weapon 2
## 17429                                                                                                                                             Chicken Run
## 17430                                                                                                                                           Almost Famous
## 17434                                                                                                                                          Batman Forever
## 17441                                                                                                                                               Mask, The
## 17442                                                                                                                                             Cliffhanger
## 17443                                                                                                                                           Jurassic Park
## 17444                                                                                                                               Silence of the Lambs, The
## 17449                                                                                                                                         American Beauty
## 17450                                                                                                                                             Three Kings
## 17451                                                                                                                                              Fight Club
## 17458                                                                                                                                          Before Sunrise
## 17462                                                                                                                                        Schindler's List
## 17465                                                                                                                                            My Left Foot
## 17466                                                                                                                                       Strictly Ballroom
## 17467                                                                                                                                        Harold and Maude
## 17470                                                                                                                              Nightmare on Elm Street, A
## 17473                                                                                                                                           Lost in Space
## 17475                                                                                                                                        Chariots of Fire
## 17477                                                                                                                                                Rain Man
## 17480                                                                                                                      Red Violin, The (Violon rouge, Le)
## 17481                                                                                                                                           Haunting, The
## 17483                                                                                                                                                Stigmata
## 17484                                                                                                                                               Backdraft
## 17486                                                                                                                                       American Graffiti
## 17487                                                                                                                                                 Network
## 17496                                                                                                                             World's Fastest Indian, The
## 17503                                                                                                                                             Gran Torino
## 17504                                                                                                                                            Seven Pounds
## 17519                                                                                                                                      Heavenly Creatures
## 17531                                                                                                                                            Pretty Woman
## 17533                                                                                                                                              Barbarella
## 17547                                                                                                                                           39 Steps, The
## 17550                                                                                                                                       Dial M for Murder
## 17553                                                                                                                                    Escape from New York
## 17558                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 17573                                                                                                                                    Arsenic and Old Lace
## 17579                                                                                                                           Star Trek: The Motion Picture
## 17582                                                                                                                           Star Trek IV: The Voyage Home
## 17584                                                                                                                                                  Scream
## 17585                                                                                                                                      Fifth Element, The
## 17592                                                                                                                                                 Gattaca
## 17594                                                                                                                                  Wings of the Dove, The
## 17595                                                                                                                                     Alien: Resurrection
## 17597                                                                                                                                               Dark City
## 17607                                                                                                                             Back to the Future Part III
## 17608                                                                                                                                                    Dune
## 17610                                                                                                                                         Black Hole, The
## 17615                                                                                                                             1984 (Nineteen Eighty-Four)
## 17616                                                                                                                                          Dead Zone, The
## 17617                                                                                                                                     Secret of NIMH, The
## 17618                                                                                                                                         Rosemary's Baby
## 17629                                                                                                                                     Stepford Wives, The
## 17633                                                                                                                                 Star Trek: Insurrection
## 17635                                                                                                                                              Hurlyburly
## 17636                                                                                                                                         Howard the Duck
## 17638                                                                                                                                             Logan's Run
## 17640                                                                                                                      Escape from the Planet of the Apes
## 17641                                                                                                                                             Matrix, The
## 17642                                                                                                                                      Night of the Comet
## 17643                                                                                                               Star Wars: Episode I - The Phantom Menace
## 17645                                                                                                                                             Superman II
## 17646                                                                                                                                             Swamp Thing
## 17648                                                                                                                                           Deep Blue Sea
## 17658                                                                                                                                              Spaceballs
## 17678                                                                                                                                      Gone in 60 Seconds
## 17680                                                                                                                                            American Pop
## 17683                                                                                                                                               Fury, The
## 17684                                                                                                                                      Prince of the City
## 17686                                                                                                                                  Sugarland Express, The
## 17687                                                                                                                             Big Trouble in Little China
## 17690                                                                                                                               Kentucky Fried Movie, The
## 17695                                                                                                                                         Mackenna's Gold
## 17696                                                                                                                                             White Sands
## 17699                                                                                                                                          Love and Death
## 17701                                                                                                                              Man Who Fell to Earth, The
## 17702                                                                                                                                               Toy Story
## 17703                                                                                                                                                 Jumanji
## 17705                                                                                                                                                  Casino
## 17707                                                                                                                                                  Powder
## 17709                                                                                                City of Lost Children, The (Cité des enfants perdus, La)
## 17711                                                                                                                                        Dead Man Walking
## 17715                                                                                                                             Indian in the Cupboard, The
## 17718                                                                                                                                     Crossing Guard, The
## 17719                                                                                                                                            Broken Arrow
## 17720                                                                                                                                           Bottle Rocket
## 17723                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 17726                                                                                                                                                 Rob Roy
## 17727                                                                                                                                          Batman Forever
## 17728                                                                                                                                                   Congo
## 17731                                                                                                                                            First Knight
## 17732                                                                                                                                             Judge Dredd
## 17733                                                                                                                                                Mallrats
## 17734                                                                                                                                                 Species
## 17735                                                                                                        To Wong Foo, Thanks for Everything! Julie Newmar
## 17736                                                                                                                                              Waterworld
## 17738                                                                                                                                               Drop Zone
## 17740                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 17746                                                                                                                                                Outbreak
## 17748                                                                                                                                                Stargate
## 17750                                                                                                                                  Star Trek: Generations
## 17752                                                                                                                                               Crow, The
## 17753                                                                                                                                            Forrest Gump
## 17754                                                                                                                                          Lion King, The
## 17755                                                                                                                                                Maverick
## 17756                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 17758                                                                                                                                                   Speed
## 17761                                                                                                                                               Coneheads
## 17762                                                                                                                                   Endless Summer 2, The
## 17763                                                                                                                                               Firm, The
## 17764                                                                                                                                           Fugitive, The
## 17767                                                                                                                                             Killing Zoe
## 17770                                                                                                                                      Secret Garden, The
## 17775                                                                                                                                               Tombstone
## 17776                                                                                                                                  Brady Bunch Movie, The
## 17788                                                                                                                                   Hellraiser: Bloodline
## 17789                                                                                                                                     Mission: Impossible
## 17790                                                                                                                                             Dragonheart
## 17791                                                                                                                               James and the Giant Peach
## 17793                                                                                                                                    Operation Dumbo Drop
## 17794                                                                                                                                        Mulholland Falls
## 17798                                                                                                                                                 Twister
## 17802                                                                                                                           Independence Day (a.k.a. ID4)
## 17807                                                                                                                                        Escape from L.A.
## 17809                                                                                                                                            Gone Fishin'
## 17810                                                                                                                               Island of Dr. Moreau, The
## 17811                                                                                                                                               First Kid
## 17827                                                                                                                                Night of the Living Dead
## 17830                                                                                                                                       Last Man Standing
## 17831                                                                                                                                Escape to Witch Mountain
## 17832                                                                                                                           Robin Hood: Prince of Thieves
## 17833                                                                                                                                            Mary Poppins
## 17834                                                                                                                                                 Freeway
## 17837                                                                                                                                      Lawnmower Man, The
## 17838                                                                                                                                      That Thing You Do!
## 17839                                                                                                                             Ghost and the Darkness, The
## 17840                                                                                                                    William Shakespeare's Romeo + Juliet
## 17843                                                                                                                     Willy Wonka & the Chocolate Factory
## 17854                                                                                                                                            Palookaville
## 17855                                                                                                                                              Abyss, The
## 17860                                                                                                                                           Grifters, The
## 17861                                                                                                                                    English Patient, The
## 17862                                                                                                                                        Paris Is Burning
## 17877                                                                                                                                                   Alien
## 17887                                                                                                                Seventh Seal, The (Sjunde inseglet, Det)
## 17899                                                                                                                                           Groundhog Day
## 17913                                                                                                                      Indiana Jones and the Last Crusade
## 17921                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 17926                                                                                                                                                Candyman
## 17928                                                                                                                              Nightmare on Elm Street, A
## 17929                                                                                                                                               Omen, The
## 17930                                                                                                                                Star Trek: First Contact
## 17933                                                                                                                  Star Trek VI: The Undiscovered Country
## 17934                                                                                                                         Star Trek II: The Wrath of Khan
## 17935                                                                                                                     Star Trek III: The Search for Spock
## 17936                                                                                                                           Star Trek IV: The Voyage Home
## 17937                                                                                                                                          Batman Returns
## 17938                                                                                                                                              Young Guns
## 17941                                                                                                                                                  Jaws 2
## 17943                                                                                                                                           Mars Attacks!
## 17948                                                                                                                                               Liar Liar
## 17949                                                                                                                                                Anaconda
## 17952                                                                                                             Austin Powers: International Man of Mystery
## 17953                                                                                                                                               Breakdown
## 17955                                                                                                                          Lost World: Jurassic Park, The
## 17956                                                                                                                                                 Con Air
## 17957                                                                                                                                        Pillow Book, The
## 17958                                                                                                                                 Speed 2: Cruise Control
## 17959                                                                                                                                          Batman & Robin
## 17961                                                                                                                                My Best Friend's Wedding
## 17962                                                                                                                                                Face/Off
## 17964                                                                                                                                                 Contact
## 17965                                                                                                                                               G.I. Jane
## 17966                                                                                                                                     Conan the Barbarian
## 17967                                                                                                                                    George of the Jungle
## 17968                                                                                                                                                Cop Land
## 17969                                                                                                                                                   Spawn
## 17971                                                                                                                                                   Mimic
## 17972                                                                                                                                      Kull the Conqueror
## 17973                                                                                                                                           Air Force One
## 17976                                                                                                                                               Star Maps
## 17978                                                                                                                                    Seven Years in Tibet
## 17982                                                                                                                                         Full Monty, The
## 17983                                                                                                                           RocketMan (a.k.a. Rocket Man)
## 17985                                                                                                                                                 Stripes
## 17986                                                                                                                                     Welcome to Sarajevo
## 17988                                                                                                                                       Starship Troopers
## 17989                                                                                                                                      Joy Luck Club, The
## 17990                                                                                                                                        Truman Show, The
## 17991                                                                                                                                             Jackal, The
## 17992                                                                                                                            Man Who Knew Too Little, The
## 17993                                                                                                                                     Alien: Resurrection
## 17994                                                                                                                                            Apostle, The
## 17995                                                                                                                                                 Flubber
## 17998                                                                                                                                              Mouse Hunt
## 17999                                                                                                                                                 Titanic
## 18000                                                                                                                                    Horse Whisperer, The
## 18001                                                                                                                                            Jackie Brown
## 18005                                                                                                                                                  Fallen
## 18006                                                                                                                                             Deep Rising
## 18007                                                                                                                                Replacement Killers, The
## 18008                                                                                                                                     Blues Brothers 2000
## 18009                                                                                                                                     Wedding Singer, The
## 18010                                                                                                                                                  Sphere
## 18013                                                                                                                                           U.S. Marshals
## 18014                                                                                                                                           Suicide Kings
## 18015                                                                                                                               Man in the Iron Mask, The
## 18016                                                                                                                                        Newton Boys, The
## 18019                                                                                                                                            Big One, The
## 18020                                                                                                                                           Lost in Space
## 18021                                                                                                                                          Mercury Rising
## 18022                                                                                                                                   Spanish Prisoner, The
## 18023                                                                                                                                          Borrowers, The
## 18024                                                                                                                                          Love Walked In
## 18025                                                                                                                                              Species II
## 18026                                                                                                                                            Big Hit, The
## 18027                                                                                                                                             Deep Impact
## 18028                                                                                                                                                Godzilla
## 18030                                                                                                                          Fear and Loathing in Las Vegas
## 18032                                                                                                                                   Six Days Seven Nights
## 18033                                                                                                                                            Dr. Dolittle
## 18035                                                                                                                                              Armageddon
## 18037                                                                                                                                          Small Soldiers
## 18040                                                                                                                                 Plan 9 from Outer Space
## 18046                                                                                                                                                   Rocky
## 18047                                                                                                                                       Kramer vs. Kramer
## 18055                                                                                                                                               Labyrinth
## 18059                                                                                                                                       Exorcist III, The
## 18061                                                                                                                                         Lethal Weapon 2
## 18062                                                                                                                                         Lethal Weapon 3
## 18063                                                                                                                                            Goonies, The
## 18066                                                                                                                              Back to the Future Part II
## 18067                                                                                                                             Back to the Future Part III
## 18068                                                                                                                                 Poseidon Adventure, The
## 18070                                                                                                                                                    Dune
## 18072                                                                                                                                Honey, I Blew Up the Kid
## 18073                                                                                                                                Honey, I Shrunk the Kids
## 18080                                                                                                                                      Lady and the Tramp
## 18083                                                                                                                                          Rocketeer, The
## 18085                                                                                                                                                  Splash
## 18088                                                                                                                                                    Tron
## 18091                                                                                                                                Man with Two Brains, The
## 18093                                                                                                                    Indiana Jones and the Temple of Doom
## 18094                                                                                                                                          Dead Zone, The
## 18095                                                                                                                                          Needful Things
## 18096                                                                                                                                      Addams Family, The
## 18098                                                                                                                                    Nutty Professor, The
## 18099                                                                                                                                          Watership Down
## 18100                                                                                                                                       Dark Crystal, The
## 18101                                                                                                                                                  Legend
## 18102                                                                                                                             Slums of Beverly Hills, The
## 18104                                                                                                                                  NeverEnding Story, The
## 18105                                                                                                                                                   Blade
## 18110                                                                                                                                            My Bodyguard
## 18112                                                                                                                                                    Toys
## 18113                                                                                                                                       Seventh Sign, The
## 18116                                                                                                                                            Urban Legend
## 18120                                                                                                                                    What Dreams May Come
## 18121                                                                                                                                         My Cousin Vinny
## 18123                                                                                                                                                Holy Man
## 18124                                                                                                                                Children of a Lesser God
## 18131                                                                                                                   I Still Know What You Did Last Summer
## 18132                                                                                                                                          Meet Joe Black
## 18133                                                                                                                                     Stepford Wives, The
## 18135                                                                                                                                      Enemy of the State
## 18136                                                                                                                                           Bug's Life, A
## 18139                                                                                                          King Kong vs. Godzilla (Kingukongu tai Gojira)
## 18141                                                                                                                               Desperately Seeking Susan
## 18142                                                                                                                                                  Fletch
## 18143                                                                                                                                               Red Sonja
## 18145                                                                                                                                          Simple Plan, A
## 18147                                                                                                                                               Rambo III
## 18148                                                                                                                                     Romancing the Stone
## 18150                                                                                                                                                Rocky IV
## 18151                                                                                                                                                 Rocky V
## 18152                                                                                                                                   Young Sherlock Holmes
## 18153                                                                                                                                         Karate Kid, The
## 18154                                                                                                                                Karate Kid, Part II, The
## 18155                                                                                                                               Karate Kid, Part III, The
## 18156                                                                                                                                            General, The
## 18158                                                                                                                                                Fly, The
## 18159                                                                                                                                                Fly, The
## 18163                                                                                                                                          ¡Three Amigos!
## 18164                                                                                                                                     My Favorite Martian
## 18166                                                                                                                                   Towering Inferno, The
## 18167                                                                                                                                               Westworld
## 18169                                                                                                                                            Analyze This
## 18170                                                                                                                       Lock, Stock & Two Smoking Barrels
## 18172                                                                                                                                     Out-of-Towners, The
## 18173                                                                                                                                                    Life
## 18174                                                                                                                                           Hideous Kinky
## 18175                                                                                                                                                eXistenZ
## 18176                                                                                                                                              Dick Tracy
## 18177                                                                                                                                              Mummy, The
## 18178                                                                                                         William Shakespeare's A Midsummer Night's Dream
## 18179                                                                                                               Star Wars: Episode I - The Phantom Menace
## 18185                                                                                                                                   Thirteenth Floor, The
## 18187                                                                                                                                 General's Daughter, The
## 18188                                                                                                                    South Park: Bigger, Longer and Uncut
## 18189                                                                                                                                          Wild Wild West
## 18190                                                                                                                                          Arlington Road
## 18191                                                                                                                                Blair Witch Project, The
## 18192                                                                                                                                             Lake Placid
## 18194                                                                                                                                           Haunting, The
## 18196                                                                                                                                     Mosquito Coast, The
## 18201                                                                                                                                              Yards, The
## 18202                                                                                                                                               Bowfinger
## 18203                                                                                                                                         Heaven Can Wait
## 18205                                                                                                                                                     Big
## 18207                                                                                                                                       13th Warrior, The
## 18208                                                                                                                                         Dudley Do-Right
## 18211                                                                                                                                     Hard Day's Night, A
## 18213                                                                                                                                               Excalibur
## 18220                                                                                                                                     High Plains Drifter
## 18229                                                                                                                                                 RoboCop
## 18234                                                                                                                                          Omega Man, The
## 18237                                                                                                                                          Trading Places
## 18242                                                                                                                                                 Shampoo
## 18243                                                                                                                                River Runs Through It, A
## 18244                                                                                                                                               Backdraft
## 18246                                                                                                                                             End of Days
## 18248                                                                                                                                              Holy Smoke
## 18249                                                                                                                                       Sweet and Lowdown
## 18252                                                                                                                                           Fantasia 2000
## 18253                                                                                                                                                Magnolia
## 18256                                                                                                                                            Galaxy Quest
## 18263                                                                                                                                                   Alive
## 18265                                                                                                                                           Wayne's World
## 18266                                                                                                                                  League of Their Own, A
## 18267                                                                                                                                    White Men Can't Jump
## 18271                                                                                                                                           Drowning Mona
## 18274                                                                                                                                         Mission to Mars
## 18275                                                                                                                                         Ninth Gate, The
## 18276                                                                                                                             Hoosiers (a.k.a. Best Shot)
## 18278                                                                                                                                            On the Beach
## 18279                                                                                                                                Harry and the Hendersons
## 18282                                                                                                                                       Final Destination
## 18287                                                                                                                            Teenage Mutant Ninja Turtles
## 18288                                                                                                                                                Red Dawn
## 18290                                                                                                                                          Grumpy Old Men
## 18291                                                                                                                                         Waking the Dead
## 18298                                                                                                                                                    Hook
## 18299                                                                                                                                          Horror Express
## 18303                                                                                                                                         American Psycho
## 18305                                                                                                                                    Crow: Salvation, The
## 18308                                                                                                                                            Alien Nation
## 18313                                                                                                                                           Space Cowboys
## 18314                                                                                                                                             Air America
## 18316                                                                                                                 Naked Gun 2 1/2: The Smell of Fear, The
## 18317                                                                                                                     Highlander: Endgame (Highlander IV)
## 18318                                                                                                                                             Nurse Betty
## 18319                                                                                                                                            Watcher, The
## 18323                                                                                                                   Abbott and Costello Meet Frankenstein
## 18326                                                                                                                                              Get Carter
## 18329                                                                                                                                        Charlie's Angels
## 18331                                                                                                                                            6th Day, The
## 18332                                                                                                                                         What Women Want
## 18333                                                                                                                                       Extreme Prejudice
## 18334                                                                                                                                           No Man's Land
## 18343                                                                                                                                               Toy Story
## 18344                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 18345                                                                                                                                        Dead Man Walking
## 18346                                                                                                                                    Seven (a.k.a. Se7en)
## 18349                                                                                                                                                Net, The
## 18350                                                                                                                                            Strange Days
## 18351                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 18352                                                                                                                                                Outbreak
## 18353                                                                                                                                            Pulp Fiction
## 18355                                                                                                                                          Lion King, The
## 18356                                                                                                                                                   Speed
## 18357                                                                                                                                               True Lies
## 18358                                                                                                                                               Firm, The
## 18359                                                                                                                                           Fugitive, The
## 18360                                                                                                                                           Jurassic Park
## 18361                                                                                                                                          Mrs. Doubtfire
## 18362                                                                                                                                    Sleepless in Seattle
## 18363                                                                                                                                                   Ghost
## 18365                                                                                                                                                  Batman
## 18367                                                                                                                                            Pretty Woman
## 18368                                                                                                                                                   Fargo
## 18369                                                                                                                                     Mission: Impossible
## 18370                                                                                                                                               Rock, The
## 18371                                                                                                                                                 Twister
## 18372                                                                                                                           Independence Day (a.k.a. ID4)
## 18373                                                                                                                                                 Vertigo
## 18376                                                                                                                              E.T. the Extra-Terrestrial
## 18377                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 18378                                                                                                                                                   Alien
## 18382                                                                                                                                         Field of Dreams
## 18383                                                                                                                                 When Harry Met Sally...
## 18384                                                                                                                                               Cape Fear
## 18387                                                                                                                                                  Jaws 2
## 18388                                                                                                                                                Jaws 3-D
## 18389                                                                                                                                           Mars Attacks!
## 18390                                                                                                                                           Jerry Maguire
## 18391                                                                                                                                           Private Parts
## 18392                                                                                                             Austin Powers: International Man of Mystery
## 18393                                                                                                                                                 Con Air
## 18394                                                                                                                                                Face/Off
## 18396                                                                                                                                       Conspiracy Theory
## 18397                                                                                                                                           Air Force One
## 18400                                                                                                                                                 Titanic
## 18401                                                                                                                                               Dark City
## 18402                                                                                                                                     Wedding Singer, The
## 18406                                                                                                                                             Poltergeist
## 18407                                                                                                                                           Exorcist, The
## 18408                                                                                                                                           Lethal Weapon
## 18409                                                                                                                                                Gremlins
## 18410                                                                                                                                           Soylent Green
## 18411                                                                                                                                 Poseidon Adventure, The
## 18416                                                                                                                                           Pleasantville
## 18417                                                                                                                                                  Fletch
## 18420                                                                                                                                                  Cocoon
## 18422                                                                                                                                        Crocodile Dundee
## 18423                                                                                                                                     Color of Money, The
## 18426                                                                                                                                                Superman
## 18427                                                                                                                                           Arachnophobia
## 18431                                                                                                                             National Lampoon's Vacation
## 18433                                                                                                                                         American Beauty
## 18437                                                                                                                                              Fight Club
## 18438                                                                                                                                Who Framed Roger Rabbit?
## 18439                                                                                                                                    Being John Malkovich
## 18440                                                                                                                                          Trading Places
## 18441                                                                                                                                            Natural, The
## 18443                                                                                                                                             Jagged Edge
## 18445                                                                                                                                           Wayne's World
## 18446                                                                                                                             Hoosiers (a.k.a. Best Shot)
## 18447                                                                                                                                       American Graffiti
## 18449                                                                                                                                   Good Morning, Vietnam
## 18450                                                                                                                                           High Fidelity
## 18453                                                                                                                                   Spy Who Loved Me, The
## 18454                                                                                                                                         Blazing Saddles
## 18455                                                                                                                                                   X-Men
## 18456                                                                                                                            Planes, Trains & Automobiles
## 18457                                                                                                                                             Wall Street
## 18458                                                                                                                                               Cast Away
## 18460                                                                                                                                        Eddie Murphy Raw
## 18461                                                                                                                                       Longest Yard, The
## 18463                                                                                                                                                   Shrek
## 18466                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 18467                                                                                                                                                 48 Hrs.
## 18468                                                                                                                                              Stir Crazy
## 18472                                                                                                                                    Saturday Night Fever
## 18473                                                                                                                                              Old School
## 18475                                                                                                                                 All the President's Men
## 18476                                                                                                                                       Kill Bill: Vol. 1
## 18479                                                                                                                                                Sin City
## 18480                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 18483                                                                                                                                               GoldenEye
## 18491                                                                                                                          Bridges of Madison County, The
## 18493                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 18494                                                                                                                                  Flirting With Disaster
## 18496                                                                                                                                          Batman Forever
## 18499                                                                                                                              Die Hard: With a Vengeance
## 18501                                                                                                                                             Nine Months
## 18509                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 18510                                                                                                                                                  Junior
## 18521                                                                                                                                                Stargate
## 18524                                                                                                                                 While You Were Sleeping
## 18526                                                                                                                                   Bullets Over Broadway
## 18533                                                                                                                                               Coneheads
## 18536                                                                                                                                               Firm, The
## 18546                                                                                                                                    Sleepless in Seattle
## 18548                                                                                                                                               Tombstone
## 18549                                                                                                                                  Brady Bunch Movie, The
## 18550                                                                                                                                                   Ghost
## 18557                                                                                                                                            Pretty Woman
## 18558                                                                                                                                             Heavy Metal
## 18561                                                                                                                                               Toy Story
## 18562                                                                                                                                               GoldenEye
## 18563                                                                                                                                   Sense and Sensibility
## 18564                                                                                                                                              Persuasion
## 18566                                                                                                                                               Apollo 13
## 18567                                                                                                                                          Batman Forever
## 18568                                                                                                                                            Crimson Tide
## 18569                                                                                                                              Die Hard: With a Vengeance
## 18570                                                                                                                                                Net, The
## 18571                                                                                                                                              Waterworld
## 18572                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 18573                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 18574                                                                                                                                            Little Women
## 18575                                                                                                     Like Water for Chocolate (Como agua para chocolate)
## 18577                                                                                                                                                Outbreak
## 18578                                                                                                                                            Pulp Fiction
## 18579                                                                                                                                               Quiz Show
## 18582                                                                                                                                  Star Trek: Generations
## 18583                                                                                                                                 While You Were Sleeping
## 18584                                                                                                                                        Muriel's Wedding
## 18585                                                                                                                              Ace Ventura: Pet Detective
## 18586                                                                                                                                Clear and Present Danger
## 18587                                                                                                                                            Forrest Gump
## 18588                                                                                                                                               True Lies
## 18589                                                                                                                                             Cliffhanger
## 18590                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 18592                                                                                                                                        Schindler's List
## 18595                                                                                                                                                 Aladdin
## 18596                                                                                                                                      Dances with Wolves
## 18597                                                                                                                                                  Batman
## 18598                                                                                                                                    Beauty and the Beast
## 18599                                                                                                                                               Jane Eyre
## 18600                                                                                                               Song of the Little Road (Pather Panchali)
## 18605                                                                                                                                Night of the Living Dead
## 18609                                                                                                                               Desperately Seeking Susan
## 18610                                                                                                                                          Police Academy
## 18613                                                                                                                                   Thirteenth Floor, The
## 18614                                                                                                                                           Arachnophobia
## 18615                                                                                                                                           Summer of Sam
## 18616                                                                                                                                          Arlington Road
## 18617                                                                                                                                Blair Witch Project, The
## 18621                                                                                                                                   House on Haunted Hill
## 18626                                                                                                                                                Scream 3
## 18628                                                                                                                                               Gladiator
## 18630                                                                                                                                         Bless the Child
## 18635                                                                                                                                                 Jumanji
## 18637                                                                                                                                    Seven (a.k.a. Se7en)
## 18639                                                                                                                                     Legends of the Fall
## 18641                                                                                                                                            Pulp Fiction
## 18642                                                                                                                               Shawshank Redemption, The
## 18646                                                                                                                                            Blade Runner
## 18648                                                                                                                               Silence of the Lambs, The
## 18649                                                                                                                                                  Eraser
## 18655                                                                                                                                       Full Metal Jacket
## 18661                                                                                                                                                Rain Man
## 18662                                                                                                                                           Lethal Weapon
## 18667                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 18672                                                                                                                                       Tora! Tora! Tora!
## 18676                                                                                                                                                   X-Men
## 18677                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 18678                                                                                                                                                  Snatch
## 18685                                                                                                                                       Beautiful Mind, A
## 18686                                                                                                                                                 Ice Age
## 18687                                                                                                                                    Bourne Identity, The
## 18688                                                                                                                                         Minority Report
## 18689                                                                                                                                               Ring, The
## 18690                                                                                                                    Professional, The (Le professionnel)
## 18692                                                                                                                                     Catch Me If You Can
## 18693                                                                                                                                                Identity
## 18696                                                                                                                                       Kill Bill: Vol. 1
## 18697                                                                                                                                           Love Actually
## 18698                                                                                                                                       Hero (Ying xiong)
## 18701                                                                                                                                        Dawn of the Dead
## 18702                                                                                                                                       Kill Bill: Vol. 2
## 18706                                                                                                                                   Bourne Supremacy, The
## 18707                                                                                                                                              Collateral
## 18708                                                                                                                                       Shaun of the Dead
## 18709                                                                                                                                                     Saw
## 18711                                                                                                                                     Million Dollar Baby
## 18713                                                                                                                                                   Crash
## 18714                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 18715                                                                                                                                                Serenity
## 18716                                                                                                                                     Unfinished Life, An
## 18726                                                                                                                                              Waterworld
## 18736                                                                                                                                               Mask, The
## 18738                                                                                                                                           Fugitive, The
## 18747                                                                                                                                            Pretty Woman
## 18751                                                                                                                           Independence Day (a.k.a. ID4)
## 18759                                                                                                                                      Gone with the Wind
## 18762                                                                                                                                     Sound of Music, The
## 18777                                                                                                                                     Blues Brothers, The
## 18782                                                                                                                                                   Glory
## 18796                                                                                                                                                 Gattaca
## 18801                                                                                                                                            Jackie Brown
## 18803                                                                                                                                     Wedding Singer, The
## 18807                                                                                                                                              Armageddon
## 18810                                                                                                                              Back to the Future Part II
## 18811                                                                                                                             Back to the Future Part III
## 18814                                                                                                                                           Bug's Life, A
## 18820                                                                                                               Star Wars: Episode I - The Phantom Menace
## 18822                                                                                                                                            American Pie
## 18832                                                                                                                                Who Framed Roger Rabbit?
## 18833                                                                                                                                              Spaceballs
## 18836                                                                                                                                               Malcolm X
## 18842                                                                                                                                      Gone in 60 Seconds
## 18843                                                                                                                                             Chicken Run
## 18844                                                                                                                                      Perfect Storm, The
## 18846                                                                                                                                        Meet the Parents
## 18847                                                                                                                                             Unbreakable
## 18848                                                                                                                            Planes, Trains & Automobiles
## 18849                                                                                                                                         What Women Want
## 18850                                                                                                                                               Cast Away
## 18852                                                                                                                                       Miss Congeniality
## 18857                                                                                                                                 Lara Croft: Tomb Raider
## 18861                                                                                                                                              Panic Room
## 18864                                                                                                            Star Wars: Episode II - Attack of the Clones
## 18865                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 18866                                                                                                                             Austin Powers in Goldmember
## 18868                                                                                                                  Lord of the Rings: The Two Towers, The
## 18872                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 18873                                                                                                                                          Matchstick Men
## 18875                                                                                                                                          School of Rock
## 18878                                                                                                         Master and Commander: The Far Side of the World
## 18880                                                                                                                                                WarGames
## 18884                                                                                                                                                 Shrek 2
## 18887                                                                                                                                              Collateral
## 18892                                                                                                                       Charlie and the Chocolate Factory
## 18895                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 18896                                                                                                                                        Mr. & Mrs. Smith
## 18903                                                                                                                                      Da Vinci Code, The
## 18904                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 18907                                                                                                                                        Illusionist, The
## 18917                                                                                                                                               In Bruges
## 18924                                                                                                                        Tyler Perry's Madea Goes to Jail
## 18926                                                                                                                                X-Men Origins: Wolverine
## 18930                                                                                                                                                 Jumanji
## 18931                                                                                                                                               GoldenEye
## 18932                                                                                                                                                    Babe
## 18933                                                                                                                                                Clueless
## 18934                                                                                                                                              Pocahontas
## 18936                                                                                                                                            Broken Arrow
## 18939                                                                                                                                                   Congo
## 18941                                                                                                                                                Net, The
## 18942                                                                                                                                             Nine Months
## 18943                                                                                                                                   Walk in the Clouds, A
## 18944                                                                                                                                              Waterworld
## 18947                                                                                                                                                    I.Q.
## 18948                                                                                                                                                  Junior
## 18950                                                                                                                                                Stargate
## 18951                                                                                                                                       Santa Clause, The
## 18953                                                                                                                                  Star Trek: Generations
## 18956                                                                                                                                             Client, The
## 18958                                                                                                                             Four Weddings and a Funeral
## 18959                                                                                                                                        Jungle Book, The
## 18966                                                                                                                                            Black Beauty
## 18967                                                                                                                                               Coneheads
## 18969                                                                                                                                               Firm, The
## 18970                                                                                                                                              Free Willy
## 18973                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 18980                                                                                                                                      Secret Garden, The
## 18985                                                                                                                                      Dances with Wolves
## 18988                                                                                                                         Snow White and the Seven Dwarfs
## 18991                                                                                                                                         Aristocats, The
## 18992                                                                                                                                                 Twister
## 18999                                                                                                                                             Client, The
## 19004                                                                                                                                When a Man Loves a Woman
## 19005                                                                                                                                   Beverly Hills Cop III
## 19007                                                                                                                                           Jurassic Park
## 19016                                                                                                                                        Grumpier Old Men
## 19017                                                                                                                                       Waiting to Exhale
## 19020                                                                                                                                       Leaving Las Vegas
## 19025                                                                                                                             Indian in the Cupboard, The
## 19029                                                                                                                                     Vampire in Brooklyn
## 19031                                                                                                                                             Taxi Driver
## 19034                                                                                                                                          Batman Forever
## 19039                                                                                                                                         Babysitter, The
## 19040                                                                                                                                              Disclosure
## 19041                                                                                                                                          Goofy Movie, A
## 19042                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 19044                                                                                                                           Kid in King Arthur's Court, A
## 19046                                                                                                              Mary Shelley's Frankenstein (Frankenstein)
## 19047                                                                                                                                              Milk Money
## 19057                                                                                                                                               Mask, The
## 19066                                                                                                                                              Rising Sun
## 19069                                                                                                                                   Three Musketeers, The
## 19070                                                                                                                                         Pagemaster, The
## 19080                                                                                                                                              Craft, The
## 19084                                                                                                                                                Fan, The
## 19088                                                                         Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 19099                                                                                                                         Aladdin and the King of Thieves
## 19102                                                                                                                                         Days of Thunder
## 19103                                                                                                                                    English Patient, The
## 19104                                                                                                                                     Princess Bride, The
## 19106                                                                                                                                        Army of Darkness
## 19107                                                                                                                                           Groundhog Day
## 19108                                                                                                                                                Fantasia
## 19109                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 19112                                                                                                                                           Mars Attacks!
## 19116                                                                                                                                           Fools Rush In
## 19120                                                                                                                                                Anaconda
## 19123                                                                                                                                        Addicted to Love
## 19124                                                                                                                          Lost World: Jurassic Park, The
## 19131                                                                                                                                           Air Force One
## 19134                                                                                                                                       L.A. Confidential
## 19135                                                                                                                         I Know What You Did Last Summer
## 19136                                                                                                                                    The Devil's Advocate
## 19137                                                                                                                                                Mad City
## 19139                                                                                                                                             Jackal, The
## 19141                                                                                                                                                Scream 2
## 19143                                                                                                                                             Spice World
## 19145                                                                                                                                            Big Hit, The
## 19146                                                                                                                                             Deep Impact
## 19147                                                                                                                                                Insomnia
## 19152                                                                                                                                      Mask of Zorro, The
## 19154                                                                                                                                     Saving Private Ryan
## 19166                                                                                                                     American Tail: Fievel Goes West, An
## 19169                                                                                                                                            Urban Legend
## 19175                                                                                                                                              Home Fries
## 19176                                                                                                                                                  Psycho
## 19179                                                                                                                                                 Payback
## 19181                                                                                                                                     Rage: Carrie 2, The
## 19184                                                                                                                                       Never Been Kissed
## 19192                                                                                                                                 General's Daughter, The
## 19194                                                                                                                                Blair Witch Project, The
## 19195                                                                                                                                           Haunting, The
## 19196                                                                                                                                           Deep Blue Sea
## 19204                                                                                                                                           Random Hearts
## 19205                                                                                                                                          Three to Tango
## 19206                                                                                                                                     Bone Collector, The
## 19211                                                                                                                                           Fantasia 2000
## 19212                                                                                                                                Talented Mr. Ripley, The
## 19214                                                                                                                                  Snow Falling on Cedars
## 19215                                                                                                                                              Beach, The
## 19216                                                                                                                                             Boiler Room
## 19217                                                                                                                                              Hanging Up
## 19218                                                                                                                          We're Back! A Dinosaur's Story
## 19223                                                                                                                                         American Psycho
## 19226                                                                                                                                                   U-571
## 19227                                                                                                                                    Virgin Suicides, The
## 19230                                                                                                                                                Dinosaur
## 19231                                                                                                                                         White Christmas
## 19232                                                                                                                                            Sleepwalkers
## 19238                                                                                                                                      Autumn in New York
## 19240                                                                                                                                           Almost Famous
## 19241                                                                                                                                Urban Legends: Final Cut
## 19242                                                                                                                                     Dr. T and the Women
## 19243                                                                                                                                        Charlie's Angels
## 19249                                                                                                                               Emperor's New Groove, The
## 19258                                                                                                                                                Hannibal
## 19262                                                                                                                                   Bridget Jones's Diary
## 19268                                                                                                                                 Lara Croft: Tomb Raider
## 19270                                                                                                                                         Crazy/Beautiful
## 19271                                                                                                                                           Scary Movie 2
## 19273                                                                                                                                   America's Sweethearts
## 19276                                                                                                                              Captain Corelli's Mandolin
## 19277                                                                                                                                                       O
## 19278                                                                                                                                          Musketeer, The
## 19282                                                                                                                                               From Hell
## 19288                                                                                                                                          In the Bedroom
## 19292                                                                                                                            Kandahar (Safar e Ghandehar)
## 19293                                                                                                                                   Royal Tenenbaums, The
## 19296                                                                                                                                         Black Hawk Down
## 19297                                                                                                                                            Gosford Park
## 19306                                                                                                                                     Sweetest Thing, The
## 19309                                                                                                                                              Spider-Man
## 19311                                                                                                                                                Insomnia
## 19321                                                                                                                                                 Abandon
## 19323                                                                                                                                    Saturday Night Fever
## 19325                                                                                                                 Harry Potter and the Chamber of Secrets
## 19326                                                                                                                                         Men with Brooms
## 19327                                                                                                                                         Die Another Day
## 19329                                                                                                                                               25th Hour
## 19336                                                                                                                                                Wiz, The
## 19337                                                                                                                                                Clueless
## 19339                                                                                                                                                 Twister
## 19340                                                                                                                           Robin Hood: Prince of Thieves
## 19341                                                                                                                                       Miller's Crossing
## 19343                                                                                                                          Attack of the Killer Tomatoes!
## 19345                                                                                                                                       Battlefield Earth
## 19348                                                                                                                                                   Loser
## 19349                                                                                                                                               Road Trip
## 19350                                                                                                                                       Small Time Crooks
## 19352                                                                                                                                           Shanghai Noon
## 19353                                                                                                                                          Private School
## 19354                                                                                                                                      Gone in 60 Seconds
## 19355                                                                                                                                                   Shaft
## 19356                                                                                                                                              Titan A.E.
## 19358                                                                                                                                      Me, Myself & Irene
## 19361                                                                                                                                             Scary Movie
## 19362                                                                                                                                                   X-Men
## 19363                                                                                                                                               Toy Story
## 19364                                                                                                                                               GoldenEye
## 19365                                                                                                                          Ace Ventura: When Nature Calls
## 19366                                                                                                                                              Get Shorty
## 19367                                                                                                                                                    Babe
## 19369                                                                                                                                              Pocahontas
## 19370                                                                                                                                     Usual Suspects, The
## 19371                                                                                                                                           Happy Gilmore
## 19372                                                                                                                                              Braveheart
## 19373                                                                                                                                           Birdcage, The
## 19375                                                                                                                                          Batman Forever
## 19376                                                                                                                              Die Hard: With a Vengeance
## 19377                                                                                                                                             Judge Dredd
## 19378                                                                                                                                               Showgirls
## 19379                                                                                                                                           Billy Madison
## 19380                                                                                                                                                  Clerks
## 19381                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 19382                                                                                                                                                 Ed Wood
## 19385                                                                                                                                     Legends of the Fall
## 19386                                                                                                                             Madness of King George, The
## 19387                                                                                                                                    Natural Born Killers
## 19389                                                                                                                                               Quiz Show
## 19390                                                                                                                                 Quick and the Dead, The
## 19391                                                                                                                                         Specialist, The
## 19392                                                                                                                                                Stargate
## 19393                                                                                                                               Shawshank Redemption, The
## 19394                                                                                                                                               Tommy Boy
## 19396                                                                                                                                 While You Were Sleeping
## 19397                                                                                                                                Clear and Present Danger
## 19398                                                                                                                                               Crow, The
## 19399                                                                                                                                            Forrest Gump
## 19400                                                                                                                                          Lion King, The
## 19401                                                                                                                                               Mask, The
## 19402                                                                                                                                                Maverick
## 19403                                                                                                                                                   Speed
## 19404                                                                                                                                               True Lies
## 19405                                                                                                                                    Addams Family Values
## 19406                                                                                                                                              Blown Away
## 19407                                                                                                                                          Demolition Man
## 19408                                                                                                                                               Firm, The
## 19410                                                                                                                               In the Name of the Father
## 19411                                                                                                                                           Jurassic Park
## 19413                                                                                                                                          Mrs. Doubtfire
## 19414                                                                                                                                            Philadelphia
## 19417                                                                                                                            So I Married an Axe Murderer
## 19418                                                                                                                         Nightmare Before Christmas, The
## 19420                                                                                                                              Terminator 2: Judgment Day
## 19422                                                                                                                                                  Batman
## 19423                                                                                                                               Silence of the Lambs, The
## 19425                                                                                                                                    Beauty and the Beast
## 19427                                                                                                                                            Pretty Woman
## 19428                                                                                                                                                   Fargo
## 19429                                                                                                                                             Heavy Metal
## 19430                                                                                                                                     Mission: Impossible
## 19431                                                                                                                               James and the Giant Peach
## 19432                                                                                                                                              Barbarella
## 19434                                                                                                                                                 Twister
## 19436                                                                                    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 19437                                                                                                                           Independence Day (a.k.a. ID4)
## 19438                                                                                                                                                 Kingpin
## 19441                                                                                                                                      North by Northwest
## 19442                                                                                                                                            My Fair Lady
## 19443                                                                                                                                       Wizard of Oz, The
## 19450                                                                                                                                      That Thing You Do!
## 19452                                                                                                                                    Fish Called Wanda, A
## 19453                                                                                                                            Monty Python's Life of Brian
## 19456                                                                                                                                          Basic Instinct
## 19457                                                                                                                              E.T. the Extra-Terrestrial
## 19458                                                                                                                                                 Top Gun
## 19459                                                                                                                                              Abyss, The
## 19463                                                                                                                         One Flew Over the Cuckoo's Nest
## 19467                                                                                                                                                  Brazil
## 19471                                                                                                                                     Clockwork Orange, A
## 19474                                                                                                                                              Goodfellas
## 19476                                                                                                                                        Army of Darkness
## 19478                                                                                                                                       Full Metal Jacket
## 19481                                                                                                                                                 Amadeus
## 19483                                                                                                                   Rosencrantz and Guildenstern Are Dead
## 19485                                                                                                                                           Graduate, The
## 19488                                                                                                                                             Stand by Me
## 19494                                                                                                                                              Highlander
## 19495                                                                                                                                          Cool Hand Luke
## 19502                                                                                                                                         Field of Dreams
## 19504                                                                                                                                 When Harry Met Sally...
## 19505                                                                                                                                              Birds, The
## 19506                                                                                                                         Dracula (Bram Stoker's Dracula)
## 19507                                                                                                                                                   Shine
## 19508                                                                                                                                              Die Hard 2
## 19509                                                                                                                           Star Trek: The Motion Picture
## 19510                                                                                                                  Star Trek VI: The Undiscovered Country
## 19512                                                                                                                     Star Trek III: The Search for Spock
## 19513                                                                                                                                          Batman Returns
## 19514                                                                                                                                              Young Guns
## 19515                                                                                                                                                  Grease
## 19516                                                                                                                                                    Jaws
## 19517                                                                                                                                           Mars Attacks!
## 19518                                                                                                                                           Jerry Maguire
## 19519                                                                                                                                                Sneakers
## 19522                                                                                                                                           Donnie Brasco
## 19523                                                                                                                                               Liar Liar
## 19526                                                                                                                          Lost World: Jurassic Park, The
## 19527                                                                                                                                          Batman & Robin
## 19528                                                                                                                                                Hercules
## 19530                                                                                                                               Hunt for Red October, The
## 19531                                                                                                                                       L.A. Confidential
## 19532                                                                                                                                               Game, The
## 19533                                                                                                                                         Full Monty, The
## 19534                                                                                                                                                 Witness
## 19535                                                                                                                                       Starship Troopers
## 19536                                                                                                                                        Truman Show, The
## 19537                                                                                                                                       Good Will Hunting
## 19538                                                                                                                                                 Titanic
## 19539                                                                                                                                     Tomorrow Never Dies
## 19540                                                                                                                                            Jackie Brown
## 19542                                                                                                                                             Wag the Dog
## 19544                                                                                                                                     Wedding Singer, The
## 19545                                                                                                                          Fear and Loathing in Las Vegas
## 19546                                                                                                                          X-Files: Fight the Future, The
## 19549                                                                                                                                                Rain Man
## 19551                                                                                                                                           Exorcist, The
## 19552                                                                                                                                           Lethal Weapon
## 19553                                                                                                                                         Lethal Weapon 2
## 19554                                                                                                                                                Gremlins
## 19556                                                                                                                                      Mask of Zorro, The
## 19557                                                                                                                              Back to the Future Part II
## 19558                                                                                                                             Back to the Future Part III
## 19559                                                                                                                                                    Dune
## 19560                                                                                                                                Godfather: Part III, The
## 19562                                                                                                                                Honey, I Shrunk the Kids
## 19563                                                                                                                                        Jungle Book, The
## 19564                                                                                                                                     Little Mermaid, The
## 19567                                                                                                                                                  Splash
## 19570                                                                                                                    Indiana Jones and the Temple of Doom
## 19571                                                                                                                             1984 (Nineteen Eighty-Four)
## 19572                                                                                                                                      Addams Family, The
## 19574                                                                                                                                       Dark Crystal, The
## 19576                                                                                                                              Gods Must Be Crazy II, The
## 19577                                                                                                                                  NeverEnding Story, The
## 19578                                                                                                                                             Beetlejuice
## 19580                                                                                                                                         Few Good Men, A
## 19581                                                                                                                                     Edward Scissorhands
## 19582                                                                                                                                                    Antz
## 19583                                                                                                                                         My Cousin Vinny
## 19585                                                                                                                                           Bug's Life, A
## 19587                                                                                                                                     Shakespeare in Love
## 19589                                                                                                                                                  Cocoon
## 19590                                                                                                                                                Rocky II
## 19591                                                                                                                                                Rocky IV
## 19592                                                                                                                                Karate Kid, Part II, The
## 19593                                                                                                                                                Fly, The
## 19595                                                                                                                                        Crocodile Dundee
## 19597                                                                                                                                            Pet Sematary
## 19600                                                                                                               Star Wars: Episode I - The Phantom Menace
## 19601                                                                                                                                                Superman
## 19602                                                                                                                                            Superman III
## 19603                                                                                                                          Rocky Horror Picture Show, The
## 19604                                                                                                                                           Arachnophobia
## 19608                                                                                                                                         Iron Giant, The
## 19609                                                                                                                                Thomas Crown Affair, The
## 19610                                                                                               Monty Python's And Now for Something Completely Different
## 19611                                                                                                                                               Airplane!
## 19612                                                                                                                                 Airplane II: The Sequel
## 19613                                                                                                                             National Lampoon's Vacation
## 19614                                                                                                                                                     Big
## 19615                                                                                                                                      Christmas Story, A
## 19616                                                                                                                                         American Beauty
## 19618                                                                                                                                          Risky Business
## 19619                                                                                                                                            Total Recall
## 19621                                                                                                                                              Flashdance
## 19622                                                                                                                                              Goldfinger
## 19624                                                                                                                                                  Dr. No
## 19625                                                                                                                                        Blue Lagoon, The
## 19630                                                                                                                                Who Framed Roger Rabbit?
## 19631                                                                                                                                        Live and Let Die
## 19632                                                                                                                                             Thunderball
## 19633                                                                                                                                    Being John Malkovich
## 19634                                                                                                                                              Spaceballs
## 19636                                                                                                                                          Trading Places
## 19638                                                                                                                                                Scrooged
## 19639                                                                                                                                                  Harvey
## 19640                                                                                                                                            Natural, The
## 19641                                                                                                                                River Runs Through It, A
## 19642                                                                                                                                        Fatal Attraction
## 19643                                                                                                                                               Backdraft
## 19644                                                                                                                                        Fisher King, The
## 19646                                                                                                                                        Any Given Sunday
## 19647                                                                                                                                            Galaxy Quest
## 19648                                                                                                                                              Sister Act
## 19649                                                                                                                                           Wayne's World
## 19650                                                                                                                                           Patriot Games
## 19651                                                                                                                             Hoosiers (a.k.a. Best Shot)
## 19653                                                                                                                                                Red Dawn
## 19654                                                                                                                                   Good Morning, Vietnam
## 19655                                                                                                                                           High Fidelity
## 19657                                                                                                                                               Gladiator
## 19659                                                                                                                                  Mission: Impossible II
## 19660                                                                                                                                         Blazing Saddles
## 19663                                                                                                                             Big Trouble in Little China
## 19664                                                                                                                                      Perfect Storm, The
## 19666                                                                                                                                           Almost Famous
## 19667                                                                                                                                            Best in Show
## 19668                                                                                                                                            Billy Elliot
## 19671                                                                                                                                               Cast Away
## 19676                                                                                                                                                Scarface
## 19677                                                                                                                                                   Shrek
## 19678                                                                                                                               Fast and the Furious, The
## 19680                                                                                                                                           Short Circuit
## 19682                                                                                                                                            Major League
## 19683                                                                                                                                      Planet of the Apes
## 19686                                                                                                                                          Monsters, Inc.
## 19688                                                                                                                                          Ocean's Eleven
## 19689                                                                                                                                    Moscow on the Hudson
## 19690                                                                                                                              Bill & Ted's Bogus Journey
## 19692                                                                                                                                       Beautiful Mind, A
## 19693                                                                                                                                                I Am Sam
## 19694                                                                                                                                      Shipping News, The
## 19695                                                                                                                                                 48 Hrs.
## 19696                                                                                                                                My Big Fat Greek Wedding
## 19699                                                                                                                                    Bourne Identity, The
## 19700                                                                                                                                         Minority Report
## 19702                                                                                                                    Professional, The (Le professionnel)
## 19708                                                                                                                                    Matrix Reloaded, The
## 19709                                                                                                                                            Finding Nemo
## 19710                                                                                                                                        Italian Job, The
## 19711                                                                                                                                             Barton Fink
## 19713                                                                                                                                                Commando
## 19717                                                                                                                      Monty Python's The Meaning of Life
## 19718                                                                                                                                 Matrix Revolutions, The
## 19719                                                                                                         Master and Commander: The Far Side of the World
## 19722                                                                                                                                 Chitty Chitty Bang Bang
## 19723                                                                                                                                                 Hellboy
## 19727                                                                                                                                          Into the Woods
## 19728                                                                                                                                            Spider-Man 2
## 19729                                                                                                                                                I, Robot
## 19730                                                                                                                                   Bourne Supremacy, The
## 19731                                                                                                                            Murder on the Orient Express
## 19735                                                                                                                                           Batman Begins
## 19736                                                                                                                                        Ice Harvest, The
## 19740                                                                                                                                        Flintstones, The
## 19745                                                                                                                                   Boot, Das (Boat, The)
## 19753                                                                                                                                         Karate Kid, The
## 19755                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 19756                                                                                                                                 General's Daughter, The
## 19757                                                                                                                               Run Lola Run (Lola rennt)
## 19758                                                                                                                    South Park: Bigger, Longer and Uncut
## 19759                                                                                                                                            American Pie
## 19762                                                                                                                                Thomas Crown Affair, The
## 19765                                                                                                                                           Wayne's World
## 19768                                                                                                                                      Autumn in New York
## 19769                                                                                                                                       Tao of Steve, The
## 19772                                                                                                                                        Charlie's Angels
## 19773                                                                                                                                            Little Nicky
## 19774                                                                                                      How the Grinch Stole Christmas (a.k.a. The Grinch)
## 19775                                                                                                                                          102 Dalmatians
## 19777                                                                                                                                       Miss Congeniality
## 19778                                                                                                                                   All the Pretty Horses
## 19781                                                                                                                                            Pearl Harbor
## 19783                                                                                                                                          Batman Forever
## 19786                                                                                                                                          Lion King, The
## 19787                                                                                                                                                   Speed
## 19788                                                                                                                                      Dances with Wolves
## 19789                                                                                                                               Silence of the Lambs, The
## 19790                                                                                                                                    Beauty and the Beast
## 19792                                                                                                                                      Back to the Future
## 19794                                                                                                                                     Saving Private Ryan
## 19799                                                                                                                                             Matrix, The
## 19807                                                                                                                                                   Shaft
## 19809                                                                                                                                                   Shrek
## 19811                                                                                                                                             Waking Life
## 19834                                                                                                         Wind Will Carry Us, The (Bad ma ra khahad bord)
## 19836                                                                                                                                       Scanner Darkly, A
## 19847                                                                                                                                                Shortbus
## 19857                                                                                                                                  Caramel (Sukkar banat)
## 19858                                                                                                                                                  WALL·E
## 19864                                                                                                                                       Sunshine Cleaning
## 19874                                                                                                                                               Inception
## 19876                                                                                                                                    Seven (a.k.a. Se7en)
## 19877                                                                                                                                              Braveheart
## 19878                                                                                                                                             Taxi Driver
## 19879                                                                                                                                          Before Sunrise
## 19880                                                                                                                                      Heavenly Creatures
## 19882                                                                                                                               Shawshank Redemption, The
## 19883                                                                                                                                            Forrest Gump
## 19884                                                                                                                         Nightmare Before Christmas, The
## 19885                                                                                                                               Silence of the Lambs, The
## 19886                                                                                                                                    Beauty and the Beast
## 19887                                                                                                                         Wallace & Gromit: A Close Shave
## 19888                                                                                                                                              Casablanca
## 19889                                                                                                                                       Wizard of Oz, The
## 19890                                                                                                                                            Mary Poppins
## 19891                                                                                                                            Monty Python's Life of Brian
## 19892                                                                                                                                           Dirty Dancing
## 19893                                                                                                                    Wallace & Gromit: The Wrong Trousers
## 19895                                                                                                                         One Flew Over the Cuckoo's Nest
## 19896                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 19898                                                                                                                                       Full Metal Jacket
## 19899                                                                                                                                        Harold and Maude
## 19900                                                                                                                                           Graduate, The
## 19902                                                                                                                                           Groundhog Day
## 19903                                                                                                                                      Back to the Future
## 19904                                                                                                                                    Fried Green Tomatoes
## 19905                                                                                                                                         Field of Dreams
## 19906                                                                                                                                      Breaking the Waves
## 19907                                                                                                                                                   Shine
## 19908                                                                                                                                      Fifth Element, The
## 19909                                                                                                                                                 Gattaca
## 19911                                                                                                                                       Big Lebowski, The
## 19912                                                                                                                                      As Good as It Gets
## 19913                                                                                                                          Fear and Loathing in Las Vegas
## 19914                                                                                                                                     Breakfast Club, The
## 19915                                                                                                                                            Goonies, The
## 19917                                                                                                                                               Peter Pan
## 19918                                                                                                                                           Rescuers, The
## 19919                                                                                                                                         Sleeping Beauty
## 19920                                                                                                                                    What Dreams May Come
## 19922                                                                                                                                      American History X
## 19923                                                                                                                               Run Lola Run (Lola rennt)
## 19924                                                                                                                                       Color Purple, The
## 19925                                                                                                                                        Sixth Sense, The
## 19926                                                                                                                                Ferris Bueller's Day Off
## 19927                                                                                                           Children of Paradise (Les enfants du paradis)
## 19928                                                                                                                                              Fight Club
## 19929                                                                                                                                             Wonder Boys
## 19930                                                                                                                                           Almost Famous
## 19931                                                                                                                                     Requiem for a Dream
## 19932                                                                                                                                        Charlie's Angels
## 19934                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 19936                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 19937                                                                                                                                                 Ice Age
## 19938                                                                                                                                       Road to Perdition
## 19939                                                                                                                        Das Experiment (Experiment, The)
## 19941                                                                                                                                              Hours, The
## 19942                                                                                                                                    Bend It Like Beckham
## 19943                                                                                                                                              Paper Moon
## 19944                                                                                                                                       Kill Bill: Vol. 1
## 19945                                                                                                                                                21 Grams
## 19946                                                                                                                             Show Me Love (Fucking Åmål)
## 19947                                                                                                                              Betty Blue (37°2 le matin)
## 19948                                                                                                                                                Big Fish
## 19949                                                                                                                                    The Butterfly Effect
## 19950                                                                                                                                        Good bye, Lenin!
## 19953                                                                                                                                           Super Size Me
## 19954                                                                                                                                           Notebook, The
## 19955                                                                                                                                           Before Sunset
## 19957                                                                                                                                       In July (Im Juli)
## 19958                                                                                               Very Long Engagement, A (Un long dimanche de fiançailles)
## 19959                                                                                                                                     Million Dollar Baby
## 19960                                                                                                                     Life Aquatic with Steve Zissou, The
## 19962                                                                                                                               Everything Is Illuminated
## 19963                                                                                                                                      Brokeback Mountain
## 19964                                                                                                                                       Pride & Prejudice
## 19966                                                                                                                                           Walk the Line
## 19967                                                                                                                                              C.R.A.Z.Y.
## 19968                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 19969                                                                                        Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage)
## 19970                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 19971                                                                                                                                    Little Miss Sunshine
## 19972                                                                                                                                                   Babel
## 19973                                                                                                                               Pursuit of Happyness, The
## 19974                                                                                                                                             Half Nelson
## 19975                                                                                                            Science of Sleep, The (La science des rêves)
## 19976                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 19977                                                                                                                                                    Once
## 19979                                                                                                                                           Into the Wild
## 19981                                                                                                                                              Persepolis
## 19982                                                                                                                                                 Control
## 19984                                                                                                                                        Bucket List, The
## 19987                                                                                                                                                  WALL·E
## 19988                                                                                                                                Vicky Cristina Barcelona
## 19990                                                                                                                                                    Milk
## 19991                                                                                                                                             Gran Torino
## 19992                                                                                                 I've Loved You So Long (Il y a longtemps que je t'aime)
## 19994                                                                                                                    Curious Case of Benjamin Button, The
## 19999                                                                                                                                            Mary and Max
## 20000                                                                                                                                           Up in the Air
## 20001                                                                                                                                                Precious
## 20004                                                                                                                                        Book of Eli, The
## 20005                                                                                                                                               Inception
## 20008                                                                                                                                              Black Swan
## 20010                                                                                                                                               True Grit
## 20011                                                                                                                                               Jane Eyre
## 20012                                                                                                                                                    Eden
## 20013                                                                                                             Pirates of the Caribbean: On Stranger Tides
## 20014                                                                                                                                       Midnight in Paris
## 20016                                                                                                                                               Help, The
## 20017                                                                                                                                               Moneyball
## 20018                                                                                                                                                   50/50
## 20019                                                                                                                                                    Hugo
## 20020                                                                                                                                        The Hunger Games
## 20021                                                                                                                                         We Bought a Zoo
## 20022                                                                                                                                            Intouchables
## 20024                                                                                                                                 Amazing Spider-Man, The
## 20025                                                                                                                        Perks of Being a Wallflower, The
## 20026                                                                                                                                                    Argo
## 20027                                                                                                                                 Silver Linings Playbook
## 20029                                                                                                                                                   Amour
## 20031                                                                                                                                        Django Unchained
## 20032                                                                                                                                            Side Effects
## 20034                                                                                                                            Broken Circle Breakdown, The
## 20037                                                                                                                                        What Maisie Knew
## 20038                                                                                                                                               Heat, The
## 20039                                                                                                                                              About Time
## 20040                                                                                                                                                 Gravity
## 20041                                                                                                                                               Prisoners
## 20045                                                                                                                                Wolf of Wall Street, The
## 20046                                                                                                                                         American Hustle
## 20048                                                                                                                                        Saving Mr. Banks
## 20050                                                                                                                               Grand Budapest Hotel, The
## 20051                                                                                                                                           Transcendence
## 20052                                                                                                                                                 Boyhood
## 20053                                                                                                                                      Werner - Beinhart!
## 20054                                                                                                                                               Toy Story
## 20056                                                                                                                             Father of the Bride Part II
## 20059                                                                                                                          Ace Ventura: When Nature Calls
## 20063                                                                                                                                                Clueless
## 20065                                                                                                                                              Braveheart
## 20067                                                                                                                                                Bad Boys
## 20068                                                                                                                                          Batman Forever
## 20070                                                                                                                                                 Species
## 20071                                                                                                                                                  Clerks
## 20072                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 20074                                                                                                                      Star Wars: Episode IV - A New Hope
## 20080                                                                                                                                       Santa Clause, The
## 20085                                                                                                                              Ace Ventura: Pet Detective
## 20088                                                                                                                                          Lion King, The
## 20089                                                                                                                                               Mask, The
## 20090                                                                                                                                                   Speed
## 20094                                                                                                                                        Last Action Hero
## 20095                                                                                                                                      Executive Decision
## 20097                                                                                                                                    Sleepless in Seattle
## 20100                                                                                                                                   Three Musketeers, The
## 20101                                                                                                                                              Home Alone
## 20102                                                                                                                                                   Ghost
## 20103                                                                                                                                                 Aladdin
## 20107                                                                                                                                    Beauty and the Beast
## 20108                                                                                                                                            Pretty Woman
## 20115                                                                                                                                        Some Like It Hot
## 20117                                                                                                                                           Thin Man, The
## 20118                                                                                                                                                Die Hard
## 20123                                                                                                                                        Crying Game, The
## 20125                                                                                                                                                 Top Gun
## 20136                                                                                                                                          Apocalypse Now
## 20142                                                                                                                                       Full Metal Jacket
## 20143                                                                                                                                   Boot, Das (Boat, The)
## 20145                                                                                                                                                   Glory
## 20146                                                                                                                                      Dead Poets Society
## 20152                                                                                                                             Evil Dead II (Dead by Dawn)
## 20153                                                                                                                                           Groundhog Day
## 20155                                                                                                                                              Highlander
## 20159                                                                                                                                 When Harry Met Sally...
## 20166                                                                                                                                                  Grease
## 20173                                                                                                                                                Face/Off
## 20175                                                                                                                                                 Contact
## 20181                                                                                                                                                 Titanic
## 20183                                                                                                                                              Armageddon
## 20191                                                                                                                                         Lethal Weapon 2
## 20194                                                                                                                              Back to the Future Part II
## 20195                                                                                                                             Back to the Future Part III
## 20196                                                                                                                                Honey, I Shrunk the Kids
## 20197                                                                                                                                             'burbs, The
## 20198                                                                                                                                                  Splash
## 20205                                                                                                                                              Thing, The
## 20210                                                                                                                                           Bug's Life, A
## 20211                                                                                                                                                20 Dates
## 20216                                                                                                                              10 Things I Hate About You
## 20219                                                                                                                                              Mummy, The
## 20229                                                                                                                                                     Big
## 20242                                                                                                                                    Grapes of Wrath, The
## 20244                                                                                                                                             Toy Story 2
## 20254                                                                                                                                               Gladiator
## 20260                                                                                                                                             Chicken Run
## 20263                                                                                                                                        Meet the Parents
## 20264                                                                                                                                        Charlie's Angels
## 20277                                                                                                                                          Monsters, Inc.
## 20282                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 20291                                                                                                                  Lord of the Rings: The Two Towers, The
## 20296                                                                                                                                            Finding Nemo
## 20298                                                                                                          2 Fast 2 Furious (Fast and the Furious 2, The)
## 20300                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 20305                                                                                                                                                    1941
## 20306                                                                                                          Lord of the Rings: The Return of the King, The
## 20308                                                                                                                                          13 Going on 30
## 20309                                                                                                                                 *batteries not included
## 20315                                                                                                                                        Incredibles, The
## 20316                                                                                                                                            'Salem's Lot
## 20318                                                                                                                                           Batman Begins
## 20331                                                                                                          Sweeney Todd: The Demon Barber of Fleet Street
## 20333                                                                                                                                        Dark Knight, The
## 20337                                                                                                                                                  WALL·E
## 20339                                                                                                                          Dr. Horrible's Sing-Along Blog
## 20340                                                                                                                                                17 Again
## 20351                                                                                                                                             Toy Story 3
## 20356                                                                                                                                  Dark Knight Rises, The
## 20360                                                                                                                                        Moonrise Kingdom
## 20362                                                                                                                                                  Looper
## 20363                                                                                                                        'Hellboy': The Seeds of Creation
## 20365                                                                                                                                               GoldenEye
## 20367                                                                                                                                             Money Train
## 20368                                                                                                                                              Get Shorty
## 20369                                                                                                                                            Now and Then
## 20370                                                                                                                                                Bio-Dome
## 20371                                                                                                                                               Mr. Wrong
## 20372                                                                                                                                           Happy Gilmore
## 20374                                                                                                                                          Down Periscope
## 20375                                                                                                                                      White Man's Burden
## 20376                                                                                                                                              Sgt. Bilko
## 20377                                                                                                                                                    Fear
## 20378                                                                                                                                                 Twister
## 20379                                                                                                                                               Barb Wire
## 20380                                                                                                                                            Stupids, The
## 20381                                                                                                               Gold Diggers: The Secret of Bear Mountain
## 20382                                                                                                                                              Striptease
## 20384                                                                                                                                    Very Brady Sequel, A
## 20385                                                                                                                                        Escape from L.A.
## 20386                                                                                                                                   Rebel Without a Cause
## 20392                                                                                                                                          Mrs. Doubtfire
## 20393                                                                                                                                              Home Alone
## 20397                                                                                                                                              Casablanca
## 20401                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 20402                                                                                                                                           Groundhog Day
## 20404                                                                                                                                     Breakfast Club, The
## 20405                                                                                                                                           Freaky Friday
## 20406                                                                                                                                         Doctor Dolittle
## 20409                                                                                                                               Karate Kid, Part III, The
## 20411                                                                                                                                                     Big
## 20412                                                                                                                                               Hairspray
## 20414                                                                                                                                       Lord of the Flies
## 20415                                                                                                                                              Caddyshack
## 20418                                                                                                                                          102 Dalmatians
## 20421                                                                                                                                          Monsters, Inc.
## 20428                                                                                                                   Legally Blonde 2: Red, White & Blonde
## 20430                                                                                                                         Pink Panther Strikes Again, The
## 20431                                                                                                                                         Beethoven's 2nd
## 20433                                                                                                                                            Spider-Man 2
## 20435                                                                                                                                                Sky High
## 20440                                                                                                                             Indian in the Cupboard, The
## 20447                                                                                                                                      Secret Garden, The
## 20452                                                                                                                         Snow White and the Seven Dwarfs
## 20458                                                                                                                                       Wizard of Oz, The
## 20460                                                                                                                                           Fly Away Home
## 20463                                                                                                                     Willy Wonka & the Chocolate Factory
## 20464                                                                                                                                                 Sleeper
## 20468                                                                                                                                                  Aliens
## 20470                                                                                                                                                   Alien
## 20472                                                                                                                                               Manhattan
## 20476                                                                                                                                                Fantasia
## 20479                                                                                                                                             Being There
## 20481                                                                                                                       Shall We Dance? (Shall We Dansu?)
## 20485                                                                                                                                      As Good as It Gets
## 20486                                                                                                                                          Borrowers, The
## 20487                                                                                                                              Friday the 13th Part 3: 3D
## 20492                                                                                                                                                    Dune
## 20493                                                                                                                      Darby O'Gill and the Little People
## 20494                                                                                                                                Honey, I Shrunk the Kids
## 20496                                                                                                                                          Rocketeer, The
## 20498                                                                                                                                         Doctor Dolittle
## 20499                                                                                                                                  NeverEnding Story, The
## 20500                                                                                                                                             Beetlejuice
## 20501                                                                                                                                            Urban Legend
## 20503                                                                                                                                             Airport '77
## 20508                                                                                                                                               Airplane!
## 20510                                                                                                                                         American Beauty
## 20512                                                                                                                                Who Framed Roger Rabbit?
## 20514                                                                                                                                        Bicentennial Man
## 20517                                                                                                                                               Toy Story
## 20523                                                                                                                                           Jurassic Park
## 20525                                                                                                                           Independence Day (a.k.a. ID4)
## 20533                                                                                                                                 Godfather: Part II, The
## 20536                                                                                                                                                 Contact
## 20537                                                                                                                                     Saving Private Ryan
## 20538                                                                                                                                      American History X
## 20539                                                                                                                                             Matrix, The
## 20541                                                                                                                                               Gladiator
## 20542                                                                                                                                                   X-Men
## 20544                                                                                                                                                   Shrek
## 20545                                                                                                                                          Monsters, Inc.
## 20546                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 20548                                                                                                                                              Spider-Man
## 20549                                                                                                                                                Insomnia
## 20550                                                                                                                 Harry Potter and the Chamber of Secrets
## 20551                                                                                                                  Lord of the Rings: The Two Towers, The
## 20553                                                                                                                            City of God (Cidade de Deus)
## 20554                                                                                                                                        X2: X-Men United
## 20555                                                                                                                                            Finding Nemo
## 20556                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 20557                                                                                                          Lord of the Rings: The Return of the King, The
## 20559                                                                                                                                                 Shrek 2
## 20560                                                                                                                Harry Potter and the Prisoner of Azkaban
## 20561                                                                                                                                            Spider-Man 2
## 20562                                                                                                                                        Incredibles, The
## 20564                                                                                                            Lives of Others, The (Das leben der Anderen)
## 20567                                                                                                                                           Into the Wild
## 20569                                                                                                                                                Iron Man
## 20573                                                                                                                                     Social Network, The
## 20575                                                                                                                                      King's Speech, The
## 20576                                                                                                             Pirates of the Caribbean: On Stranger Tides
## 20577                                                                                                                                   Hangover Part II, The
## 20578                                                                                                                                               Help, The
## 20579                                                                                                                                              The Artist
## 20580                                                                                                                                                    Hugo
## 20582                                                                                                                                 Amazing Spider-Man, The
## 20583                                                                                                                                              Life of Pi
## 20585                                                                                                                                             World War Z
## 20586                                                                                                                                                 Gravity
## 20587                                                                                                                                        12 Years a Slave
## 20588                                                                                                                                      Dallas Buyers Club
## 20590                                                                                                                               Grand Budapest Hotel, The
## 20592                                                                                                                                                Whiplash
## 20595                                                                                                                                      Mad Max: Fury Road
## 20596                                                                                                                                                 Ant-Man
## 20597                                                                                                                                               Kung Fury
## 20598                                                                                                                                              Braveheart
## 20599                                                                                                                               Shawshank Redemption, The
## 20604                                                                                                                              Terminator 2: Judgment Day
## 20605                                                                                                                                                 Kingpin
## 20606                                                                                                                                                 Tin Cup
## 20607                                                                                                                                      Herbie Rides Again
## 20610                                                                                                                                     Clockwork Orange, A
## 20613                                                                                                                                                   Glory
## 20617                                                                                                  Vegas Vacation (National Lampoon's Las Vegas Vacation)
## 20619                                                                                                                               Men in Black (a.k.a. MIB)
## 20621                                                                                                                                                 Gattaca
## 20623                                                                                                                                              Armageddon
## 20624                                                                                                                                     Terms of Endearment
## 20626                                                                                                                                     Breakfast Club, The
## 20628                                                                                                                                                  Splash
## 20629                                                                                                                                             Beetlejuice
## 20631                                                                                                                                         My Cousin Vinny
## 20633                                                                                                                                                Rushmore
## 20634                                                                                                                                      Planet of the Apes
## 20636                                                                                                                                          Eyes Wide Shut
## 20637                                                                                                                                               Airplane!
## 20640                                                                                                                                Ferris Bueller's Day Off
## 20647                                                                                                                                                 Mad Max
## 20648                                                                                                                                             Unbreakable
## 20649                                                                                                                           Saving Silverman (Evil Woman)
## 20651                                                                                                                                                Joe Dirt
## 20652                                                                                                                                            For the Boys
## 20653                                                                                                                                     Beach Blanket Bingo
## 20654                                                                                                                       Return of the Living Dead Part II
## 20655                                                                                                                                                Toy, The
## 20657                                                                                                                                              Brainstorm
## 20659                                                                                                                                              Spider-Man
## 20660                                                                                                                                          Survivors, The
## 20667                                                                                                                             Indian in the Cupboard, The
## 20668                                                                                                                                           Billy Madison
## 20669                                                                                                                                                  Junior
## 20670                                                                                                                                             Major Payne
## 20672                                                                                                                                        Muriel's Wedding
## 20675                                                                                                                                   Three Musketeers, The
## 20678                                                                                                                                     Princess Bride, The
## 20680                                                                                                                  Romy and Michele's High School Reunion
## 20682                                                                                                                                      American History X
## 20684                                                                                                                                         King and I, The
## 20685                                                                                                                                              Sister Act
## 20686                                                                                                                     Flintstones in Viva Rock Vegas, The
## 20692                                                                                                                                         Minority Report
## 20693                                                                                                           Spirited Away (Sen to Chihiro no kamikakushi)
## 20694                                                                                                                 Harry Potter and the Chamber of Secrets
## 20696                                                                                                                                    Bend It Like Beckham
## 20698                                                                                                                                           Love Actually
## 20701                                                                                                  Girl Who Leapt Through Time, The (Toki o kakeru shôjo)
## 20702                                                                                                                                        Blind Side, The 
## 20703                                                                                                                                          Shutter Island
## 20704                                                                                                                                      King's Speech, The
## 20705                                                                                                                                                 Tangled
## 20706                                                                                                            Harry Potter and the Deathly Hallows: Part 2
## 20707                                                                                                                                        What Richard Did
## 20708                                                                                                                                        Drinking Buddies
## 20714                                                                                                                                            Forrest Gump
## 20716                                                                                                                                     Mission: Impossible
## 20717                                                                                                                                                Sleepers
## 20718                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 20719                                                                                                                          Lost World: Jurassic Park, The
## 20721                                                                                                                                             Deep Impact
## 20723                                                                                                                                      Thin Red Line, The
## 20725                                                                                                               Star Wars: Episode I - The Phantom Menace
## 20726                                                                                                                                           Runaway Bride
## 20727                                                                                                                                         Double Jeopardy
## 20729                                                                                                                                  Snow Falling on Cedars
## 20731                                                                                                                                         Mission to Mars
## 20732                                                                                                                                     Rules of Engagement
## 20733                                                                                                                                  Mission: Impossible II
## 20735                                                                                                                                      Perfect Storm, The
## 20736                                                                                                                                                   X-Men
## 20738                                                                                                                                               Cast Away
## 20742                                                                                                                                       Jurassic Park III
## 20744                                                                                                                                               Apollo 13
## 20745                                                                                                                      Star Wars: Episode IV - A New Hope
## 20746                                                                                                                                            Pulp Fiction
## 20747                                                                                                                              Ace Ventura: Pet Detective
## 20748                                                                                                                                            Forrest Gump
## 20750                                                                                                                                             Rear Window
## 20751                                                                                                                                          Apartment, The
## 20753                                                                                                                              E.T. the Extra-Terrestrial
## 20754                                                                                                                         Monty Python and the Holy Grail
## 20755                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 20758                                                                                                                                  Amityville Horror, The
## 20759                                                                                                                                           Young Guns II
## 20761                                                                                                                                                Anaconda
## 20762                                                                                                                      Halloween III: Season of the Witch
## 20763                                                                                                                              Back to the Future Part II
## 20764                                                                                                                             Back to the Future Part III
## 20765                                                                                                                                     Saving Private Ryan
## 20766                                                                                                                               Adventures in Babysitting
## 20767                                                                                                                                     About Last Night...
## 20768                                                                                                                                          Police Academy
## 20769                                                                                                                                             Airport '77
## 20770                                                                                                                                           Arachnophobia
## 20771                                                                                                                                               Airplane!
## 20772                                                                                                    Adventures of Milo and Otis, The (Koneko monogatari)
## 20773                                                                                                                                           All That Jazz
## 20777                                                                                                                                                   Alive
## 20779                                                                                                                                       American Graffiti
## 20780                                                                                                                                            Animal House
## 20781                                                                                                                      Close Encounters of the Third Kind
## 20782                                                                                                                                                  Arthur
## 20783                                                                                                                                                 28 Days
## 20784                                                                                                                                                   Diner
## 20785                                                                                                                                     Along Came a Spider
## 20786                                                                                                                            Nine to Five (a.k.a. 9 to 5)
## 20787                                                                                                                                            Accused, The
## 20788                                                                                                                                                  Always
## 20789                                                                                                                                            Tango & Cash
## 20790                                                                                                                                          Turner & Hooch
## 20791                                                                                                                                              Uncle Buck
## 20792                                                                                                                                  Weekend at Bernie's II
## 20793                                                                                                                                        Paint Your Wagon
## 20794                                                                                                                                   Any Which Way You Can
## 20795                                                                                                                                             Others, The
## 20796                                                                                                                                        Jeepers Creepers
## 20797                                                                                                                          French Lieutenant's Woman, The
## 20799                                                                                                                                       Play Misty for Me
## 20801                                                                                                                                                Brubaker
## 20802                                                                                                                             Cheech & Chong's Next Movie
## 20803                                                                                                                                   Coal Miner's Daughter
## 20806                                                                                                                                                   Congo
## 20807                                                                                                                                             Judge Dredd
## 20808                                                                                                                                              Disclosure
## 20811                                                                                                                                               Crow, The
## 20813                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 20814                                                                                                            City Slickers II: The Legend of Curly's Gold
## 20815                                                                                                                                           Jurassic Park
## 20816                                                                                                                                          Romper Stomper
## 20817                                                                                                                                        Schindler's List
## 20820                                                                                                                                                  Ransom
## 20826                                                                                                                                       Miller's Crossing
## 20828                                                                                                                                               Chinatown
## 20830                                                                                                                                      This Is Spinal Tap
## 20833                                                                                                                                                  Grease
## 20834                                                                                                                                     Waiting for Guffman
## 20835                                                                                                                                                 Gattaca
## 20839                                                                                                                              Back to the Future Part II
## 20840                                                                                                                                Honey, I Shrunk the Kids
## 20844                                                                                                                                                Election
## 20846                                                                                                                                          Boys Don't Cry
## 20848                                                                                                                                        Drugstore Cowboy
## 20849                                                                                                                                     Requiem for a Dream
## 20851                                                                                                                                                 Traffic
## 20853                                                                                                                                                Scarface
## 20855                                                                                                                                        Mulholland Drive
## 20857                                                                                                                                          Monsters, Inc.
## 20862                                                                                                                                         Minority Report
## 20876                                                                                                                                           Batman Begins
## 20877                                                                                                                                          Broken Flowers
## 20880                                                                                                                                   X-Men: The Last Stand
## 20882                                                                                                                                              Get Shorty
## 20884                                                                                                                                                Clueless
## 20886                                                                                                                                               Apollo 13
## 20887                                                                                                                                          Batman Forever
## 20889                                                                                                                                                Net, The
## 20891                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 20893                                                                                                                                                    Nell
## 20894                                                                                                                                    Natural Born Killers
## 20895                                                                                                                                                Outbreak
## 20897                                                                                                                                         Specialist, The
## 20898                                                                                                                                                Stargate
## 20899                                                                                                                                  Star Trek: Generations
## 20901                                                                                                                              Ace Ventura: Pet Detective
## 20903                                                                                                                                            Forrest Gump
## 20906                                                                                                                                               True Lies
## 20907                                                                                                                                    Addams Family Values
## 20908                                                                                                                                   Beverly Hills Cop III
## 20909                                                                                                            City Slickers II: The Legend of Curly's Gold
## 20910                                                                                                                                             Cliffhanger
## 20914                                                                                                                                          Mrs. Doubtfire
## 20916                                                                                                                                               Tombstone
## 20917                                                                                                                                                 Aladdin
## 20920                                                                                                                                                  Batman
## 20927                                                                                                                                               Apollo 13
## 20932                                                                                                                                              Waterworld
## 20935                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 20937                                                                                                                                            Pulp Fiction
## 20938                                                                                                                                               Quiz Show
## 20941                                                                                                                                  Star Trek: Generations
## 20962                                                                                                                                          Batman Forever
## 20963                                                                                                                              Die Hard: With a Vengeance
## 20966                                                                                                                              Ace Ventura: Pet Detective
## 20969                                                                                                                                                   Speed
## 20970                                                                                                                                               True Lies
## 20971                                                                                                                                               Coneheads
## 20974                                                                                                                                      Executive Decision
## 20976                                                                                                                                                    Rudy
## 20977                                                                                                                            So I Married an Axe Murderer
## 20982                                                                                                                                                 Twister
## 20983                                                                                                                           Independence Day (a.k.a. ID4)
## 20984                                                                                                                              E.T. the Extra-Terrestrial
## 20990                                                                                                                                My Best Friend's Wedding
## 20991                                                                                                                               Men in Black (a.k.a. MIB)
## 20992                                                                                                                                                 Titanic
## 20993                                                                                                                                           Lost in Space
## 20994                                                                                                                                      Mask of Zorro, The
## 20996                                                                                                                                         My Cousin Vinny
## 20997                                                                                                                                          ¡Three Amigos!
## 20998                                                                                                               Star Wars: Episode I - The Phantom Menace
## 21001                                                                                                                                        Sixth Sense, The
## 21003                                                                                                                                         Double Jeopardy
## 21004                                                                                                                                              Fight Club
## 21005                                                                                                                                              Awakenings
## 21006                                                                                                                                              Sister Act
## 21010                                                                                                                                          Monsters, Inc.
## 21012                                                                                                            Star Wars: Episode II - Attack of the Clones
## 21014                                                                                                                                     Lost in Translation
## 21015                                                                                                                                       Kill Bill: Vol. 1
## 21016                                                                                                                                       Kill Bill: Vol. 2
## 21017                                                                                                                                                 Shrek 2
## 21019                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 21020                                                                                                                                           Batman Begins
## 21023                                                                                                                                           Casino Royale
## 21024                                                                                                                                                     300
## 21025                                                                                                                                                    Juno
## 21027                                                                                                                                                Iron Man
## 21028                                                                                                                                      Mark of Zorro, The
## 21030                                                                                                                                           Rock-A-Doodle
## 21032                                                                                                                                                  Wanted
## 21035                                                                                                                                   Walk in the Clouds, A
## 21037                                                                                                                                When a Man Loves a Woman
## 21042                                                                                                                                                  Brazil
## 21044                                                                                                                                 Speed 2: Cruise Control
## 21046                                                                                                                                                    Bean
## 21052                                                                                                                      Red Violin, The (Violon rouge, Le)
## 21058                                                                                                                                       Muppet Movie, The
## 21059                                                                                                                                             Coyote Ugly
## 21066                                                                                                                                 40-Year-Old Virgin, The
## 21071                                                                                                City of Lost Children, The (Cité des enfants perdus, La)
## 21076                                                                                                                                                Bad Boys
## 21077                                                                                                                                         Johnny Mnemonic
## 21078                                                                                                                                                Net, The
## 21083                                                                                                                                Manhattan Murder Mystery
## 21084                                                                                                                                  Brady Bunch Movie, The
## 21086                                                                                                                              Terminator 2: Judgment Day
## 21087                                                                                                                                      Dances with Wolves
## 21090                                                                                                                           Independence Day (a.k.a. ID4)
## 21096                                                                                                                                     Father of the Bride
## 21097                                                                                                                                           Thin Man, The
## 21100                                                                                                                                      Lawnmower Man, The
## 21108                                                                                                                               Femme Nikita, La (Nikita)
## 21110                                                                                                                                            Shining, The
## 21111                                                                                                                             Evil Dead II (Dead by Dawn)
## 21117                                                                                                                                           Mars Attacks!
## 21121                                                                                                                          Lost World: Jurassic Park, The
## 21123                                                                                                                                                 Contact
## 21128                                                                                                                                       Starship Troopers
## 21129                                                                                                                                     Alien: Resurrection
## 21132                                                                                                                                                  Sphere
## 21133                                                                                                                          X-Files: Fight the Future, The
## 21137                                                                                                                                Honey, I Blew Up the Kid
## 21147                                                                                                               Star Wars: Episode I - The Phantom Menace
## 21148                                                                                                                                            American Pie
## 21151                                                                                                                                               RoboCop 2
## 21154                                                                                                                                Talented Mr. Ripley, The
## 21156                                                                                                                           Twin Peaks: Fire Walk with Me
## 21158                                                                                                                                                     JFK
## 21167                                                                                                                                        Charlie's Angels
## 21169                                                                                                                                          Evil Dead, The
## 21172                                                                                                                          Jay and Silent Bob Strike Back
## 21174                                                                                                                                        Mulholland Drive
## 21179                                                                                                                                            Gosford Park
## 21188                                                                                                                                              Adaptation
## 21189                                                                                                                                      Star Trek: Nemesis
## 21192                                                                                                                                       Gangs of New York
## 21197                                                                                                                                   Andromeda Strain, The
## 21198                                                                                                                                        X2: X-Men United
## 21203                                                                                                                                               Toy Story
## 21204                                                                                                                                                Clueless
## 21205                                                                                                                                    Seven (a.k.a. Se7en)
## 21206                                                                                                                                     Usual Suspects, The
## 21207                                                                                                                                           Happy Gilmore
## 21209                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 21210                                                                                                                      Star Wars: Episode IV - A New Hope
## 21214                                                                                                                             What's Eating Gilbert Grape
## 21215                                                                                                                                            Forrest Gump
## 21216                                                                                                                                           Jurassic Park
## 21217                                                                                                                                            Blade Runner
## 21218                                                                                                                                              Home Alone
## 21219                                                                                                                               Silence of the Lambs, The
## 21220                                                                                                                                             Heavy Metal
## 21221                                                                                                                           Independence Day (a.k.a. ID4)
## 21222                                                                                                                                      North by Northwest
## 21224                                                                                                                                                 Platoon
## 21225                                                                                                                                   Rebel Without a Cause
## 21226                                                                                                                         One Flew Over the Cuckoo's Nest
## 21227                                                                                                                                     Princess Bride, The
## 21228                                                                                                                                       Full Metal Jacket
## 21229                                                                                                                                              Annie Hall
## 21232                                                                                                                                      Back to the Future
## 21233                                                                                                                                                   Akira
## 21234                                                                                                                              Nightmare on Elm Street, A
## 21238                                                                                                                                       Starship Troopers
## 21239                                                                                                                                        Truman Show, The
## 21241                                                                                                                                       Big Lebowski, The
## 21243                                                                                                                                               Halloween
## 21244                                                                                                                                             Poltergeist
## 21248                                                                                                                                     Edward Scissorhands
## 21250                                                                                                                               Celebration, The (Festen)
## 21251                                                                                                                                          She's All That
## 21252                                                                                                                                        Cruel Intentions
## 21253                                                                                                                                             Matrix, The
## 21256                                                                                                                                            American Pie
## 21258                                                                                                                                               Airplane!
## 21259                                                                                                                                         American Beauty
## 21263                                                                                                                                    Being John Malkovich
## 21264                                                                                                                       Princess Mononoke (Mononoke-hime)
## 21265                                                                                                                                          Trading Places
## 21266                                                                                                                                         Green Mile, The
## 21268                                                                                                                                       Final Destination
## 21269                                                                                                                                         American Psycho
## 21271                                                                                                                                               Road Trip
## 21273                                                                                                                                     Requiem for a Dream
## 21274                                                                                                                                          Pay It Forward
## 21275                                                                                                                                            Little Nicky
## 21276                                                                                                                            Planes, Trains & Automobiles
## 21278                                                                                                                                                Chocolat
## 21279                                                                                                                               Emperor's New Groove, The
## 21282                                                                                                                                                Scarface
## 21283                                                                                                                                        Knight's Tale, A
## 21285                                                                                                                                        Meet the Feebles
## 21286                                                                                                                                             Ghost World
## 21290                                                                                                                                          Monsters, Inc.
## 21291                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 21292                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 21293                                                                                                                                  Not Another Teen Movie
## 21294                                                                                                                             Austin Powers in Goldmember
## 21296                                                                                                                                               Ring, The
## 21297                                                                                                                                             Equilibrium
## 21298                                                                                                                   My Neighbor Totoro (Tonari no Totoro)
## 21300                                                                                                                                           Freaky Friday
## 21303                                                                                                          Lord of the Rings: The Return of the King, The
## 21304                                                                                                                    Confessions of a Teenage Drama Queen
## 21305                                                                                                                   Eternal Sunshine of the Spotless Mind
## 21307                                                                                                                                       Kill Bill: Vol. 2
## 21309                                                                                                                        Dodgeball: A True Underdog Story
## 21310                                                                                                                                           Terminal, The
## 21311                                                                                                                                                I, Robot
## 21312                                                                                                                                            Garden State
## 21313                                                                                                                                       Shaun of the Dead
## 21314                                                                                                                              Team America: World Police
## 21316                                                                                                                                                 Old Boy
## 21317                                                                                                                                     Million Dollar Baby
## 21320                                                                                                                                        Mr. & Mrs. Smith
## 21321                                                                                                                                       War of the Worlds
## 21322                                                                                                                                        Wedding Crashers
## 21324                                                                                                                                 40-Year-Old Virgin, The
## 21331                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 21332                                                                                                                                    Little Miss Sunshine
## 21333                                                                                                                                   Stranger than Fiction
## 21335                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 21336                                                                                                                                           Departed, The
## 21337                                                                                                                                           Prestige, The
## 21339                                                                                                                                             Ratatouille
## 21340                                                                                                                                                     300
## 21341                                                                                                                                              Grindhouse
## 21344                                                                                                                                                Superbad
## 21345                                                                                                                                           Planet Terror
## 21349                                                                                                                                              27 Dresses
## 21351                                                                                                                                                   Taken
## 21352                                                                                                                                                Watchmen
## 21354                                                                                                                Sisterhood of the Traveling Pants 2, The
## 21355                                                                                                                                     Slumdog Millionaire
## 21356                                                                                                                                                Twilight
## 21357                                                                                                                                             Gran Torino
## 21359                                                                                                                             Ponyo (Gake no ue no Ponyo)
## 21362                                                                                                                                    Inglourious Basterds
## 21363                                                                                                                                                      Up
## 21364                                                                                                                                    (500) Days of Summer
## 21365                                                                                                                                              District 9
## 21366                                                                                                                                              Zombieland
## 21367                                                                                                                                            Mary and Max
## 21368                                                                                                                                                  Avatar
## 21369                                                                                                                                          Shutter Island
## 21370                                                                                                                                How to Train Your Dragon
## 21371                                                                                                                                                Kick-Ass
## 21373                                                                                                                                           Despicable Me
## 21377                                                                                                                                                  Easy A
## 21378                                                                                                                                         Never Let Me Go
## 21381                                                                                                                                      King's Speech, The
## 21388                                                                                                                                               Help, The
## 21389                                                                                                                                           Avengers, The
## 21390                                                                                                                                                   50/50
## 21393                                                                                                                                                    Hugo
## 21396                                                                                                                      Sherlock Holmes: A Game of Shadows
## 21399                                                                                                                                        Moonrise Kingdom
## 21403                                                                                                                      Hobbit: An Unexpected Journey, The
## 21404                                                                                                                                        Django Unchained
## 21406                                                                                                                                             World War Z
## 21410                                                                                                                                      Dallas Buyers Club
## 21419                                                                                                                                                Whiplash
## 21420                                                                                                                                 Guardians of the Galaxy
## 21421                                                                                                                                        Maze Runner, The
## 21422                                                                                                                                          Predestination
## 21428                                                                                                                                         Song of the Sea
## 21429                                                                                                                                             Citizenfour
## 21431                                                                                                                                      Mad Max: Fury Road
## 21432                                                                                                       Going Clear: Scientology and the Prison of Belief
## 21434                                                                                                                                               Toy Story
## 21435                                                                                                                                                 Jumanji
## 21436                                                                                                                             Father of the Bride Part II
## 21438                                                                                                                          Ace Ventura: When Nature Calls
## 21439                                                                                                                                              Get Shorty
## 21440                                                                                                                                               Assassins
## 21442                                                                                                                                         Dangerous Minds
## 21443                                                                                                                                                Clueless
## 21444                                                                                                                                           Mortal Kombat
## 21445                                                                                                                                              To Die For
## 21447                                                                                                                             Indian in the Cupboard, The
## 21448                                                                                                                                                  Friday
## 21449                                                                                                                                     From Dusk Till Dawn
## 21450                                                                                                                                               Fair Game
## 21451                                                                                                                                            Broken Arrow
## 21455                                                                                                                                                Bad Boys
## 21456                                                                                                                                          Batman Forever
## 21457                                                                                                                              Die Hard: With a Vengeance
## 21458                                                                                                                                                 Hackers
## 21459                                                                                                                                         Johnny Mnemonic
## 21460                                                                                                                                               Jury Duty
## 21461                                                                                                                                                Mallrats
## 21462                                                                                                                                                Net, The
## 21463                                                                                                                                                 Species
## 21464                                                                                                                                              Waterworld
## 21466                                                                                                                                               Drop Zone
## 21467                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 21468                                                                                                                                                  Junior
## 21470                                                                                                                                    Natural Born Killers
## 21471                                                                                                                                                Outbreak
## 21475                                                                                                                                               Tank Girl
## 21476                                                                                                                                               Tommy Boy
## 21477                                                                                                                                 While You Were Sleeping
## 21478                                                                                                                                        Muriel's Wedding
## 21479                                                                                                                              Ace Ventura: Pet Detective
## 21482                                                                                                                                          Lion King, The
## 21483                                                                                                                                               Mask, The
## 21485                                                                                                                                                   Speed
## 21487                                                                                                            City Slickers II: The Legend of Curly's Gold
## 21488                                                                                                                                               Coneheads
## 21489                                                                                                                                          Demolition Man
## 21491                                                                                                                                           Jurassic Park
## 21492                                                                                                                                          Mrs. Doubtfire
## 21493                                                                                                                                            Philadelphia
## 21494                                                                                                                               Robin Hood: Men in Tights
## 21495                                                                                                                                    Sleepless in Seattle
## 21496                                                                                                                                            Blade Runner
## 21497                                                                                                                                       Striking Distance
## 21498                                                                                                                                       Terminal Velocity
## 21499                                                                                                                                              Home Alone
## 21500                                                                                                                                                 Aladdin
## 21501                                                                                                                              Terminator 2: Judgment Day
## 21502                                                                                                                                      Dances with Wolves
## 21503                                                                                                                                                  Batman
## 21504                                                                                                                                     Mission: Impossible
## 21505                                                                                                                                               Rock, The
## 21508                                                                                                                                          Cable Guy, The
## 21509                                                                                                                                                 Kingpin
## 21510                                                                                                                                                  Eraser
## 21511                                                                                                                                    Nutty Professor, The
## 21512                                                                                                                                        Frighteners, The
## 21514                                                                                                                                                    Fled
## 21515                                                                                                                                         Joe's Apartment
## 21516                                                                                                                                                  Ransom
## 21517                                                                                                                                          Chain Reaction
## 21518                                                                                                                                                 Tin Cup
## 21519                                                                                                                                          Godfather, The
## 21521                                                                                                                                    D3: The Mighty Ducks
## 21522                                                                                                                                           Cool Runnings
## 21525                                                                                                                                Long Kiss Goodnight, The
## 21526                                                                                                                                                Sleepers
## 21527                                                                                                                         Aladdin and the King of Thieves
## 21528                                                                                                                     Willy Wonka & the Chocolate Factory
## 21529                                                                                                                              E.T. the Extra-Terrestrial
## 21530                                                                                                                                          Drop Dead Fred
## 21534                                                                                                                                         Terminator, The
## 21535                                                                                                                                      Dead Poets Society
## 21537                                                                                                                                           Groundhog Day
## 21541                                                                                                                                              Die Hard 2
## 21542                                                                                                                           Star Trek: The Motion Picture
## 21543                                                                                                                         Star Trek V: The Final Frontier
## 21544                                                                                                                         Star Trek II: The Wrath of Khan
## 21545                                                                                                                     Star Trek III: The Search for Spock
## 21546                                                                                                                           Star Trek IV: The Voyage Home
## 21547                                                                                                                                          Batman Returns
## 21548                                                                                                                                           Mars Attacks!
## 21549                                                                                                                                           Jerry Maguire
## 21551                                                                                                                         Beavis and Butt-Head Do America
## 21552                                                                                                                                                  Scream
## 21553                                                                                                                                                 Michael
## 21554                                                                  First Strike (Police Story 4: First Strike) (Ging chaat goo si 4: Ji gaan daan yam mo)
## 21555                                                                                                                                               Liar Liar
## 21556                                                                                                                                     Grosse Pointe Blank
## 21557                                                                                                                                                 Volcano
## 21558                                                                                                             Austin Powers: International Man of Mystery
## 21559                                                                                                                                               Breakdown
## 21561                                                                                                                          Lost World: Jurassic Park, The
## 21562                                                                                                                                                 Con Air
## 21564                                                                                                                               Men in Black (a.k.a. MIB)
## 21566                                                                                                                                    George of the Jungle
## 21568                                                                                                                                       Conspiracy Theory
## 21569                                                                                                                                           Air Force One
## 21571                                                                                                                                         Peacemaker, The
## 21572                                                                                                                                       L.A. Confidential
## 21575                                                                                                                                         Full Monty, The
## 21576                                                                                                                         I Know What You Did Last Summer
## 21578                                                                                                                                                 Gattaca
## 21579                                                                                                                                         One Night Stand
## 21580                                                                                                                                           Boogie Nights
## 21581                                                                                                                                       Starship Troopers
## 21582                                                                                                                                        Truman Show, The
## 21586                                                                                                                                       Big Lebowski, The
## 21587                                                                                                                                               Senseless
## 21589                                                                                                                                               Hard Rain
## 21591                                                                                                                                      As Good as It Gets
## 21592                                                                                                                                           U.S. Marshals
## 21593                                                                                                                                           Lost in Space
## 21594                                                                                                                                          Mercury Rising
## 21596                                                                                                                                       Perfect Murder, A
## 21597                                                                                                                                   Six Days Seven Nights
## 21598                                                                                                                                       Can't Hardly Wait
## 21599                                                                                                                          X-Files: Fight the Future, The
## 21601                                                                                                                                         Lethal Weapon 4
## 21602                                                                                                                            There's Something About Mary
## 21604                                                                                                                                                Rain Man
## 21605                                                                                                                                               Labyrinth
## 21606                                                                                                                                           Lethal Weapon
## 21607                                                                                                                                         Lethal Weapon 2
## 21608                                                                                                                                         Lethal Weapon 3
## 21609                                                                                                                               Gremlins 2: The New Batch
## 21610                                                                                                                                            Goonies, The
## 21614                                                                                                                                    D2: The Mighty Ducks
## 21615                                                                                                                                Honey, I Shrunk the Kids
## 21616                                                                                                                                         Negotiator, The
## 21617                                                                                                                                       Mighty Ducks, The
## 21618                                                                                                                                          Outsiders, The
## 21621                                                                                                                                                    Toys
## 21622                                                                                                                                               Rush Hour
## 21623                                                                                                                                                    Antz
## 21624                                                                                                                                           Pleasantville
## 21625                                                                                                                                              Siege, The
## 21627                                                                                                                   I Still Know What You Did Last Summer
## 21629                                                                                                                                           Bug's Life, A
## 21630                                                                                                                                       View to a Kill, A
## 21631                                                                                                                                     Shakespeare in Love
## 21632                                                                                                                                         Karate Kid, The
## 21633                                                                                                                                Karate Kid, Part II, The
## 21634                                                                                                                               Karate Kid, Part III, The
## 21635                                                                                                                                         You've Got Mail
## 21636                                                                                                                                          She's All That
## 21637                                                                                                                                                 Payback
## 21638                                                                                                                                     Blast from the Past
## 21639                                                                                                                                            Office Space
## 21640                                                                                                                                                     8MM
## 21641                                                                                                                                        Cruel Intentions
## 21642                                                                                                                                                    EDtv
## 21644                                                                                                                              10 Things I Hate About You
## 21645                                                                                                                                                      Go
## 21646                                                                                                                                              Entrapment
## 21648                                                                                                               Star Wars: Episode I - The Phantom Menace
## 21649                                                                                                                                                Superman
## 21650                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 21651                                                                                                                                               Big Daddy
## 21652                                                                                                                                          Wild Wild West
## 21653                                                                                                                                            American Pie
## 21654                                                                                                                                          Arlington Road
## 21655                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 21656                                                                                                                                           Deep Blue Sea
## 21658                                                                                                                                Thomas Crown Affair, The
## 21659                                                                                                                                               Bowfinger
## 21660                                                                                                                                                     Big
## 21661                                                                                                                                         American Beauty
## 21663                                                                                                                                            Total Recall
## 21665                                                                                                                                              Goldfinger
## 21666                                                                                                                                   From Russia with Love
## 21667                                                                                                                                                  Dr. No
## 21668                                                                                                                          Home Alone 2: Lost in New York
## 21669                                                                                                                                              Fight Club
## 21670                                                                                                                                Who Framed Roger Rabbit?
## 21671                                                                                                                                      For Your Eyes Only
## 21672                                                                                                                                         Licence to Kill
## 21673                                                                                                                                        Live and Let Die
## 21674                                                                                                                                             Thunderball
## 21675                                                                                                                                    Being John Malkovich
## 21676                                                                                                                                     Bone Collector, The
## 21677                                                                                                                                          Trading Places
## 21678                                                                                                                                                   Dogma
## 21680                                                                                                                              Deuce Bigalow: Male Gigolo
## 21683                                                                                                    Loaded Weapon 1 (National Lampoon's Loaded Weapon 1)
## 21684                                                                                                                                           Wayne's World
## 21685                                                                                                                                         Wayne's World 2
## 21687                                                                                                                                                 Singles
## 21688                                                                                                                                   Whole Nine Yards, The
## 21689                                                                                                                                          Reindeer Games
## 21690                                                                                                                                         Erin Brockovich
## 21692                                                                                                                                         Heart and Souls
## 21693                                                                                                                                          Empire Records
## 21694                                                                                                                                         Black and White
## 21695                                                                                                                                               Frequency
## 21696                                                                                                                                                 28 Days
## 21697                                                                                                                                       Keeping the Faith
## 21700                                                                                                                                  Mission: Impossible II
## 21701                                                                                                                                   Spy Who Loved Me, The
## 21702                                                                                                                                               Moonraker
## 21703                                                                                                                            Man with the Golden Gun, The
## 21704                                                                                                                                        Running Man, The
## 21705                                                                                                                                            Patriot, The
## 21707                                                                                                                                       What Lies Beneath
## 21708                                                                                                                          Nutty Professor II: The Klumps
## 21709                                                                                                                                       Replacements, The
## 21710                                                                                                                                               Cell, The
## 21714                                                                                                                                       Time Machine, The
## 21715                                                                                                                                           Lucky Numbers
## 21716                                                                                                                                        Charlie's Angels
## 21717                                                                                                                                    Diamonds Are Forever
## 21718                                                                                                                                             Unbreakable
## 21719                                                                                                                                           Proof of Life
## 21720                                                                                                                                         What Women Want
## 21721                                                                                                                                               Gift, The
## 21722                                                                                                                                         Family Man, The
## 21723                                                                                                                                       Miss Congeniality
## 21724                                                                                                                              O Brother, Where Art Thou?
## 21725                                                                                                                    Don't Tell Mom the Babysitter's Dead
## 21726                                                                                                                           Saving Silverman (Evil Woman)
## 21727                                                                                                                                           Down to Earth
## 21728                                                                                                                                    Revenge of the Nerds
## 21729                                                                                                                                      Enemy at the Gates
## 21731                                                                                                                                                 Memento
## 21732                                                                                                                                           Heartbreakers
## 21733                                                                                                                                         Say It Isn't So
## 21734                                                                                                                                     Along Came a Spider
## 21735                                                                                                                                                  Driven
## 21736                                                                                                                                           City Slickers
## 21737                                                                                                                                               Evolution
## 21739                                                                                                                                             Point Break
## 21740                                                                                                                               Fast and the Furious, The
## 21741                                                                                                                                              Score, The
## 21743                                                                                                                                           Short Circuit
## 21744                                                                                                                        Bill & Ted's Excellent Adventure
## 21745                                                                                                                                              Lean on Me
## 21746                                                                                                                                       Jurassic Park III
## 21747                                                                                                                                             Rush Hour 2
## 21749                                                                                                                              Captain Corelli's Mandolin
## 21750                                                                                                                          Jay and Silent Bob Strike Back
## 21751                                                                                                                                               Rock Star
## 21752                                                                                                                                        Don't Say a Word
## 21754                                                                                                                                        Last Castle, The
## 21756                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 21757                                                                                                                                                Spy Game
## 21758                                                                                                                                       Lord of the Flies
## 21760                                                                                                                              Bill & Ted's Bogus Journey
## 21762                                                                                                                                         Black Hawk Down
## 21763                                                                                                                                           Orange County
## 21764                                                                                                                                           Birthday Girl
## 21765                                                                                                                                       Collateral Damage
## 21766                                                                                                                                       Time Machine, The
## 21767                                                                                                                                           Resident Evil
## 21768                                                                                                                                             High Crimes
## 21769                                                                                                                           National Lampoon's Van Wilder
## 21770                                                                                                                                       Murder by Numbers
## 21771                                                                                                                                              Spider-Man
## 21772                                                                                                                                             About a Boy
## 21773                                                                                                            Star Wars: Episode II - Attack of the Clones
## 21776                                                                                                                                         Minority Report
## 21777                                                                                                                                               Mr. Deeds
## 21778                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 21779                                                                                                                                                   Signs
## 21780                                                                                                                                        Transporter, The
## 21781                                                                                                                 Harry Potter and the Chamber of Secrets
## 21784                                                                                                                                       Gangs of New York
## 21785                                                                                                                                            Recruit, The
## 21787                                                                                                                                            Dreamcatcher
## 21788                                                                                                                                               Core, The
## 21789                                                                                                                                           Head of State
## 21791                                                                                                                                        Bulletproof Monk
## 21792                                                                                                                                              Confidence
## 21793                                                                                                                                                Identity
## 21794                                                                                                                                        X2: X-Men United
## 21796                                                                                                                                          Bruce Almighty
## 21798                                                                                                          2 Fast 2 Furious (Fast and the Furious 2, The)
## 21800                                                                                                                      Terminator 3: Rise of the Machines
## 21802                                                                                                     League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 21803                                                                                                                                          Matchstick Men
## 21805                                                                                                                                            Rundown, The
## 21807                                                                                                                                                     Elf
## 21808                                                                                                                                     Father of the Bride
## 21809                                                                                                                                           Doc Hollywood
## 21811                                                                                                                                        Along Came Polly
## 21814                                                                                                                                         Starsky & Hutch
## 21816                                                                                                                                        Dawn of the Dead
## 21817                                                                                                                                    Whole Ten Yards, The
## 21819                                                                                                                                     You Only Live Twice
## 21820                                                                                                                                               Octopussy
## 21821                                                                                                                                   Never Say Never Again
## 21823                                                                                                                Harry Potter and the Prisoner of Azkaban
## 21825                                                                                                                                           Memphis Belle
## 21827                                                                                                                                               Overboard
## 21830                                                                                                                                       Shaun of the Dead
## 21832                                                                                                                                        After the Sunset
## 21834                                                                                                                                                The Hole
## 21835                                                                                                                                               Spanglish
## 21836                                                                                                                                        Interpreter, The
## 21838                                                                                                                                       War of the Worlds
## 21849                                                                                                                          Ace Ventura: When Nature Calls
## 21852                                                                                                                                                    Babe
## 21853                                                                                                                                                Clueless
## 21855                                                                                                                                     Usual Suspects, The
## 21856                                                                                                                                            Broken Arrow
## 21859                                                                                                                                          Batman Forever
## 21860                                                                                                                                                   Congo
## 21863                                                                                                                                             Judge Dredd
## 21864                                                                                                                                                Net, The
## 21866                                                                                                                                              Disclosure
## 21868                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 21869                                                                                                                                     Legends of the Fall
## 21873                                                                                                                                               Quiz Show
## 21874                                                                                                                                         Specialist, The
## 21876                                                                                                                                       Santa Clause, The
## 21878                                                                                                                                 While You Were Sleeping
## 21879                                                                                                                              Ace Ventura: Pet Detective
## 21885                                                                                                                                               Mask, The
## 21888                                                                                                                                    Addams Family Values
## 21889                                                                                                                                   Beverly Hills Cop III
## 21890                                                                                                            City Slickers II: The Legend of Curly's Gold
## 21893                                                                                                                                                    Dave
## 21900                                                                                                                                              Piano, The
## 21902                                                                                                                                    Sleepless in Seattle
## 21903                                                                                                                                               Tombstone
## 21905                                                                                                                                                 Aladdin
## 21907                                                                                                                                      Dances with Wolves
## 21908                                                                                                                                                  Batman
## 21909                                                                                                                                    Beauty and the Beast
## 21910                                                                                                                                            Pretty Woman
## 21911                                                                                                                                               Toy Story
## 21913                                                                                                                                               GoldenEye
## 21914                                                                                                                                              Get Shorty
## 21915                                                                                                                                       Leaving Las Vegas
## 21919                                                                                                                                            Broken Arrow
## 21920                                                                                                                                              Braveheart
## 21921                                                                                                                                             Taxi Driver
## 21922                                                                                                                                          Down Periscope
## 21923                                                                                                                                               Apollo 13
## 21925                                                                                                                                                Net, The
## 21926                                                                                                                                              Waterworld
## 21927                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 21928                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 21930                                                                                                                                    Natural Born Killers
## 21935                                                                                                                                Clear and Present Danger
## 21936                                                                                                                                            Forrest Gump
## 21937                                                                                                                             Four Weddings and a Funeral
## 21939                                                                                                                                                   Speed
## 21940                                                                                                                                               True Lies
## 21941                                                                                                                                             Cliffhanger
## 21942                                                                                                                                               Firm, The
## 21944                                                                                                                                           Jurassic Park
## 21945                                                                                                                                          Mrs. Doubtfire
## 21947                                                                                                                                              Home Alone
## 21948                                                                                                                                                   Ghost
## 21949                                                                                                                                      Dances with Wolves
## 21951                                                                                                                                            Pretty Woman
## 21953                                                                                                                                               Rock, The
## 21954                                                                                                                                                 Twister
## 21955                                                                                    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 21956                                                                                                                                           Trainspotting
## 21959                                                                                                                            20,000 Leagues Under the Sea
## 21960                                                                                                                                                Die Hard
## 21961                                                                                                                                          Reservoir Dogs
## 21962                                                                                                                                                 Platoon
## 21963                                                                                                                              E.T. the Extra-Terrestrial
## 21966                                                                                                                         One Flew Over the Cuckoo's Nest
## 21968                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 21970                                                                                                                                     Clockwork Orange, A
## 21973                                                                                                                                       Full Metal Jacket
## 21974                                                                                                                                         Terminator, The
## 21975                                                                                                                                        Deer Hunter, The
## 21977                                                                                                                                      Back to the Future
## 21978                                                                                                                                                  Patton
## 21979                                                                                                                                     Room with a View, A
## 21980                                                                                                                                           Private Parts
## 21981                                                                                                                                     Grosse Pointe Blank
## 21982                                                                                                             Austin Powers: International Man of Mystery
## 21983                                                                                                                                      Fifth Element, The
## 21986                                                                                                                                          Ice Storm, The
## 21988                                                                                                                                           Sliding Doors
## 21989                                                                                                                                        Truman Show, The
## 21990                                                                                                                                       Good Will Hunting
## 21991                                                                                                                                                 Titanic
## 21994                                                                                                                                                Rain Man
## 21996                                                                                                                     Life Is Beautiful (La Vita è bella)
## 21997                                                                                                                                     Shakespeare in Love
## 21998                                                                                                                                             Patch Adams
## 22001                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 22002                                                                                                                                            American Pie
## 22003                                                                                                                                        Sixth Sense, The
## 22005                                                                                                                                        Dirty Dozen, The
## 22008                                                                                                                                  Cider House Rules, The
## 22009                                                                                                                                          Bodyguard, The
## 22011                                                                                                                                           High Fidelity
## 22013                                                                                                                                              Hollow Man
## 22014                                                                                                                                           Almost Famous
## 22016                                                                                                                                            Billy Elliot
## 22018                                                                                                                            Planes, Trains & Automobiles
## 22019                                                                                                                                                  Snatch
## 22021                                                                                                                                      Enemy at the Gates
## 22023                                                                                                                                                    Blow
## 22024                                                                                                                                                   Shrek
## 22025                                                                                                                                             Others, The
## 22026                                                                                                                                        Mulholland Drive
## 22028                                                                                                                                          Monsters, Inc.
## 22030                                                                                                                                          Ocean's Eleven
## 22033                                                                                                                                       Beautiful Mind, A
## 22034                                                                                                                                         Black Hawk Down
## 22035                                                                                                                                            Gosford Park
## 22036                                                                                                                                   M*A*S*H (a.k.a. MASH)
## 22037                                                                                                                                              Spider-Man
## 22043                                                                                                                                     Catch Me If You Can
## 22044                                                                                                                    Flickering Lights (Blinkende lygter)
## 22047                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 22050                                                                                                                                           Love Actually
## 22051                                                                                                                                                21 Grams
## 22052                                                                                                                         Battle Royale (Batoru rowaiaru)
## 22055                                                                                                                                    The Butterfly Effect
## 22059                                                                                                         In China They Eat Dogs (I Kina spiser de hunde)
## 22061                                                                                                                                           Notebook, The
## 22062                                                                                                                                            Spider-Man 2
## 22065                                                                                                                                        Incredibles, The
## 22066                                                                                                                                    Bourne Identity, The
## 22068                                                                                                                                     Million Dollar Baby
## 22069                                                                                                                                            Hotel Rwanda
## 22072                                                                                                                                                   Crash
## 22076                                                                                                                                             Grizzly Man
## 22077                                                                                                                                  Constant Gardener, The
## 22078                                                                                                                                             Lord of War
## 22079                                                                                                                                     Kiss Kiss Bang Bang
## 22081                                                                                                                                           Walk the Line
## 22082                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 22083                                                                                                                                                  Munich
## 22084                                                                                                                                          V for Vendetta
## 22085                                                                                                                                   Thank You for Smoking
## 22089                                                                                                                                                   Babel
## 22090                                                                                                                             Adam's Apples (Adams æbler)
## 22091                                                                                                                                         Children of Men
## 22095                                                                                                                                             Ratatouille
## 22102                                                                                                                                     There Will Be Blood
## 22103                                                                                                                                               In Bruges
## 22106                                                                                                                                                   Taken
## 22107                                                                                                                                           Kung Fu Panda
## 22110                                                                                                Girl with the Dragon Tattoo, The (Män som hatar kvinnor)
## 22111                                                                                                                                    Inglourious Basterds
## 22116                                                                                                                                              District 9
## 22119                                                                                                                                          Shutter Island
## 22120                                                                                                                                How to Train Your Dragon
## 22121                                                                                                                                             Toy Story 3
## 22123                                                                                                                                     Social Network, The
## 22125                                                                                                                                      King's Speech, The
## 22132                                                                                                                                              Braveheart
## 22135                                                                                                                                        Don Juan DeMarco
## 22139                                                                                                                                         Made in America
## 22140                                                                                                                                       Super Mario Bros.
## 22153                                                                                                                                       L.A. Confidential
## 22165                                                                                                                                   House on Haunted Hill
## 22167                                                                                                                                           Forever Young
## 22168                                                                                                                                  Pokémon the Movie 2000
## 22169                                                                                                                                             Coyote Ugly
## 22171                                                                                                                                      Mummy Returns, The
## 22177                                                                                                                               Return to the Blue Lagoon
## 22182                                                                                                                             Father of the Bride Part II
## 22183                                                                                                                                                 Sabrina
## 22186                                                                                                                                      Mr. Holland's Opus
## 22188                                                                                                                                             Mary Reilly
## 22191                                                                                                                                              Sgt. Bilko
## 22196                                                                                                                            Truth About Cats & Dogs, The
## 22197                                                                                                                                                 Flipper
## 22200                                                                                                                            Hunchback of Notre Dame, The
## 22206                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 22210                                                                                                                                           Jurassic Park
## 22215                                                                                    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 22216                                                                                                                           Independence Day (a.k.a. ID4)
## 22222                                                                                                                                              Abyss, The
## 22225                                                                                                                                            Delicatessen
## 22230                                                                                                                                                  Brazil
## 22235                                                                                                                                         Terminator, The
## 22236                                                                                                                                                Sneakers
## 22237                                                                                                                                      Fifth Element, The
## 22238                                                                                                                                                Face/Off
## 22240                                                                                                                                       Good Will Hunting
## 22241                                                                                                                                        Chariots of Fire
## 22242                                                                                                                                                Repo Man
## 22243                                                                                                                              Back to the Future Part II
## 22244                                                                                                                             Back to the Future Part III
## 22247                                                                                                                                              Pale Rider
## 22249                                                                                                                                             Logan's Run
## 22250                                                                                                                                      Planet of the Apes
## 22253                                                                                                                                           Arachnophobia
## 22254                                                                                                                                       Color Purple, The
## 22256                                                                                                                                            Total Recall
## 22259                                                                                                                                        Last Action Hero
## 22261                                                                                                                                  Brady Bunch Movie, The
## 22269                                                                                                                                     Tomorrow Never Dies
## 22273                                                                                                                                               Bowfinger
## 22279                                                                                                                                      Gone in 60 Seconds
## 22301                                                                                                                                              Iron Man 2
## 22302                                                                                                                                               Toy Story
## 22303                                                                                                                                                 Jumanji
## 22304                                                                                                                                               GoldenEye
## 22305                                                                                                                             Dracula: Dead and Loving It
## 22307                                                                                                                                                    Babe
## 22308                                                                                                                                    Seven (a.k.a. Se7en)
## 22310                                                                                                                                                   Congo
## 22311                                                                                                                              Die Hard: With a Vengeance
## 22312                                                                                                                                              Waterworld
## 22314                                                                                                                      Star Wars: Episode IV - A New Hope
## 22315                                                                                                                                             Major Payne
## 22318                                                                                                                                                Stargate
## 22319                                                                                                                              Ace Ventura: Pet Detective
## 22320                                                                                                                                               Mask, The
## 22321                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 22322                                                                                                                                                   Speed
## 22323                                                                                                                                    Hot Shots! Part Deux
## 22324                                                                                                                                           Jurassic Park
## 22325                                                                                                                                        Last Action Hero
## 22326                                                                                                                                        Schindler's List
## 22327                                                                                                                                            Blade Runner
## 22329                                                                                                                                              Home Alone
## 22331                                                                                                                                     Mission: Impossible
## 22332                                                                                                                                               Rock, The
## 22333                                                                                                                                                 Twister
## 22336                                                                                                                           Independence Day (a.k.a. ID4)
## 22337                                                                                                                                   2001: A Space Odyssey
## 22338                                                                                                                                                Die Hard
## 22339                                                                                                                              E.T. the Extra-Terrestrial
## 22340                                                                                                                                              Abyss, The
## 22341                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 22342                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 22346                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 22351                                                                                                                             Evil Dead II (Dead by Dawn)
## 22352                                                                                                                                           Groundhog Day
## 22355                                                                                                                      Indiana Jones and the Last Crusade
## 22356                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 22357                                                                                                                                                    Jaws
## 22358                                                                                                                                           Mars Attacks!
## 22359                                                                                                             Austin Powers: International Man of Mystery
## 22360                                                                                                                                      Fifth Element, The
## 22361                                                                                                                          Lost World: Jurassic Park, The
## 22362                                                                                                                                                Face/Off
## 22363                                                                                                                               Men in Black (a.k.a. MIB)
## 22364                                                                                                                                           Event Horizon
## 22366                                                                                                                                       Starship Troopers
## 22368                                                                                                                                     Alien: Resurrection
## 22369                                                                                                                                                 Titanic
## 22371                                                                                                                            There's Something About Mary
## 22372                                                                                                                                                Rain Man
## 22373                                                                                                                                            Child's Play
## 22374                                                                                                                                                Gremlins
## 22375                                                                                                                             Back to the Future Part III
## 22376                                                                                                                                                  Lolita
## 22377                                                                                                                                     Saving Private Ryan
## 22378                                                                                                                                Honey, I Shrunk the Kids
## 22379                                                                                                                    Indiana Jones and the Temple of Doom
## 22380                                                                                                             NeverEnding Story II: The Next Chapter, The
## 22381                                                                                                                                                   Blade
## 22384                                                                                                                                           Bug's Life, A
## 22385                                                                                                                                       Godzilla (Gojira)
## 22386                                                                                                               Police Academy 5: Assignment: Miami Beach
## 22387                                                                                                                      Police Academy 6: City Under Siege
## 22388                                                                                                                                Karate Kid, Part II, The
## 22390                                                                                                                                        Crocodile Dundee
## 22391                                                                                                                                            Office Space
## 22393                                                                                                               Star Wars: Episode I - The Phantom Menace
## 22394                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 22396                                                                                                                                            American Pie
## 22397                                                                                                                                Blair Witch Project, The
## 22398                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 22402                                                                                                                                             Three Kings
## 22404                                                                                                                                                 RoboCop
## 22406                                                                                                                                            Falling Down
## 22407                                                                                                                                             End of Days
## 22408                                                                                                                                         Of Mice and Men
## 22409                                                                                                                                                Red Dawn
## 22410                                                                                                                                                Predator
## 22412                                                                                                                                  Mission: Impossible II
## 22413                                                                                                                                                   X-Men
## 22414                                                                                                                                              Hellraiser
## 22415                                                                                                                                        Charlie's Angels
## 22417                                                                                                                                               Cast Away
## 22418                                                                                                                                   Shadow of the Vampire
## 22419                                                                                                                                    Beverly Hills Cop II
## 22421                                                                                                                                                   Shrek
## 22422                                                                                                                                            Pearl Harbor
## 22423                                                                                                                                 Lara Croft: Tomb Raider
## 22424                                                                                                                            A.I. Artificial Intelligence
## 22426                                                                                                                                           Short Circuit
## 22427                                                                                                                                          American Pie 2
## 22429                                                                                                                                          Monsters, Inc.
## 22430                                                                                                         Devil's Backbone, The (Espinazo del diablo, El)
## 22433                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 22434                                                                                                                                         Black Hawk Down
## 22436                                                                                                                                                Blade II
## 22437                                                                                                                                              Spider-Man
## 22438                                                                                                            Star Wars: Episode II - Attack of the Clones
## 22439                                                                                                                                    Bourne Identity, The
## 22440                                                                                                                                         Minority Report
## 22442                                                                                                                                               Ring, The
## 22443                                                                                                                 Grave of the Fireflies (Hotaru no haka)
## 22444                                                                                                                                             Equilibrium
## 22445                                                                                                                  Lord of the Rings: The Two Towers, The
## 22447                                                                                                                                    Bend It Like Beckham
## 22449                                                                                                                                        X2: X-Men United
## 22450                                                                                                                                    Matrix Reloaded, The
## 22451                                                                                                                                          Bruce Almighty
## 22452                                                                                                                                            Finding Nemo
## 22455                                                                                                                      Terminator 3: Rise of the Machines
## 22456                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 22457                                                                                                                                          School of Rock
## 22458                                                                                                                                       Kill Bill: Vol. 1
## 22459                                                                                                                                 Matrix Revolutions, The
## 22462                                                                                                          Lord of the Rings: The Return of the King, The
## 22466                                                                                                                                       Kill Bill: Vol. 2
## 22467                                                                                                                                             Van Helsing
## 22468                                                                                                                         Infernal Affairs (Mou gaan dou)
## 22472                                                                                                                                                 Shrek 2
## 22473                                                                                                                                 Day After Tomorrow, The
## 22475                                                                                                                                            Spider-Man 2
## 22476                                                                                                                                                I, Robot
## 22477                                                                                                                                   Bourne Supremacy, The
## 22478                                                                                                                               Resident Evil: Apocalypse
## 22479                                                                                                                                       Shaun of the Dead
## 22482                                                                                                                                        Incredibles, The
## 22483                                                                                                                                          Ocean's Twelve
## 22484                                                                                                                                          Blade: Trinity
## 22485                                                                                                                        Police Story (Ging chaat goo si)
## 22489                                                                                                                                              Layer Cake
## 22490                                                                                                                    Gozu (Gokudô kyôfu dai-gekijô: Gozu)
## 22491                                                                                                                       Charlie and the Chocolate Factory
## 22494                                                                                                                                Kung Fu Hustle (Gong fu)
## 22495                                                                                                    Godzilla vs. Mechagodzilla II (Gojira VS Mekagojira)
## 22498                                                                                                                   Hitchhiker's Guide to the Galaxy, The
## 22499                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 22501                                                                                                                                       War of the Worlds
## 22502                                                                                                                                          Fantastic Four
## 22503                                                                                                                                                Serenity
## 22504                                                                                                                                 40-Year-Old Virgin, The
## 22509                                                                                                                                   X-Men: The Last Stand
## 22510                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 22513                                                                                                                                               Severance
## 22514                                                                                                            Science of Sleep, The (La science des rêves)
## 22515                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 22519                                                                                                                                           Casino Royale
## 22520                                                                                                                                                Hot Fuzz
## 22521                                                                                                                                                     300
## 22522                                                                                                                                                Sunshine
## 22526                                                                                                               Fantastic Four: Rise of the Silver Surfer
## 22527                                                                                                                                                    Fido
## 22528                                                                                                                                             Death Proof
## 22529                                                                                                                                            Transformers
## 22530                                                                                                                                   Bourne Ultimatum, The
## 22531                                                                                                                                                Superbad
## 22532                                                                                                                         City of Violence, The (Jjakpae)
## 22533                                                                                                                            Elite Squad (Tropa de Elite)
## 22534                                                                                                                                       American Gangster
## 22536                                                                                                                                             I Am Legend
## 22539                                                                                                  Girl Who Leapt Through Time, The (Toki o kakeru shôjo)
## 22541                                                                                                                                           Bank Job, The
## 22542                                                                                                                                    Zeitgeist: The Movie
## 22544                                                                                                                                                Iron Man
## 22547                                                                                                                                                  WALL·E
## 22548                                                                                                                                                 Hancock
## 22550                                                                                                                               Star Wars: The Clone Wars
## 22552                                                                                                                                               Max Payne
## 22556                                                                                                                                                Coraline
## 22557                                                                                                                                               Chocolate
## 22564                                                                                                                                        Hurt Locker, The
## 22566                                                                                                            Frequently Asked Questions About Time Travel
## 22568                                                                                                                                         Thirst (Bakjwi)
## 22569                                                                                                                                              Zombieland
## 22571                                                                                                                                                    2012
## 22572                                                                                                                                                  Avatar
## 22574                                                                                                                                          Shutter Island
## 22575                                                                                                                                     Alice in Wonderland
## 22578                                                                                                                                              Iron Man 2
## 22582                                                                                                                                           Vampires Suck
## 22585                                                                                                                                   Paranormal Activity 2
## 22586                                                                                                            Harry Potter and the Deathly Hallows: Part 1
## 22589                                                                                                                                       Green Hornet, The
## 22593                                                                                                                                             Source Code
## 22594                                                                                                                                            Sucker Punch
## 22595                                                                                                                                                   Hanna
## 22596                                                                                                                                             Melancholia
## 22599                                                                                                                                    The Man from Nowhere
## 22601                                                                                                            Harry Potter and the Deathly Hallows: Part 2
## 22603                                                                                                                      Captain America: The First Avenger
## 22605                                                                                                                          Rise of the Planet of the Apes
## 22606                                                                                                                                           Avengers, The
## 22610                                                                                                                                   Paranormal Activity 3
## 22617                                                                                                                             Snow White and the Huntsman
## 22618                                                                                                                                              Prometheus
## 22619                                                                                                                                 Amazing Spider-Man, The
## 22626                                                                                                                                              Iron Man 3
## 22629                                                                                                                                               Tank Girl
## 22630                                                                                                                                              Kalifornia
## 22631                                                                                                                                                  Jaws 2
## 22634                                                                                                                               Gremlins 2: The New Batch
## 22635                                                                                                                                       View to a Kill, A
## 22637                                                                                                                      Escape from the Planet of the Apes
## 22638                                                                                                                        Superman IV: The Quest for Peace
## 22639                                                                                                                                Buffy the Vampire Slayer
## 22640                                                                                                                                                     JFK
## 22643                                                                                                                                   Bourne Ultimatum, The
## 22645                                                                                                                                                  WALL·E
## 22646                                                                                                                                           Wackness, The
## 22647                                                                                                                                      Burn After Reading
## 22649                                                                                                                                               GoldenEye
## 22651                                                                                                                                                    Babe
## 22652                                                                                                                                    Seven (a.k.a. Se7en)
## 22654                                                                                                                                      Mr. Holland's Opus
## 22655                                                                                                                                   Kicking and Screaming
## 22656                                                                                                                                               Screamers
## 22659                                                                                                                                               Apollo 13
## 22660                                                                                                                              Die Hard: With a Vengeance
## 22661                                                                                                                                                Mallrats
## 22662                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 22663                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 22668                                                                                                                                  Star Trek: Generations
## 22669                                                                                                                              Ace Ventura: Pet Detective
## 22670                                                                                                                                Clear and Present Danger
## 22672                                                                                                                                          Lion King, The
## 22673                                                                                                                                               Mask, The
## 22674                                                                                                                                                   Speed
## 22675                                                                                                                                               True Lies
## 22676                                                                                                                                             Cliffhanger
## 22677                                                                                                                                           Fugitive, The
## 22679                                                                                                                                 Man Without a Face, The
## 22680                                                                                                                                  Much Ado About Nothing
## 22681                                                                                                                                          Mrs. Doubtfire
## 22683                                                                                                                                    Sleepless in Seattle
## 22685                                                                                                                                                   Ghost
## 22686                                                                                                                              Terminator 2: Judgment Day
## 22687                                                                                                                                                  Batman
## 22689                                                                                                                                            Pretty Woman
## 22691                                                                                                                                               Rock, The
## 22692                                                                                                                         Wallace & Gromit: A Close Shave
## 22693                                                                                                                           Independence Day (a.k.a. ID4)
## 22694                                                                                                                                        Frighteners, The
## 22704                                                                                                                            Monty Python's Life of Brian
## 22705                                                                                                                              E.T. the Extra-Terrestrial
## 22726                                                                                                                               Men in Black (a.k.a. MIB)
## 22727                                                                                                                                               G.I. Jane
## 22729                                                                                                                                                   Mulan
## 22730                                                                                                                                            Dr. Dolittle
## 22731                                                                                                                                         Midnight Cowboy
## 22732                                                                                                                                       Kramer vs. Kramer
## 22734                                                                                                                                         Friday the 13th
## 22738                                                                                                                                         My Cousin Vinny
## 22742                                                                                                                                 General's Daughter, The
## 22743                                                                                                                                        Sixth Sense, The
## 22745                                                                                                                                              Fight Club
## 22746                                                                                                                       Princess Mononoke (Mononoke-hime)
## 22748                                                                                                                                            General, The
## 22750                                                                                             Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 22751                                                           Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 22753                                                                                                                                            Midnight Run
## 22754                                                                                                                                        Midnight Express
## 22756                                                                                                                                        Running Man, The
## 22758                                                                                                                                                     F/X
## 22760                                                                                                                                                 Memento
## 22761                                                                                                                          Amores Perros (Love's a Bitch)
## 22762                                                                                                                                            Moulin Rouge
## 22764                                                                                                                                        Mulholland Drive
## 22768                                                                                                                                          Monster's Ball
## 22772                                                                                                                   My Neighbor Totoro (Tonari no Totoro)
## 22773                                                                                                                            City of God (Cidade de Deus)
## 22775                                                                                                                                     Lost in Translation
## 22776                                                                                                                                Kiss of the Spider Woman
## 22777                                                                                                                      Monty Python's The Meaning of Life
## 22780                                                                                                                                       Last Samurai, The
## 22784                                                                                                        Motorcycle Diaries, The (Diarios de motocicleta)
## 22785                                                                                                                                                  Kinsey
## 22786                                                                                                               My Name Is Nobody (Il Mio nome è Nessuno)
## 22788                                                                                                                                              Layer Cake
## 22790                                                                                                                     Life Aquatic with Steve Zissou, The
## 22791                                                                                                                                Kung Fu Hustle (Gong fu)
## 22792                                                                                                                                             Lord of War
## 22794                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 22795                                                                                                                                           Departed, The
## 22796                                                                                                                                                Hot Fuzz
## 22797                                                                                                                                                    Babe
## 22808                                                                                                                                        Schindler's List
## 22810                                                                                                                                              Home Alone
## 22812                                                                                                                               Silence of the Lambs, The
## 22815                                                                                                                                          Godfather, The
## 22816                                                                                                                                    Fish Called Wanda, A
## 22822                                                                                                                                              Goodfellas
## 22826                                                                                                                                      Back to the Future
## 22832                                                                                                                                                 Tin Men
## 22833                                                                                                                                                 Michael
## 22834                                                                                                                                               Liar Liar
## 22836                                                                                                                                My Best Friend's Wedding
## 22837                                                                                                                                       L.A. Confidential
## 22842                                                                                                                                    Horse Whisperer, The
## 22853                                                                                                                                      Married to the Mob
## 22857                                                                                                                                          Money Pit, The
## 22860                                                                                                                                   Peggy Sue Got Married
## 22863                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 22867                                                                                                                                               Airplane!
## 22868                                                                                                                                         American Beauty
## 22869                                                                                                                                               Sommersby
## 22873                                                                                                                                Who Framed Roger Rabbit?
## 22877                                                                                                                                           Stuart Little
## 22885                                                                                                                                            Animal House
## 22887                                                                                                                                   Good Morning, Vietnam
## 22888                                                                                                                                          Grumpy Old Men
## 22889                                                                                                                                                  Arthur
## 22892                                                                                                                                                 Porky's
## 22893                                                                                                                                         Porky's Revenge
## 22901                                                                                                                                              Get Shorty
## 22902                                                                                                                                       Leaving Las Vegas
## 22903                                                                                                                                         Dangerous Minds
## 22904                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 22906                                                                                                                                                Clueless
## 22907                                                                                                                                           Mortal Kombat
## 22909                                                                                                                                              Pocahontas
## 22913                                                                                                                                                Bad Boys
## 22915                                                                                                                                          Batman Forever
## 22917                                                                                                                                                   Congo
## 22920                                                                                                                              Die Hard: With a Vengeance
## 22922                                                                                                                                             Judge Dredd
## 22923                                                                                                                 Mighty Morphin Power Rangers: The Movie
## 22925                                                                                                                           Under Siege 2: Dark Territory
## 22926                                                                                                                                        Don Juan DeMarco
## 22928                                                                                                                                               Drop Zone
## 22929                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 22930                                                                                                                                             French Kiss
## 22931                                                                                                                                            Forget Paris
## 22933                                                                                                                                                  Junior
## 22934                                                                                                                                            Little Women
## 22936                                                                                                                                  Miracle on 34th Street
## 22938                                                                                                 Léon: The Professional (a.k.a. The Professional) (Léon)
## 22939                                                                                                                                            Pulp Fiction
## 22941                                                                                                                                         Specialist, The
## 22942                                                                                                                                                Stargate
## 22943                                                                                                                                       Santa Clause, The
## 22945                                                                                                                                  Star Trek: Generations
## 22946                                                                                                                             What's Eating Gilbert Grape
## 22947                                                                                                                                 While You Were Sleeping
## 22949                                                                                                                                Clear and Present Danger
## 22953                                                                                                                                          Lion King, The
## 22954                                                                                                                                               Mask, The
## 22956                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 22960                                                                                                                                   Beverly Hills Cop III
## 22961                                                                                                                                             Cliffhanger
## 22963                                                                                                                                          Demolition Man
## 22968                                                                                                                                        Last Action Hero
## 22972                                                                                                                                 Remains of the Day, The
## 22973                                                                                                                                    Sleepless in Seattle
## 22975                                                                                                                                  Brady Bunch Movie, The
## 22976                                                                                                                                              Home Alone
## 22978                                                                                                                                                 Aladdin
## 22980                                                                                                                                      Dances with Wolves
## 22981                                                                                                                                                  Batman
## 22983                                                                                                                                    Beauty and the Beast
## 22984                                                                                                                                            Pretty Woman
## 22985                                                                                                                                                   Fargo
## 22986                                                                                                                                     Mission: Impossible
## 22987                                                                                                                                        Grumpier Old Men
## 22989                                                                                                                                                    Heat
## 22990                                                                                                                                                 Sabrina
## 22992                                                                                                                                        Dead Man Walking
## 22995                                                                                                                                           Two if by Sea
## 22996                                                                                                                                               City Hall
## 22997                                                                                                                                            If Lucy Fell
## 23001                                                                                                                                      Executive Decision
## 23002                                                                                                                                            One Fine Day
## 23004                                                                                                                                              Sgt. Bilko
## 23005                                                                                                                                     Mission: Impossible
## 23006                                                                                                                                           Moll Flanders
## 23007                                                                                                                                        Mulholland Falls
## 23008                                                                                                                            Truth About Cats & Dogs, The
## 23009                                                                                                                                            Multiplicity
## 23010                                                                                                                                                 Twister
## 23011                                                                                                                           Independence Day (a.k.a. ID4)
## 23012                                                                                                                                    Nutty Professor, The
## 23013                                                                                                                                         Time to Kill, A
## 23014                                                                                                                                                 Tin Cup
## 23015                                                                                                                               Mirror Has Two Faces, The
## 23017                                                                                                                                               Toy Story
## 23018                                                                                                                          Ace Ventura: When Nature Calls
## 23021                                                                                                                                          Batman Forever
## 23023                                                                                                                                            Pulp Fiction
## 23025                                                                                                                              Ace Ventura: Pet Detective
## 23027                                                                                                                                               Mask, The
## 23029                                                                                                                                           Jurassic Park
## 23031                                                                                                                                              Home Alone
## 23032                                                                                                                                                 Aladdin
## 23033                                                                                                                              Terminator 2: Judgment Day
## 23034                                                                                                                                                  Batman
## 23036                                                                                                                                     Mission: Impossible
## 23037                                                                                                                                                Spy Hard
## 23038                                                                                                                           Independence Day (a.k.a. ID4)
## 23040                                                                                                                                          Basic Instinct
## 23044                                                                                                                                              Die Hard 2
## 23046                                                                                                                                                 Titanic
## 23048                                                                                                                                          City of Angels
## 23049                                                                                                                                                Godzilla
## 23050                                                                                                                                             Poltergeist
## 23053                                                                                                                     Life Is Beautiful (La Vita è bella)
## 23054                                                                                                                                               Rambo III
## 23055                                                                                                                                                 Rocky V
## 23057                                                                                                                                             Matrix, The
## 23060                                                                                                                            Teenage Mutant Ninja Turtles
## 23061                                                                                                                                               Gladiator
## 23062                                                                                                                                                Dinosaur
## 23063                                                                                                                                      Gone in 60 Seconds
## 23064                                                                                                                                                   X-Men
## 23065                                                                                                                                          American Pie 2
## 23067                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 23068                                                                                                                                              Spider-Man
## 23069                                                                                                                                            Recruit, The
## 23071                                                                                                          Lord of the Rings: The Return of the King, The
## 23072                                                                                                                                            Spider-Man 2
## 23073                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 23074                                                                                                                                           Into the Wild
## 23075                                                                                                                                             I Am Legend
## 23078                                                                                                                                               Nuremberg
## 23079                                                                                                                                                    2012
## 23081                                                                                                                                               Dear John
## 23082                                                                                                                                             Toy Story 3
## 23083                                                                                                                                               Inception
## 23084                                                                                                                                            Tourist, The
## 23085                                                                                                                                             Bad Teacher
## 23087                                                                                                                                        Descendants, The
## 23091                                                                                                                      Hobbit: An Unexpected Journey, The
## 23092                                                                                                                                             World War Z
## 23094                                                                                                                                             Family, The
## 23098                                                                                                                                               Toy Story
## 23101                                                                                                                                              Braveheart
## 23104                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 23105                                                                                                                      Star Wars: Episode IV - A New Hope
## 23108                                                                                                                                       Santa Clause, The
## 23112                                                                                                                                           Jurassic Park
## 23114                                                                                                                Homeward Bound II: Lost in San Francisco
## 23115                                                                                                                                    Nutty Professor, The
## 23116                                                                                                                                             Rear Window
## 23123                                                                                                                         Monty Python and the Holy Grail
## 23128                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 23129                                                                                                                                         Terminator, The
## 23133                                                                                                                               Men in Black (a.k.a. MIB)
## 23134                                                                                                                                               Anastasia
## 23136                                                                                                                                     Tomorrow Never Dies
## 23137                                                                                                                                       Big Lebowski, The
## 23138                                                                                                                                                   Mulan
## 23139                                                                                                                            There's Something About Mary
## 23147                                                                                                                                             Toy Story 2
## 23148                                                                                                                                           Wayne's World
## 23149                                                                                                                                             Chicken Run
## 23153                                                                                                                                          Legally Blonde
## 23157                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 23158                                                                                                                                              Spider-Man
## 23160                                                                                                                                                  8 Mile
## 23161                                                                                                                  Lord of the Rings: The Two Towers, The
## 23164                                                                                                                                          Bruce Almighty
## 23165                                                                                                                                            Finding Nemo
## 23166                                                                                                                                           28 Days Later
## 23167                                                                                                          Lord of the Rings: The Return of the King, The
## 23168                                                                                                                                                 Shrek 2
## 23171                                                                                                                                            Spider-Man 2
## 23172                                                                                                                                   Bourne Supremacy, The
## 23174                                                                                                                                        Incredibles, The
## 23177                                                                                                                                       War of the Worlds
## 23178                                                                                                                             World's Fastest Indian, The
## 23180                                                                                                                                               Toy Story
## 23181                                                                                                                                                 Jumanji
## 23182                                                                                                                                        Grumpier Old Men
## 23183                                                                                                                                               GoldenEye
## 23184                                                                                                                          Ace Ventura: When Nature Calls
## 23185                                                                                                                                              Get Shorty
## 23186                                                                                                                                                 Copycat
## 23187                                                                                                                                         Dangerous Minds
## 23189                                                                                                                                    Seven (a.k.a. Se7en)
## 23190                                                                                                                                     Usual Suspects, The
## 23191                                                                                                                                      Mr. Holland's Opus
## 23193                                                                                                                 Things to Do in Denver When You're Dead
## 23197                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 23198                                                                                                                                                Bad Boys
## 23199                                                                                                                                                  Casper
## 23202                                                                                                                                             Judge Dredd
## 23203                                                                                                                 Mighty Morphin Power Rangers: The Movie
## 23204                                                                                                                                                Net, The
## 23205                                                                                                                                                 Species
## 23206                                                                                                                                            Strange Days
## 23207                                                                                                                                           Billy Madison
## 23208                                                                                                                                              Disclosure
## 23210                                                                                                                                             Hoop Dreams
## 23211                                                                                                                                              Milk Money
## 23212                                                                                                                                     Murder in the First
## 23213                                                                                                                                                Outbreak
## 23215                                                                                                                                            Pulp Fiction
## 23216                                                                                                                                       Santa Clause, The
## 23219                                                                                                                                              Virtuosity
## 23220                                                                                                                                 While You Were Sleeping
## 23222                                                                                                                                             Client, The
## 23223                                                                                                                                            Forrest Gump
## 23224                                                                                                                                          Lion King, The
## 23225                                                                                                                                               Mask, The
## 23226                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 23227                                                                                                                                                   Speed
## 23229                                                                                                                                          Street Fighter
## 23230                                                                                                                                                Airheads
## 23231                                                                                                                                              Blue Chips
## 23232                                                                                                                                           Bronx Tale, A
## 23233                                                                                                            City Slickers II: The Legend of Curly's Gold
## 23234                                                                                                                                             Cliffhanger
## 23235                                                                                                                                          Demolition Man
## 23236                                                                                                                                           Fugitive, The
## 23238                                                                                                                                           House Party 3
## 23239                                                                                                                                           Jurassic Park
## 23240                                                                                                                                        Last Action Hero
## 23241                                                                                                                                          Mrs. Doubtfire
## 23242                                                                                                                                    Next Karate Kid, The
## 23244                                                                                                                                                Ref, The
## 23246                                                                                                                                                    Rudy
## 23248                                                                                                                             Searching for Bobby Fischer
## 23249                                                                                                                               Six Degrees of Separation
## 23250                                                                                                                                    Sleepless in Seattle
## 23252                                                                                                                                       Super Mario Bros.
## 23254                                                                                                                                                   Ghost
## 23258                                                                                                                               Silence of the Lambs, The
## 23259                                                                                                                                    Beauty and the Beast
## 23260                                                                                                                                               Pinocchio
## 23261                                                                                                                                                   Fargo
## 23262                                                                                                                                     Mission: Impossible
## 23263                                                                                                                                             Dragonheart
## 23264                                                                                                                 Mystery Science Theater 3000: The Movie
## 23265                                                                                                                                               Space Jam
## 23266                                                                                                                                               Rock, The
## 23267                                                                                                                                                 Twister
## 23268                                                                                                                     Ghost in the Shell (Kôkaku kidôtai)
## 23270                                                                                                                                          Cable Guy, The
## 23271                                                                                                                                              Phenomenon
## 23273                                                                                                                                                  Kazaam
## 23274                                                                                                                                                  Ransom
## 23275                                                                                                                                              Phat Beach
## 23276                                                                                                                                                   Bound
## 23277                                                                                                                                       Wizard of Oz, The
## 23279                                                                                                                                              Cinderella
## 23280                                                                                                                           Robin Hood: Prince of Thieves
## 23281                                                                                                                                     Alice in Wonderland
## 23282                                                                                                                                                Die Hard
## 23283                                                                                                                                Long Kiss Goodnight, The
## 23285                                                                                                                                                Sleepers
## 23287                                                                                                                                          Basic Instinct
## 23290                                                                                                                                                  Aliens
## 23291                                                                                                                                          Apocalypse Now
## 23292                                                                                                                                        Army of Darkness
## 23293                                                                                                                                       Full Metal Jacket
## 23294                                                                                                                                         Terminator, The
## 23295                                                                                                                                      Better Off Dead...
## 23296                                                                                                                                            Shining, The
## 23297                                                                                                                                             Stand by Me
## 23299                                                                                                                                      Back to the Future
## 23300                                                                                                                      Indiana Jones and the Last Crusade
## 23301                                                                                                                                 When Harry Met Sally...
## 23302                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 23303                                                                                                                                              Birds, The
## 23305                                                                                                                                              Die Hard 2
## 23307                                                                                                                                                  Grease
## 23308                                                                                                                                           Mars Attacks!
## 23311                                                                                                                                              Underworld
## 23312                                                                                                                                              Gridlock'd
## 23314                                                                                                                                                 B*A*P*S
## 23316                                                                                                             Austin Powers: International Man of Mystery
## 23318                                                                                                                                                  Sprung
## 23319                                                                                                                          Lost World: Jurassic Park, The
## 23320                                                                                                                                                 Con Air
## 23321                                                                                                                                          Batman & Robin
## 23322                                                                                                                                                Face/Off
## 23323                                                                                                                               Men in Black (a.k.a. MIB)
## 23324                                                                                                                                       Conspiracy Theory
## 23325                                                                                                                                                   Steel
## 23326                                                                                                                                               Game, The
## 23327                                                                                                                                     Smile Like Yours, A
## 23329                                                                                                                                    The Devil's Advocate
## 23330                                                                                                                                              Switchback
## 23331                                                                                                                             Mortal Kombat: Annihilation
## 23332                                                                                                                                        Truman Show, The
## 23334                                                                                                                                                 Titanic
## 23335                                                                                                                                            Jackie Brown
## 23336                                                                                                                    3 Ninjas: High Noon On Mega Mountain
## 23337                                                                                                                                             Wag the Dog
## 23339                                                                                                                                     Wedding Singer, The
## 23340                                                                                                                                      As Good as It Gets
## 23341                                                                                                                                             Wild Things
## 23342                                                                                                                                             He Got Game
## 23343                                                                                                                        Major League: Back to the Minors
## 23344                                                                                                                                             Deep Impact
## 23345                                                                                                                                                Godzilla
## 23346                                                                                                                                       I Got the Hook Up
## 23348                                                                                                                                                      Pi
## 23349                                                                                                                            There's Something About Mary
## 23350                                                                                                            Nightmare on Elm Street 3: Dream Warriors, A
## 23351                                                                                                           Nightmare on Elm Street 5: The Dream Child, A
## 23352                                                                                                                                           Exorcist, The
## 23353                                                                                                                                                Gremlins
## 23354                                                                                                                                            Goonies, The
## 23355                                                                                                                             Back to the Future Part III
## 23356                                                                                                                                                   Bambi
## 23357                                                                                                                                                  Lolita
## 23359                                                                                                                                Honey, I Shrunk the Kids
## 23360                                                                                                                                        Jungle Book, The
## 23361                                                                                                                                     Little Mermaid, The
## 23362                                                                                                                                               Peter Pan
## 23363                                                                                                                    Indiana Jones and the Temple of Doom
## 23364                                                                                                                                           Weird Science
## 23365                                                                                                                                             Beetlejuice
## 23366                                                                                                                                                Rounders
## 23368                                                                                                                                         Say Anything...
## 23369                                                                                                                                                    Toys
## 23370                                                                                                                                                   Ronin
## 23371                                                                                                                                         My Cousin Vinny
## 23372                                                                                                                                           Pleasantville
## 23374                                                                                                                   I Still Know What You Did Last Summer
## 23376                                                                                                                                                Rushmore
## 23379                                                                                                                               Karate Kid, Part III, The
## 23380                                                                                                                                         You've Got Mail
## 23381                                                                                                                            Garbage Pail Kids Movie, The
## 23382                                                                                                                                                Fly, The
## 23383                                                         Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre)
## 23384                                                                                                                                                 Payback
## 23385                                                                                                                                            Office Space
## 23389                                                                                                                                              Mummy, The
## 23390                                                                                                               Star Wars: Episode I - The Phantom Menace
## 23391                                                                                                                                  War of the Worlds, The
## 23392                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 23394                                                                                                                               Run Lola Run (Lola rennt)
## 23395                                                                                                                                           Arachnophobia
## 23397                                                                                                                                            American Pie
## 23398                                                                                                                                Blair Witch Project, The
## 23399                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 23400                                                                                                                                  Little Shop of Horrors
## 23402                                                                                                                                               Airplane!
## 23404                                                                                                                                         Problem Child 2
## 23405                                                                                                                                      Christmas Story, A
## 23406                                                                                                                                          Stir of Echoes
## 23407                                                                                                                                               Whiteboyz
## 23408                                                                                                                                         American Beauty
## 23409                                                                                                                                         Double Jeopardy
## 23410                                                                                                                                             Three Kings
## 23411                                                                                                                                            Total Recall
## 23413                                                                                                                          Home Alone 2: Lost in New York
## 23415                                                                                                                                              Body Shots
## 23417                                                                                                                                    Being John Malkovich
## 23418                                                                                                                       Princess Mononoke (Mononoke-hime)
## 23421                                                                                                     Incredibly True Adventure of Two Girls in Love, The
## 23422                                                                                                                                                   Dogma
## 23423                                                                                                                                           Sleepy Hollow
## 23424                                                                                                                                        Fatal Attraction
## 23426                                                                                                                                  Cider House Rules, The
## 23427                                                                                                                                                Magnolia
## 23428                                                                                                                                           Wayne's World
## 23429                                                                                                                                  League of Their Own, A
## 23430                                                                                                                                          Bodyguard, The
## 23431                                                                                                                                         Of Mice and Men
## 23432                                                                                                                                             Pitch Black
## 23433                                                                                                                       Ghost Dog: The Way of the Samurai
## 23434                                                                                                                                    Raisin in the Sun, A
## 23435                                                                                                                                         Mission to Mars
## 23437                                                                                                                            Teenage Mutant Ninja Turtles
## 23439                                                                                                                        Teenage Mutant Ninja Turtles III
## 23440                                                                                                                      Close Encounters of the Third Kind
## 23441                                                                                                                                           High Fidelity
## 23442                                                                                                                                               Frequency
## 23443                                                                                                                                         American Psycho
## 23445                                                                                                                                                   U-571
## 23446                                                                                                                                               Gladiator
## 23447                                                                                                                                       Battlefield Earth
## 23448                                                                                                                                               Road Trip
## 23449                                                                                                                                  Mission: Impossible II
## 23451                                                                                                                                             Chicken Run
## 23452                                                                                                                                      Me, Myself & Irene
## 23453                                                                                                                                     Blood In, Blood Out
## 23454                                                                                                                                             House Party
## 23455                                                                                                                                           House Party 2
## 23456                                                                                                                                             Scary Movie
## 23458                                                                                                                                              Wonderland
## 23459                                                                                                                                               Cell, The
## 23460                                                                                                                 Naked Gun 2 1/2: The Smell of Fear, The
## 23461                                                                                                                                           Almost Famous
## 23462                                                                                                                                 Broken Hearts Club, The
## 23463                                                                                                                                     Remember the Titans
## 23465                                                                                                                                        Meet the Parents
## 23466                                                                                                                                     Requiem for a Dream
## 23467                                                                                                                          Book of Shadows: Blair Witch 2
## 23468                                                                                                                                        Charlie's Angels
## 23470                                                                                                                                                  Snatch
## 23471                                                                                                                                       Finding Forrester
## 23472                                                                                                                                               Cast Away
## 23473                                                                                                                                       Miss Congeniality
## 23474                                                                                                                                                 Traffic
## 23475                                                                                                                                     Save the Last Dance
## 23476                                                                                                                                 I'm Gonna Git You Sucka
## 23477                                                                                                                                          Evil Dead, The
## 23479                                                                                                                                          4 Little Girls
## 23480                                                                                                                                                 Memento
## 23482                                                                                                                                     Freddy Got Fingered
## 23483                                                                                                                                                Scarface
## 23485                                                                                                                               Fast and the Furious, The
## 23486                                                                                                                            A.I. Artificial Intelligence
## 23487                                                                                                                       Final Fantasy: The Spirits Within
## 23488                                                                                                                       Return of the Living Dead Part II
## 23491                                                                                                                                              Lean on Me
## 23492                                                                                                                                            Major League
## 23494                                                                                                                                 Wet Hot American Summer
## 23495                                                                                                                                             Others, The
## 23496                                                                                                                                              Bubble Boy
## 23497                                                                                                                          Jay and Silent Bob Strike Back
## 23498                                                                                                                                      3 Ninjas Kick Back
## 23499                                                                                                                                     3 Ninjas Knuckle Up
## 23500                                                                                                                                                  L.I.E.
## 23501                                                                                                                                                 Glitter
## 23502                                                                                                                                             On the Line
## 23503                                                                                                                                            Donnie Darko
## 23504                                                                                                                                          Monsters, Inc.
## 23505                                                                                                                                          Ocean's Eleven
## 23506                                                                                                                                                  Piñero
## 23507                                                                                                                                       Beautiful Mind, A
## 23508                                                                                                                                                Blankman
## 23509                                                                                                                                                Slackers
## 23510                                                                                                                                              Rollerball
## 23511                                                                                                                                           Scotland, Pa.
## 23512                                                                                                                                            Sandlot, The
## 23513                                                                                                                                              Crossroads
## 23514                                                                                                                                        We Were Soldiers
## 23515                                                                                               Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2)
## 23516                                                                                                                                 All About the Benjamins
## 23517                                                                                                                                                 Frailty
## 23518                                                                                                                                                 Jason X
## 23519                                                                                                                                         Salton Sea, The
## 23521                                                                                                            Star Wars: Episode II - Attack of the Clones
## 23522                                                                                                                                                  Enough
## 23523                                                                                                                                    Bourne Identity, The
## 23524                                                                                                                                            Juwanna Mann
## 23525                                                                                                                                         Minority Report
## 23526                                                                                                                                   Hey Arnold! The Movie
## 23527                                                                                                                                       Road to Perdition
## 23528                                                                                                                                 Master of Disguise, The
## 23530                                                                                                                                                     xXx
## 23531                                                                                                                                              Undisputed
## 23532                                                                                                      FearDotCom (a.k.a. Fear.com) (a.k.a. Fear Dot Com)
## 23533                                                                                                                                                  Snipes
## 23534                                                                                                                             Last House on the Left, The
## 23535                                                                                                                                          Igby Goes Down
## 23537                                                                                                                               Ballistic: Ecks vs. Sever
## 23538                                                                                                                                              Invincible
## 23539                                                                                                                                          Moonlight Mile
## 23540                                                                                                                                                  Wasabi
## 23541                                                                                                                                              Red Dragon
## 23543                                                                                                                                               Ring, The
## 23545                                                                                                                                             Extreme Ops
## 23546                                                                                                                                                    They
## 23547                                                                                                                                                  Empire
## 23548                                                                                                                                              Adaptation
## 23549                                                                                                                                             Equilibrium
## 23550                                                                                                                                           About Schmidt
## 23553                                                                                                                                        Body of Evidence
## 23554                                                                                                                                     Catch Me If You Can
## 23555                                                                                                                            City of God (Cidade de Deus)
## 23556                                                                                                                                              Biker Boyz
## 23558                                                                                                                                               Daredevil
## 23560                                                                                                                                         Meteor Man, The
## 23561                                                                                                                                    Bend It Like Beckham
## 23562                                                                                                                                            Ringu (Ring)
## 23563                                                                                                                                    DysFunktional Family
## 23565                                                                                                                                        X2: X-Men United
## 23566                                                                                                                                    Matrix Reloaded, The
## 23567                                                                                                                                        Italian Job, The
## 23568                                                                                                                                             Good Burger
## 23569                                                                                                                 Dumb and Dumberer: When Harry Met Lloyd
## 23570                                                                                                                                           28 Days Later
## 23571                                                                                                                                                   Gigli
## 23572                                                                                                                                       American Splendor
## 23575                                                                                                                                                It's Pat
## 23576                                                                                                                                      Station Agent, The
## 23577                                                                                                                                            Mystic River
## 23578                                                                                                                                  House of the Dead, The
## 23580                                                                                                                          Eye, The (Gin gwai) (Jian gui)
## 23581                                                                                                                                                     Elf
## 23583                                                                                                         Master and Commander: The Far Side of the World
## 23584                                                                                                                                                21 Grams
## 23585                                                                                                                         Battle Royale (Batoru rowaiaru)
## 23586                                                                                                                                       Hero (Ying xiong)
## 23587                                                                                                                                              Leprechaun
## 23588                                                                                                                                             Cooler, The
## 23589                                                                                                                                              In America
## 23591                                                                                                                                                 Monster
## 23592                                                                                                                                  Car 54, Where Are You?
## 23593                                                                                                                                    The Butterfly Effect
## 23594                                                                                                                                                 Miracle
## 23595                                                                                                                                       Against the Ropes
## 23596                                                                                                                                    Wisconsin Death Trip
## 23599                                                                                                                                        Dawn of the Dead
## 23602                                                                                                                                                    Troy
## 23604                                                                                       Master of the Flying Guillotine (Du bi quan wang da po xue di zi)
## 23605                                                                                                                                     Girl Next Door, The
## 23606                                                                                                                                Night of the Living Dead
## 23608                                                                                                                                              Soul Plane
## 23609                                                                                                                                                  Saved!
## 23610                                                                                                                Time of the Wolf, The (Le temps du loup)
## 23611                                                                                                                                     Garfield: The Movie
## 23612                                                                                                                        Dodgeball: A True Underdog Story
## 23613                                                                                                                                           Terminal, The
## 23614                                                                                                                                           Notebook, The
## 23615                                                                                                                              Two Brothers (Deux frères)
## 23617                                                                                                                   Anchorman: The Legend of Ron Burgundy
## 23619                                                                                                                                   Bourne Supremacy, The
## 23620                                                                                                                          A Home at the End of the World
## 23621                                                                                                                                              Super, The
## 23622                                                                                                                               Manchurian Candidate, The
## 23623                                                                                                                                            Village, The
## 23626                                                                                                                     Harold and Kumar Go to White Castle
## 23627                                                                                                                                 AVP: Alien vs. Predator
## 23628                                                                                                       Warriors of Heaven and Earth (Tian di ying xiong)
## 23629                                                                                                                                               Paparazzi
## 23630                                                                                                                                             Wicker Park
## 23631                                                                                                                                            Mangler, The
## 23632                                                                                                                                                Cellular
## 23633                                                                                                                               Resident Evil: Apocalypse
## 23634                                                                                                                                                Mr. 3000
## 23635                                                                                                                   Sky Captain and the World of Tomorrow
## 23638                                                                                                                                              Shark Tale
## 23639                                                                                                                                               Ladder 49
## 23640                                                                                                                                       I Heart Huckabees
## 23641                                                                                                                                        Raise Your Voice
## 23642                                                                                                                                                  Eulogy
## 23644                                                                                                                                             Grudge, The
## 23646                                                                                                                                                     Ray
## 23647                                                                                                                                        Incredibles, The
## 23648                                                                                                                        SpongeBob SquarePants Movie, The
## 23649                                                                                                                                          Ocean's Twelve
## 23651                                                                                                                                            Control Room
## 23652                                                                                                                                      Audition (Ôdishon)
## 23653                                                                                                                          Suicide Club (Jisatsu saakuru)
## 23655                                                                                                                                               Spanglish
## 23656                                                                                                                                              Open Water
## 23657                                                                                                                                              Mean Creek
## 23658                                                                                              Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo)
## 23659                                                                                                                                            Hotel Rwanda
## 23660                                                                                                                                           Woodsman, The
## 23661                                                                                                                                                 Elektra
## 23662                                                                                                                                   Employee of the Month
## 23663                                                                                                                                             Constantine
## 23664                                                                                                                                     Pauly Shore Is Dead
## 23666                                                                                                                                           Batman Begins
## 23669                                                                                                                                               Desperado
## 23674                                                                                                                                               Coneheads
## 23675                                                                                                                                           Jurassic Park
## 23678                                                                                                                                                   Fargo
## 23679                                                                                                                                             Dragonheart
## 23680                                                                                                                                                 Kingpin
## 23681                                                                                                                                              Casablanca
## 23686                                                                                                                                       Starship Troopers
## 23688                                                                                                                                       Big Lebowski, The
## 23689                                                                                                                                              Armageddon
## 23696                                                                                                                                                 Titanic
## 23700                                                                                                                                             Chicken Run
## 23704                                                                                                                                 Lara Croft: Tomb Raider
## 23706                                                                                                                                          Ocean's Eleven
## 23713                                                                                                                                               Daredevil
## 23714                                                                                                                                        Anger Management
## 23716                                                                                                          2 Fast 2 Furious (Fast and the Furious 2, The)
## 23719                                                                                                              Lara Croft Tomb Raider: The Cradle of Life
## 23721                                                                                                                                             Divorce, Le
## 23722                                                                                                                                          Medallion, The
## 23727                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 23735                                                                                                                                             Beetlejuice
## 23737                                                                                                          King Kong vs. Godzilla (Kingukongu tai Gojira)
## 23741                                                                                                                                             Matrix, The
## 23742                                                                                                                                                Superman
## 23743                                                                                                                                           Arachnophobia
## 23744                                                                                                                                                 RoboCop
## 23748                                                                                                                                       Waiting to Exhale
## 23749                                                                                                                                             Money Train
## 23751                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 23754                                                                                                                                     Vampire in Brooklyn
## 23755                                                                                                                                              Braveheart
## 23757                                                                                                                                               Boomerang
## 23758                                                                                                                                                Bad Boys
## 23760                                                                                                                                                 Rob Roy
## 23761                                                                                                                                          Batman Forever
## 23762                                                                                                                                               Desperado
## 23763                                                                                                                                   Devil in a Blue Dress
## 23764                                                                                                                              Die Hard: With a Vengeance
## 23765                                                                                                                                             Judge Dredd
## 23766                                                                                                                                                    Kids
## 23767                                                                                                                                                 Species
## 23768                                                                                                                                            Strange Days
## 23769                                                                                                                           Under Siege 2: Dark Territory
## 23770                                                                                                                                         Babysitter, The
## 23771                                                                                                                                              Disclosure
## 23772                                                                                                                                               Drop Zone
## 23773                                                                                                                                            Exit to Eden
## 23775                                                                                                                                            Forget Paris
## 23776                                                                                                                                                    I.Q.
## 23777                                                                                                                                         Jerky Boys, The
## 23778                                                                                                                                           Kiss of Death
## 23781                                                                                                                                      Nina Takes a Lover
## 23782                                                                                                                                    Natural Born Killers
## 23783                                                                                                                                                Outbreak
## 23788                                                                                                                                  Star Trek: Generations
## 23789                                                                                                                                               Tommy Boy
## 23791                                                                                                                             Four Weddings and a Funeral
## 23792                                                                                                                                         Higher Learning
## 23794                                                                                                                                              Paper, The
## 23796                                                                                                                                              Speechless
## 23797                                                                                                                                               True Lies
## 23798                                                                                                                                             Bad Company
## 23799                                                                                                                                           Jason's Lyric
## 23800                                                                                                                                    Addams Family Values
## 23802                                                                                                                                Beverly Hillbillies, The
## 23803                                                                                                                                   Beverly Hills Cop III
## 23804                                                                                                                                          Body Snatchers
## 23805                                                                                                                                           Boxing Helena
## 23806                                                                                                                                           Bronx Tale, A
## 23807                                                                                                            City Slickers II: The Legend of Curly's Gold
## 23808                                                                                                                                             Cliffhanger
## 23810                                                                                                                                          Demolition Man
## 23811                                                                                                                                          Fatal Instinct
## 23812                                                                                                                                             With Honors
## 23813                                                                                                                                               Firm, The
## 23816                                                                                                                                        Last Action Hero
## 23817                                                                                                                                         Made in America
## 23819                                                                                                                                          Mrs. Doubtfire
## 23820                                                                                                                                                   North
## 23821                                                                                                                                            Philadelphia
## 23822                                                                                                                                              Piano, The
## 23823                                                                                                                                          Poetic Justice
## 23824                                                                                                                                                Ref, The
## 23826                                                                                                                                         Renaissance Man
## 23827                                                                                                                                               RoboCop 3
## 23828                                                                                                                                                    Rudy
## 23829                                                                                                                                              Short Cuts
## 23830                                                                                                                               Six Degrees of Separation
## 23831                                                                                                                                                  Sliver
## 23833                                                                                                                                               Tombstone
## 23835                                                                                                                                       Little Big League
## 23836                                                                                                                                                   Ghost
## 23839                                                                                                                                                  Batman
## 23841                                                                                                                                            Pretty Woman
## 23843                                                                                                                                                  Girl 6
## 23844                                                                                                                                     Mission: Impossible
## 23849                                                                                                                                  Angels in the Outfield
## 23851                                                                                                                                     Sound of Music, The
## 23856                                                                                                                                          Basic Instinct
## 23858                                                                                                                                                 Top Gun
## 23864                                                                                                                             Indian in the Cupboard, The
## 23865                                                                                                                                      Little Princess, A
## 23866                                                                                                                                        Man of the House
## 23867                                                                                                                                    Next Karate Kid, The
## 23870                                                                                                                                                    Emma
## 23871                                                                                                                                            My Fair Lady
## 23872                                                                                                                                  Angels in the Outfield
## 23874                                                                                                                                      Back to the Future
## 23876                                                                                                                                     Stepford Wives, The
## 23877                                                                                                                               Karate Kid, Part III, The
## 23882                                                                                                                                             Fever Pitch
## 23883                                                                                                                                             Toy Story 2
## 23884                                                                                                                                            Center Stage
## 23885                                                                                                                                               Footloose
## 23888                                                                                                                                    Wedding Planner, The
## 23891                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 23894                                                                                                                                       Beautiful Mind, A
## 23897                                                                                                                 Harry Potter and the Chamber of Secrets
## 23906                                                                                                                                         Pieces of April
## 23907                                                                                                                                              In America
## 23911                                                                                                                                          13 Going on 30
## 23914                                                                                                                Harry Potter and the Prisoner of Azkaban
## 23915                                                                                                                                     Stepford Wives, The
## 23917                                                                                                                                     Cinderella Story, A
## 23920                                                                                                               Princess Diaries 2: Royal Engagement, The
## 23923                                                                                                                                              I Am David
## 23924                                                                                                                                    Yours, Mine and Ours
## 23925                                                                                                                                               Spanglish
## 23932                                                                                                                                        Just Like Heaven
## 23934                                                                                                                     Harry Potter and the Goblet of Fire
## 23936                                                                                                                                            Last Holiday
## 23941                                                                                                                                    Little Miss Sunshine
## 23948                                                                                                                                       Déjà Vu (Deja Vu)
## 23952                                                                                                                                               Disturbia
## 23955                                                                                                                                                    Once
## 23957                                                                                                               Harry Potter and the Order of the Phoenix
## 23969                                                                                                                                                  WALL·E
## 23974                                                                                                                                         Shrek the Halls
## 23975                                                                                                                    Curious Case of Benjamin Button, The
## 23976                                                                                                City of Lost Children, The (Cité des enfants perdus, La)
## 23977                                                                                                                                                    Rudy
## 23978                                                                                                                                         Aristocats, The
## 23979                                                                                                                                        Escape from L.A.
## 23980                                                                                                                                              Doors, The
## 23981                                                                                                                                         Terminator, The
## 23982                                                                                                                                      Back to the Future
## 23983                                                                                                                                                  Patton
## 23984                                                                                                                                     Killing Fields, The
## 23986                                                                                                                                      Fifth Element, The
## 23987                                                                                                                                        Truman Show, The
## 23989                                                                                                                                      Driving Miss Daisy
## 23990                                                                                                                                      Dangerous Liaisons
## 23991                                                                                                                                        Jungle Book, The
## 23992                                                                                                                                         Sixteen Candles
## 23993                                                                                                                                           Bug's Life, A
## 23994                                                                                                                                             Mystery Men
## 23995                                                                                                                                         Double Jeopardy
## 23996                                                                                                                                               Backdraft
## 23997                                                                                                                                         Man on the Moon
## 23998                                                                                                                                               Frequency
## 23999                                                                                                                                                 Mad Max
## 24000                                                                                                                           Road Warrior, The (Mad Max 2)
## 24001                                                                                                                  Lord of the Rings: The Two Towers, The
## 24013                                                                                                                                              Doors, The
## 24014                                                                                                                                           Grifters, The
## 24022                                                                                                                                             Wag the Dog
## 24023                                                                                                                                             Wild Things
## 24032                                                                                                                                             Pushing Tin
## 24034                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 24036                                                                                                                                 General's Daughter, The
## 24041                                                                                                                                Blair Witch Project, The
## 24042                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 24047                                                                                                                                         Double Jeopardy
## 24048                                                                                                                                Who Framed Roger Rabbit?
## 24049                                                                                                                                          Trading Places
## 24051                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 24052                                                                                                                                                    Babe
## 24055                                                                                                                                           Birdcage, The
## 24060                                                                                                                                            Forrest Gump
## 24061                                                                                                                                          Lion King, The
## 24062                                                                                                                                                   Speed
## 24064                                                                                                                                           Jurassic Park
## 24067                                                                                                                                    Sleepless in Seattle
## 24069                                                                                                                                                 Aladdin
## 24070                                                                                                                                      Dances with Wolves
## 24071                                                                                                                                                  Batman
## 24080                                                                                                                                  Muppet Treasure Island
## 24086                                                                                                                                             Dragonheart
## 24088                                                                                                                            Truth About Cats & Dogs, The
## 24092                                                                                                                                              Striptease
## 24100                                                                                                                                    2 Days in the Valley
## 24101                                                                                                                                        Extreme Measures
## 24106                                                                                                                                               Liar Liar
## 24110                                                                                                                                          Batman & Robin
## 24113                                                                                                                                                   Spawn
## 24115                                                                                                                                               Desperado
## 24117                                                                                                                                         Johnny Mnemonic
## 24118                                                                                                                                             Nine Months
## 24119                                                                                                                                             Hoop Dreams
## 24120                                                                                                                                        Muriel's Wedding
## 24121                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 24122                                                                                                                            So I Married an Axe Murderer
## 24124                                                                                                                                        Crying Game, The
## 24125                                                                                                                                               Chinatown
## 24129                                                                                                                                         My Cousin Vinny
## 24130                                                                                                                                           Arachnophobia
## 24131                                                                                                                                             Chicken Run
## 24133                                                                                                                                   M*A*S*H (a.k.a. MASH)
## 24134                                                                                                                                                    Hulk
## 24137                                                                                                                                              Pocahontas
## 24145                                                                                                                                              Milk Money
## 24147                                                                                                                Three Colors: White (Trzy kolory: Bialy)
## 24150                                                                                                                                                 Aladdin
## 24152                                                                                                                                      Courage Under Fire
## 24153                                                                                                                            Hunchback of Notre Dame, The
## 24166                                                                                                                                           Groundhog Day
## 24167                                                                                                                                      Back to the Future
## 24169                                                                                                       Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 24171                                                                                                                                              Saint, The
## 24172                                                                                                                                                  Selena
## 24175                                                                                                                                          Batman & Robin
## 24181                                                                                                                                                 Titanic
## 24186                                                                                                                                     Saving Private Ryan
## 24192                                                                                                                                    Return of Jafar, The
## 24196                                                                                                                                     Edward Scissorhands
## 24199                                                                                                                                         You've Got Mail
## 24202                                                                                                               Star Wars: Episode I - The Phantom Menace
## 24205                                                                                                                                               Superstar
## 24207                                                                                                                          Home Alone 2: Lost in New York
## 24213                                                                                                                                      Where the Heart Is
## 24214                                                                                                                                        Romeo and Juliet
## 24217                                                                                                                                        Meet the Parents
## 24218                                                                                                                                        Charlie's Angels
## 24219                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 24221                                                                                                                                         What Women Want
## 24222                                                                                                                                       Miss Congeniality
## 24226                                                                                                                                   Bridget Jones's Diary
## 24240                                                                                                            Star Wars: Episode II - Attack of the Clones
## 24245                                                                                                                                               Ring, The
## 24254                                                                                                                                        Two Weeks Notice
## 24256                                                                                                                                                 Chicago
## 24257                                                                                                                                            Just Married
## 24258                                                                                                                                               Daredevil
## 24260                                                                                                                                               Toy Story
## 24261                                                                                                                                                 Jumanji
## 24262                                                                                                                          Ace Ventura: When Nature Calls
## 24263                                                                                                                                                    Babe
## 24264                                                                                                                                                Clueless
## 24265                                                                                                                                              Pocahontas
## 24266                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 24269                                                                                                                             What's Eating Gilbert Grape
## 24270                                                                                                                              Ace Ventura: Pet Detective
## 24271                                                                                                                                          Lion King, The
## 24272                                                                                                                                           Jurassic Park
## 24273                                                                                                                                            Blade Runner
## 24274                                                                                                                         Nightmare Before Christmas, The
## 24275                                                                                                                                                 Aladdin
## 24278                                                                                                                                               Pinocchio
## 24279                                                                                                                                     Mission: Impossible
## 24280                                                                                                                                        Oliver & Company
## 24281                                                                                                                            Hunchback of Notre Dame, The
## 24282                                                                                                                                              Cinderella
## 24284                                                                                                                                     Sound of Music, The
## 24286                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 24288                                                                                                                                                 Stalker
## 24289                                                                                                                                      Dead Poets Society
## 24290                                                                                                                                             Stand by Me
## 24291                                                                                                                      Indiana Jones and the Last Crusade
## 24292                                                                                                                                                  Grease
## 24293                                                                                                                                                Grease 2
## 24294                                                                                                                                           Mars Attacks!
## 24295                                                                                                                                               Liar Liar
## 24296                                                                                                             Austin Powers: International Man of Mystery
## 24298                                                                                                                                                Hercules
## 24299                                                                                                                               Men in Black (a.k.a. MIB)
## 24300                                                                                                                                        Truman Show, The
## 24301                                                                                                                                                 Titanic
## 24302                                                                                                                                             Spice World
## 24303                                                                                                                                                   Mulan
## 24304                                                                                                                                                      Pi
## 24305                                                                                                                            There's Something About Mary
## 24306                                                                                                                                         West Side Story
## 24307                                                                                                                                                   Bambi
## 24308                                                                                                                                Honey, I Shrunk the Kids
## 24309                                                                                                                                        Jungle Book, The
## 24310                                                                                                                                      Lady and the Tramp
## 24311                                                                                                                                     Little Mermaid, The
## 24312                                                                                                                                               Peter Pan
## 24313                                                                                                                                         Sleeping Beauty
## 24314                                                                                                                    Indiana Jones and the Temple of Doom
## 24316                                                                                                                                              Mummy, The
## 24318                                                                                                                                            Notting Hill
## 24319                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 24320                                                                                                                    South Park: Bigger, Longer and Uncut
## 24321                                                                                                                                          Wild Wild West
## 24322                                                                                                                                            American Pie
## 24323                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 24324                                                                                                                                Who Framed Roger Rabbit?
## 24325                                                                                                                                    Being John Malkovich
## 24327                                                                                                                                              Robin Hood
## 24328                                                                                                                                Pokémon: The First Movie
## 24330                                                                                                                                         Erin Brockovich
## 24331                                                                                                                                      Me, Myself & Irene
## 24332                                                                                                                                             Scary Movie
## 24333                                                                                                                                             Coyote Ugly
## 24334                                                                                                                                        Meet the Parents
## 24335                                                                                                      How the Grinch Stole Christmas (a.k.a. The Grinch)
## 24337                                                                                                                                      Dungeons & Dragons
## 24338                                                                                                                                   Bridget Jones's Diary
## 24339                                                                                                                                                   Shrek
## 24341                                                                                                                                            Pearl Harbor
## 24342                                                                                                                                 Lara Croft: Tomb Raider
## 24343                                                                                                            Crimson Rivers, The (Rivières pourpres, Les)
## 24344                                                                                                                       Final Fantasy: The Spirits Within
## 24345                                                                                                                                          Legally Blonde
## 24346                                                                                                                                   Princess Diaries, The
## 24347                                                                                                                                             Others, The
## 24348                                                                                                                                               Zoolander
## 24349                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 24351                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 24353                                                                                                                               The Count of Monte Cristo
## 24354                                                                                                                                              Metropolis
## 24355                                                                                                                                     Queen of the Damned
## 24356                                                                                                                                                 Ice Age
## 24357                                                                                                                                              Spider-Man
## 24359                                                                                                                                         Minority Report
## 24360                                                                                                                                                   Signs
## 24362                                                                                                                 Grave of the Fireflies (Hotaru no haka)
## 24363                                                                                                                 Harry Potter and the Chamber of Secrets
## 24364                                                                                                                                             Equilibrium
## 24367                                                                                                                                     Catch Me If You Can
## 24369                                                                                               Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 24370                                                                                                                                        Anger Management
## 24372                                                                                                                                    Matrix Reloaded, The
## 24373                                                                                                                                        Italian Job, The
## 24375                                                                                                     League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 24376                                                                                                                                              Underworld
## 24377                                                                                                                                         Beethoven's 2nd
## 24378                                                                                                                                       Kill Bill: Vol. 1
## 24379                                                                                                                                 Matrix Revolutions, The
## 24380                                                                                                                         Battle Royale (Batoru rowaiaru)
## 24386                                                                                                                                       Kill Bill: Vol. 2
## 24387                                                                                                                                                    Troy
## 24388                                                                                                                             Babylon 5: In the Beginning
## 24389                                                                                                                                                 Shrek 2
## 24390                                                                                                                Harry Potter and the Prisoner of Azkaban
## 24391                                                                                                                                         Fahrenheit 9/11
## 24392                                                                                                                                                     Saw
## 24393                                                                                                                       Bridget Jones: The Edge of Reason
## 24394                                                                                                                                       Finding Neverland
## 24395                                                                                                                                       National Treasure
## 24396                                                                                                                                                  Closer
## 24398                                                                                                             Kiki's Delivery Service (Majo no takkyûbin)
## 24400                                                                                                                                          Animatrix, The
## 24401                                                      Crimson Rivers 2: Angels of the Apocalypse (Rivières pourpres II - Les anges de l'apocalypse, Les)
## 24403                                                                                                                                            Yes Men, The
## 24404                                                                                                                       Charlie and the Chocolate Factory
## 24405                                                                                                                               Phantom of the Opera, The
## 24408                                                                                                                   Hitchhiker's Guide to the Galaxy, The
## 24409                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 24410                                                                                                                                           Batman Begins
## 24411                                                                                                                                     Brothers Grimm, The
## 24412                                                                                                                                             Lord of War
## 24414                                                                                                                                     Kiss Kiss Bang Bang
## 24415                                                                                                         One-Way Ticket to Mombasa (Menolippu Mombasaan)
## 24416                                                                                                                     Harry Potter and the Goblet of Fire
## 24417                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 24418                                                                                                                                     Memoirs of a Geisha
## 24419                                                                                                                                                Bandidas
## 24420                                                                                                                                          V for Vendetta
## 24423                                                                                                                                             Renaissance
## 24424                                                                                                                                      Da Vinci Code, The
## 24425                                                                                                                                  Devil Wears Prada, The
## 24426                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 24427                                                                                                                                        Marie Antoinette
## 24428                                                                                                                                  Inconvenient Truth, An
## 24434                                                                                                                        Perfume: The Story of a Murderer
## 24435                                                                                                                                                  Eragon
## 24437                                                                                                                                                     300
## 24438                                                                                                                              Vie en Rose, La (Môme, La)
## 24439                                                                                                                Pirates of the Caribbean: At World's End
## 24440                                                                                                                                                   Sicko
## 24441                                                                                                                                                Stardust
## 24442                                                                                                                                            Shoot 'Em Up
## 24443                                                                                                                       Tekkonkinkreet (Tekkon kinkurîto)
## 24444                                                                                                                            Elite Squad (Tropa de Elite)
## 24445                                                                                                                                  No Country for Old Men
## 24446                                                                                                                                               Enchanted
## 24447                                                                                                                                     Golden Compass, The
## 24448                                                                                                                                                    Juno
## 24450                                                                                                                                              27 Dresses
## 24451                                                                                                                                        Dark Knight, The
## 24452                                                                                                                                           Made of Honor
## 24453                                                                                                      Indiana Jones and the Kingdom of the Crystal Skull
## 24455                                                                                                                                              Mamma Mia!
## 24456                                                                                                                                              RocknRolla
## 24458                                                                                                                                Crows Zero (Kurôzu zero)
## 24459                                                                                                                                               Australia
## 24460                                                                                                                                                Twilight
## 24461                                                                                                                                      International, The
## 24462                                                                                                                             He's Just Not That Into You
## 24463                                                                                                                                     Comet in Moominland
## 24464                                                                                                                                                 Far Cry
## 24465                                                                                                                                            Pirate Radio
## 24467                                                                                                                                     Dead Snow (Død snø)
## 24468                                                                                                                                          Public Enemies
## 24469                                                                                                                                    (500) Days of Summer
## 24472                                                                                                                              Princess and the Frog, The
## 24473                                                                                                                                         Sherlock Holmes
## 24474                                                                                                                                               Leap Year
## 24476                                                                                                                                         Valhalla Rising
## 24478                                                                                                                                                    Salt
## 24480                                                                                                                                     Social Network, The
## 24481                                                                                                                      You Will Meet a Tall Dark Stranger
## 24484                                                                                                                                                 Tangled
## 24485                                                                                                                                    Love and Other Drugs
## 24486                                                                                                                                            Tourist, The
## 24487                                                                                                                                            Another Year
## 24488                                                                                                                     13 Assassins (Jûsan-nin no shikaku)
## 24489                                                                                                                                                   Hanna
## 24490                                                                                                                                                  Priest
## 24493                                                                                                                                            Freakonomics
## 24494                                                                                                                                           Avengers, The
## 24495                                                                                                                                     Dangerous Method, A
## 24496                                                                                                                                      Ides of March, The
## 24497                                                                                                                                                 In Time
## 24499                                                                                                                                        The Hunger Games
## 24500                                                                                                                                  Dark Knight Rises, The
## 24502                                                                                                                                                Iron Sky
## 24503                                                                                                                                            Dark Shadows
## 24504                                                                                                                    The Scorpion King: Rise of a Warrior
## 24505                                                                                                                                              Prometheus
## 24506                                                                                                                                            Total Recall
## 24507                                                                                                                                                 Skyfall
## 24508                                                                                                                                                   Dredd
## 24509                                                                                                                                                    Argo
## 24511                                                                                                                                      Maximum Conviction
## 24512                                                                                                                                     Act of Killing, The
## 24513                                                                                                                                                Oblivion
## 24514                                                                                                                                                 Elysium
## 24515                                                                                                                                                 Gravity
## 24522                                                                                                                                               Assassins
## 24526                                                                                                                      Lawnmower Man 2: Beyond Cyberspace
## 24528                                                                                                                                               Screamers
## 24531                                                                                                                                  Muppet Treasure Island
## 24534                                                                                                                                                   Congo
## 24541                                                                                                                                             Judge Dredd
## 24543                                                                                                                                                 Species
## 24547                                                                                                                                              Disclosure
## 24549                                                                                                                                                Hideaway
## 24550                                                                                                                                                  Junior
## 24551                                                                                                                           Kid in King Arthur's Court, A
## 24552                                                                                                                                    Natural Born Killers
## 24557                                                                                                                                               Tank Girl
## 24567                                                                                                                                                 Timecop
## 24568                                                                                   Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 24569                                                                                                                                 In the Mouth of Madness
## 24572                                                                                                                                          Body Snatchers
## 24574                                                                                                                                          Demolition Man
## 24581                                                                                                                                      Executive Decision
## 24583                                                                                                                                               No Escape
## 24585                                                                                                                                               RoboCop 3
## 24586                                                                                                                                                  Sliver
## 24588                                                                                                                                       Super Mario Bros.
## 24589                                                                                                                                      Surviving the Game
## 24597                                                                                                                                   Hellraiser: Bloodline
## 24604                                                                                                                                            Arrival, The
## 24610                                                                                                                               Crow: City of Angels, The
## 24611                                                                                                                                        Escape from L.A.
## 24613                                                                                                                               Island of Dr. Moreau, The
## 24614                                                                                                                                     Trigger Effect, The
## 24615                                                                         Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 24616                                                                                                                                        Extreme Measures
## 24618                                                                                                                                      Lawnmower Man, The
## 24620                                                                                                                                       Shadow Conspiracy
## 24626                                                                                                                                    Escape from New York
## 24642                                                                                                      Until the End of the World (Bis ans Ende der Welt)
## 24643                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 24644                                                                                                                                               Cape Fear
## 24648                                                                                                                         Star Trek V: The Final Frontier
## 24655                                                                                                                                          Murder at 1600
## 24656                                                                                                                                              Turbulence
## 24658                                                                                                                                          Absolute Power
## 24660                                                                                                                                        Devil's Own, The
## 24661                                                                                                                                                Anaconda
## 24663                                                                                                                                               Breakdown
## 24670                                                                                                                                           Event Horizon
## 24671                                                                                                                                                   Spawn
## 24674                                                                                                                                                   Mimic
## 24684                                                                                                                                             Playing God
## 24689                                                                                                                                              Red Corner
## 24690                                                                                                                                             Jackal, The
## 24691                                                                                                                                     Alien: Resurrection
## 24695                                                                                                                                               Dark City
## 24696                                                                                                                                                Star Kid
## 24700                                                                                                                                                  Sphere
## 24707                                                                                                                                                Godzilla
## 24709                                                                                                                                              Armageddon
## 24717                                                                                                                            Absent-Minded Professor, The
## 24722                                                                                                                                Honey, I Blew Up the Kid
## 24723                                                                                                                                Honey, I Shrunk the Kids
## 24724                                                                                                                                            Return to Oz
## 24726                                                                               Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 24728                                                                                                        Graveyard Shift (Stephen King's Graveyard Shift)
## 24738                                                                                                                          2010: The Year We Make Contact
## 24741                                                                                                                                              Braveheart
## 24744                                                                                                 Léon: The Professional (a.k.a. The Professional) (Léon)
## 24747                                                                                                                                            Forrest Gump
## 24749                                                                                                                         Nightmare Before Christmas, The
## 24750                                                                                                                                            True Romance
## 24752                                                                                                                                    Beauty and the Beast
## 24754                                                                                    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 24757                                                                                                                                     Singin' in the Rain
## 24758                                                                                                                                       Wizard of Oz, The
## 24760                                                                                                                                         His Girl Friday
## 24761                                                                                                                                            Mary Poppins
## 24762                                                                                                                                                Die Hard
## 24765                                                                                                                              E.T. the Extra-Terrestrial
## 24767                                                                                                                         One Flew Over the Cuckoo's Nest
## 24769                                                                                                                                     Princess Bride, The
## 24773                                                                                                                                              Goodfellas
## 24777                                                                                                                                      Dead Poets Society
## 24778                                                                                                                                           Graduate, The
## 24779                                                                                                                                            Shining, The
## 24783                                                                                                                                              Unforgiven
## 24784                                                                                                                                    Arsenic and Old Lace
## 24788                                                                                                                                         Field of Dreams
## 24789                                                                                                       Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 24790                                                                                                                                                    Jaws
## 24793                                                                                                                                       Good Will Hunting
## 24794                                                                                                                                         Misérables, Les
## 24797                                                                                                                                           Lethal Weapon
## 24800                                                                                                                                         Sleeping Beauty
## 24801                                                                                                                                         Few Good Men, A
## 24803                                                                                                                                             Matrix, The
## 24804                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 24805                                                                                                                                      Christmas Story, A
## 24811                                                                                                                                             Holiday Inn
## 24812                                                           Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 24813                                                                                                                                              Easy Rider
## 24814                                                                                                                            Fast Times at Ridgemont High
## 24815                                                                                                                                    Boondock Saints, The
## 24816                                                                                                                                         Erin Brockovich
## 24817                                                                                                                      Close Encounters of the Third Kind
## 24818                                                                                                                                              Caddyshack
## 24819                                                                                                                                               Gladiator
## 24820                                                                                                                                          Gold Rush, The
## 24822                                                                                                                                     Requiem for a Dream
## 24823                                                                                                                                                 Traffic
## 24824                                                                                                                                                Scarface
## 24825                                                                                                                                            Donnie Darko
## 24827                                                                                                                                          Igby Goes Down
## 24828                                                                                                                                   Bowling for Columbine
## 24829                                                                                                                                                WarGames
## 24830                                                                                                                         Battle Royale (Batoru rowaiaru)
## 24832                                                                                                                                   Ten Commandments, The
## 24833                                                                                                                                              Mean Girls
## 24834                                                                                                                                       Shaun of the Dead
## 24835                                                                                                                                                  Kinsey
## 24836                                                                                                                                                 Old Boy
## 24837                                                                                                                                     Million Dollar Baby
## 24839                                                                                                                                                Serenity
## 24841                                                                                                                                               Clerks II
## 24842                                                                                                                                    Little Miss Sunshine
## 24845                                                                                                                                                     300
## 24846                                                                                                                         How the Grinch Stole Christmas!
## 24848                                                                                                                                              Persepolis
## 24849                                                                                                                                                    Juno
## 24850                                                                                                                                                Watchmen
## 24851                                                                                                                                       Pineapple Express
## 24853                                                                                                                                             Role Models
## 24854                                                                                                                                       Sunshine Cleaning
## 24856                                                                                                                                          Shutter Island
## 24858                                                                                                                              Exit Through the Gift Shop
## 24859                                                                                                                                              Four Lions
## 24860                                                                                                                                           Winter's Bone
## 24861                                                                                                                                              Black Swan
## 24862                                                                                                                        Girl with the Dragon Tattoo, The
## 24864                                                                                                                                 Silver Linings Playbook
## 24865                                                                                                                                        Django Unchained
## 24866                                                                                                                         The Hunger Games: Catching Fire
## 24867                                                                                                                                Wolf of Wall Street, The
## 24869                                                                                                                          Dawn of the Planet of the Apes
## 24872                                                                                                                                      Back to the Future
## 24873                                                                                                                                        Truman Show, The
## 24874                                                                                                                                             Bring It On
## 24876                                                                                                                                   Bridget Jones's Diary
## 24877                                                                                                                                                   Shrek
## 24878                                                                                                                                          Legally Blonde
## 24883                                                                                                                   Eternal Sunshine of the Spotless Mind
## 24886                                                                                                                   Anchorman: The Legend of Ron Burgundy
## 24887                                                                                                                                                I, Robot
## 24888                                                                                                                                   Bourne Supremacy, The
## 24893                                                                                                                                   Stranger than Fiction
## 24894                                                                                                                                           Casino Royale
## 24897                                                                                                                                                    Juno
## 24899                                                                                                                                           Adventureland
## 24907                                                                                                                                  Dark Knight Rises, The
## 24909                                                                                                                                                  Clerks
## 24912                                                                                                                                                   Angus
## 24920                                                                                                                                 Poseidon Adventure, The
## 24921                                                                                                                                          Pretty in Pink
## 24922                                                                                                                                     Color of Money, The
## 24924                                                                                                                                            Office Space
## 24925                                                                                                                                        Cruel Intentions
## 24927                                                                                                                                           Arachnophobia
## 24928                                                                                                                    South Park: Bigger, Longer and Uncut
## 24929                                                                                                                                Blair Witch Project, The
## 24934                                                                                                                                               Coneheads
## 24940                                                                                                                                                 Con Air
## 24942                                                                                                                                               Game, The
## 24944                                                                                                                                                Gremlins
## 24961                                                                                                                                       Waiting to Exhale
## 24965                                                                                                                                            Sudden Death
## 24967                                                                                                                                                   Balto
## 24968                                                                                                                                   Sense and Sensibility
## 24969                                                                                                                                              Get Shorty
## 24970                                                                                                                                       Leaving Las Vegas
## 24972                                                                                                                                        Dead Man Walking
## 24973                                                                                                                                              Pocahontas
## 24975                                                                                                                                          Eye for an Eye
## 24977                                                                                                                                              Juror, The
## 24978                                                                                                                                            Broken Arrow
## 24981                                                                                                                              NeverEnding Story III, The
## 24983                                                                                                                                  Brothers McMullen, The
## 24986                                                                                                                              Die Hard: With a Vengeance
## 24988                                                                                                                        Free Willy 2: The Adventure Home
## 24989                                                                                                                                               Jury Duty
## 24991                                                                                                                                             Nine Months
## 24996                                                                                                                                        Don Juan DeMarco
## 24998                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 24999                                                                                                                                             French Kiss
## 25000                                                                                                                                            Forget Paris
## 25004                                                                                                                                      Little Princess, A
## 25005                                                                                                     Like Water for Chocolate (Como agua para chocolate)
## 25006                                                                                                                                     Legends of the Fall
## 25008                                                                                                                                           Losing Isaiah
## 25011                                                                                                                                                    Nell
## 25013                                                                                                                                               Quiz Show
## 25015                                                                                                                                                Stargate
## 25017                                                                                                                             What's Eating Gilbert Grape
## 25019                                                                                                                                        Muriel's Wedding
## 25020                                                                                                                                  Baby-Sitters Club, The
## 25021                                                                                                                              Ace Ventura: Pet Detective
## 25025                                                                                                                                        Flintstones, The
## 25027                                                                                                                             Four Weddings and a Funeral
## 25028                                                                                                                                          I Love Trouble
## 25033                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 25036                                                                                                                                When a Man Loves a Woman
## 25038                                                                                                                                    Addams Family Values
## 25042                                                                                                                                              Free Willy
## 25045                                                                                                                                        Last Action Hero
## 25046                                                                                                                                         Made in America
## 25049                                                                                                                                    Next Karate Kid, The
## 25050                                                                                                                                            Philadelphia
## 25052                                                                                                                             Searching for Bobby Fischer
## 25055                                                                                                                                       Super Mario Bros.
## 25056                                                                                                                                               Tombstone
## 25057                                                                                                                                       Little Big League
## 25061                                                                                                                               Silence of the Lambs, The
## 25065                                                                                                                Homeward Bound II: Lost in San Francisco
## 25069                                                                                                                                            Country Life
## 25071                                                                                                                                        Mulholland Falls
## 25078                                                                                                                                         Harriet the Spy
## 25080                                                                                                                                    Very Brady Sequel, A
## 25082                                                                                                                                                 Foxfire
## 25088                                                                                                                     Willy Wonka & the Chocolate Factory
## 25089                                                                                                                                        Bonnie and Clyde
## 25095                                                                                                                      Star Wars: Episode IV - A New Hope
## 25108                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 25111                                                                                                                                           Graduate, The
## 25113                                                                                                                                       L.A. Confidential
## 25116                                                                                                                                         Midnight Cowboy
## 25125                                                                                                                                       Big Momma's House
## 25126                                                                                                                                             Chicken Run
## 25127                                                                                                                          Nutty Professor II: The Klumps
## 25128                                                                                                                                             Unbreakable
## 25130                                                                                                                              O Brother, Where Art Thou?
## 25132                                                                                                                                            Crimson Tide
## 25134                                                                                                                                                Mallrats
## 25136                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 25137                                                                                                                                             Hoop Dreams
## 25138                                                                                                                                                  Junior
## 25145                                                                                                                                    Vanya on 42nd Street
## 25148                                                                                                                                            Forrest Gump
## 25151                                                                                                                                              Paper, The
## 25153                                                                                                                                               True Lies
## 25154                                                                                                                                                Airheads
## 25155                                                                                                                                        Another Stakeout
## 25157                                                                                                                                             Cliffhanger
## 25159                                                                                                                                               Firm, The
## 25163                                                                                                                                           Jurassic Park
## 25164                                                                                                                                        Last Action Hero
## 25166                                                                                                                                            Philadelphia
## 25169                                                                                                                                              Home Alone
## 25174                                                                                                                                            Pretty Woman
## 25180                                                                                                                                              Pocahontas
## 25183                                                                                                                                               Apollo 13
## 25184                                                                                                                                         Johnny Mnemonic
## 25186                                                                                                                                          Goofy Movie, A
## 25187                                                                                                                                                  Junior
## 25188                                                                                                                      Star Wars: Episode IV - A New Hope
## 25189                                                                                                                                            Pulp Fiction
## 25196                                                                                                                                          Lion King, The
## 25198                                                                                                                                             Being Human
## 25199                                                                                                                                                    Dave
## 25207                                                                                                                         Snow White and the Seven Dwarfs
## 25209                                                                                                                                               Pinocchio
## 25213                                                                                                                                        Oliver & Company
## 25220                                                                                                                            Hunchback of Notre Dame, The
## 25221                                                                                                                                    Nutty Professor, The
## 25222                                                                                                                                        Some Like It Hot
## 25224                                                                                                                                       Wizard of Oz, The
## 25225                                                                                                                                   2001: A Space Odyssey
## 25227                                                                                                                                              Cinderella
## 25228                                                                                                                                 Sword in the Stone, The
## 25229                                                                                                                                            Mary Poppins
## 25230                                                                                                                                                   Dumbo
## 25231                                                                                                                                     Alice in Wonderland
## 25232                                                                                                                                  Fox and the Hound, The
## 25234                                                                                                                                      Lawnmower Man, The
## 25239                                                                                                                               Streetcar Named Desire, A
## 25245                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 25249                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 25252                                                                                                                                     Blues Brothers, The
## 25257                                                                                                                                           Groundhog Day
## 25261                                                                                                                                                Fantasia
## 25262                                                                                                                                      This Is Spinal Tap
## 25264                                                                                                                                 When Harry Met Sally...
## 25265                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 25272                                                                                                                          Lost World: Jurassic Park, The
## 25273                                                                                                                                                Hercules
## 25275                                                                                                                                                 Contact
## 25276                                                                                                                                           Event Horizon
## 25278                                                                                                                                               Anastasia
## 25279                                                                                                                                     Alien: Resurrection
## 25280                                                                                                                                                 Flubber
## 25282                                                                                                                                             Wag the Dog
## 25283                                                                                                                                               Dark City
## 25284                                                                                                                                      As Good as It Gets
## 25289                                                                                                                                                      Pi
## 25291                                                                                                                                               Labyrinth
## 25294                                                                                                                                                   Bambi
## 25295                                                                                                                                                    Dune
## 25296                                                                                                                                     Saving Private Ryan
## 25297                                                                                                                                     Black Cauldron, The
## 25298                                                                                                                                Honey, I Shrunk the Kids
## 25299                                                                                                                                        Jungle Book, The
## 25300                                                                                                                                      Lady and the Tramp
## 25301                                                                                                                                     Little Mermaid, The
## 25302                                                                                                         101 Dalmatians (One Hundred and One Dalmatians)
## 25303                                                                                                                                               Peter Pan
## 25306                                                                                                                              Return from Witch Mountain
## 25307                                                                                                                                          Rocketeer, The
## 25308                                                                                                                                         Sleeping Beauty
## 25309                                                                                                                                                    Tron
## 25310                                                                                                                                                Safe Men
## 25311                                                                                                                                         Charlotte's Web
## 25312                                                                                                                                     Secret of NIMH, The
## 25313                                                                                                                                       American Tail, An
## 25314                                                                                                                     American Tail: Fievel Goes West, An
## 25316                                                                                                                                                  Willow
## 25318                                                                                                                                                    Antz
## 25321                                                                                                                   Waking Ned Devine (a.k.a. Waking Ned)
## 25323                                                                                                                                         Howard the Duck
## 25325                                                                                                                                         King and I, The
## 25327                                                                                                                                                Election
## 25328                                                                                                         William Shakespeare's A Midsummer Night's Dream
## 25329                                                                                                               Star Wars: Episode I - The Phantom Menace
## 25334                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 25335                                                                                                                             Little Shop of Horrors, The
## 25338                                                                                                                                      Christmas Story, A
## 25341                                                                                                                                Who Framed Roger Rabbit?
## 25346                                                                                                                                Pokémon: The First Movie
## 25347                                                                                                                                    Grapes of Wrath, The
## 25350                                                                                                                                            Galaxy Quest
## 25351                                                                                                                                  League of Their Own, A
## 25353                                                                                                                            Teenage Mutant Ninja Turtles
## 25356                                                                                                                                               Ladyhawke
## 25357                                                                                                                                                    Hook
## 25358                                                                                                                                                 Cabaret
## 25359                                                                                                                                          Guys and Dolls
## 25362                                                                                                                                               Cell, The
## 25363                                                                                                                                      Dancer in the Dark
## 25365                                                                                                                               Emperor's New Groove, The
## 25366                                                                                                                                              Innerspace
## 25367                                                                                                                                                   Krull
## 25369                                                                                                                                           City Slickers
## 25370                                                                                                                               Atlantis: The Lost Empire
## 25373                                                                                                                                                  Romero
## 25377                                                                                                                                            Flash Gordon
## 25379                                                                                                                          Ferngully: The Last Rainforest
## 25380                                                                                                                                         Dangerous Minds
## 25382                                                                                                                                          Chain Reaction
## 25384                                                                                                                                             Under Siege
## 25387                                                                                                                                    Nutty Professor, The
## 25390                                                                                                                                              Entrapment
## 25391                                                                                                                                     Hard Day's Night, A
## 25395                                                                                                                                               Road Trip
## 25397                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 25400                                                                                                                                     Along Came a Spider
## 25402                                                                                                                                   America's Sweethearts
## 25408                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 25412                                                                                                                   Eternal Sunshine of the Spotless Mind
## 25416                                                                                                                                   Stranger than Fiction
## 25417                                                                                                                                        Dark Knight, The
## 25418                                                                                                                                                  WALL·E
## 25423                                                                                                                                                 Jumanji
## 25432                                                                                                                                              Waterworld
## 25434                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 25435                                                                                                                                          Goofy Movie, A
## 25436                                                                                                                             Madness of King George, The
## 25437                                                                                                                                      Once Were Warriors
## 25441                                                                                                                                  Star Trek: Generations
## 25443                                                                                                                              Ace Ventura: Pet Detective
## 25445                                                                                                                                        Jungle Book, The
## 25447                                                                                                                                               Mask, The
## 25448                                                                                                                                           Reality Bites
## 25450                                                                                                                                           Boxing Helena
## 25451                                                                                                                                      Dazed and Confused
## 25452                                                                                                                                                Fearless
## 25454                                                                                                                                           Jurassic Park
## 25455                                                                                                                                          Mrs. Doubtfire
## 25459                                                                                                                                     Little Rascals, The
## 25460                                                                                                                                              Home Alone
## 25465                                                                                                                                               Pinocchio
## 25467                                                                                                                Homeward Bound II: Lost in San Francisco
## 25469                                                                                                                               James and the Giant Peach
## 25470                                                                                                                                                    Cosi
## 25473                                                                                                                            Hunchback of Notre Dame, The
## 25475                                                                                                                                                 Matilda
## 25478                                                                                                                                   It's a Wonderful Life
## 25480                                                                                                                                            Chamber, The
## 25481                                                                                                                  Homeward Bound: The Incredible Journey
## 25485                                                                                                                                     Alice in Wonderland
## 25486                                                                                                                                Long Kiss Goodnight, The
## 25487                                                                                                                    William Shakespeare's Romeo + Juliet
## 25492                                                                                                                              E.T. the Extra-Terrestrial
## 25494                                                                                                                                     Princess Bride, The
## 25495                                                                                                                                            12 Angry Men
## 25496                                                                                                                                          Apocalypse Now
## 25500                                                                                                                                Star Trek: First Contact
## 25502                                                                                                                  Star Trek VI: The Undiscovered Country
## 25503                                                                                                                                                  Grease
## 25504                                                                                                                                                  Scream
## 25505                                                                                                                                               Liar Liar
## 25506                                                                                                                                                  Kissed
## 25508                                                                                                             Austin Powers: International Man of Mystery
## 25511                                                                                                                                                 Gattaca
## 25512                                                                                                                                          Rainmaker, The
## 25516                                                                                                                                                Scream 2
## 25523                                                                                                                                    Opposite of Sex, The
## 25525                                                                                                                                              Armageddon
## 25526                                                                                                                            There's Something About Mary
## 25527                                                                                                                                                   Rocky
## 25530                                                                                                                                           Lethal Weapon
## 25532                                                                                                                                                   Bambi
## 25534                                                                                                                                        Jungle Book, The
## 25535                                                                                                                                      Lady and the Tramp
## 25538                                                                                                                                                 Newsies
## 25540                                                                                                                                         Sleeping Beauty
## 25543                                                                                                                                    Nutty Professor, The
## 25544                                                                                                                                         St. Elmo's Fire
## 25546                                                                                                                                                Rounders
## 25547                                                                                                                                       Indecent Proposal
## 25556                                                                                                                                             Matrix, The
## 25561                                                                                                               Star Wars: Episode I - The Phantom Menace
## 25562                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 25564                                                                                                                                Blair Witch Project, The
## 25568                                                                                                                                      Pelican Brief, The
## 25571                                                                                                                                    Being John Malkovich
## 25572                                                                                                                                     Bone Collector, The
## 25573                                                                                                                                        Fatal Attraction
## 25574                                                                                                                                        Fisher King, The
## 25583                                                                                                                                                Scream 3
## 25588                                                                                                                                         American Psycho
## 25589                                                                                                                                    Virgin Suicides, The
## 25590                                                                                                                                 Pee-wee's Big Adventure
## 25591                                                                                                                            9 1/2 Weeks (Nine 1/2 Weeks)
## 25592                                                                                                                                                   X-Men
## 25596                                                                                                                                            Moulin Rouge
## 25598                                                                                                                                         Shadows and Fog
## 25601                                                                                                                                 Wet Hot American Summer
## 25602                                                                                                                                   Princess Diaries, The
## 25607                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 25609                                                                                                                                   M*A*S*H (a.k.a. MASH)
## 25613                                                                                                                                    Bourne Identity, The
## 25614                                                                                                                                              Scooby-Doo
## 25616                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 25617                                                                                                                             Austin Powers in Goldmember
## 25623                                                                                                                  Lord of the Rings: The Two Towers, The
## 25625                                                                                                                                                 Chicago
## 25626                                                                                                                                          Darkness Falls
## 25631                                                                                                                                            Ringu (Ring)
## 25633                                                                                                                                        X2: X-Men United
## 25634                                                                                                                                    Matrix Reloaded, The
## 25637                                                                                                                                           Alex and Emma
## 25638                                                                                                                                           28 Days Later
## 25639                                                                                                                                                 Tremors
## 25640                                                                                                                                     Lost in Translation
## 25641                                                                                                                                             Jungle Book
## 25642                                                                                                                                       Kill Bill: Vol. 1
## 25643                                                                                                                                                Elephant
## 25644                                                                                                                                                Girlhood
## 25645                                                                                                                                 Matrix Revolutions, The
## 25647                                                                                                                                                 Gothika
## 25648                                                                                           Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das)
## 25649                                                                                                              Things You Can Tell Just by Looking at Her
## 25650                                                                                                                                            Witches, The
## 25651                                                                                                                                                Big Fish
## 25652                                                                                                          Lord of the Rings: The Return of the King, The
## 25656                                                                                                                                                EuroTrip
## 25658                                                                                                                                       Kill Bill: Vol. 2
## 25661                                                                                                                                               100 Girls
## 25663                                                                                                                            Sex: The Annabel Chong Story
## 25665                                                                                                                Harry Potter and the Prisoner of Azkaban
## 25666                                                                                                                                            White Chicks
## 25668                                                                                                                                            Spider-Man 2
## 25671                                                                                                                                                  Lilith
## 25673                                                                                                                              Team America: World Police
## 25674                                                                                                                                             Grudge, The
## 25675                                                                                                                                        Incredibles, The
## 25676                                                                                                                                       Finding Neverland
## 25678                                                                                                                           Hush... Hush, Sweet Charlotte
## 25679                                                                                                                              Charlie Brown Christmas, A
## 25681                                                                                                                                    Bourne Identity, The
## 25682                                                                                                                                                     Gia
## 25683                                                                                                                                                   11:14
## 25684                                                                                                         Lemony Snicket's A Series of Unfortunate Events
## 25685                                                                                                                                       Scanner Darkly, A
## 25692                                                                                                                                       Skeleton Key, The
## 25694                                                                                                                                                  Saw II
## 25695                                                                                                                                       Pride & Prejudice
## 25696                                                                                                                     Harry Potter and the Goblet of Fire
## 25698                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 25700                                                                                                                                           Over the Edge
## 25701                                                                                                                                              Date Movie
## 25704                                                                                                                                                   Brick
## 25706                                                                                                                                  Inconvenient Truth, An
## 25708                                                                                                                                             Half Nelson
## 25716                                                                                                                                         Blades of Glory
## 25717                                                                                                                                              Grindhouse
## 25720                                                                                                                                             Death Proof
## 25721                                                                                                               Harry Potter and the Order of the Phoenix
## 25722                                                                                                                     I Now Pronounce You Chuck and Larry
## 25723                                                                                                                                     Simpsons Movie, The
## 25725                                                                                                                                  Lars and the Real Girl
## 25726                                                                                                                                                   Awake
## 25731                                                                                                               Harold & Kumar Escape from Guantanamo Bay
## 25734                                                                                                                                          Happening, The
## 25736                                                                                                                   It's the Great Pumpkin, Charlie Brown
## 25738                                                                                                                                                   Elegy
## 25739                                                                                                                                             Spirit, The
## 25743                                                                                                                                               Sex Drive
## 25748                                                                                                                                                 Copycat
## 25752                                                                                                                                                Clueless
## 25753                                                                                                                                    Seven (a.k.a. Se7en)
## 25754                                                                                                                                              Pocahontas
## 25756                                                                                                                                      Mr. Holland's Opus
## 25757                                                                                                                                     Vampire in Brooklyn
## 25761                                                                                                                                          Batman Forever
## 25762                                                                                                                                                  Casper
## 25763                                                                                                                                                   Congo
## 25764                                                                                                                              Die Hard: With a Vengeance
## 25765                                                                                                                                             Judge Dredd
## 25766                                                                                                                                                 Species
## 25767                                                                                                                                              Waterworld
## 25769                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 25770                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 25771                                                                                                                                      Little Princess, A
## 25772                                                                                                                                  Miracle on 34th Street
## 25775                                                                                                                                                Outbreak
## 25778                                                                                                                                                Stargate
## 25779                                                                                                                                       Santa Clause, The
## 25781                                                                                                                                  Star Trek: Generations
## 25782                                                                                                                                 While You Were Sleeping
## 25785                                                                                                                                             Client, The
## 25788                                                                                                                                        Jungle Book, The
## 25790                                                                                                                                               Mask, The
## 25792                                                                                                                                             Richie Rich
## 25793                                                                                                                                                   Speed
## 25795                                                                                                                                    Addams Family Values
## 25796                                                                                                                                   Beverly Hills Cop III
## 25797                                                                                                                                               Coneheads
## 25798                                                                                                                                               Firm, The
## 25799                                                                                                                                           Fugitive, The
## 25805                                                                                                                                              Piano, The
## 25806                                                                                                                                               RoboCop 3
## 25808                                                                                                                                    Sleepless in Seattle
## 25810                                                                                                                         Nightmare Before Christmas, The
## 25811                                                                                                                                     Little Rascals, The
## 25817                                                                                                                                                  Batman
## 25823                                                                                                                                     Mission: Impossible
## 25824                                                                                                                                             Dragonheart
## 25826                                                                                                                 Mystery Science Theater 3000: The Movie
## 25829                                                                                                                           Independence Day (a.k.a. ID4)
## 25830                                                                                                                                         Harriet the Spy
## 25832                                                                                                                                                 Carpool
## 25833                                                                                                                                Escape to Witch Mountain
## 25835                                                                                                                                        Parent Trap, The
## 25836                                                                                                                                   Swiss Family Robinson
## 25837                                                                                                                            20,000 Leagues Under the Sea
## 25839                                                                                                                    Winnie the Pooh and the Blustery Day
## 25840                                                                                                                                   Three Caballeros, The
## 25841                                                                                                                                 Sword in the Stone, The
## 25844                                                                                                                                           Pete's Dragon
## 25845                                                                                                                                  Fox and the Hound, The
## 25846                                                                                                                                                Bad Boys
## 25847                                                                                                                                          Goofy Movie, A
## 25848                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 25851                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 25852                                                                                                                                             Cliffhanger
## 25856                                                                                                                                               Space Jam
## 25857                                                                                                                                                 Twister
## 25858                                                                                                                                               Barb Wire
## 25859                                                                                                                           Independence Day (a.k.a. ID4)
## 25861                                                                                                                                                 Foxfire
## 25862                                                                                                                                     Maltese Falcon, The
## 25863                                                                                                                                Night of the Living Dead
## 25864                                                                                                                                            Mary Poppins
## 25870                                                                                                                          Big Blue, The (Grand bleu, Le)
## 25874                                                                                                                                     Room with a View, A
## 25875                                                                                                                                      Breaking the Waves
## 25876                                                                                                                                             Sling Blade
## 25877                                                                                                                         Star Trek II: The Wrath of Khan
## 25879                                                                                                                  Romy and Michele's High School Reunion
## 25880                                                                                                                                              Wishmaster
## 25883                                                                                                                                       Big Lebowski, The
## 25884                                                                                                                                            Dr. Dolittle
## 25885                                                                                                                                           Out of Africa
## 25886                                                                                                                                           Lethal Weapon
## 25888                                                                                                                              Clan of the Cave Bear, The
## 25890                                                                                                                                       Indecent Proposal
## 25891                                                                                                                                       Stardust Memories
## 25892                                                                                                                                         My Cousin Vinny
## 25893                                                                                                                                         Practical Magic
## 25895                                                                                                                                       Gods and Monsters
## 25896                                                                                                                                               Elizabeth
## 25897                                                                                                                                          Meet Joe Black
## 25898                                                                                                                                           Bug's Life, A
## 25899                                                                                                                               Desperately Seeking Susan
## 25900                                                                                                                                              Jack Frost
## 25901                                                                                                                                            Faculty, The
## 25902                                                                                                                                         Civil Action, A
## 25903                                                                                                                                                 Payback
## 25905                                                                                                                          Beneath the Planet of the Apes
## 25906                                                                                                                       Battle for the Planet of the Apes
## 25907                                                                                                                      Conquest of the Planet of the Apes
## 25908                                                                                                                      Escape from the Planet of the Apes
## 25909                                                                                                                                        Cruel Intentions
## 25910                                                                                                                                          Mod Squad, The
## 25912                                                                                                                                     Out-of-Towners, The
## 25914                                                                                                                                       Never Been Kissed
## 25915                                                                                                                                                    Life
## 25916                                                                                                                                             Pushing Tin
## 25917                                                                                                                                              Entrapment
## 25918                                                                                                                                             Swamp Thing
## 25919                                                                                                                                   Thirteenth Floor, The
## 25920                                                                                                                                                Instinct
## 25922                                                                                                                      Red Violin, The (Violon rouge, Le)
## 25923                                                                                                                                 General's Daughter, The
## 25926                                                                                                                    South Park: Bigger, Longer and Uncut
## 25927                                                                                                                                          Wild Wild West
## 25928                                                                                                                                           Summer of Sam
## 25930                                                                                                                                          Arlington Road
## 25933                                                                                                                                             Lake Placid
## 25934                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 25935                                                                                                                                           Haunting, The
## 25936                                                                                                                                        Inspector Gadget
## 25937                                                                                                                                           Deep Blue Sea
## 25938                                                                                                                                           Runaway Bride
## 25940                                                                                                                                                    Dick
## 25942                                                                                                                                Thomas Crown Affair, The
## 25943                                                                                                                                               Bowfinger
## 25944                                                                                                                                        Brokedown Palace
## 25945                                                                                                                                       Detroit Rock City
## 25946                                                                                                                                        Mickey Blue Eyes
## 25947                                                                                                                                    Teaching Mrs. Tingle
## 25948                                                                                                                                       13th Warrior, The
## 25949                                                                                                                                   Astronaut's Wife, The
## 25950                                                                                                                                                Stigmata
## 25953                                                                                                                                    For Love of the Game
## 25954                                                                                                                                         Double Jeopardy
## 25955                                                                                                                                          Jakob the Liar
## 25956                                                                                                                                          Drive Me Crazy
## 25957                                                                                                                                              Fight Club
## 25959                                                                                                                                Who Framed Roger Rabbit?
## 25960                                                                                                                                   House on Haunted Hill
## 25962                                                                                                                                          Suburbans, The
## 25963                                                                                                                                           Bachelor, The
## 25964                                                                                                                                     Bone Collector, The
## 25965                                                                                                                                               Creepshow
## 25967                                                                                                                                             End of Days
## 25968                                                                                                                              Deuce Bigalow: Male Gigolo
## 25969                                                                                                                                         Green Mile, The
## 25971                                                                                                                                            Galaxy Quest
## 25973                                                                                                                                             Next Friday
## 25974                                                                                                                                          Angela's Ashes
## 25976                                                                                                                                       Girl, Interrupted
## 25979                                                                                                                                     Eye of the Beholder
## 25981                                                                                                                                    White Men Can't Jump
## 25982                                                                                                                                                Scream 3
## 25983                                                                                                                                              Beach, The
## 25984                                                                                                                                             Boiler Room
## 25985                                                                                                                                              Hanging Up
## 25986                                                                                                                                          Reindeer Games
## 25987                                                                                                                               What Planet Are You From?
## 25988                                                                                                                                         Ninth Gate, The
## 25989                                                                                                                                         Erin Brockovich
## 25990                                                                                                                                       Final Destination
## 25991                                                                                                                                      Eyes of Laura Mars
## 25992                                                                                                                                   Good Morning, Vietnam
## 25993                                                                                                                                          Romeo Must Die
## 25995                                                                                                                                               Frequency
## 25996                                                                                                                     Flintstones in Viva Rock Vegas, The
## 25998                                                                                                                                  Mission: Impossible II
## 26000                                                                                                                                      Gone in 60 Seconds
## 26001                                                                                                                                             Chicken Run
## 26004                                                                                                                                                     F/X
## 26005                                                                                                        F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion)
## 26006                                                                                                                                           Hot Spot, The
## 26007                                                                                                                                       Missing in Action
## 26008                                                                                                                             The Golden Voyage of Sinbad
## 26009                                                                                                                                                   X-Men
## 26011                                                                                                                                                Freejack
## 26012                                                                                                                         Sinbad and the Eye of the Tiger
## 26013                                                                                                                                         What About Bob?
## 26014                                                                                                                                             White Sands
## 26015                                                                                                                                          Kelly's Heroes
## 26016                                                                                                                                             Air America
## 26017                                                                                                                                         Steel Magnolias
## 26019                                                                                                                           Original Kings of Comedy, The
## 26021                                                                                                                 Naked Gun 2 1/2: The Smell of Fear, The
## 26031                                                                                                                                                    Antz
## 26034                                                                                                                                               Elizabeth
## 26036                                                                                                                                    Prince of Egypt, The
## 26039                                                                                                                                         Civil Action, A
## 26045                                                                                                                                             Pushing Tin
## 26047                                                                                                                                                eXistenZ
## 26050                                                                                                                                        Love Letter, The
## 26052                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 26059                                                                                                                                           Runaway Bride
## 26060                                                                                                                                     Mosquito Coast, The
## 26063                                                                                                                                               Bowfinger
## 26065                                                                                                                                    For Love of the Game
## 26066                                                                                                                                         Double Jeopardy
## 26072                                                                                                                                       Anywhere But Here
## 26074                                                                                                                                     Ride with the Devil
## 26078                                                                                                                                             Boiler Room
## 26081                                                                                                                                               Cast Away
## 26082                                                                                                                                               GoldenEye
## 26083                                                                                                                                                    Babe
## 26084                                                                                                                                    Seven (a.k.a. Se7en)
## 26085                                                                                                                                              Braveheart
## 26087                                                                                                                                          Batman Forever
## 26089                                                                                                                              Die Hard: With a Vengeance
## 26090                                                                                                                                                Net, The
## 26091                                                                                                                                              Waterworld
## 26092                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 26093                                                                                                                                                Outbreak
## 26098                                                                                                                              Ace Ventura: Pet Detective
## 26099                                                                                                                                Clear and Present Danger
## 26101                                                                                                                                               True Lies
## 26102                                                                                                                                             Cliffhanger
## 26103                                                                                                                                               Firm, The
## 26105                                                                                                                                           Jurassic Park
## 26106                                                                                                                                                 Aladdin
## 26108                                                                                                                                                  Batman
## 26110                                                                                                                                    Beauty and the Beast
## 26112                                                                                                                          Ace Ventura: When Nature Calls
## 26114                                                                                                                                                Clueless
## 26115                                                                                                                                           Mortal Kombat
## 26116                                                                                                                                    Seven (a.k.a. Se7en)
## 26117                                                                                                                                              Pocahontas
## 26119                                                                                                                                                  Casper
## 26120                                                                                                                                                   Congo
## 26121                                                                                                                 Mighty Morphin Power Rangers: The Movie
## 26122                                                                                                                                                Net, The
## 26123                                                                                                                                              Waterworld
## 26126                                                                                                                                            Little Women
## 26129                                                                                                                                                Stargate
## 26133                                                                                                                                             Client, The
## 26134                                                                                                                                        Flintstones, The
## 26138                                                                                                                                               Mask, The
## 26139                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 26140                                                                                                                                             Richie Rich
## 26141                                                                                                                                                   Speed
## 26142                                                                                                                                               True Lies
## 26144                                                                                                                                             Cliffhanger
## 26145                                                                                                                                          Demolition Man
## 26146                                                                                                                                               Firm, The
## 26147                                                                                                                                              Free Willy
## 26149                                                                                                                                     In the Line of Fire
## 26154                                                                                                                                    Sleepless in Seattle
## 26155                                                                                                                         Nightmare Before Christmas, The
## 26160                                                                                                                                                  Batman
## 26161                                                                                                                               Silence of the Lambs, The
## 26164                                                                                                                                            Pretty Woman
## 26165                                                                                                                                                 Twister
## 26171                                                                                                                                            Pulp Fiction
## 26185                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 26186                                                                                                                                     Princess Bride, The
## 26187                                                                                                                                            12 Angry Men
## 26194                                                                                                                                               Chinatown
## 26197                                                                                                                                         Raising Arizona
## 26206                                                                                                                                             Player, The
## 26222                                                                                                                                             Toy Story 2
## 26226                                                                                                                            Fast Times at Ridgemont High
## 26228                                                                                                                                                   Diner
## 26232                                                                                                                          Ace Ventura: When Nature Calls
## 26234                                                                                                                                           Mortal Kombat
## 26235                                                                                                                                            Broken Arrow
## 26238                                                                                                                                                 Rob Roy
## 26239                                                                                                                                                  Casper
## 26240                                                                                                                                                   Congo
## 26242                                                                                                                                         Johnny Mnemonic
## 26243                                                                                                                                             Judge Dredd
## 26244                                                                                                                                                 Species
## 26246                                                                                                                                              Waterworld
## 26248                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 26249                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 26250                                                                                                                                                Outbreak
## 26251                                                                                                                                            Pulp Fiction
## 26253                                                                                                                                       Santa Clause, The
## 26256                                                                                                                              Ace Ventura: Pet Detective
## 26258                                                                                                                                               Crow, The
## 26262                                                                                                                                                Maverick
## 26263                                                                                                                                                   Speed
## 26265                                                                                                                                   Beverly Hills Cop III
## 26266                                                                                                            City Slickers II: The Legend of Curly's Gold
## 26268                                                                                                                                          Demolition Man
## 26269                                                                                                                                               Firm, The
## 26270                                                                                                                                           Fugitive, The
## 26271                                                                                                                                           Jurassic Park
## 26272                                                                                                                                          Mrs. Doubtfire
## 26274                                                                                                                         Nightmare Before Christmas, The
## 26275                                                                                                                                                   Ghost
## 26279                                                                                                                                            Pretty Woman
## 26283                                                                                                                                       Leaving Las Vegas
## 26285                                                                                                                                                Clueless
## 26286                                                                                                                                         Dead Presidents
## 26287                                                                                                                             Indian in the Cupboard, The
## 26288                                                                                                                                            Broken Arrow
## 26289                                                                                                                                           Happy Gilmore
## 26290                                                                                                                                              Braveheart
## 26291                                                                                                                                             Taxi Driver
## 26292                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 26293                                                                                                                                               Apollo 13
## 26295                                                                                                                              Die Hard: With a Vengeance
## 26296                                                                                                                                                 Species
## 26297                                                                                                                                              Waterworld
## 26299                                                                                                                                             Hoop Dreams
## 26300                                                                                                                           Kid in King Arthur's Court, A
## 26302                                                                                                                                           Nobody's Fool
## 26303                                                                                                                                    Natural Born Killers
## 26304                                                                                                                                            Pulp Fiction
## 26305                                                                                                                                 Quick and the Dead, The
## 26306                                                                                                                               Shawshank Redemption, The
## 26307                                                                                                                                     Tales from the Hood
## 26308                                                                                                                                Clear and Present Danger
## 26309                                                                                                                                            Forrest Gump
## 26310                                                                                                                                                Maverick
## 26311                                                                                                                                                   Speed
## 26312                                                                                                                                                 Timecop
## 26313                                                                                                                                               True Lies
## 26314                                                                                   Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 26315                                                                                                                                   Beverly Hills Cop III
## 26316                                                                                                                                          Body Snatchers
## 26317                                                                                                                                   Endless Summer 2, The
## 26319                                                                                                                                    Hudsucker Proxy, The
## 26321                                                                                                                                        Last Action Hero
## 26323                                                                                                                                      Secret Garden, The
## 26324                                                                                                                                            Blade Runner
## 26325                                                                                                                                                   Ghost
## 26326                                                                                                                              Terminator 2: Judgment Day
## 26329                                                                                                                                    Beauty and the Beast
## 26330                                                                                                                                            Pretty Woman
## 26334                                                                                                                                              Craft, The
## 26335                                                                                                                                                 Twister
## 26336                                                                                                                                    Nutty Professor, The
## 26338                                                                                                                                 Philadelphia Story, The
## 26339                                                                                                                                     Singin' in the Rain
## 26340                                                                                                                                   American in Paris, An
## 26342                                                                                                                                      North by Northwest
## 26343                                                                                                                                          Apartment, The
## 26347                                                                                                                                                 Sabrina
## 26348                                                                                                                                           Roman Holiday
## 26351                                                                                                                                        My Favorite Year
## 26357                                                                                                                                Ghost and Mrs. Muir, The
## 26358                                                                                                                                            Lost Horizon
## 26359                                                                                                                                                 Top Hat
## 26360                                                                                                                                         His Girl Friday
## 26361                                                                                                                             Around the World in 80 Days
## 26364                                                                                                                                    Angel on My Shoulder
## 26366                                                                                                                                   Cat on a Hot Tin Roof
## 26368                                                                                                                                              Old Yeller
## 26370                                                                                                                                     Sound of Music, The
## 26371                                                                                                                                                Die Hard
## 26372                                                                                                                     Willy Wonka & the Chocolate Factory
## 26374                                                                                                                            Monty Python's Life of Brian
## 26375                                                                                                                                         Victor/Victoria
## 26378                                                                                                                                                 Platoon
## 26380                                                                                                                                         Sophie's Choice
## 26381                                                                                                                              E.T. the Extra-Terrestrial
## 26382                                                                                                                                                 Top Gun
## 26383                                                                                                                                   Rebel Without a Cause
## 26385                                                                                                                         Return of the Pink Panther, The
## 26386                                                                                                                                    Escape from New York
## 26387                                                                                                                         Monty Python and the Holy Grail
## 26389                                                                                                                                     Thin Blue Line, The
## 26392                                                                                                                                     Princess Bride, The
## 26393                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 26395                                                                                      Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 26399                                                                                                                                              Goodfellas
## 26406                                                                                                                                          Quiet Man, The
## 26407                                                                                                                                             Raging Bull
## 26409                                                                                                                                        Right Stuff, The
## 26412                                                                                                                                        Harold and Maude
## 26413                                                                                                                                         Terminator, The
## 26414                                                                                                                                                   Glory
## 26421                                                                                                                                               Duck Soup
## 26422                                                                                                                                             Stand by Me
## 26423                                                                                                                                                       M
## 26425                                                                                                                                        Deer Hunter, The
## 26426                                                                                                                                           Groundhog Day
## 26427                                                                                                                               Manchurian Candidate, The
## 26429                                                                                                                                      Back to the Future
## 26431                                                                                                                                              Highlander
## 26438                                                                                                                      Indiana Jones and the Last Crusade
## 26439                                                                                                                                             Being There
## 26441                                                                                                                                         Field of Dreams
## 26443                                                                                                                                 When Harry Met Sally...
## 26444                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 26446                                                                                                                                              Die Hard 2
## 26447                                                                                                                  Star Trek VI: The Undiscovered Country
## 26448                                                                                                                         Star Trek II: The Wrath of Khan
## 26449                                                                                                                     Star Trek III: The Search for Spock
## 26451                                                                                                                                                  Grease
## 26453                                                                                                                                           Mars Attacks!
## 26454                                                                                                                                           Jerry Maguire
## 26456                                                                                                                                                 Tin Men
## 26458                                                                                                                                                 Con Air
## 26459                                                                                                                                          Simple Wish, A
## 26460                                                                                                                                               G.I. Jane
## 26461                                                                                                                                           Air Force One
## 26463                                                                                                                                         Full Monty, The
## 26464                                                                                                                                     Alien: Resurrection
## 26465                                                                                                                                                 Flubber
## 26466                                                                                                                                             Wag the Dog
## 26469                                                                                                                                           Lost in Space
## 26470                                                                                                                          Fear and Loathing in Las Vegas
## 26471                                                                                                                                         Lethal Weapon 4
## 26473                                                                                                                                             Grand Hotel
## 26474                                                                                                                                 How Green Was My Valley
## 26476                                                                                                                                   From Here to Eternity
## 26477                                                                                                                                                   Marty
## 26478                                                                                                                                         West Side Story
## 26479                                                                                                                                In the Heat of the Night
## 26481                                                                                                                                  French Connection, The
## 26482                                                                                                                                                   Rocky
## 26483                                                                                                                                       Kramer vs. Kramer
## 26484                                                                                                                                        Chariots of Fire
## 26487                                                                                                                                      Driving Miss Daisy
## 26488                                                                                                                                                   Klute
## 26489                                                                                                                                                Repo Man
## 26490                                                                                                                                           Lethal Weapon
## 26491                                                                                                                                         Lethal Weapon 2
## 26492                                                                                                                                         Lethal Weapon 3
## 26493                                                                                                                               Gremlins 2: The New Batch
## 26494                                                                                                                                 Poseidon Adventure, The
## 26497                                                                                                                                                    Dune
## 26498                                                                                                                                Godfather: Part III, The
## 26501                                                                                                                                Honey, I Shrunk the Kids
## 26503                                                                                                                                          Doctor Zhivago
## 26504                                                                                                                                          Tender Mercies
## 26505                                                                                                                                                Mephisto
## 26506                                                                                                                              Journey of Natty Gann, The
## 26507                                                                                                                                                 Newsies
## 26508                                                                                                                                                  Popeye
## 26509                                                                                                                                          Rocketeer, The
## 26510                                                                                                                                                  Splash
## 26512                                                                                                                                                    Tron
## 26513                                                                                                                                               Jerk, The
## 26514                                                                                                                               Dead Men Don't Wear Plaid
## 26515                                                                                                                                Man with Two Brains, The
## 26516                                                                                                                                            Grand Canyon
## 26517                                                                                                                    Indiana Jones and the Temple of Doom
## 26518                                                                                                                                      Addams Family, The
## 26519                                                                                                                         Who's Afraid of Virginia Woolf?
## 26520                                                                                                                                           Weird Science
## 26521                                                                                                                                         Doctor Dolittle
## 26522                                                                                                                                     Secret of NIMH, The
## 26523                                                                                                                                         Sixteen Candles
## 26524                                                                                                                                 Gods Must Be Crazy, The
## 26525                                                                                                                                             Beetlejuice
## 26528                                                                                                                                                  Willow
## 26529                                                                                                                                       Untouchables, The
## 26530                                                                                                                                                Lifeboat
## 26532                                                                                                                                          Broadcast News
## 26533                                                                                                                                         Few Good Men, A
## 26534                                                                                                                                              Thing, The
## 26535                                                                                                                                     Edward Scissorhands
## 26537                                                                                                                                         My Cousin Vinny
## 26538                                                                                                                                Children of a Lesser God
## 26539                                                                                                                                       Elephant Man, The
## 26540                                                                                                                        Bride of Chucky (Child's Play 4)
## 26542                                                                                                                                      Enemy of the State
## 26544                                                                                                                   Waking Ned Devine (a.k.a. Waking Ned)
## 26546                                                                                                                                               King Kong
## 26547                                                                                                                                       View to a Kill, A
## 26549                                                                                                                              Rambo: First Blood Part II
## 26550                                                                                                                                               Rambo III
## 26551                                                                                                                                  Jewel of the Nile, The
## 26552                                                                                                                                     Romancing the Stone
## 26553                                                                                                                                                  Cocoon
## 26554                                                                                                                                               Rocky III
## 26555                                                                                                                                                Rocky IV
## 26556                                                                                                                                                 Rocky V
## 26557                                                                                                                                   Young Sherlock Holmes
## 26558                                                                                              Christmas Vacation (National Lampoon's Christmas Vacation)
## 26559                                                                                                                                  Boy Who Could Fly, The
## 26560                                                                                                                                      Jumpin' Jack Flash
## 26561                                                                                                                                        Heartbreak Ridge
## 26562                                                                                                                                            Office Space
## 26563                                                                                                                                   Towering Inferno, The
## 26564                                                                                                                                               Westworld
## 26565                                                                                                                                             Logan's Run
## 26567                                                                                                                          Beneath the Planet of the Apes
## 26568                                                                                                                      Conquest of the Planet of the Apes
## 26569                                                                                                                      Escape from the Planet of the Apes
## 26570                                                                                                                                          Wing Commander
## 26571                                                                                                                                          Mod Squad, The
## 26572                                                                                                                                                Election
## 26573                                                                                                                                              Dick Tracy
## 26574                                                                                                                                              Mummy, The
## 26575                                                                                                               Star Wars: Episode I - The Phantom Menace
## 26576                                                                                                                                                Superman
## 26577                                                                                                                                             Superman II
## 26578                                                                                                                          Rocky Horror Picture Show, The
## 26580                                                                                                                    South Park: Bigger, Longer and Uncut
## 26581                                                                                                                                          Wild Wild West
## 26582                                                                                                                                            American Pie
## 26583                                                                                                                                Blair Witch Project, The
## 26584                                                                                                                                           Haunting, The
## 26585                                                                                                                                           Deep Blue Sea
## 26586                                                                                                                                               Spartacus
## 26587                                                                                                                                       Color Purple, The
## 26588                                                                                                                                  Little Shop of Horrors
## 26589                                                                                                                                              Radio Days
## 26590                                                                                                                                Thomas Crown Affair, The
## 26591                                                                                                                                         Heaven Can Wait
## 26592                                                                                               Monty Python's And Now for Something Completely Different
## 26594                                                                                                                                                     Big
## 26595                                                                                                                                      Christmas Story, A
## 26596                                                                                                                                       13th Warrior, The
## 26597                                                                                                                                        Yellow Submarine
## 26599                                                                                                                                     Hard Day's Night, A
## 26600                                                                                                                                    Barefoot in the Park
## 26603                                                                                                                                          Risky Business
## 26604                                                                                                                                            Total Recall
## 26606                                                                                                                                Ferris Bueller's Day Off
## 26607                                                                                                                                                    Reds
## 26608                                                                                                                                           South Pacific
## 26610                                                                                                                                                   Help!
## 26611                                                                                                                                              Goldfinger
## 26612                                                                                                         Fistful of Dollars, A (Per un pugno di dollari)
## 26613                                                                                                                                            Time Bandits
## 26614                                                                                                                                           All That Jazz
## 26615                                                                                                                                                 RoboCop
## 26616                                                                                                                                               RoboCop 2
## 26618                                                                                                                                       Melvin and Howard
## 26619                                                                                                                                      For Your Eyes Only
## 26620                                                                                                                                   House on Haunted Hill
## 26621                                                                                                                          They Shoot Horses, Don't They?
## 26626                                                                                                                                          Trading Places
## 26627                                                                                                                                                   Dogma
## 26628                                                                                                                                             Holiday Inn
## 26631                                                                                                                                              Moonstruck
## 26632                                                                                                                                           Irma la Douce
## 26634                                                                                                                                           Sleepy Hollow
## 26637                                                                                                                                            Natural, The
## 26638                                                                                                                                                 Shampoo
## 26639                                                                                                                                River Runs Through It, A
## 26641                                                                                                                                               Backdraft
## 26642                                                                                                                                          Santa Fe Trail
## 26643                                                                                                                                      Great Santini, The
## 26644                                                                                                                                         Green Mile, The
## 26645                                                                                                                                  Last Picture Show, The
## 26646                                                                                                                              The Falcon and the Snowman
## 26648                                                                                                                                          Hurricane, The
## 26649                                                                                                                                        Way We Were, The
## 26650                                                                                                                                               Stalag 17
## 26651                                                                                                                                           Presidio, The
## 26653                                                                                                                                        Five Easy Pieces
## 26654                                                                                                                            Fast Times at Ridgemont High
## 26655                                                                                                                                       Goodbye Girl, The
## 26656                                                                                                                                           Wayne's World
## 26657                                                                                                                                  League of Their Own, A
## 26659                                                                                                                                          Bodyguard, The
## 26660                                                                                                                                         Of Mice and Men
## 26661                                                                                                                                             City Lights
## 26664                                                                                                                                    Raisin in the Sun, A
## 26665                                                                                                                                           Breaking Away
## 26666                                                                                                                             Hoosiers (a.k.a. Best Shot)
## 26667                                                                                                                                             Bull Durham
## 26668                                                                                                                                       Dog Day Afternoon
## 26669                                                                                                                                       American Graffiti
## 26671                                                                                                                             Muppets Take Manhattan, The
## 26673                                                                                                                         Captain Horatio Hornblower R.N.
## 26675                                                                                                                                      Do the Right Thing
## 26676                                                                                                                                          Coogan's Bluff
## 26677                                                                                                                                            Death Wish 3
## 26679                                                                                                                                                Red Dawn
## 26680                                                                                                                                   Good Morning, Vietnam
## 26681                                                                                                                            Guess Who's Coming to Dinner
## 26682                                                                                                                                       Lord of the Flies
## 26686                                                                                                                                           High Fidelity
## 26687                                                                                                                                               True Grit
## 26688                                                                                                                                        Midnight Express
## 26690                                                                                                                                         Odd Couple, The
## 26691                                                                                                                                   Bell, Book and Candle
## 26692                                                                                                                                  Force 10 from Navarone
## 26693                                                                                                                                              Parenthood
## 26694                                                                                                                                                Predator
## 26695                                                                                                                         Postman Always Rings Twice, The
## 26696                                                                                                                                                   Diner
## 26697                                                                                                                        What Ever Happened to Baby Jane?
## 26698                                                                                                                                          Guys and Dolls
## 26699                                                                                                                                              Caddyshack
## 26700                                                                                                                                                   U-571
## 26702                                                                                                                                                 Mr. Mom
## 26703                                                                                                                                 Pee-wee's Big Adventure
## 26705                                                                                                                                               Moonraker
## 26706                                                                                                                            Man with the Golden Gun, The
## 26707                                                                                                                                   Fighting Seabees, The
## 26709                                                                                                                                        Romeo and Juliet
## 26711                                                                                                                                              Predator 2
## 26712                                                                                                                                        Running Man, The
## 26713                                                                                                                                                 Starman
## 26714                                                                                                                                            Alien Nation
## 26715                                                                                                                                                 Mad Max
## 26716                                                                                                                                          Bird on a Wire
## 26717                                                                                                                                      Gone in 60 Seconds
## 26718                                                                                                                                        Paper Chase, The
## 26719                                                                                                                                                 Serpico
## 26720                                                                                                                             Big Trouble in Little China
## 26721                                                                                                                                     Battleship Potemkin
## 26722                                                                                                                                                   Shaft
## 26723                                                                                                                                             Chicken Run
## 26724                                                                                                                 Adventures of Rocky and Bullwinkle, The
## 26725                                                                                                                                      Perfect Storm, The
## 26726                                                                                                                               Kentucky Fried Movie, The
## 26727                                                                                                                                                     F/X
## 26728                                                                                                                                          Breaker Morant
## 26729                                                                                                                                          Kelly's Heroes
## 26730                                                                                                                                             Air America
## 26731                                                                                                                                               Cell, The
## 26734                                                                                                                                              Cat Ballou
## 26735                                                                                                                     Highlander: Endgame (Highlander IV)
## 26736                                                                                                                                             Nurse Betty
## 26738                                                                                                                                          Bank Dick, The
## 26739                                                                                                                                              Get Carter
## 26740                                                                                                                                          Contender, The
## 26742                                                                                                                                          Pay It Forward
## 26743                                                                                                             Legend of Drunken Master, The (Jui kuen II)
## 26744                                                                                                                                           Lucky Numbers
## 26745                                                                                                                                        Charlie's Angels
## 26746                                                                                                                             Legend of Bagger Vance, The
## 26747                                                                                                                                            Little Nicky
## 26749                                                                                                                                    Diamonds Are Forever
## 26750                                                                                                                                            6th Day, The
## 26751                                                                                                                                                  Bounce
## 26752                                                                                                      How the Grinch Stole Christmas (a.k.a. The Grinch)
## 26753                                                                                                                                             Unbreakable
## 26754                                                                                                                                           Proof of Life
## 26755                                                                                                                                          Vertical Limit
## 26757                                                                                                                               Emperor's New Groove, The
## 26758                                                                                                                                         What Women Want
## 26759                                                                                                                                       Finding Forrester
## 26760                                                                                                                                               Cast Away
## 26761                                                                                                                                         Family Man, The
## 26762                                                                                                                                       Miss Congeniality
## 26763                                                                                                                                            Dracula 2000
## 26765                                                                                                                             Officer and a Gentleman, An
## 26766                                                                                                                                   M*A*S*H (a.k.a. MASH)
## 26771                                                                                                                                                    Fled
## 26772                                                                                                                                           Roman Holiday
## 26776                                                                                                                        Major League: Back to the Minors
## 26779                                                                                                                                       Mighty Ducks, The
## 26780                                                                                                                                  NeverEnding Story, The
## 26784                                                                                                                                          Eyes Wide Shut
## 26785                                                                                                                                  Little Shop of Horrors
## 26790                                                                                                                                          Jakob the Liar
## 26791                                                                                                                                          Drive Me Crazy
## 26794                                                                                                                                              Limey, The
## 26800                                                                                                                                                   Dogma
## 26801                                                                                                                                              Moonstruck
## 26804                                                                                                                                             End of Days
## 26809                                                                                                                                              Beach, The
## 26812                                                                                                                                           Drowning Mona
## 26813                                                                                                                                         Mission to Mars
## 26817                                                                                                                                  Road to El Dorado, The
## 26818                                                                                                                                             Skulls, The
## 26826                                                                                                                                      Where the Money Is
## 26828                                                                                                                                                   U-571
## 26829                                                                                                                                              Jennifer 8
## 26831                                                                                                                                               Carnosaur
## 26833                                                                                                                                     I Dreamed of Africa
## 26835                                                                                                                                       Battlefield Earth
## 26837                                                                                                                                      Honeymoon in Vegas
## 26838                                                                                                                                       Small Time Crooks
## 26839                                                                                                                               Myth of Fingerprints, The
## 26848                                                                                                                                              Stay Tuned
## 26850                                                                                                     For a Few Dollars More (Per qualche dollaro in più)
## 26855                                                                                                                                                 Porky's
## 26856                                                                                                                                Porky's II: The Next Day
## 26857                                                                                                                                         Porky's Revenge
## 26858                                                                                                                                              Predator 2
## 26864                                                                                                                                             Angel Heart
## 26866                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 26868                                                                                                                              Pyromaniac's Love Story, A
## 26869                                                                                                                                                Stargate
## 26871                                                                                                                                            Forrest Gump
## 26872                                                                                                                                               Mask, The
## 26880                                                                                                                                              Barbarella
## 26885                                                                                                                            20,000 Leagues Under the Sea
## 26886                                                                                                                                      Lawnmower Man, The
## 26889                                                                                                                                        Army of Darkness
## 26901                                                                                                                                               Dark City
## 26911                                                                                                                                             Beetlejuice
## 26912                                                                                                                          2010: The Year We Make Contact
## 26913                                                                                                                                             Logan's Run
## 26917                                                                                                                                            Superman III
## 26921                                                                                                                                            Time Bandits
## 26922                                                                                                                                         Heart and Souls
## 26926                                                                                                                                                 Mad Max
## 26927                                                                                                                           Road Warrior, The (Mad Max 2)
## 26930                                                                                                                                                   Fargo
## 26934                                                                                                                                      That Thing You Do!
## 26936                                                                                                                                          Reservoir Dogs
## 26938                                                                                                                 Cinema Paradiso (Nuovo cinema Paradiso)
## 26939                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 26951                                                                                                                                              Unforgiven
## 26952                                                                                                                                             Down by Law
## 26954                                                                                                                         Beavis and Butt-Head Do America
## 26955                                                                                                                                     Waiting for Guffman
## 26957                                                                                                                                             Wag the Dog
## 26958                                                                                                             Children of Heaven, The (Bacheha-Ye Aseman)
## 26963                                                                                                                                               Bowfinger
## 26965                                                                                                                                     Straight Story, The
## 26966                                                                                                                                 Crimes and Misdemeanors
## 26968                                                                                                                                            Insider, The
## 26969                                                                                                                                         Green Mile, The
## 26971                                                                                                                                Talented Mr. Ripley, The
## 26974                                                                                                                                               Malcolm X
## 26975                                                                                                                                            Mariachi, El
## 26981                                                                                                                                            Best in Show
## 26982                                                                                                                                  Stranger Than Paradise
## 26984                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 26985                                                                                                                                               Cast Away
## 26990                                                                                                                                             Ghost World
## 26991                                                                                                                                             Dinner Rush
## 26993                                                                                                                                           No Man's Land
## 26997                                                                                                                                            Roger Dodger
## 26998                                                                                                                                         Far from Heaven
## 27001                                                                                                                  Lord of the Rings: The Two Towers, The
## 27002                                                                                                                                            Pianist, The
## 27003                                                                                                                                          Mighty Wind, A
## 27005                                                                                                                                               GoldenEye
## 27008                                                                                                                                               Assassins
## 27010                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 27017                                                                                                                                                Mallrats
## 27018                                                                                                                                              Waterworld
## 27025                                                                                                                                           Shallow Grave
## 27027                                                                                                                                               True Lies
## 27028                                                                                   Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 27030                                                                                                                                           Jurassic Park
## 27033                                                                                                                                       Super Mario Bros.
## 27037                                                                                                                                                   Fargo
## 27038                                                                                                                                               Space Jam
## 27041                                                                                                                           Independence Day (a.k.a. ID4)
## 27042                                                                                                                                          Godfather, The
## 27043                                                                                                                                   2001: A Space Odyssey
## 27048                                                                                                                                       Bloody Child, The
## 27050                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 27053                                                                                                                                              Goodfellas
## 27059                                                                                                                             Evil Dead II (Dead by Dawn)
## 27062                                                                                                                                                   Akira
## 27064                                                                                                                                Star Trek: First Contact
## 27065                                                                                                                                                   Evita
## 27067                                                                                                                          Lost World: Jurassic Park, The
## 27069                                                                                                                                                 Contact
## 27072                                                                                                                                         Peacemaker, The
## 27077                                                                                                                                     Alien: Resurrection
## 27079                                                                                                                                     Tomorrow Never Dies
## 27080                                                                                                                                       Big Lebowski, The
## 27082                                                                                                                                                Godzilla
## 27083                                                                                                                                              Armageddon
## 27084                                                                                                                                               Halloween
## 27091                                                                                                                                                    Cube
## 27093                                                                                                                                      American History X
## 27096                                                                                                                                                Rocky IV
## 27101                                                                                                                                               Following
## 27102                                                                                                               Star Wars: Episode I - The Phantom Menace
## 27104                                                                                                                                          Wild Wild West
## 27105                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 27108                                                                                                               The Mating Habits of the Earthbound Human
## 27118                                                                                                                                             Hidden, The
## 27120                                                                                                                                           Human Traffic
## 27122                                                                                                                                                   X-Men
## 27124                                                                                                                                    Diamonds Are Forever
## 27125                                                                                                                                            6th Day, The
## 27127                                                                                                                                          Evil Dead, The
## 27128                                                                                                                                            Mexican, The
## 27130                                                                                                                            A.I. Artificial Intelligence
## 27132                                                                                                                                               They Live
## 27133                                                                                                                                             Others, The
## 27134                                                                                                                                          Ghosts of Mars
## 27135                                                                                                                                            Donnie Darko
## 27136                                                                                                                                                One, The
## 27140                                                                                                                                                Impostor
## 27142                                                                                                                                       Time Machine, The
## 27143                                                                                                                                           Resident Evil
## 27144                                                                                                                                              Spider-Man
## 27147                                                                                                                                         Minority Report
## 27149                                                                                                                                             Equilibrium
## 27150                                                                                                                  Lord of the Rings: The Two Towers, The
## 27151                                                                                                                                               25th Hour
## 27152                                                                                                                                            Pianist, The
## 27157                                                                                                                                        X2: X-Men United
## 27158                                                                                                      Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 27160                                                                                                                                        Italian Job, The
## 27161                                                                                                                                           28 Days Later
## 27162                                                                                                                      Terminator 3: Rise of the Machines
## 27163                                                                                                                                         Day of the Dead
## 27165                                                                                                                           Shakiest Gun in the West, The
## 27166                                                                                                                                            Mystic River
## 27167                                                                                                                                       Kill Bill: Vol. 1
## 27169                                                                                                                           Highlander II: The Quickening
## 27172                                                                                           Nausicaä of the Valley of the Wind (Kaze no tani no Naushika)
## 27173                                                                                                          Lord of the Rings: The Return of the King, The
## 27175                                                                                                                                       Hip Hop Witch, Da
## 27176                                                                                                                                        Dawn of the Dead
## 27177                                                                                                                                        Dawn of the Dead
## 27178                                                                                                                                       Kill Bill: Vol. 2
## 27180                                                                                                                             Babylon 5: In the Beginning
## 27181                                                                                                                               Babylon 5: A Call to Arms
## 27182                                                                                                                                        Children of Dune
## 27185                                                                                                                              Chronicles of Riddick, The
## 27186                                                                                                                                           Helen of Troy
## 27187                                                                                                                               Pirates of Silicon Valley
## 27188                                                                                                                                            Spider-Man 2
## 27190                                                                                                                                                I, Robot
## 27191                                                                                                                                          Prince Valiant
## 27193                                                                                                                                       Revengers Tragedy
## 27194                                                                                                                                 AVP: Alien vs. Predator
## 27195                                                                                                                               Resident Evil: Apocalypse
## 27197                                                                                                                                           The Machinist
## 27202                                                                                                                                          Interview, The
## 27204                                                                                                                                          Animatrix, The
## 27213                                                                                                                                        Snow Walker, The
## 27216                                                                                                                                        Wedding Crashers
## 27217                                                                                                                                             Island, The
## 27218                                                                                                                                                Serenity
## 27219                                                                                                                      Final Fantasy VII: Advent Children
## 27221                                                                                                                                            Descent, The
## 27222                                                                                                                                             Keeping Mum
## 27223                                                                                                                                               16 Blocks
## 27225                                                                                                                                              Inside Man
## 27227                                                                                                                                                   Brick
## 27230                                                                                                                                   Stranger than Fiction
## 27233                                                                                                                                         Children of Men
## 27239                                                                                                                                                     300
## 27240                                                                                                                                              Grindhouse
## 27241                                                                                                                                                Sunshine
## 27243                                                                                                                                          28 Weeks Later
## 27245                                                                                                                                              88 Minutes
## 27246                                                                                                                                             Death Proof
## 27247                                                                                                                                                    1408
## 27248                                                                                                                                      Death at a Funeral
## 27249                                                                                                                                   Live Free or Die Hard
## 27252                                                                                                                                           Invasion, The
## 27255                                                                                                                                        Eastern Promises
## 27256                                                                                                                               Resident Evil: Extinction
## 27258                                                                                             Assassination of Jesse James by the Coward Robert Ford, The
## 27259                                                                                                                                                  Saw IV
## 27260                                                                                                                                       American Gangster
## 27265                                                                                                                                             I Am Legend
## 27266                                                                                                                                        Bucket List, The
## 27268                                                                                                                     AVPR: Aliens vs. Predator - Requiem
## 27269                                                                                                                                             Cloverfield
## 27272                                                                                                                                      What Just Happened
## 27275                                                                                                                                            Visitor, The
## 27277                                                                                                                                                Iron Man
## 27279                                                                                                                     Young at Heart (a.k.a. Young@Heart)
## 27280                                                                                                                                                 Recount
## 27281                                                                                                                                    Incredible Hulk, The
## 27282                                                                                                                                                  WALL·E
## 27283                                                                                                                                                Watchmen
## 27284                                                                                                                                           Step Brothers
## 27285                                                                                                                                            Frozen River
## 27286                                                                                                                                          Tropic Thunder
## 27287                                                                                                                                              Death Race
## 27288                                                                                                                                      Burn After Reading
## 27289                                                                                                                                         Pride and Glory
## 27292                                                                                                                                                   Saw V
## 27293                                                                                                                                                Soul Men
## 27294                                                                                                                    Curious Case of Benjamin Button, The
## 27296                                                                                                                          Underworld: Rise of the Lycans
## 27297                                                                                                                                               Eden Lake
## 27298                                                                                                                                            Funny People
## 27299                                                                                                                               Anvil! The Story of Anvil
## 27300                                                                                                                                    Dragonball Evolution
## 27303                                                                                                                                           State of Play
## 27304                                                                                                                                      Damned United, The
## 27305                                                                                                                                     Crank: High Voltage
## 27306                                                                                                                                                    Moon
## 27307                                                                                                                                X-Men Origins: Wolverine
## 27309                                                                                                                                    Terminator Salvation
## 27310                                                                                                                                            Soloist, The
## 27311                                                                                                                                           Hangover, The
## 27312                                                                                                                                        Land of the Lost
## 27313                                                                                                                     Transformers: Revenge of the Fallen
## 27314                                                                                                                  Harry Potter and the Half-Blood Prince
## 27317                                                                                                                             Men Who Stare at Goats, The
## 27319                                                                                                                                                  Saw VI
## 27320                                                                                                                                                  Avatar
## 27322                                                                                                                                               Pontypool
## 27323                                                                                                                                             Daybreakers
## 27324                                                                                                                                        Book of Eli, The
## 27325                                                                                                                                                  Legion
## 27326                                                                                                                                            Wolfman, The
## 27328                                                                                                                                                 Cop Out
## 27329                                                                                                                                       Ghost Writer, The
## 27330                                                                                                                                            Crazies, The
## 27331                                                                                                                                             Harry Brown
## 27332                                                                                                                                         Leaves of Grass
## 27334                                                                                                                                                Defendor
## 27336                                                                                                                                       Cemetery Junction
## 27338                                                                                                                                    Get Him to the Greek
## 27339                                                                                                                                             Unthinkable
## 27342                                                                                                                                               Predators
## 27344                                                                                                                                               Grown Ups
## 27346                                                                                                                                        Expendables, The
## 27347                                                                                                                                               Centurion
## 27348                                                                                                                                Resident Evil: Afterlife
## 27350                                                                                                                                               Town, The
## 27352                                                                                                                                                     Red
## 27353                                                                                                                          Saw VII 3D - The Final Chapter
## 27355                                                                                                                                    Next Three Days, The
## 27358                                                                                                                                               True Grit
## 27359                                                                                                                                            Tron: Legacy
## 27360                                                                                                                                      Gulliver's Travels
## 27362                                                                                                                                       Green Hornet, The
## 27366                                                                                                                                     No Strings Attached
## 27367                                                                                                                                               Rite, The
## 27368                                                                                                                                                 Unknown
## 27369                                                                                                                                            Cedar Rapids
## 27370                                                                                                                                  Adjustment Bureau, The
## 27371                                                                                                                                           Mechanic, The
## 27372                                                                                                                                               Hall Pass
## 27373                                                                                                                                              Eagle, The
## 27374                                                                                                                                     Battle: Los Angeles
## 27375                                                                                                                        Troll Hunter, The (Trolljegeren)
## 27379                                                                                                                          American: The Bill Hicks Story
## 27385                                                                                                                                             Bad Teacher
## 27387                                                                                                                                    Crazy, Stupid, Love.
## 27388                                                                                                                                   Friends with Benefits
## 27389                                                                                                                          Rise of the Planet of the Apes
## 27390                                                                                                                                          Change-Up, The
## 27391                                                                                                                                      30 Minutes or Less
## 27394                                                                                                                               Tinker Tailor Soldier Spy
## 27395                                                                                                                                              Thing, The
## 27396                                                                                                                                                 In Time
## 27399                                                                                                                      Sherlock Holmes: A Game of Shadows
## 27400                                                                                                                    Mission: Impossible - Ghost Protocol
## 27401                                                                                                                                         We Bought a Zoo
## 27403                                                                                                                                               Chronicle
## 27405                                                                                                                                        Moonrise Kingdom
## 27416                                                                                                                                               Prisoners
## 27419                                                                                                                                         Book Thief, The
## 27422                                                                                                                                                  Frozen
## 27423                                                                                                                                         American Hustle
## 27424                                                                                                                                        Saving Mr. Banks
## 27425                                                                                                                                         Back in the Day
## 27426                                                                                                                                               Toy Story
## 27427                                                                                                                                                 Jumanji
## 27429                                                                                                                                              Braveheart
## 27432                                                                                                                                                Net, The
## 27436                                                                                                                                        Jungle Book, The
## 27437                                                                                                                                          Lion King, The
## 27438                                                                                                                                               Mask, The
## 27439                                                                                                                                                   Speed
## 27441                                                                                                                                              Free Willy
## 27442                                                                                                                                           Jurassic Park
## 27445                                                                                                                                              Home Alone
## 27446                                                                                                                                                 Aladdin
## 27448                                                                                                                                    Beauty and the Beast
## 27450                                                                                                                                     Mission: Impossible
## 27451                                                                                                                           Independence Day (a.k.a. ID4)
## 27453                                                                                                                            Monty Python's Life of Brian
## 27454                                                                                                                                           Dirty Dancing
## 27456                                                                                                                              E.T. the Extra-Terrestrial
## 27457                                                                                                                                                  Brazil
## 27463                                                                                                                                          101 Dalmatians
## 27464                                                                                                                                                  Grease
## 27465                                                                                                                                      Fifth Element, The
## 27466                                                                                                                          Lost World: Jurassic Park, The
## 27468                                                                                                                                                 Contact
## 27469                                                                                                                               Hunt for Red October, The
## 27470                                                                                                                                    Seven Years in Tibet
## 27474                                                                                                                                                 Flubber
## 27475                                                                                                                                                 Titanic
## 27476                                                                                                                               Man in the Iron Mask, The
## 27477                                                                                                                                              Armageddon
## 27484                                                                                                                                          Police Academy
## 27485                                                                                                                        First Blood (Rambo: First Blood)
## 27486                                                                                                                                         Karate Kid, The
## 27487                                                                                                                                      Thin Red Line, The
## 27493                                                                                                                                            Notting Hill
## 27494                                                                                                                                                  Tarzan
## 27495                                                                                                                                            American Pie
## 27496                                                                                                                                           Runaway Bride
## 27497                                                                                                                                        Sixth Sense, The
## 27498                                                                                                                          Home Alone 2: Lost in New York
## 27501                                                                                                                                         Green Mile, The
## 27503                                                                                                                                       Final Destination
## 27505                                                                                                                                  Mission: Impossible II
## 27506                                                                                                                            Man with the Golden Gun, The
## 27507                                                                                                                                      Gone in 60 Seconds
## 27508                                                                                                                                             Scary Movie
## 27509                                                                                                                                             Coyote Ugly
## 27510                                                                                                                                           Space Cowboys
## 27511                                                                                                                               Emperor's New Groove, The
## 27512                                                                                                                                         What Women Want
## 27513                                                                                                                                               Cast Away
## 27514                                                                                                                                       Miss Congeniality
## 27515                                                                                                                                               Antitrust
## 27519                                                                                                                                        Knight's Tale, A
## 27521                                                                                                                                            Moulin Rouge
## 27522                                                                                                                                            Pearl Harbor
## 27523                                                                                                                                               Swordfish
## 27524                                                                                                                               Fast and the Furious, The
## 27525                                                                                                                            A.I. Artificial Intelligence
## 27526                                                                                                                                          Legally Blonde
## 27527                                                                                                                                       Coming to America
## 27528                                                                                                                                   Land Before Time, The
## 27529                                                                                                                                       Jurassic Park III
## 27530                                                                                                                                             Sea of Love
## 27533                                                                                                                                                Spy Game
## 27541                                                                                                                                        Transporter, The
## 27543                                                                                                                                               Ring, The
## 27544                                                                                                                                            Femme Fatale
## 27545                                                                                                                                         Die Another Day
## 27546                                                                                                                                       Gangs of New York
## 27548                                                                                                                                            Recruit, The
## 27550                                                                                                                                    Matrix Reloaded, The
## 27556                                                                                                                                          Johnny English
## 27557                                                                                                                                            Brother Bear
## 27558                                                                                                                                 Matrix Revolutions, The
## 27559                                                                                                                                         Mona Lisa Smile
## 27561                                                                                                                                                Paycheck
## 27562                                                                                                                                          50 First Dates
## 27563                                                                                                                   Eternal Sunshine of the Spotless Mind
## 27565                                                                                                                                 Day After Tomorrow, The
## 27567                                                                                                                                       Napoleon Dynamite
## 27568                                                                                                                                           Terminal, The
## 27569                                                                                                                                                    Taxi
## 27570                                                                                                                                         Fahrenheit 9/11
## 27571                                                                                                                                                I, Robot
## 27574                                                                                                                                                     Saw
## 27575                                                                                                                                                     Ray
## 27576                                                                                                                                        Incredibles, The
## 27577                                                                                                                                          Ocean's Twelve
## 27578                                                                                                                                               Ghost Dad
## 27579                                                                                                                        Lion King II: Simba's Pride, The
## 27580                                                                                                                                                  Taxi 2
## 27581                                                                                                                                       Cube 2: Hypercube
## 27582                                                                                                                                        Interpreter, The
## 27583                                                                                                                                            Aviator, The
## 27584                                                                                                                                                   Hitch
## 27585                                                                                                                                                Sin City
## 27587                                                                                                                                          Monster-in-Law
## 27588                                                                                                                                        Mr. & Mrs. Smith
## 27589                                                                                                                                               Bewitched
## 27590                                                                                            Asterix & Obelix vs. Caesar (Astérix et Obélix contre César)
## 27591                                                                                                                                        Just Like Heaven
## 27593                                                                                                                                                 Jarhead
## 27594                                                                                                                                                Casanova
## 27595                                                                                                                                 Ice Age 2: The Meltdown
## 27596                                                                                                                                 Mission: Impossible III
## 27598                                                                                                                                      Da Vinci Code, The
## 27599                                                                                                                                                    Cars
## 27600                                                                                                                                  Devil Wears Prada, The
## 27601                                                                                                                                  My Super Ex-Girlfriend
## 27604                                                                                                                                           Departed, The
## 27605                                                                                                                                         Children of Men
## 27607                                                                                                                                           Casino Royale
## 27610                                                                                                                                        Music and Lyrics
## 27611                                                                                                                                              Grindhouse
## 27613                                                                                                                Pirates of the Caribbean: At World's End
## 27615                                                                                                                                            Transformers
## 27616                                                                                                                                     Simpsons Movie, The
## 27624                                                                                                                                         Rambo (Rambo 4)
## 27625                                                                                                                                               In Bruges
## 27626                                                                                                                                       Definitely, Maybe
## 27627                                                                                                                                           Vantage Point
## 27630                                                                                                                                                   Taken
## 27632                                                                                                                                                 Hancock
## 27633                                                                                                                                              RocknRolla
## 27634                                                                                                                                     Slumdog Millionaire
## 27635                                                                                                                                       Quantum of Solace
## 27637                                                                                                                                                 Yes Man
## 27638                                                                                                            Fast & Furious (Fast and the Furious 4, The)
## 27641                                                                                                                                           Hangover, The
## 27644                                                                                                                                  She's Out of My League
## 27645                                                                                                                                How to Train Your Dragon
## 27646                                                                                                   Shrek Forever After (a.k.a. Shrek: The Final Chapter)
## 27647                                                                                                                                           Despicable Me
## 27648                                                                                                                                               Inception
## 27649                                                                                                                                                    Salt
## 27651                                                                                                                                                     Red
## 27653                                                                                                                                                  BURN-E
## 27654                                                                                                                                                     Rio
## 27656                                                                                                                        Burn Notice: The Fall of Sam Axe
## 27658                                                                                                                                           Puss in Boots
## 27664                                                                                                                                      Hotel Transylvania
## 27665                                                                                                                                              Life of Pi
## 27666                                                                                                                                             Croods, The
## 27667                                                                                                                                          Now You See Me
## 27669                                                                                                                                                   Red 2
## 27670                                                                                                                                              About Time
## 27671                                                                                                                                                  Frozen
## 27672                                                                                                                                Wolf of Wall Street, The
## 27674                                                                                                                                                     Her
## 27678                                                                                                                                           Freaky Friday
## 27686                                                                                                                                           Happy Gilmore
## 27691                                                                                                                                             Nine Months
## 27692                                                                                                                                                 Ed Wood
## 27705                                                                                                                                      Executive Decision
## 27730                                                                                                                                     Little Mermaid, The
## 27735                                                                                                                                     Romancing the Stone
## 27736                                                                                                                                         Karate Kid, The
## 27739                                                                                                                                       Ideal Husband, An
## 27740                                                                                                                                           Arachnophobia
## 27742                                                                                                                                        Sixth Sense, The
## 27760                                                                                                                                        Intact (Intacto)
## 27769                                                                                                                                          Calendar Girls
## 27774                                                                                                                                       Napoleon Dynamite
## 27779                                                                                                                                                Catwoman
## 27786                                                                                                                                             Wicker Park
## 27791                                                                                                        Motorcycle Diaries, The (Diarios de motocicleta)
## 27800                                                                                                                                            Aviator, The
## 27804                                                                                                                                Beverly Hillbillies, The
## 27805                                                                                                                                          Demolition Man
## 27816                                                                                                                                  Amityville Horror, The
## 27822                                                                                                                                     Alien: Resurrection
## 27826                                                                                                                                Exorcist II: The Heretic
## 27830                                                                                                                            Absent-Minded Professor, The
## 27831                                                                                                                                    Children of the Corn
## 27832                                                                                                                                      Addams Family, The
## 27833                                                                                                                                 Star Trek: Insurrection
## 27840                                                                                                               Star Wars: Episode I - The Phantom Menace
## 27841                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 27844                                                                                                              Allan Quatermain and the Lost City of Gold
## 27848                                                                                                                                           Bachelor, The
## 27851                                                                                                                       Baby... Secret of the Lost Legend
## 27852                                                                                                                                    Bear, The (Ours, L')
## 27856                                                                                                                         Braddock: Missing in Action III
## 27857                                                                                                                     Creature from the Black Lagoon, The
## 27860                                                                                                                                          Love Potion #9
## 27862                                                                                                                                     Cannonball Run, The
## 27864                                                                                                                     American Ninja 2: The Confrontation
## 27866                                                                                                                      Abbott and Costello Meet the Mummy
## 27867                                                                                                                                        Beastmaster, The
## 27871                                                                                                                Bad News Bears in Breaking Training, The
## 27873                                                                                                                                      Johnny Dangerously
## 27874                                                                                                                                         Die Another Day
## 27875                                                                                                                         Bolero (Uns et les autres, Les)
## 27877                                                                                                                                               Assassins
## 27885                                                                                                                                     Father of the Bride
## 27886                                                                                                                             Ghost and the Darkness, The
## 27890                                                                                                                                           Touch of Evil
## 27892                                                                                                                                          Big Sleep, The
## 27893                                                                                                                                 Speed 2: Cruise Control
## 27896                                                                                                         101 Dalmatians (One Hundred and One Dalmatians)
## 27898                                                                                                                                               Rocky III
## 27900                                                                                                                                          Arlington Road
## 27901                                                                                                                                             Boiler Room
## 27907                                                                                                                                          Monster's Ball
## 27910                                                                                                                              Good Night, and Good Luck.
## 27912                                                                                                                                              13 Tzameti
## 27915                                                                                                                              Postman, The (Postino, Il)
## 27916                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 27917                                                                                                                                                 Rob Roy
## 27918                                                                                                            City Slickers II: The Legend of Curly's Gold
## 27920                                                                                                                                       Dial M for Murder
## 27921                                                                                                                                              Goodfellas
## 27923                                                                                                                                              Sting, The
## 27924                                                                                                                                      Dead Poets Society
## 27927                                                                                                                                              Die Hard 2
## 27928                                                                                                                         Star Trek II: The Wrath of Khan
## 27929                                                                                                                                                  Scream
## 27933                                                                                                                                     Edward Scissorhands
## 27936                                                                                                                                                   Shrek
## 27937                                                                                                                                                Red Heat
## 27938                                                                                                                                   Princess Diaries, The
## 27940                                                                                                                                       Kill Bill: Vol. 2
## 27943                                                                                                                         Alice Doesn't Live Here Anymore
## 27946                                                                                                                                               GoldenEye
## 27949                                                                                                                                              Braveheart
## 27950                                                                                                                      Star Wars: Episode IV - A New Hope
## 27951                                                                                                                                            Forrest Gump
## 27953                                                                                                                              Terminator 2: Judgment Day
## 27954                                                                                                                               Silence of the Lambs, The
## 27955                                                                                                         Wallace & Gromit: The Best of Aardman Animation
## 27957                                                                                                                         Wallace & Gromit: A Close Shave
## 27959                                                                                                                                       Wizard of Oz, The
## 27960                                                                                                                                                Die Hard
## 27961                                                                                                                    Wallace & Gromit: The Wrong Trousers
## 27962                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 27964                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 27965                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 27966                                                                                                                                                   Alien
## 27967                                                                                                                                 Godfather: Part II, The
## 27968                                                                                                                Grand Day Out with Wallace and Gromit, A
## 27971                                                                                                                      Indiana Jones and the Last Crusade
## 27973                                                                                                                                             Matrix, The
## 27976                                                                                                                                              Goldfinger
## 27977                                                                                                                                              Fight Club
## 27981                                                                                                                                    Bourne Identity, The
## 27983                                                                                                                  Lord of the Rings: The Two Towers, The
## 27985                                                                                                                                        X2: X-Men United
## 27988                                                                                                          Lord of the Rings: The Return of the King, The
## 27989                                                                                                                Harry Potter and the Prisoner of Azkaban
## 27990                                                                                                                                              Collateral
## 27993                                                                                                             Porco Rosso (Crimson Pig) (Kurenai no buta)
## 27995                                                                                                                                           Ring Two, The
## 27996                                                                                                                       Charlie and the Chocolate Factory
## 27997                                                                                                                                                 Elektra
## 27999                                                                                                                                                   Hitch
## 28001                                                                                                                                                  Robots
## 28002                                                                                                                 Miss Congeniality 2: Armed and Fabulous
## 28004                                                                                                                                              Madagascar
## 28007                                                                                                                                        Wedding Crashers
## 28008                                                                                                                                                Sky High
## 28009                                                                                                                                 40-Year-Old Virgin, The
## 28010                                                                                                                                           Transporter 2
## 28011                                                                                                                                               Aeon Flux
## 28015                                                                                                                                                  Saw II
## 28016                                                                                            American Pie Presents: Band Camp (American Pie 4: Band Camp)
## 28017                                                                                                                                                 Jarhead
## 28018                                                                                                                                          Chicken Little
## 28022                                                                                                                                  Fun with Dick and Jane
## 28023                                                                                                                                                  Hostel
## 28024                                                                                                                                             Ultraviolet
## 28025                                                                                                                                 Ice Age 2: The Meltdown
## 28027                                                                                                                                 Mission: Impossible III
## 28029                                                                                                                                           Break-Up, The
## 28031                                                                                                                                         Lake House, The
## 28032                                                                                                                                                   Click
## 28033                                                                                                                                  Devil Wears Prada, The
## 28035                                                                                                                                       Lady in the Water
## 28037                                                                                                                                       Snakes on a Plane
## 28038                                                                                                             Talladega Nights: The Ballad of Ricky Bobby
## 28039                                                                                                                                      Jackass Number Two
## 28040                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 28041                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 28042                                                                                                                                           Departed, The
## 28044                                                                                                                                                 Saw III
## 28045                                                                                                                                            Flushed Away
## 28046                                                                                                                                           Casino Royale
## 28051                                                                                                                                          Number 23, The
## 28054                                                                                                                                         Blades of Glory
## 28056                                                                                                                                            Spider-Man 3
## 28057                                                                                                                                              Knocked Up
## 28058                                                                                                                                         Shrek the Third
## 28059                                                                                                               Fantastic Four: Rise of the Silver Surfer
## 28061                                                                                                                                           Evan Almighty
## 28062                                                                                                                     I Now Pronounce You Chuck and Larry
## 28065                                                                                                                                   Bourne Ultimatum, The
## 28069                                                                                                                               Resident Evil: Extinction
## 28070                                                                                                                                        30 Days of Night
## 28071                                                                                                                                                  Saw IV
## 28072                                                                                                                                               Bee Movie
## 28077                                                                                                                                                    Juno
## 28080                                                                                                                                             Cloverfield
## 28082                                                                                                                             Hellboy II: The Golden Army
## 28084                                                                                                                                           Vantage Point
## 28085                                                                                                                                               10,000 BC
## 28086                                                                                                                                     Horton Hears a Who!
## 28087                                                                                                                                        Dark Knight, The
## 28091                                                                                                      Indiana Jones and the Kingdom of the Crystal Skull
## 28093                                                                                                                           You Don't Mess with the Zohan
## 28094                                                                                                                                          Happening, The
## 28095                                                                                                                                    Incredible Hulk, The
## 28096                                                                                                                                                  WALL·E
## 28097                                                                                                                                                 Hancock
## 28098                                                                                                                                               Get Smart
## 28099                                                                                                                                              Mamma Mia!
## 28100                                                                                                                                          Tropic Thunder
## 28101                                                                                                                                      Burn After Reading
## 28102                                                                                                                                               Eagle Eye
## 28103                                                                                                                             Madagascar: Escape 2 Africa
## 28104                                                                                                                                       Quantum of Solace
## 28106                                                                                                                                                Twilight
## 28110                                                                                                                                    Inglourious Basterds
## 28113                                                                                                                                     Paranormal Activity
## 28114                                                                                                                                              Zombieland
## 28115                                                                                                                                                    2012
## 28116                                                                                                                                                  Avatar
## 28117                                                                                                                                         Sherlock Holmes
## 28119                                                                                                                                             Toy Story 3
## 28120                                                                                                                                               Inception
## 28122                                                                                                                                               127 Hours
## 28125                                                                                                                                      X-Men: First Class
## 28128                                                                                                                                  Dark Knight Rises, The
## 28132                                                                                                                                                 Skyfall
## 28134                                                                                                                                              Iron Man 3
## 28136                                                                                                                              X-Men: Days of Future Past
## 28137                                                                                                                                          Equalizer, The
## 28143                                                                                                                                          Jurassic World
## 28144                                                                                                                                  Penguins of Madagascar
## 28147                                                                                                                                              Cinderella
## 28148                                                                                                                                         Pitch Perfect 2
## 28149                                                                                                                                               Kung Fury
## 28150                                                                                                                                                 Minions
## 28151                                                                                                                                                  Batman
## 28152                                                                                                                                                Die Hard
## 28153                                                                                                                                         Victor/Victoria
## 28156                                                                                                                Cook the Thief His Wife & Her Lover, The
## 28160                                                                                                                                                  Aliens
## 28163                                                                                                                                      Dead Poets Society
## 28164                                                                                                                                            Shining, The
## 28166                                                                                                                                       Somewhere in Time
## 28168                                                                                                                                             Real Genius
## 28170                                                                                                                                         Field of Dreams
## 28171                                                                                                                                 When Harry Met Sally...
## 28172                                                                                                                         American Werewolf in London, An
## 28173                                                                                                                     Star Trek III: The Search for Spock
## 28174                                                                                                                           Star Trek IV: The Voyage Home
## 28175                                                                                                                                     Conan the Barbarian
## 28177                                                                                                                                             Deep Impact
## 28178                                                                                                                                       Perfect Murder, A
## 28181                                                                                                                                      Driving Miss Daisy
## 28183                                                                                                                                             Poltergeist
## 28184                                                                                                                                                Gremlins
## 28185                                                                                                                                            Goonies, The
## 28186                                                                                                                              Back to the Future Part II
## 28187                                                                                                                                                    Dune
## 28188                                                                                                                                     Black Cauldron, The
## 28189                                                                                                                                Honey, I Shrunk the Kids
## 28190                                                                                                                                                  Powder
## 28191                                                                                                                                           Mortal Kombat
## 28193                                                                                                                                                  Junior
## 28195                                                                                                                                               Tommy Boy
## 28196                                                                                                                                           Carlito's Way
## 28198                                                                                                                                               Space Jam
## 28199                                                                                                                                      'Til There Was You
## 28200                                                                                                                                     Singin' in the Rain
## 28201                                                                                                                                  Breakfast at Tiffany's
## 28202                                                                                                                                        Some Like It Hot
## 28203                                                                                                                                            My Fair Lady
## 28204                                                                                                                                      That Thing You Do!
## 28205                                                                                                                             People vs. Larry Flynt, The
## 28207                                                                                                                                              Highlander
## 28208                                                                                                                                                 Ben-Hur
## 28211                                                                                                                                          101 Dalmatians
## 28212                                                                                                                           Star Trek: The Motion Picture
## 28213                                                                                                                         Beavis and Butt-Head Do America
## 28214                                                                                                                                       Conspiracy Theory
## 28215                                                                                                                                         Negotiator, The
## 28216                                                                                                         101 Dalmatians (One Hundred and One Dalmatians)
## 28217                                                                                                                                               Elizabeth
## 28218                                                                                                                              10 Things I Hate About You
## 28219                                                                                                                                            Time Bandits
## 28220                                                                                                                                            Insider, The
## 28221                                                                                                                                           Patriot Games
## 28222                                                                                                                                          102 Dalmatians
## 28223                                                                                                                                         'Round Midnight
## 28226                                                                                                                                    Career Opportunities
## 28227                                                                                                                               "Great Performances" Cats
## 28228                                                                                                                                               10,000 BC
## 28229                                                                                                                                              100 Rifles
## 28230                                                                                                                                           Adventureland
## 28232                                                                                                                                    (500) Days of Summer
## 28233                                                                                                                                'Neath the Arizona Skies
## 28234                                                                                                                                                  Amelia
## 28235                                                                                                                                               Astro Boy
## 28240                                                                                                                                   2001: A Space Odyssey
## 28244                                                                                                                                                 Stalker
## 28247                                                                                                                                                    Jaws
## 28250                                                                                                                                             BASEketball
## 28254                                                                                                                            Fast Times at Ridgemont High
## 28256                                                                                                                                             Skulls, The
## 28259                                                                                                                           Saving Silverman (Evil Woman)
## 28261                                                                                                                                        Glass House, The
## 28263                                                                                                                                                  Duplex
## 28273                                                                                                                                        Moonrise Kingdom
## 28275                                                                                                                                              About Time
## 28285                                                                                                                                         Johnny Mnemonic
## 28286                                                                                                                                                 Species
## 28287                                                                                                                                               Coneheads
## 28288                                                                                                                                    Hot Shots! Part Deux
## 28290                                                                                                                            So I Married an Axe Murderer
## 28291                                                                                                                                   Three Musketeers, The
## 28292                                                                                                                                            True Romance
## 28293                                                                                                                                              Phenomenon
## 28295                                                                                                                                              Sting, The
## 28296                                                                                                                                      Young Frankenstein
## 28297                                                                                                                           Star Trek IV: The Voyage Home
## 28299                                                                                                                                         Lethal Weapon 2
## 28300                                                                                                                                                Rushmore
## 28301                                                                                                                                     Romancing the Stone
## 28302                                                                                                                          Rocky Horror Picture Show, The
## 28303                                                                                                                                           Arachnophobia
## 28304                                                                                                                                                  Casino
## 28305                                                                                                                                                    Babe
## 28306                                                                                                                                       Santa Clause, The
## 28307                                                                                                                                             Client, The
## 28308                                                                                                                                          Lion King, The
## 28309                                                                                                                                         River Wild, The
## 28310                                                                                                            City Slickers II: The Legend of Curly's Gold
## 28311                                                                                                                                               Coneheads
## 28312                                                                                                                                          Demolition Man
## 28314                                                                                                                                    Sleepless in Seattle
## 28315                                                                                                                                                   Fargo
## 28317                                                                                                                                                 Tin Cup
## 28318                                                                                                                         Monty Python and the Holy Grail
## 28319                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 28320                                                                                                                                             Stand by Me
## 28321                                                                                                                      Indiana Jones and the Last Crusade
## 28322                                                                                                                                 When Harry Met Sally...
## 28323                                                                                                                                              Die Hard 2
## 28324                                                                                                                                         Raising Arizona
## 28325                                                                                                                                                  Scream
## 28326                                                                                                                                     Breakfast Club, The
## 28327                                                                                                                                          Child's Play 3
## 28328                                                                                                                    Indiana Jones and the Temple of Doom
## 28329                                                                                                                                     Edward Scissorhands
## 28330                                                                                                                                           Bug's Life, A
## 28331                                                                                                                            Texas Chainsaw Massacre, The
## 28332                                                                                                                Leatherface: Texas Chainsaw Massacre III
## 28333                                                         Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre)
## 28343                                                                                                                                         Beautiful Girls
## 28380                                                                                                                                     My Fellow Americans
## 28381                                                                                                                                           Mars Attacks!
## 28384                                                                                                                                                  Scream
## 28387                                                                                                                               Men in Black (a.k.a. MIB)
## 28391                                                                                                                                               Toy Story
## 28392                                                                                                                                                 Jumanji
## 28393                                                                                                                             Father of the Bride Part II
## 28394                                                                                                                                               GoldenEye
## 28396                                                                                                                                   Sense and Sensibility
## 28397                                                                                                                          Ace Ventura: When Nature Calls
## 28399                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 28400                                                                                                                                                    Babe
## 28402                                                                                                                                                Clueless
## 28403                                                                                                                                           Mortal Kombat
## 28404                                                                                                                                    Seven (a.k.a. Se7en)
## 28405                                                                                                                                              Pocahontas
## 28406                                                                                                                                     Usual Suspects, The
## 28407                                                                                                                                            Broken Arrow
## 28408                                                                                                                                           Happy Gilmore
## 28410                                                                                                                                                Bad Boys
## 28411                                                                                                                                 Basketball Diaries, The
## 28413                                                                                                                                                 Rob Roy
## 28414                                                                                                                                          Batman Forever
## 28415                                                                                                                                                  Casper
## 28416                                                                                                                                               Desperado
## 28417                                                                                                                              Die Hard: With a Vengeance
## 28418                                                                                                                                            First Knight
## 28419                                                                                                                                         Johnny Mnemonic
## 28420                                                                                                                                             Judge Dredd
## 28421                                                                                                                                                Mallrats
## 28422                                                                                                                                                Net, The
## 28423                                                                                                                                             Nine Months
## 28424                                                                                                                                              Waterworld
## 28425                                                                                                                                           Billy Madison
## 28427                                                                                                                                        Don Juan DeMarco
## 28428                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 28432                                                                                                                                            Little Women
## 28434                                                                                                                                                Outbreak
## 28436                                                                                                                                               Quiz Show
## 28437                                                                                                                                         Specialist, The
## 28438                                                                                                                                       Santa Clause, The
## 28440                                                                                                                                               Tommy Boy
## 28441                                                                                                                             What's Eating Gilbert Grape
## 28442                                                                                                                                 While You Were Sleeping
## 28443                                                                                                                                        Muriel's Wedding
## 28444                                                                                                                              Ace Ventura: Pet Detective
## 28445                                                                                                       Adventures of Priscilla, Queen of the Desert, The
## 28446                                                                                                                                             Client, The
## 28448                                                                                                                             Four Weddings and a Funeral
## 28450                                                                                                                                               Mask, The
## 28451                                                                                                                                                Maverick
## 28452                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 28453                                                                                                                                           Reality Bites
## 28454                                                                                                                                             Richie Rich
## 28456                                                                                                                                                Airheads
## 28457                                                                                                                                   Beverly Hills Cop III
## 28458                                                                                                                                               Coneheads
## 28459                                                                                                                                                    Dave
## 28460                                                                                                                                      Dazed and Confused
## 28461                                                                                                                                          Demolition Man
## 28462                                                                                                                                              Free Willy
## 28463                                                                                                                                           Fugitive, The
## 28464                                                                                                                                     In the Line of Fire
## 28465                                                                                                                                           Jurassic Park
## 28466                                                                                                                                 Man Without a Face, The
## 28467                                                                                                                                  Much Ado About Nothing
## 28468                                                                                                                                          Mrs. Doubtfire
## 28473                                                                                                                                    Sleepless in Seattle
## 28474                                                                                                                                       Super Mario Bros.
## 28476                                                                                                                                   Three Musketeers, The
## 28477                                                                                                                                            True Romance
## 28478                                                                                                                                              Home Alone
## 28479                                                                                                                                                   Ghost
## 28480                                                                                                                                                 Aladdin
## 28481                                                                                                                              Terminator 2: Judgment Day
## 28482                                                                                                                                      Dances with Wolves
## 28483                                                                                                                                                  Batman
## 28485                                                                                                                         Snow White and the Seven Dwarfs
## 28486                                                                                                                                    Beauty and the Beast
## 28487                                                                                                                                               Pinocchio
## 28488                                                                                                                                            Pretty Woman
## 28489                                                                                                                                               Jane Eyre
## 28490                                                                                                                                     Mission: Impossible
## 28491                                                                                                                                           Moll Flanders
## 28492                                                                                                                                             Dragonheart
## 28493                                                                                                                               James and the Giant Peach
## 28494                                                                                                                                               Space Jam
## 28495                                                                                                                                                 Twister
## 28496                                                                                    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 28497                                                                                                                                              Striptease
## 28499                                                                                                                           Independence Day (a.k.a. ID4)
## 28500                                                                                                                            Hunchback of Notre Dame, The
## 28501                                                                                                                                          Cable Guy, The
## 28502                                                                                                                                         Time to Kill, A
## 28503                                                                                                                                   First Wives Club, The
## 28504                                                                                                                                                 Matilda
## 28507                                                                                                                                     Singin' in the Rain
## 28508                                                                                                                                  Breakfast at Tiffany's
## 28509                                                                                                                                                 Vertigo
## 28511                                                                                                                                            My Fair Lady
## 28512                                                                                                                                           Roman Holiday
## 28513                                                                                                                                       Wizard of Oz, The
## 28514                                                                                                                                      Gone with the Wind
## 28515                                                                                                                                            Citizen Kane
## 28516                                                                                                                                     Father of the Bride
## 28517                                                                                                                           Adventures of Robin Hood, The
## 28520                                                                                                                                           Fly Away Home
## 28521                                                                                                                                         Michael Collins
## 28522                                                                                                                                              Old Yeller
## 28523                                                                                                                                        Parent Trap, The
## 28524                                                                                                                                              Cinderella
## 28525                                                                                                                                 Sword in the Stone, The
## 28527                                                                                                                                            Mary Poppins
## 28528                                                                                                                                     Alice in Wonderland
## 28530                                                                                                                                                Die Hard
## 28532                                                                                                                    William Shakespeare's Romeo + Juliet
## 28535                                                                                                                            Monty Python's Life of Brian
## 28536                                                                                                                                           Dirty Dancing
## 28538                                                                                                                                                 Platoon
## 28539                                                                                                                                          Basic Instinct
## 28540                                                                                                                                                 Top Gun
## 28542                                                                                                                               Streetcar Named Desire, A
## 28543                                                                                                                         Monty Python and the Holy Grail
## 28544                                                                                                                    Wallace & Gromit: The Wrong Trousers
## 28545                                                                                                                                          Paths of Glory
## 28547                                                                                                                         One Flew Over the Cuckoo's Nest
## 28549                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 28550                                                                                                                                                  Aliens
## 28551                                                                                      Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 28552                                                                                                                                            12 Angry Men
## 28553                                                                                                                                      Lawrence of Arabia
## 28554                                                                                                                                     Clockwork Orange, A
## 28556                                                                                                                                          Apocalypse Now
## 28557                                                                                                                                        Army of Darkness
## 28558                                                                                                                                     Blues Brothers, The
## 28561                                                                                                                                                 Amadeus
## 28564                                                                                                                                         Terminator, The
## 28567                                                                                                                                           Graduate, The
## 28568                                                                                                                           Bridge on the River Kwai, The
## 28569                                                                                                                                            Shining, The
## 28570                                                                                                                                             Stand by Me
## 28571                                                                                                                             Evil Dead II (Dead by Dawn)
## 28572                                                                                                                                       Great Escape, The
## 28573                                                                                                                                           Groundhog Day
## 28574                                                                                                                                              Unforgiven
## 28575                                                                                                                                      Back to the Future
## 28580                                                                                                                                                 Ben-Hur
## 28581                                                                                                                                  Some Kind of Wonderful
## 28582                                                                                                                      Indiana Jones and the Last Crusade
## 28584                                                                                                                                         Field of Dreams
## 28586                                                                                                                                 When Harry Met Sally...
## 28587                                                                                                                                                  Carrie
## 28588                                                                                                                                              Die Hard 2
## 28589                                                                                                                                          Batman Returns
## 28591                                                                                                                                                    Jaws
## 28592                                                                                                                                           Mars Attacks!
## 28594                                                                                                                                                  Scream
## 28595                                                                                                                               Last of the Mohicans, The
## 28599                                                                                                                                           Donnie Brasco
## 28600                                                                                                                                               Liar Liar
## 28601                                                                                                                                     Grosse Pointe Blank
## 28602                                                                                                             Austin Powers: International Man of Mystery
## 28603                                                                                                                          Lost World: Jurassic Park, The
## 28604                                                                                                                                          Batman & Robin
## 28605                                                                                                                                                Hercules
## 28606                                                                                                                                My Best Friend's Wedding
## 28607                                                                                                                                                Face/Off
## 28608                                                                                                                               Men in Black (a.k.a. MIB)
## 28609                                                                                                                                                 Contact
## 28610                                                                                                                                               G.I. Jane
## 28611                                                                                                                                       Conspiracy Theory
## 28612                                                                                                                                           Air Force One
## 28613                                                                                                                               Hunt for Red October, The
## 28614                                                                                                                                    Seven Years in Tibet
## 28616                                                                                                                         I Know What You Did Last Summer
## 28618                                                                                                                                           Boogie Nights
## 28619                                                                                                                                                 Witness
## 28622                                                                                                                                                Scream 2
## 28623                                                                                                                                                 Titanic
## 28624                                                                                                                                     Tomorrow Never Dies
## 28625                                                                                                                                       Big Lebowski, The
## 28626                                                                                                                                     Wedding Singer, The
## 28627                                                                                                                                      As Good as It Gets
## 28630                                                                                                                                                   Mulan
## 28631                                                                                                                                              Armageddon
## 28632                                                                                                                                         Lethal Weapon 4
## 28633                                                                                                                            There's Something About Mary
## 28634                                                                                                                          All Quiet on the Western Front
## 28635                                                                                                                                    Mutiny on the Bounty
## 28637                                                                                                                                  Man for All Seasons, A
## 28638                                                                                                                                                 Oliver!
## 28639                                                                                                                                                   Rocky
## 28640                                                                                                                                       Kramer vs. Kramer
## 28641                                                                                                                                           Out of Africa
## 28642                                                                                                                                       Last Emperor, The
## 28644                                                                                                                                      Driving Miss Daisy
## 28646                                                                                                                                           Lethal Weapon
## 28647                                                                                                                                         Lethal Weapon 2
## 28648                                                                                                                                         Lethal Weapon 3
## 28649                                                                                                                                                Gremlins
## 28650                                                                                                                                            Goonies, The
## 28652                                                                                                                              Back to the Future Part II
## 28653                                                                                                                             Back to the Future Part III
## 28654                                                                                                                                      Dangerous Liaisons
## 28655                                                                                                                                Godfather: Part III, The
## 28657                                                                                                                                Honey, I Shrunk the Kids
## 28658                                                                                                                                      Lady and the Tramp
## 28659                                                                                                                                     Little Mermaid, The
## 28660                                                                                                                             Muppet Christmas Carol, The
## 28661                                                                                                         101 Dalmatians (One Hundred and One Dalmatians)
## 28663                                                                                                                                         Sleeping Beauty
## 28664                                                                                                                                                  Splash
## 28665                                                                                                                                                    Tron
## 28666                                                                                                                                          Outsiders, The
## 28667                                                                                                                    Indiana Jones and the Temple of Doom
## 28668                                                                                                                             1984 (Nineteen Eighty-Four)
## 28669                                                                                                                                          Dead Zone, The
## 28671                                                                                                                               Adventures in Babysitting
## 28672                                                                                                                                           Weird Science
## 28673                                                                                                                                         Charlotte's Web
## 28674                                                                                                                                     Secret of NIMH, The
## 28675                                                                                                                                         Sixteen Candles
## 28676                                                                                                                                          Pretty in Pink
## 28677                                                                                                                                  NeverEnding Story, The
## 28678                                                                                                                                                   Blade
## 28679                                                                                                                                             Beetlejuice
## 28680                                                                                                                                                  Willow
## 28682                                                                                                                                             Simon Birch
## 28684                                                                                                                                               Rush Hour
## 28685                                                                                                                                                   Ronin
## 28686                                                                                                                                     Edward Scissorhands
## 28687                                                                                                                                                    Antz
## 28688                                                                                                                                 Night at the Roxbury, A
## 28689                                                                                                                                         My Cousin Vinny
## 28690                                                                                                                                             Mighty, The
## 28694                                                                                                                                               Elizabeth
## 28695                                                                                                                                          Big Chill, The
## 28696                                                                                                                                           Bug's Life, A
## 28697                                                                                                                   Waking Ned Devine (a.k.a. Waking Ned)
## 28698                                                                                                                      Police Academy 6: City Under Siege
## 28699                                                                                                                                    Prince of Egypt, The
## 28700                                                                                                                                     Shakespeare in Love
## 28701                                                                                                                                  Miracle on 34th Street
## 28702                                                                                                                                     Romancing the Stone
## 28703                                                                                                                                                    Clue
## 28704                                                                                                                                         Karate Kid, The
## 28705                                                                                                                                Karate Kid, Part II, The
## 28706                                                                                                                                         You've Got Mail
## 28708                                                                                                                                            Faculty, The
## 28710                                                                                                                                                Fly, The
## 28711                                                                                                                                        Crocodile Dundee
## 28712                                                                                                                                          She's All That
## 28713                                                                                                                                                 Payback
## 28714                                                                                                                                             October Sky
## 28715                                                                                                                                            Office Space
## 28716                                                                                                                                      Planet of the Apes
## 28717                                                                                                                                            Analyze This
## 28718                                                                                                                                        Cruel Intentions
## 28723                                                                                                                                       Never Been Kissed
## 28724                                                                                                                                                Election
## 28725                                                                                                                                              Entrapment
## 28726                                                                                                                                              Mummy, The
## 28727                                                                                                               Star Wars: Episode I - The Phantom Menace
## 28728                                                                                                                                                Superman
## 28729                                                                                                                                             Superman II
## 28730                                                                                                                                            Superman III
## 28731                                                                                                                          Rocky Horror Picture Show, The
## 28732                                                                                                                                            Notting Hill
## 28733                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 28735                                                                                                                                 General's Daughter, The
## 28737                                                                                                                                               Big Daddy
## 28738                                                                                                                                           Arachnophobia
## 28739                                                                                                                                          Wild Wild West
## 28740                                                                                                                                            American Pie
## 28741                                                                                                                                Blair Witch Project, The
## 28742                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 28743                                                                                                                                         Ghostbusters II
## 28744                                                                                                                                           Haunting, The
## 28745                                                                                                                                             Mystery Men
## 28746                                                                                                                                           Runaway Bride
## 28747                                                                                                                                               Spartacus
## 28748                                                                                                                                         Iron Giant, The
## 28749                                                                                                                                        Sixth Sense, The
## 28750                                                                                                                                               Airplane!
## 28751                                                                                                                                                     Big
## 28752                                                                                                                                      Christmas Story, A
## 28753                                                                                                                                       Universal Soldier
## 28756                                                                                                                                         Double Jeopardy
## 28757                                                                                                                                             Three Kings
## 28759                                                                                                                                          Risky Business
## 28761                                                                                                                                        Dirty Dozen, The
## 28762                                                                                                                          Home Alone 2: Lost in New York
## 28764                                                                                                                                Who Framed Roger Rabbit?
## 28765                                                                                                                                   House on Haunted Hill
## 28767                                                                                                                                     Bone Collector, The
## 28768                                                                                                                                            Insider, The
## 28769                                                                                                                                              Spaceballs
## 28770                                                                                                                                              Robin Hood
## 28772                                                                                                                Messenger: The Story of Joan of Arc, The
## 28773                                                                                                                                              Moonstruck
## 28776                                                                                                                                World Is Not Enough, The
## 28777                                                                                                                                                Scrooged
## 28778                                                                                                                                        Fatal Attraction
## 28779                                                                                                                                            Midnight Run
## 28780                                                                                                                                        Fisher King, The
## 28781                                                                                                                                             Toy Story 2
## 28783                                                                                                                                         Green Mile, The
## 28785                                                                                                                                       Anna and the King
## 28786                                                                                                                                              Easy Rider
## 28787                                                                                                                                            Galaxy Quest
## 28788                                                                                                                                Talented Mr. Ripley, The
## 28792                                                                                                                                              Encino Man
## 28793                                                                                                                                               Malcolm X
## 28794                                                                                                                                              Sister Act
## 28796                                                                                                                                           Wayne's World
## 28797                                                                                                                                  League of Their Own, A
## 28798                                                                                                                                           Patriot Games
## 28799                                                                                                                                          Bodyguard, The
## 28800                                                                                                                                    White Men Can't Jump
## 28801                                                                                                                                           Forever Young
## 28802                                                                                                                                                Scream 3
## 28804                                                                                                                                             Pitch Black
## 28805                                                                                                                                   Whole Nine Yards, The
## 28806                                                                                                                                         Mission to Mars
## 28807                                                                                                                                             Bull Durham
## 28808                                                                                                                                       Dog Day Afternoon
## 28809                                                                                                                                                     JFK
## 28810                                                                                                                                         Erin Brockovich
## 28811                                                                                                                                         Thelma & Louise
## 28812                                                                                                                                            Animal House
## 28813                                                                                                                                   Good Morning, Vietnam
## 28814                                                                                                                                          Romeo Must Die
## 28818                                                                                                                                              Parenthood
## 28820                                                                                                                                          Guys and Dolls
## 28821                                                                                                                                              Caddyshack
## 28825                                                                                                                                               Road Trip
## 28826                                                                                                                                  Mission: Impossible II
## 28827                                                                                                                                           Shanghai Noon
## 28828                                                                                                                                         Blazing Saddles
## 28829                                                                                                                                      Gone in 60 Seconds
## 28830                                                                                                                                              Titan A.E.
## 28831                                                                                                                                             Chicken Run
## 28832                                                                                                                                      Me, Myself & Irene
## 28833                                                                                                                                            Patriot, The
## 28834                                                                                                                                             Scary Movie
## 28837                                                                                                                                         What About Bob?
## 28838                                                                                                         Naked Gun: From the Files of Police Squad!, The
## 28839                                                                                                                 Naked Gun 2 1/2: The Smell of Fear, The
## 28840                                                                                                                                             Bring It On
## 28841                                                                                                                                              Turn It Up
## 28843                                                                                                                                     Remember the Titans
## 28844                                                                                                                                    Phantom of the Opera
## 28845                                                                                                                                        Meet the Parents
## 28846                                                                                                                                            Billy Elliot
## 28848                                                                                                                                        Charlie's Angels
## 28849                                                                                                      How the Grinch Stole Christmas (a.k.a. The Grinch)
## 28850                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 28851                                                                                                                            Planes, Trains & Automobiles
## 28854                                                                                                                                   Dude, Where's My Car?
## 28856                                                                                                                                         What Women Want
## 28858                                                                                                                                               Cast Away
## 28859                                                                                                                                       Miss Congeniality
## 28860                                                                                                                              O Brother, Where Art Thou?
## 28862                                                                                                                             Officer and a Gentleman, An
## 28863                                                                                                                                              Gettysburg
## 28864                                                                                                                                    Wedding Planner, The
## 28865                                                                                                                               Brave Little Toaster, The
## 28866                                                                                                                                       Empire of the Sun
## 28868                                                                                                                                            Mexican, The
## 28869                                                                                                                                              Navy Seals
## 28870                                                                                                                                       Death on the Nile
## 28871                                                                                                                                      Enemy at the Gates
## 28875                                                                                                                                                Scarface
## 28876                                                                                                                                      Mummy Returns, The
## 28881                                                                                                                                           City Slickers
## 28882                                                                                                                                           Eight Men Out
## 28883                                                                                                                                               Swordfish
## 28884                                                                                                                                 Lara Croft: Tomb Raider
## 28887                                                                                                                                         Crazy/Beautiful
## 28888                                                                                                                                           Scary Movie 2
## 28889                                                                                                                                     Lion in Winter, The
## 28890                                                                                                                                          Legally Blonde
## 28892                                                                                                                                                   Twins
## 28893                                                                                                                        Bill & Ted's Excellent Adventure
## 28894                                                                                                                                              Lean on Me
## 28895                                                                                                                                       Jurassic Park III
## 28896                                                                                                                                             Ghost World
## 28897                                                                                                                                      Planet of the Apes
## 28898                                                                                                                                             Rush Hour 2
## 28899                                                                                                                                          American Pie 2
## 28901                                                                                                                          Jay and Silent Bob Strike Back
## 28902                                                                                                                                          Ghosts of Mars
## 28903                                                                                                                                            Training Day
## 28904                                                                                                                                               Zoolander
## 28905                                                                                                                                             Serendipity
## 28906                                                                                                                                             Dirty Harry
## 28911                                                                                                                                                One, The
## 28912                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 28913                                                                                                                                                Spy Game
## 28915                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 28920                                                                                                                                            Gosford Park
## 28921                                                                                                                                                I Am Sam
## 28922                                                                                                                                          Monster's Ball
## 28923                                                                                                           Brotherhood of the Wolf (Pacte des loups, Le)
## 28924                                                                                                                                Kung Pow: Enter the Fist
## 28925                                                                                                                             Dragon: The Bruce Lee Story
## 28928                                                                                                                                            Mean Machine
## 28929                                                                                                                                        We Were Soldiers
## 28931                                                                                                                                           Resident Evil
## 28932                                                                                                                                                Blade II
## 28933                                                                                                                                              Panic Room
## 28934                                                                                                                                     Sweetest Thing, The
## 28935                                                                                                                                My Big Fat Greek Wedding
## 28936                                                                                                                                    Three Men and a Baby
## 28937                                                                                                                                                  Enigma
## 28939                                                                                                                                               Iron Will
## 28941                                                                                                            Star Wars: Episode II - Attack of the Clones
## 28942                                                                                                                                                Insomnia
## 28943                                                                                                                        Spirit: Stallion of the Cimarron
## 28944                                                                                                                                   Sum of All Fears, The
## 28946                                                                                                                      Dangerous Lives of Altar Boys, The
## 28947                                                                                                                                           Lilo & Stitch
## 28949                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 28950                                                                                                                                    K-19: The Widowmaker
## 28951                                                                                                                             Austin Powers in Goldmember
## 28952                                                                                                                                                   Signs
## 28953                                                                                                                                                     xXx
## 28954                                                                                                                                        Transporter, The
## 28955                                                                                                                                      Four Feathers, The
## 28957                                                                                                                                            Strange Brew
## 28958                                                                                                                                   Bowling for Columbine
## 28959                                                                                                                                               Ring, The
## 28960                                                                                                                                               Gallipoli
## 28961                                                                                                                                                  8 Mile
## 28962                                                                                                                 Harry Potter and the Chamber of Secrets
## 28963                                                                                                                                         Die Another Day
## 28964                                                                                                                                     Quiet American, The
## 28966                                                                                                                                                Drumline
## 28967                                                                                                                                           About Schmidt
## 28968                                                                                                                                                  Evelyn
## 28970                                                                                                                                       Gangs of New York
## 28971                                                                                                                                     Catch Me If You Can
## 28972                                                                                                                                              Hours, The
## 28973                                                                                                                                       Nicholas Nickleby
## 28975                                                                                                                                            Recruit, The
##       year                                                      genres userId
## 1     1995                                                       Drama      1
## 2     1941                            Animation|Children|Drama|Musical      1
## 3     1996                                                    Thriller      1
## 4     1981                            Action|Adventure|Sci-Fi|Thriller      1
## 6     1978                                                   Drama|War      1
## 7     1959                                      Action|Adventure|Drama      1
## 8     1982                                                       Drama      1
## 9     1992                             Fantasy|Horror|Romance|Thriller      1
## 10    1991                                                    Thriller      1
## 11    1979                                            Adventure|Sci-Fi      1
## 12    1996                            Adventure|Animation|Comedy|Crime      1
## 15    1980                                            Adventure|Comedy      1
## 16    1988                                    Action|Adventure|Fantasy      1
## 17    1998                 Adventure|Animation|Children|Comedy|Fantasy      1
## 18    1986                                Drama|Horror|Sci-Fi|Thriller      1
## 19    1981                             Adventure|Comedy|Fantasy|Sci-Fi      1
## 20    1974                                              Comedy|Western      1
## 26    1995                                        Comedy|Drama|Romance      2
## 27    1995                                                       Drama      2
## 29    1995                                                      Comedy      2
## 32    1995                                          Drama|Thriller|War      2
## 33    1995                                       Action|Crime|Thriller      2
## 34    1995                                        Action|Drama|Romance      2
## 35    1995                                       Action|Crime|Thriller      2
## 36    1995                                              Comedy|Romance      2
## 37    1995                                     Action|Adventure|Sci-Fi      2
## 39    1994                                                      Comedy      2
## 40    1994                                              Drama|Thriller      2
## 41    1994                                                Comedy|Drama      2
## 42    1994                                                      Comedy      2
## 47    1994                                                Comedy|Drama      2
## 49    1995                                Action|Drama|Sci-Fi|Thriller      2
## 51    1994                                                       Drama      2
## 53    1994                                        Comedy|Drama|Fantasy      2
## 54    1994                                       Comedy|Drama|Thriller      2
## 55    1995                                              Comedy|Romance      2
## 58    1994                                    Comedy|Drama|Romance|War      2
## 59    1994                                              Comedy|Romance      2
## 60    1994             Adventure|Animation|Children|Drama|Musical|IMAX      2
## 61    1994                                 Action|Comedy|Crime|Fantasy      2
## 62    1994                                               Action|Comedy      2
## 63    1994                                                Comedy|Drama      2
## 64    1994                                        Comedy|Drama|Romance      2
## 65    1994                                     Action|Romance|Thriller      2
## 66    1994                               Drama|Horror|Romance|Thriller      2
## 67    1994                                              Action|Fantasy      2
## 68    1993                                     Children|Comedy|Fantasy      2
## 70    1993                                                    Thriller      2
## 72    1993                                             Action|Thriller      2
## 74    1993                             Action|Adventure|Comedy|Fantasy      2
## 75    1993                                              Comedy|Romance      2
## 82    1993                                        Comedy|Drama|Romance      2
## 83    1994                                              Comedy|Romance      2
## 85    1993                             Action|Adventure|Comedy|Romance      2
## 87    1990                                             Children|Comedy      2
## 88    1990                       Comedy|Drama|Fantasy|Romance|Thriller      2
## 89    1992                 Adventure|Animation|Children|Comedy|Musical      2
## 93    1991                                       Crime|Horror|Thriller      2
## 94    1970                                          Animation|Children      2
## 97    1995                                  Adventure|Children|Fantasy      3
## 99    1994                                                 Crime|Drama      3
## 100   1995                                                      Comedy      3
## 103   1994                                     Children|Comedy|Fantasy      3
## 105   1994                                     Action|Romance|Thriller      3
## 106   1993                                                   Drama|War      3
## 107   1992                 Adventure|Animation|Children|Comedy|Musical      3
## 108   1989                                       Action|Crime|Thriller      3
## 109   1991                                       Crime|Horror|Thriller      3
## 110   1991             Animation|Children|Fantasy|Musical|Romance|IMAX      3
## 111   1996                           Action|Adventure|Romance|Thriller      3
## 113   1996                                Crime|Drama|Romance|Thriller      3
## 115   1983                                     Action|Adventure|Sci-Fi      3
## 117   1991                                          Comedy|Crime|Drama      3
## 119   1997                                        Action|Comedy|Sci-Fi      3
## 124   1989                                                      Horror      3
## 125   1999                                                      Comedy      3
## 126   1999                                                       Drama      3
## 127   1984                                        Action|Comedy|Sci-Fi      3
## 128   1999                                        Drama|Horror|Mystery      3
## 132   1992                                                      Comedy      3
## 135   2002                            Action|Adventure|Sci-Fi|Thriller      3
## 136   2002                                                 Documentary      3
## 137   2003                         Adventure|Animation|Children|Comedy      3
## 138   2003                              Action|Adventure|Drama|Fantasy      3
## 139   2004                                        Drama|Romance|Sci-Fi      3
## 140   2004                                                 Documentary      3
## 141   2004                                Action|Adventure|Sci-Fi|IMAX      3
## 142   2000                                            Animation|Comedy      3
## 143   2006                                 Action|Sci-Fi|Thriller|IMAX      3
## 146   2008                                     Action|Crime|Drama|IMAX      3
## 153   1995                                         Action|Crime|Sci-Fi      4
## 154   1995                                       Action|Crime|Thriller      4
## 158   1994                                      Adventure|Drama|Sci-Fi      4
## 164   1994                    Action|Adventure|Comedy|Romance|Thriller      4
## 165   1993                                     Children|Comedy|Fantasy      4
## 166   1993                                                 Crime|Drama      4
## 168   1993                                               Comedy|Sci-Fi      4
## 176   1990                                     Adventure|Drama|Western      4
## 236   1991                                       Action|Mystery|Sci-Fi      4
## 238   1986                                     Adventure|Comedy|Sci-Fi      4
## 239   1992                                                Action|Crime      4
## 244   1997                            Action|Adventure|Sci-Fi|Thriller      4
## 248   1998                                Crime|Drama|Mystery|Thriller      4
## 251   1998                                Action|Comedy|Crime|Thriller      4
## 255   1986                                   Adventure|Fantasy|Musical      4
## 259   1992                                   Action|Comedy|Crime|Drama      4
## 260   1984                                               Comedy|Horror      4
## 269   1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi      4
## 284   1982                                       Comedy|Crime|Thriller      4
## 294   1988                                    Action|Adventure|Fantasy      4
## 297   1988                                      Drama|Fantasy|Thriller      4
## 308   1990                                                Action|Crime      4
## 311   1982                                          Comedy|Documentary      4
## 317   1999                                                      Comedy      4
## 323   1992                                           Adventure|Romance      4
## 324   1985                                      Comedy|Horror|Thriller      4
## 327   1983                                     Horror|Mystery|Thriller      4
## 328   1986                                             Horror|Thriller      4
## 332   1990                                Action|Crime|Sci-Fi|Thriller      4
## 335   1982                                                      Horror      4
## 345   1993                                               Action|Comedy      4
## 349   1992                                                Comedy|Drama      4
## 351   1986                         Adventure|Animation|Children|Sci-Fi      4
## 357   1994                                            Adventure|Comedy      5
## 359   1994                                                      Comedy      5
## 367   1992                 Adventure|Animation|Children|Comedy|Musical      5
## 370   1996                               Comedy|Fantasy|Romance|Sci-Fi      5
## 371   1972                                                 Crime|Drama      5
## 372   1958                              Drama|Mystery|Romance|Thriller      5
## 376   1975                                                       Drama      5
## 377   1974                                                 Crime|Drama      5
## 381   1996                                               Drama|Romance      5
## 383   1997                            Action|Adventure|Sci-Fi|Thriller      5
## 391   1973                                              Horror|Mystery      5
## 392   1990                                Crime|Drama|Mystery|Thriller      5
## 396   1998                         Adventure|Animation|Children|Comedy      5
## 398   1999                                                Comedy|Crime      5
## 402   1999                                        Drama|Horror|Mystery      5
## 403   1999                                                      Comedy      5
## 404   1986                                                      Comedy      5
## 405   1999                                        Comedy|Drama|Fantasy      5
## 406   1999                 Adventure|Animation|Children|Comedy|Fantasy      5
## 407   1999                                      Drama|Mystery|Thriller      5
## 409   2000                                            Action|Drama|War      5
## 411   2000                                                      Comedy      5
## 414   2000                                                       Drama      5
## 416   2001         Adventure|Animation|Children|Comedy|Fantasy|Romance      5
## 417   2001                                       Drama|Musical|Romance      5
## 419   2001                                                      Comedy      5
## 420   2001                                              Crime|Thriller      5
## 422   2002                                                    Thriller      5
## 426   2002                                                 Documentary      5
## 428   2002                                           Adventure|Fantasy      5
## 430   2002                                        Comedy|Drama|Romance      5
## 434   2003                                        Comedy|Drama|Romance      5
## 438   2004                                                 Documentary      5
## 443   2005                      Adventure|Children|Comedy|Fantasy|IMAX      5
## 453   1995                                          Adventure|Children      6
## 454   1995                                         Action|Crime|Sci-Fi      6
## 463   1996                                                       Drama      6
## 464   1997                                        Comedy|Drama|Romance      6
## 465   1997                                             Action|Thriller      6
## 466   1997                                                      Comedy      6
## 467   1998                                       Drama|Sci-Fi|Thriller      6
## 468   1998                        Action|Crime|Mystery|Sci-Fi|Thriller      6
## 469   1989                                   Action|Comedy|Crime|Drama      6
## 473   1999                                                Comedy|Crime      6
## 474   1976                                     Action|Adventure|Sci-Fi      6
## 476   1999                                      Action|Sci-Fi|Thriller      6
## 477   1975                                Comedy|Horror|Musical|Sci-Fi      6
## 479   1999                                       Action|Comedy|Fantasy      6
## 481   1999                           Action|Adventure|Comedy|Drama|War      6
## 482   1999                                    Adventure|Comedy|Fantasy      6
## 484   2000                                      Horror|Sci-Fi|Thriller      6
## 485   2000                                   Animation|Children|Comedy      6
## 486   2001                                                Comedy|Drama      6
## 487   2001                             Mystery|Romance|Sci-Fi|Thriller      6
## 489   2002                                      Action|Adventure|Drama      6
## 492   2004                                      Adventure|Fantasy|IMAX      6
## 494   2004                                        Comedy|Drama|Romance      6
## 496   1995                 Adventure|Animation|Children|Comedy|Fantasy      7
## 497   1995                                   Action|Adventure|Thriller      7
## 498   1995                                       Comedy|Crime|Thriller      7
## 499   1995                                                       Drama      7
## 502   1996                                                      Comedy      7
## 507   1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller      7
## 508   1995                                               Drama|Romance      7
## 510   1994                                                Comedy|Drama      7
## 511   1994                                     Action|Adventure|Sci-Fi      7
## 513   1994                                      Adventure|Drama|Sci-Fi      7
## 514   1995                                                      Comedy      7
## 515   1994                                                Comedy|Drama      7
## 516   1994                                     Children|Comedy|Fantasy      7
## 517   1994                                    Comedy|Drama|Romance|War      7
## 518   1994                                              Comedy|Romance      7
## 519   1994             Adventure|Animation|Children|Drama|Musical|IMAX      7
## 520   1994                                 Action|Comedy|Crime|Fantasy      7
## 521   1994                                     Action|Romance|Thriller      7
## 524   1993                                                Comedy|Drama      7
## 526   1993                                        Comedy|Drama|Romance      7
## 530   1991                                               Action|Sci-Fi      7
## 532   1989                                       Action|Crime|Thriller      7
## 534   1991             Animation|Children|Fantasy|Musical|Romance|IMAX      7
## 535   1981                    Action|Adventure|Animation|Horror|Sci-Fi      7
## 537   1996                                              Comedy|Romance      7
## 539   1996                               Drama|Fantasy|Horror|Thriller      7
## 540   1996                           Action|Adventure|Romance|Thriller      7
## 541   1996                                               Action|Sci-Fi      7
## 543   1996                            Action|Adventure|Sci-Fi|Thriller      7
## 544   1996                                       Action|Drama|Thriller      7
## 546   1988                                       Action|Crime|Thriller      7
## 547   1971                             Children|Comedy|Fantasy|Musical      7
## 550   1982                                       Children|Drama|Sci-Fi      7
## 551   1975                                                Comedy|Crime      7
## 552   1981                            Action|Adventure|Sci-Fi|Thriller      7
## 556   1987                     Action|Adventure|Comedy|Fantasy|Romance      7
## 565   1985                                     Adventure|Comedy|Sci-Fi      7
## 567   1974                                              Comedy|Fantasy      7
## 570   1989                                            Action|Adventure      7
## 571   1982                                               Drama|Musical      7
## 573   1989                                              Comedy|Romance      7
## 574   1996                                        Comedy|Drama|Romance      7
## 575   1979                                            Adventure|Sci-Fi      7
## 576   1991                                       Action|Mystery|Sci-Fi      7
## 577   1989                                               Action|Sci-Fi      7
## 579   1984                                     Action|Adventure|Sci-Fi      7
## 580   1986                                     Adventure|Comedy|Sci-Fi      7
## 581   1987                                                      Comedy      7
## 583   1992                                  Action|Romance|War|Western      7
## 585   1995                                       Comedy|Drama|Thriller      8
## 589   1977                                     Action|Adventure|Sci-Fi      8
## 590   1994                                                       Drama      8
## 595   1993                                                      Comedy      8
## 596   1993                                                       Drama      8
## 602   1996                                              Drama|Thriller      8
## 604   1980                                     Action|Adventure|Sci-Fi      8
## 612   1993                                      Comedy|Fantasy|Romance      8
## 615   1989                                      Children|Drama|Fantasy      8
## 616   1996                                                       Drama      8
## 618   1996                                               Drama|Romance      8
## 620   1997                                   Action|Adventure|Thriller      8
## 621   1997                            Crime|Film-Noir|Mystery|Thriller      8
## 625   1998                                Crime|Drama|Fantasy|Thriller      8
## 627   1998                                       Drama|Sci-Fi|Thriller      8
## 630   1984                                      Comedy|Fantasy|Romance      8
## 631   1982                          Adventure|Animation|Children|Drama      8
## 636   1998                                             Action|Thriller      8
## 637   1989                                                      Comedy      8
## 640   1984                                        Action|Comedy|Sci-Fi      8
## 642   1999                                                      Comedy      8
## 644   1988                                Comedy|Drama|Fantasy|Romance      8
## 645   1983                                             Children|Comedy      8
## 646   1999                                     Horror|Mystery|Thriller      8
## 652   2000                                                       Drama      8
## 656   2000                                                       Drama      8
## 660   2001                                                Action|Drama      8
## 661   2001                 Adventure|Animation|Children|Comedy|Fantasy      8
## 662   2001                                  Adventure|Children|Fantasy      8
## 665   2001                                           Adventure|Fantasy      8
## 666   2001                                               Drama|Romance      8
## 668   2002                                Action|Adventure|Sci-Fi|IMAX      8
## 673   2002                                                 Documentary      8
## 675   2002                                                 Crime|Drama      8
## 677   2003                                                Action|Crime      8
## 680   2003                                              Drama|Thriller      8
## 681   2003                                  Action|Adventure|Drama|War      8
## 685   2004                                               Drama|Romance      8
## 688   2004                                               Comedy|Horror      8
## 689   2005                     Action|Crime|Film-Noir|Mystery|Thriller      8
## 693   2005                                              Comedy|Romance      8
## 694   2005                                              Drama|Thriller      8
## 695   2005                                       Drama|Musical|Romance      8
## 696   2005                                        Comedy|Drama|Romance      8
## 697   2006                                                       Drama      8
## 698   2006                                        Crime|Drama|Thriller      8
## 699   2006                                              Comedy|Romance      8
## 702   1995                                                       Drama      9
## 704   1995                                            Mystery|Thriller      9
## 712   1996                                   Action|Adventure|Thriller      9
## 714   1992                                               Drama|Romance      9
## 717   1996                                         Crime|Drama|Romance      9
## 718   1997                                              Comedy|Romance      9
## 723   1997                                               Drama|Romance      9
## 729   1992                                        Crime|Drama|Thriller      9
## 730   1998                                Action|Comedy|Crime|Thriller      9
## 733   1998                 Adventure|Animation|Children|Comedy|Fantasy      9
## 737   1998                                            Action|Drama|War      9
## 738   1999                                             Action|Thriller      9
## 740   1999                                                      Comedy      9
## 742   1999                                     Action|Adventure|Sci-Fi      9
## 748   1994                                                      Comedy     10
## 750   1989                                       Action|Crime|Thriller     10
## 752   1988                                       Action|Crime|Thriller     10
## 753   1992                                      Crime|Mystery|Thriller     10
## 754   1986                                              Action|Romance     10
## 761   1980                                       Action|Comedy|Musical     10
## 766   1997                                            Mystery|Thriller     10
## 767   1997                                   Action|Adventure|Thriller     10
## 769   1997                                        Action|Horror|Sci-Fi     10
## 772   1998                                    Adventure|Comedy|Western     10
## 774   1991                                              Comedy|Romance     10
## 777   1982                                                Action|Drama     10
## 781   1999                                      Horror|Sci-Fi|Thriller     10
## 782   1999                                              Drama|Thriller     10
## 784   1999                                 Action|Crime|Drama|Thriller     10
## 786   1999                                                      Comedy     10
## 788   1999                                             Horror|Thriller     10
## 789   1999                                                    Thriller     10
## 792   1996                               Action|Comedy|Horror|Thriller     11
## 794   1995                                    Adventure|Children|Drama     11
## 797   1996                                                      Comedy     11
## 802   1998                                Action|Comedy|Crime|Thriller     11
## 803   1994                                             Children|Comedy     11
## 805   1999                                        Drama|Horror|Mystery     11
## 806   1989                                                       Drama     11
## 807   2002                                                 Documentary     11
## 813   2009                                 Comedy|Crime|Drama|Thriller     11
## 817   2010                                                 Documentary     11
## 819   2010                                    Adventure|Drama|Thriller     11
## 829   1994                                                Drama|Horror     12
## 830   1993                                                       Drama     12
## 831   1993                                                       Drama     12
## 832   1996                                 Comedy|Crime|Drama|Thriller     12
## 833   1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     12
## 835   1996                                               Action|Sci-Fi     12
## 836   1964                             Children|Comedy|Fantasy|Musical     12
## 837   1951                Adventure|Animation|Children|Fantasy|Musical     12
## 838   1973                                               Comedy|Sci-Fi     12
## 839   1987                     Action|Adventure|Comedy|Fantasy|Romance     12
## 842   1977                                              Comedy|Romance     12
## 844   1988                                                       Drama     12
## 845   1982                            Action|Adventure|Sci-Fi|Thriller     12
## 847   1997                                        Comedy|Drama|Romance     12
## 848   1998                                                Comedy|Crime     12
## 849   1984                                              Comedy|Romance     12
## 850   1998                         Adventure|Animation|Children|Comedy     12
## 852   1968                                         Action|Drama|Sci-Fi     12
## 853   1982                                               Horror|Sci-Fi     12
## 855   1999                                                      Comedy     12
## 856   1999                                                       Drama     12
## 857   1999                                      Drama|Mystery|Thriller     12
## 858   1999                                                       Drama     12
## 860   2000                                                      Comedy     12
## 863   1984                                      Horror|Sci-Fi|Thriller     12
## 864   1990                                                      Comedy     12
## 865   1950                                                      Sci-Fi     12
## 866   1984                                                       Drama     12
## 868   2000                                                Comedy|Drama     12
## 870   2000                                          Animation|Children     12
## 871   1959                                               Drama|Mystery     12
## 872   1991                                                      Comedy     12
## 874   2000                              Action|Adventure|Comedy|Sci-Fi     12
## 875   2000                                              Comedy|Romance     12
## 877   1990                                               Action|Comedy     12
## 878   1989                                                       Drama     12
## 879   2000                                                      Comedy     12
## 881   1999                                     Action|Adventure|Sci-Fi     12
## 883   1991                                                      Comedy     12
## 884   1953                                               Drama|Western     12
## 885   1965                                              Comedy|Western     12
## 887   2000                                        Comedy|Drama|Romance     12
## 888   2000                                                       Drama     12
## 891   1995                                            Mystery|Thriller     13
## 894   1994                                 Comedy|Crime|Drama|Thriller     13
## 898   1993                            Action|Adventure|Sci-Fi|Thriller     13
## 899   1993                                                       Drama     13
## 902   1990                       Comedy|Drama|Fantasy|Romance|Thriller     13
## 905   1939                          Adventure|Children|Fantasy|Musical     13
## 906   1991                                             Adventure|Drama     13
## 908   1993                                      Comedy|Fantasy|Romance     13
## 909   1998                                Action|Comedy|Crime|Thriller     13
## 912   1999                                      Action|Sci-Fi|Thriller     13
## 913   1999                                              Comedy|Romance     13
## 915   1999                                        Drama|Horror|Mystery     13
## 916   1983                                             Children|Comedy     13
## 917   1999                                                       Drama     13
## 918   1986                                                      Comedy     13
## 919   1999                 Adventure|Animation|Children|Comedy|Fantasy     13
## 921   1992                                                Comedy|Drama     13
## 922   1979                           Adventure|Children|Comedy|Musical     13
## 923   2000                             Action|Adventure|Comedy|Western     13
## 926   1991                                              Comedy|Western     13
## 927   2001                                                      Comedy     13
## 929   2001                 Adventure|Animation|Children|Comedy|Fantasy     13
## 935   2007                                       Action|Crime|Thriller     13
## 942   2012                                Action|Adventure|Sci-Fi|IMAX     13
## 943   1937                    Animation|Children|Drama|Fantasy|Musical     14
## 945   1997                                               Drama|Romance     14
## 946   1978                                      Children|Comedy|Sci-Fi     14
## 947   1998                         Adventure|Animation|Children|Comedy     14
## 948   1998                                           Animation|Musical     14
## 949   1999                                     Action|Adventure|Sci-Fi     14
## 950   1999                                     Action|Adventure|Comedy     14
## 951   1984                                        Action|Comedy|Sci-Fi     14
## 952   1999                            Action|Adventure|Children|Comedy     14
## 953   1999                                              Comedy|Romance     14
## 954   1999                                                Comedy|Drama     14
## 956   1999                                     Children|Comedy|Fantasy     14
## 958   2000                                                      Sci-Fi     14
## 959   2000                                   Action|Adventure|Thriller     14
## 961   2000                                      Action|Sci-Fi|Thriller     14
## 963   1995                 Adventure|Animation|Children|Comedy|Fantasy     15
## 964   1995                                  Adventure|Children|Fantasy     15
## 967   1995                                   Action|Adventure|Thriller     15
## 968   1995                                        Comedy|Drama|Romance     15
## 969   1995                                                       Drama     15
## 970   1995                                                 Crime|Drama     15
## 971   1995                                               Drama|Romance     15
## 972   1995                                                      Comedy     15
## 974   1995                         Crime|Drama|Horror|Mystery|Thriller     15
## 975   1995                                               Drama|Romance     15
## 977   1995                                              Children|Drama     15
## 978   1995                                                 Crime|Drama     15
## 979   1995                                              Comedy|Romance     15
## 980   1995                                    Action|Adventure|Fantasy     15
## 983   1995                                        Comedy|Drama|Romance     15
## 984   1995                                                       Drama     15
## 985   1996                               Action|Comedy|Horror|Thriller     15
## 987   1996                                        Comedy|Drama|Romance     15
## 988   1996                                   Action|Adventure|Thriller     15
## 990   1996                                                      Comedy     15
## 991   1996                           Adventure|Children|Comedy|Musical     15
## 992   1995                                            Action|Drama|War     15
## 994   1995                               Action|Adventure|Comedy|Crime     15
## 996   1996                                                      Comedy     15
## 997   1995                          Action|Comedy|Crime|Drama|Thriller     15
## 999   1995                                        Adventure|Drama|IMAX     15
## 1000  1995                               Action|Adventure|Comedy|Crime     15
## 1001  1995                                                  Comedy|War     15
## 1002  1995                             Action|Adventure|Mystery|Sci-Fi     15
## 1003  1995                                          Drama|Thriller|War     15
## 1005  1995                                      Action|Romance|Western     15
## 1007  1995                                       Action|Crime|Thriller     15
## 1008  1995                             Action|Adventure|Crime|Thriller     15
## 1009  1995                                      Action|Sci-Fi|Thriller     15
## 1012  1995                                              Comedy|Romance     15
## 1013  1995                                       Action|Crime|Thriller     15
## 1014  1995                                                       Drama     15
## 1015  1995                                               Horror|Sci-Fi     15
## 1016  1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller     15
## 1017  1995                                     Action|Adventure|Sci-Fi     15
## 1018  1994                                                   Drama|War     15
## 1020  1995                                                      Comedy     15
## 1022  1994                                              Drama|Thriller     15
## 1023  1995                                              Drama|Thriller     15
## 1024  1994                                            Adventure|Comedy     15
## 1028  1995                                              Comedy|Romance     15
## 1030  1994                                                 Crime|Drama     15
## 1031  1994                                              Comedy|Romance     15
## 1032  1994                                                Drama|Horror     15
## 1034  1992                                       Drama|Fantasy|Romance     15
## 1035  1994                                       Action|Crime|Thriller     15
## 1036  1995                                Action|Drama|Sci-Fi|Thriller     15
## 1043  1994                                     Action|Adventure|Sci-Fi     15
## 1044  1994                                        Comedy|Drama|Fantasy     15
## 1045  1994                                                 Crime|Drama     15
## 1046  1995                                                Comedy|Drama     15
## 1047  1994                                      Adventure|Drama|Sci-Fi     15
## 1048  1995                                            Mystery|Thriller     15
## 1049  1995                                              Comedy|Romance     15
## 1050  1994                                                      Comedy     15
## 1051  1994                                                      Comedy     15
## 1052  1994                                 Action|Crime|Drama|Thriller     15
## 1053  1994                               Action|Crime|Fantasy|Thriller     15
## 1054  1994                                     Children|Comedy|Fantasy     15
## 1055  1994                                    Comedy|Drama|Romance|War     15
## 1056  1994                                              Comedy|Romance     15
## 1058  1994                                 Action|Comedy|Crime|Fantasy     15
## 1059  1994                                               Action|Comedy     15
## 1060  1994                                                Comedy|Drama     15
## 1061  1994                                        Comedy|Drama|Romance     15
## 1062  1992                                                    Thriller     15
## 1065  1994                               Drama|Horror|Romance|Thriller     15
## 1066  1994                                                      Comedy     15
## 1068  1993                                   Action|Adventure|Thriller     15
## 1069  1993                                               Comedy|Sci-Fi     15
## 1070  1993                                              Comedy|Romance     15
## 1072  1993                                     Action|Adventure|Sci-Fi     15
## 1073  1993                                              Drama|Thriller     15
## 1075  1993                                           Action|Comedy|War     15
## 1076  1994                                                      Comedy     15
## 1077  1993                                             Action|Thriller     15
## 1078  1993                            Action|Adventure|Sci-Fi|Thriller     15
## 1079  1993                                              Drama|Thriller     15
## 1080  1993                                                       Drama     15
## 1081  1993                             Action|Adventure|Comedy|Fantasy     15
## 1083  1993                                                Comedy|Drama     15
## 1084  1993                                                       Drama     15
## 1085  1993                                               Drama|Romance     15
## 1086  1993                                                      Comedy     15
## 1087  1993                                                       Drama     15
## 1089  1993                                                       Drama     15
## 1090  1993                                        Comedy|Drama|Romance     15
## 1091  1993                                                    Thriller     15
## 1093  1993                                     Comedy|Romance|Thriller     15
## 1095  1993                          Animation|Children|Fantasy|Musical     15
## 1097  1993                                                 Documentary     15
## 1098  1995                                                Comedy|Drama     15
## 1099  1994                                                Comedy|Drama     15
## 1100  1990                                             Children|Comedy     15
## 1101  1990                       Comedy|Drama|Fantasy|Romance|Thriller     15
## 1102  1992                 Adventure|Animation|Children|Comedy|Musical     15
## 1104  1990                                     Adventure|Drama|Western     15
## 1107  1937                    Animation|Children|Drama|Fantasy|Musical     15
## 1108  1990                                              Comedy|Romance     15
## 1110  1981                    Action|Adventure|Animation|Horror|Sci-Fi     15
## 1111  1996                                Crime|Drama|Mystery|Thriller     15
## 1112  1996                                      Action|Crime|Drama|War     15
## 1114  1996                                                      Comedy     15
## 1115  1995                                            Comedy|Drama|War     15
## 1116  1968                                     Adventure|Comedy|Sci-Fi     15
## 1117  1965                       Drama|Mystery|Romance|Sci-Fi|Thriller     15
## 1118  1996                                              Comedy|Romance     15
## 1119  1996                                  Adventure|Animation|Comedy     15
## 1120  1996                               Drama|Fantasy|Horror|Thriller     15
## 1121  1996                                   Action|Adventure|Thriller     15
## 1122  1996                           Action|Adventure|Romance|Thriller     15
## 1123  1995                                   Animation|Children|Comedy     15
## 1124  1996                                      Action|Sci-Fi|Thriller     15
## 1126  1996                                                Comedy|Crime     15
## 1128  1996                            Action|Adventure|Sci-Fi|Thriller     15
## 1129  1996                                             Comedy|Thriller     15
## 1130  1996                                                      Comedy     15
## 1131  1996                                       Action|Drama|Thriller     15
## 1132  1996                               Comedy|Fantasy|Romance|Sci-Fi     15
## 1133  1996                                      Comedy|Horror|Thriller     15
## 1135  1996                                               Drama|Romance     15
## 1137  1996                                              Comedy|Romance     15
## 1138  1996                                              Crime|Thriller     15
## 1139  1996                                   Action|Adventure|Thriller     15
## 1148  1959                                                Comedy|Crime     15
## 1152  1964                                Comedy|Drama|Musical|Romance     15
## 1153  1953                                        Comedy|Drama|Romance     15
## 1154  1939                          Adventure|Children|Fantasy|Musical     15
## 1155  1939                                           Drama|Romance|War     15
## 1156  1950                                     Drama|Film-Noir|Romance     15
## 1159  1950                                                       Drama     15
## 1160  1945                                    Mystery|Romance|Thriller     15
## 1161  1946                              Children|Drama|Fantasy|Romance     15
## 1163  1993                                                      Comedy     15
## 1164  1965                                             Musical|Romance     15
## 1167  1996                                       Action|Drama|Thriller     15
## 1168  1996                                               Drama|Romance     15
## 1170  1971                             Children|Comedy|Fantasy|Musical     15
## 1172  1967                                                 Crime|Drama     15
## 1173  1987                                       Drama|Musical|Romance     15
## 1175  1992                                      Crime|Mystery|Thriller     15
## 1176  1991                                                       Drama     15
## 1180  1990                                        Action|Drama|Romance     15
## 1181  1986                                              Action|Romance     15
## 1182  1996                                                Comedy|Drama     15
## 1184  1986                                               Drama|Mystery     15
## 1185  1975                                    Adventure|Comedy|Fantasy     15
## 1186  1996                                                 Documentary     15
## 1187  1993                             Animation|Children|Comedy|Crime     15
## 1189  1989                                                Comedy|Drama     15
## 1191  1957                                                   Drama|War     15
## 1193  1996                                           Drama|Romance|War     15
## 1195  1988                                                 Documentary     15
## 1198  1987                     Action|Adventure|Comedy|Fantasy|Romance     15
## 1200  1985                                              Fantasy|Sci-Fi     15
## 1202  1966                                    Action|Adventure|Western     15
## 1204  1962                                         Adventure|Drama|War     15
## 1206  1962                                                       Drama     15
## 1210  1987                                       Drama|Fantasy|Romance     15
## 1211  1949                                  Film-Noir|Mystery|Thriller     15
## 1212  1990                                                 Crime|Drama     15
## 1214  1993                      Action|Adventure|Comedy|Fantasy|Horror     15
## 1215  1985                                                   Drama|War     15
## 1217  1960                                                Crime|Horror     15
## 1218  1980                                       Action|Comedy|Musical     15
## 1224  1977                                              Comedy|Romance     15
## 1226  1981                                            Action|Drama|War     15
## 1228  1971                                        Comedy|Drama|Romance     15
## 1229  1984                                      Action|Sci-Fi|Thriller     15
## 1230  1990                                                Comedy|Drama     15
## 1232  1989                                                       Drama     15
## 1234  1958                                    Crime|Film-Noir|Thriller     15
## 1235  1990                               Action|Crime|Romance|Thriller     15
## 1237  1963                                               Drama|Fantasy     15
## 1239  1948                              Action|Adventure|Drama|Western     15
## 1241  1986                                             Adventure|Drama     15
## 1242  1931                                    Crime|Film-Noir|Thriller     15
## 1243  1963                                  Action|Adventure|Drama|War     15
## 1245  1981                       Action|Drama|Mystery|Romance|Thriller     15
## 1250  1970                                                   Drama|War     15
## 1251  1967                                                       Drama     15
## 1252  1991                                                       Drama     15
## 1253  1940                                            Comedy|Drama|War     15
## 1254  1952                                               Drama|Western     15
## 1255  1946                                     Crime|Film-Noir|Mystery     15
## 1256  1959                                      Action|Adventure|Drama     15
## 1259  1987                                               Drama|Romance     15
## 1263  1989                                      Children|Drama|Fantasy     15
## 1264  1975                                             Adventure|Drama     15
## 1265  1969                                              Action|Western     15
## 1267  1992                               Action|Horror|Sci-Fi|Thriller     15
## 1268  1963                                             Horror|Thriller     15
## 1269  1958                                               Horror|Sci-Fi     15
## 1270  1992                             Fantasy|Horror|Romance|Thriller     15
## 1271  1992                                             Horror|Thriller     15
## 1272  1996                            Action|Adventure|Sci-Fi|Thriller     15
## 1273  1996                                                       Drama     15
## 1274  1996                                                 Documentary     15
## 1275  1990                                   Action|Adventure|Thriller     15
## 1276  1992                                                Action|Crime     15
## 1277  1978                                      Comedy|Musical|Romance     15
## 1278  1992                                       Action|Drama|Thriller     15
## 1280  1996                                        Action|Comedy|Sci-Fi     15
## 1281  1996                                               Drama|Romance     15
## 1284  1996                            Adventure|Animation|Comedy|Crime     15
## 1289  1997                                                Comedy|Drama     15
## 1290  1997                              Action|Romance|Sci-Fi|Thriller     15
## 1291  1996                                              Drama|Thriller     15
## 1292  1996                                Comedy|Drama|Mystery|Romance     15
## 1293  1997                                                      Comedy     15
## 1294  1997                                        Comedy|Crime|Romance     15
## 1295  1996                                               Drama|Romance     15
## 1296  1997                                                      Comedy     15
## 1297  1997                                                      Comedy     15
## 1298  1997                                     Action|Adventure|Comedy     15
## 1299  1997                              Action|Adventure|Comedy|Sci-Fi     15
## 1300  1997                                                Comedy|Drama     15
## 1301  1997                            Action|Adventure|Sci-Fi|Thriller     15
## 1303  1997                                   Action|Adventure|Thriller     15
## 1304  1997                                     Action|Romance|Thriller     15
## 1305  1997                           Action|Adventure|Fantasy|Thriller     15
## 1306  1997                                              Comedy|Romance     15
## 1310  1997                                 Action|Crime|Drama|Thriller     15
## 1311  1997                              Drama|Mystery|Romance|Thriller     15
## 1312  1997                                             Action|Thriller     15
## 1313  1990                                   Action|Adventure|Thriller     15
## 1314  1997                                             Adventure|Drama     15
## 1315  1997                                         Action|Thriller|War     15
## 1320  1997                                     Horror|Mystery|Thriller     15
## 1321  1997                                      Drama|Mystery|Thriller     15
## 1322  1997                                                 Documentary     15
## 1323  1997                                       Drama|Sci-Fi|Thriller     15
## 1324  1981                                                  Comedy|War     15
## 1325  1997                                                       Drama     15
## 1327  1998                                               Drama|Romance     15
## 1328  1998                                         Comedy|Drama|Sci-Fi     15
## 1330  1997                                        Action|Horror|Sci-Fi     15
## 1331  1997                                                       Drama     15
## 1335  1997                                               Drama|Romance     15
## 1336  1997                                   Action|Adventure|Thriller     15
## 1337  1997                                        Crime|Drama|Thriller     15
## 1338  1998                                                Comedy|Crime     15
## 1339  1998                                               Drama|Romance     15
## 1340  1997                                                      Comedy     15
## 1342  1998                                       Action|Crime|Thriller     15
## 1343  1998                                                      Comedy     15
## 1344  1998                                Crime|Drama|Fantasy|Thriller     15
## 1345  1998                                              Comedy|Romance     15
## 1346  1998                                             Sci-Fi|Thriller     15
## 1347  1997                                        Comedy|Drama|Romance     15
## 1348  1998                                       Action|Crime|Thriller     15
## 1349  1998                                Crime|Drama|Mystery|Thriller     15
## 1350  1998                                                       Drama     15
## 1351  1998                                                Comedy|Drama     15
## 1352  1997                                                Comedy|Drama     15
## 1354  1998                                     Action|Adventure|Sci-Fi     15
## 1355  1997                                Crime|Drama|Mystery|Thriller     15
## 1356  1998                                                Comedy|Drama     15
## 1360  1998                                               Horror|Sci-Fi     15
## 1361  1998                                       Drama|Sci-Fi|Thriller     15
## 1362  1998                                      Action|Sci-Fi|Thriller     15
## 1364  1997                                      Drama|Mystery|Thriller     15
## 1365  1998                                        Comedy|Drama|Romance     15
## 1366  1998                                               Drama|Romance     15
## 1367  1997                                                Comedy|Drama     15
## 1368  1998                        Action|Crime|Mystery|Sci-Fi|Thriller     15
## 1370  1998                                                Comedy|Drama     15
## 1371  1998                              Action|Romance|Sci-Fi|Thriller     15
## 1375  1967                                               Drama|Mystery     15
## 1376  1969                                                       Drama     15
## 1377  1971                                       Action|Crime|Thriller     15
## 1378  1976                                                       Drama     15
## 1381  1988                                                       Drama     15
## 1382  1989                                                       Drama     15
## 1383  1971                                               Drama|Mystery     15
## 1385  1982                                             Horror|Thriller     15
## 1387  1987                                   Action|Comedy|Crime|Drama     15
## 1388  1984                                               Comedy|Horror     15
## 1391  1927                                                Drama|Sci-Fi     15
## 1392  1989                                     Adventure|Comedy|Sci-Fi     15
## 1393  1990                             Adventure|Comedy|Sci-Fi|Western     15
## 1394  1942                                    Animation|Children|Drama     15
## 1396  1988                                               Drama|Romance     15
## 1397  1997                                               Drama|Romance     15
## 1398  1998                                            Action|Drama|War     15
## 1399  1981                            Action|Adventure|Children|Comedy     15
## 1400  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     15
## 1401  1998                         Action|Crime|Drama|Mystery|Thriller     15
## 1402  1998                                                      Comedy     15
## 1404  1986                                      Drama|Mystery|Thriller     15
## 1405  1984                                      Comedy|Fantasy|Romance     15
## 1409  1991                                     Children|Comedy|Fantasy     15
## 1410  1998                               Action|Crime|Mystery|Thriller     15
## 1411  1987                                            Adventure|Comedy     15
## 1412  1985                                       Comedy|Fantasy|Sci-Fi     15
## 1413  1982                                           Adventure|Fantasy     15
## 1414  1986                                        Comedy|Drama|Romance     15
## 1415  1980                                            Adventure|Comedy     15
## 1416  1968                                       Drama|Horror|Thriller     15
## 1417  1984                                  Adventure|Children|Fantasy     15
## 1418  1998                                      Action|Horror|Thriller     15
## 1420  1951                              Crime|Drama|Film-Noir|Thriller     15
## 1422  1998                                                       Drama     15
## 1425  1989                                        Comedy|Drama|Romance     15
## 1426  1992                                        Crime|Drama|Thriller     15
## 1427  1993                                               Drama|Romance     15
## 1428  1998                                Action|Comedy|Crime|Thriller     15
## 1429  1998                                       Action|Crime|Thriller     15
## 1430  1998                                                Comedy|Drama     15
## 1431  1982                               Action|Horror|Sci-Fi|Thriller     15
## 1433  1990                                       Drama|Fantasy|Romance     15
## 1434  1998                 Adventure|Animation|Children|Comedy|Fantasy     15
## 1435  1992                                                      Comedy     15
## 1436  1975                                               Drama|Musical     15
## 1437  1984                                                      Sci-Fi     15
## 1438  1980                                                       Drama     15
## 1440  1998                                        Comedy|Drama|Fantasy     15
## 1441  1997                                    Comedy|Drama|Romance|War     15
## 1442  1998                                                 Crime|Drama     15
## 1443  1998                                                       Drama     15
## 1444  1998                                             Action|Thriller     15
## 1445  1998                                                       Drama     15
## 1446  1998                                                     Romance     15
## 1447  1957                                                       Drama     15
## 1448  1998                                             Action|Thriller     15
## 1449  1998                         Adventure|Animation|Children|Comedy     15
## 1450  1998                                                       Drama     15
## 1451  1998                                                       Drama     15
## 1452  1933                             Action|Adventure|Fantasy|Horror     15
## 1453  1985                                        Comedy|Drama|Romance     15
## 1454  1985                                        Comedy|Crime|Mystery     15
## 1455  1984                                                Comedy|Crime     15
## 1456  1998                                                Comedy|Crime     15
## 1457  1998                                        Crime|Drama|Thriller     15
## 1459  1998                                        Comedy|Drama|Romance     15
## 1460  1985                             Action|Adventure|Comedy|Romance     15
## 1461  1984                             Action|Adventure|Comedy|Romance     15
## 1462  1985                                               Comedy|Sci-Fi     15
## 1464  1998                                              Comedy|Romance     15
## 1465  1998                                            Action|Drama|War     15
## 1466  1998                                               Horror|Sci-Fi     15
## 1467  1997                                                       Drama     15
## 1468  1999                                                Comedy|Drama     15
## 1469  1986                                Drama|Horror|Sci-Fi|Thriller     15
## 1470  1986                                Crime|Drama|Mystery|Thriller     15
## 1472  1999                                             Action|Thriller     15
## 1473  1999                                                       Drama     15
## 1475  1999                                      Drama|Mystery|Thriller     15
## 1476  1976                                     Action|Adventure|Sci-Fi     15
## 1477  1999                                                      Comedy     15
## 1478  1999                                                       Drama     15
## 1479  1998                                       Comedy|Crime|Thriller     15
## 1480  1999                                             Horror|Thriller     15
## 1481  1999                                                Action|Crime     15
## 1484  1999                                                      Comedy     15
## 1485  1998                                                       Drama     15
## 1486  1998                                      Crime|Mystery|Thriller     15
## 1487  1999                                                Comedy|Crime     15
## 1488  1999                                              Comedy|Romance     15
## 1489  1998                                               Drama|Romance     15
## 1491  1999                                                      Comedy     15
## 1492  1999                                                      Comedy     15
## 1493  1999                                      Action|Sci-Fi|Thriller     15
## 1494  1999                                              Crime|Thriller     15
## 1495  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     15
## 1496  1998                                               Drama|Fantasy     15
## 1497  1999                                     Action|Adventure|Sci-Fi     15
## 1499  1931                                         Drama|Horror|Sci-Fi     15
## 1500  1975                                Comedy|Horror|Musical|Sci-Fi     15
## 1502  1998                                                       Drama     15
## 1503  1999                                     Action|Adventure|Comedy     15
## 1504  1998                                               Drama|Mystery     15
## 1505  1998                                                Action|Crime     15
## 1506  1990                                               Comedy|Horror     15
## 1507  1999                                    Animation|Comedy|Musical     15
## 1508  1999                                Action|Comedy|Sci-Fi|Western     15
## 1509  1999                                                       Drama     15
## 1510  1999                                              Comedy|Romance     15
## 1511  1999                                                    Thriller     15
## 1512  1999                                             Children|Comedy     15
## 1513  1999                                       Drama|Horror|Thriller     15
## 1515  1999                                             Horror|Thriller     15
## 1517  1989                                       Comedy|Fantasy|Sci-Fi     15
## 1518  1999                                                      Comedy     15
## 1519  1999                               Action|Horror|Sci-Fi|Thriller     15
## 1520  1999                                       Action|Comedy|Fantasy     15
## 1521  1956                                             Crime|Film-Noir     15
## 1522  1962                                               Drama|Romance     15
## 1523  1999                                                      Comedy     15
## 1524  1999                   Adventure|Animation|Children|Drama|Sci-Fi     15
## 1525  1999                                        Drama|Horror|Mystery     15
## 1526  1999                                              Action|Mystery     15
## 1527  2000                                                 Crime|Drama     15
## 1530  1983                                                      Comedy     15
## 1532  1993                        Crime|Drama|Mystery|Romance|Thriller     15
## 1533  1975                              Drama|Mystery|Romance|Thriller     15
## 1534  1999                                              Drama|Thriller     15
## 1535  1999                                     Horror|Mystery|Thriller     15
## 1538  1999                                 Action|Crime|Drama|Thriller     15
## 1541  1999                                                       Drama     15
## 1543  1983                                                      Comedy     15
## 1549  1996                                        Crime|Drama|Thriller     15
## 1552  1999                                                       Drama     15
## 1554  1987                          Action|Crime|Drama|Sci-Fi|Thriller     15
## 1556  1989                                   Action|Adventure|Thriller     15
## 1560  1999                                              Comedy|Romance     15
## 1561  1999                                                    Thriller     15
## 1563  1999                                                 Documentary     15
## 1564  1998                                                Drama|Sci-Fi     15
## 1566  1989                                                 Crime|Drama     15
## 1567  1993                                                Action|Drama     15
## 1571  1991                                    Mystery|Romance|Thriller     15
## 1572  1999                                    Adventure|Comedy|Fantasy     15
## 1574  1998                                                 Documentary     15
## 1575  1999                              Fantasy|Horror|Mystery|Romance     15
## 1576  1999                                   Action|Adventure|Thriller     15
## 1578  1948                                                       Drama     15
## 1581  1991                                                Action|Drama     15
## 1583  1999                      Action|Fantasy|Horror|Mystery|Thriller     15
## 1584  1999                 Adventure|Animation|Children|Comedy|Fantasy     15
## 1586  1999                                                Comedy|Drama     15
## 1587  1937                                                   Drama|War     15
## 1588  1999                                                      Comedy     15
## 1589  1999                                                 Crime|Drama     15
## 1590  1999                                                       Drama     15
## 1591  1999                                              Drama|Thriller     15
## 1592  1971                                                       Drama     15
## 1593  1999                                     Children|Comedy|Fantasy     15
## 1594  1999                                                       Drama     15
## 1595  1969                                             Adventure|Drama     15
## 1596  1999                                                       Drama     15
## 1597  1999                                                Comedy|Drama     15
## 1599  1999                                      Drama|Mystery|Thriller     15
## 1600  1999                                                       Drama     15
## 1601  1999                                                 Documentary     15
## 1602  1999                                                       Drama     15
## 1604  1990                                            Mystery|Thriller     15
## 1605  2000                                              Comedy|Romance     15
## 1607  1993                                                       Drama     15
## 1608  1992                                                      Comedy     15
## 1609  1992                                                Comedy|Drama     15
## 1610  1992                                 Action|Crime|Drama|Thriller     15
## 1612  1992                                Crime|Drama|Mystery|Thriller     15
## 1615  1992                               Action|Crime|Thriller|Western     15
## 1616  1992                                                 Crime|Drama     15
## 1617  2000                              Comedy|Horror|Mystery|Thriller     15
## 1618  2000                                 Action|Crime|Drama|Thriller     15
## 1619  2000                                             Adventure|Drama     15
## 1620  2000                                                      Comedy     15
## 1624  1931                                        Comedy|Drama|Romance     15
## 1625  2000                                             Action|Thriller     15
## 1627  1999                                              Drama|Thriller     15
## 1630  1991                                Comedy|Drama|Fantasy|Romance     15
## 1631  1988                                        Comedy|Drama|Romance     15
## 1632  1975                                                 Crime|Drama     15
## 1633  1991                                      Drama|Mystery|Thriller     15
## 1634  1986                               Adventure|Crime|Drama|Romance     15
## 1635  2000                                                       Drama     15
## 1637  1991                                       Adventure|Crime|Drama     15
## 1638  1978                                                      Comedy     15
## 1639  1989                                            Animation|Comedy     15
## 1640  1944                                       Crime|Drama|Film-Noir     15
## 1641  1987                                            Comedy|Drama|War     15
## 1642  1963                                    Adventure|Drama|Thriller     15
## 1643  1936                                        Comedy|Drama|Romance     15
## 1646  1995                                                Comedy|Drama     15
## 1648  2000                                                    Thriller     15
## 1649  1991                                    Adventure|Comedy|Fantasy     15
## 1650  1990                                       Drama|Horror|Thriller     15
## 1653  2000                                              Drama|Thriller     15
## 1654  2000                                               Drama|Romance     15
## 1655  1987                                      Action|Sci-Fi|Thriller     15
## 1656  2000                                                       Drama     15
## 1657  2000                               Crime|Horror|Mystery|Thriller     15
## 1659  1999                                                      Comedy     15
## 1660  1982                                                Comedy|Drama     15
## 1661  1980                                                      Comedy     15
## 1662  2000                                         Action|Thriller|War     15
## 1663  1999                                               Drama|Romance     15
## 1664  2000                                                Comedy|Drama     15
## 1667  1988                                               Drama|Romance     15
## 1668  2000                                      Action|Adventure|Drama     15
## 1669  2000                                Crime|Drama|Romance|Thriller     15
## 1671  2000                                                Comedy|Crime     15
## 1672  2000                                   Action|Adventure|Thriller     15
## 1673  2000                             Action|Adventure|Comedy|Western     15
## 1674  1999                                                      Comedy     15
## 1676  1964                                                    Thriller     15
## 1677  1977                                   Action|Adventure|Thriller     15
## 1678  1979                            Action|Adventure|Sci-Fi|Thriller     15
## 1679  1974                                   Action|Adventure|Thriller     15
## 1680  1974                                              Comedy|Western     15
## 1683  2000                                                Action|Crime     15
## 1686  1973                                                 Crime|Drama     15
## 1687  1925                                                   Drama|War     15
## 1688  2000                  Action|Adventure|Animation|Children|Sci-Fi     15
## 1689  1999                                                       Drama     15
## 1690  2000                                   Animation|Children|Comedy     15
## 1691  2000                                            Adventure|Comedy     15
## 1692  2000                                              Drama|Thriller     15
## 1693  1986                                       Action|Crime|Thriller     15
## 1694  1998                                                 Crime|Drama     15
## 1696  1999                                                      Comedy     15
## 1697  1999                                                      Comedy     15
## 1698  1966                                               Drama|Mystery     15
## 1699  2000                                     Action|Adventure|Sci-Fi     15
## 1701  2000                                        Drama|Horror|Mystery     15
## 1702  1999                                Crime|Drama|Romance|Thriller     15
## 1703  1959                                               Drama|Mystery     15
## 1704  1999                                                       Drama     15
## 1705  2000                                        Comedy|Drama|Romance     15
## 1706  2000                                      Horror|Sci-Fi|Thriller     15
## 1707  2000                              Action|Adventure|Comedy|Sci-Fi     15
## 1708  2000                                                      Comedy     15
## 1709  1999                                           Drama|Romance|War     15
## 1710  2000                                                      Comedy     15
## 1711  2000                                       Drama|Horror|Thriller     15
## 1714  2000                                                      Horror     15
## 1715  2000                         Comedy|Crime|Drama|Romance|Thriller     15
## 1716  2000                                              Crime|Thriller     15
## 1717  2000                                                       Drama     15
## 1718  2000                                               Drama|Musical     15
## 1719  2000                                                      Comedy     15
## 1721  2000                                                      Comedy     15
## 1725  2000                                       Drama|Horror|Thriller     15
## 1726  2000                                                       Drama     15
## 1727  2000                                                      Comedy     15
## 1728  2000                                                       Drama     15
## 1729  2000                                               Action|Comedy     15
## 1730  2000                                                      Comedy     15
## 1731  2000                                      Action|Sci-Fi|Thriller     15
## 1734  2000                                      Action|Sci-Fi|Thriller     15
## 1736  2000                                     Children|Comedy|Fantasy     15
## 1737  1999                                                 Documentary     15
## 1738  2000                                   Animation|Children|Comedy     15
## 1739  2000                                               Drama|Romance     15
## 1742  2000                                                       Drama     15
## 1743  2000                                            Action|Adventure     15
## 1744  1987                                   Action|Adventure|Thriller     15
## 1745  1986                         Adventure|Animation|Children|Sci-Fi     15
## 1746  1987                                                       Drama     15
## 1747  1985                                                      Comedy     15
## 1748  2000                                       Comedy|Crime|Thriller     15
## 1749  2000                                               Drama|Romance     15
## 1752  2000                                              Comedy|Romance     15
## 1753  2000                                                       Drama     15
## 1754  2000                                                    Thriller     15
## 1755  2000                                                       Drama     15
## 1756  2000                                                       Drama     15
## 1757  2000                                        Comedy|Drama|Romance     15
## 1758  2000                                                Comedy|Crime     15
## 1759  2000                                      Adventure|Comedy|Crime     15
## 1761  2000                                                      Horror     15
## 1764  2000                                                Drama|Horror     15
## 1765  1987                            Crime|Film-Noir|Mystery|Thriller     15
## 1766  2001                                        Crime|Drama|Thriller     15
## 1767  2000                                                       Drama     15
## 1771  1987                                        Comedy|Drama|Romance     15
## 1772  1984                                   Action|Comedy|Crime|Drama     15
## 1773  1987                              Action|Adventure|Comedy|Sci-Fi     15
## 1775  2001                                             Horror|Thriller     15
## 1776  2001                                              Comedy|Romance     15
## 1777  2001                                    Animation|Comedy|Fantasy     15
## 1778  2001                                               Action|Comedy     15
## 1779  2001                                                    Thriller     15
## 1780  2001                                              Comedy|Romance     15
## 1782  2001                                                   Drama|War     15
## 1783  2001                                                      Comedy     15
## 1785  2001                            Action|Adventure|Children|Comedy     15
## 1787  2001                               Action|Crime|Mystery|Thriller     15
## 1788  2001                                                 Crime|Drama     15
## 1789  2001                                        Comedy|Drama|Romance     15
## 1790  2001                            Adventure|Comedy|Mystery|Romance     15
## 1791  1983                                          Action|Crime|Drama     15
## 1792  2001                            Action|Adventure|Comedy|Thriller     15
## 1794  2001                                       Action|Comedy|Romance     15
## 1796  2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     15
## 1797  2001                                       Drama|Musical|Romance     15
## 1798  2001                                    Action|Drama|Romance|War     15
## 1799  1991                                              Comedy|Western     15
## 1801  2001                                               Comedy|Sci-Fi     15
## 1802  2001                                          Action|Crime|Drama     15
## 1803  1991                                       Action|Crime|Thriller     15
## 1805  2001                                            Action|Adventure     15
## 1806  2001                                       Action|Crime|Thriller     15
## 1807  2001                                      Adventure|Drama|Sci-Fi     15
## 1808  2001                                               Drama|Romance     15
## 1809  2000                                                 Crime|Drama     15
## 1810  2000                                               Drama|Romance     15
## 1811  2001                                                      Comedy     15
## 1812  2000                                Crime|Drama|Mystery|Thriller     15
## 1813  2001                                             Children|Comedy     15
## 1814  2001                                                      Comedy     15
## 1815  1986                                          Comedy|Crime|Drama     15
## 1817  2001                                              Comedy|Romance     15
## 1818  2001                                                Action|Drama     15
## 1819  2001                                        Crime|Drama|Thriller     15
## 1820  2001                                        Comedy|Drama|Romance     15
## 1822  1988                                              Drama|Thriller     15
## 1823  1989                                     Adventure|Comedy|Sci-Fi     15
## 1824  1989                                              Comedy|Romance     15
## 1826  2001                            Action|Adventure|Sci-Fi|Thriller     15
## 1827  2001                                              Comedy|Romance     15
## 1828  2001                                                Comedy|Drama     15
## 1829  2000                                        Comedy|Drama|Musical     15
## 1830  2001                               Action|Adventure|Drama|Sci-Fi     15
## 1831  1989                                                Action|Drama     15
## 1832  1989                               Drama|Horror|Mystery|Thriller     15
## 1833  1989                                                      Comedy     15
## 1834  1989                                               Action|Comedy     15
## 1836  1989                                                      Comedy     15
## 1837  2001                                     Children|Comedy|Romance     15
## 1838  2001                                               Action|Comedy     15
## 1841  2001        Action|Animation|Comedy|Crime|Drama|Romance|Thriller     15
## 1842  2001                               Drama|Horror|Mystery|Thriller     15
## 1843  2001                                                       Drama     15
## 1844  2001                                           Drama|Romance|War     15
## 1847  2001                                            Adventure|Comedy     15
## 1848  2000                                              Romance|Sci-Fi     15
## 1849  2001                                                      Horror     15
## 1850  2001                                        Crime|Drama|Thriller     15
## 1851  2001                                                      Comedy     15
## 1852  2001                                              Comedy|Romance     15
## 1853  2001                                        Comedy|Crime|Romance     15
## 1854  2001                      Crime|Drama|Film-Noir|Mystery|Thriller     15
## 1857  2001                                                 Crime|Drama     15
## 1859  2001                                                       Drama     15
## 1860  2001                                      Comedy|Fantasy|Romance     15
## 1861  2001                                  Adventure|Children|Fantasy     15
## 1863  2001                           Drama|Fantasy|Horror|Thriller|War     15
## 1866  2001                                            Action|Drama|War     15
## 1868  2001                                              Comedy|Romance     15
## 1869  2001                                                      Comedy     15
## 1870  2001                             Mystery|Romance|Sci-Fi|Thriller     15
## 1872  2001                                              Comedy|Romance     15
## 1874  2001                                               Drama|Romance     15
## 1875  1969                                               Drama|Romance     15
## 1876  1957                                      Drama|Mystery|Thriller     15
## 1878  2001                                        Comedy|Drama|Mystery     15
## 1879  2001                                               Drama|Romance     15
## 1880  2001                                     Action|Mystery|Thriller     15
## 1881  1970                                            Comedy|Drama|War     15
## 1882  2002                                               Drama|Romance     15
## 1884  2001                                                Comedy|Drama     15
## 1886  2001                                        Comedy|Crime|Mystery     15
## 1887  1972                                     Comedy|Mystery|Thriller     15
## 1888  2002                                              Fantasy|Horror     15
## 1890  2002                                         Action|Comedy|Crime     15
## 1891  2002                                     Action|Adventure|Sci-Fi     15
## 1892  2002                         Adventure|Animation|Children|Comedy     15
## 1893  2002                               Action|Horror|Sci-Fi|Thriller     15
## 1894  2002                                               Action|Comedy     15
## 1895  2001                                              Comedy|Romance     15
## 1896  2001                                               Drama|Romance     15
## 1897  2002                                      Action|Horror|Thriller     15
## 1898  2002                                                    Thriller     15
## 1900  1991                                              Comedy|Romance     15
## 1901  2002                                                      Comedy     15
## 1902  1950                                         Crime|Drama|Mystery     15
## 1903  2002                                              Drama|Thriller     15
## 1904  2002                                              Comedy|Romance     15
## 1905  2001                                              Comedy|Romance     15
## 1906  2002                                              Comedy|Romance     15
## 1907  1987                                                      Comedy     15
## 1908  2002                           Action|Adventure|Fantasy|Thriller     15
## 1909  2000                                              Crime|Thriller     15
## 1910  1992                                                Comedy|Drama     15
## 1911  1990                                               Drama|Romance     15
## 1912  2002                            Action|Adventure|Sci-Fi|Thriller     15
## 1913  2002                                                      Comedy     15
## 1914  2002                                              Drama|Thriller     15
## 1916  2002                                Action|Adventure|Sci-Fi|IMAX     15
## 1917  2002                         Action|Crime|Drama|Mystery|Thriller     15
## 1918  2001                                                       Drama     15
## 1919  2002                                              Drama|Thriller     15
## 1920  1972                                                Drama|Sci-Fi     15
## 1921  2002                                       Comedy|Drama|Thriller     15
## 1922  2002                                     Action|Mystery|Thriller     15
## 1923  2002                   Adventure|Children|Comedy|Fantasy|Mystery     15
## 1924  2002                         Adventure|Animation|Children|Sci-Fi     15
## 1926  2002                                              Comedy|Romance     15
## 1927  2002                                     Children|Comedy|Fantasy     15
## 1928  2002                                        Action|Comedy|Sci-Fi     15
## 1929  2002                                    Action|Adventure|Fantasy     15
## 1930  2002                                                 Crime|Drama     15
## 1932  2002                                 Action|Comedy|Horror|Sci-Fi     15
## 1933  2002                                                      Comedy     15
## 1935  2002                                      Horror|Sci-Fi|Thriller     15
## 1936  2002                                          Adventure|Children     15
## 1937  2002                                       Action|Crime|Thriller     15
## 1938  2002                                        Comedy|Drama|Musical     15
## 1940  2002                                     Adventure|Drama|Romance     15
## 1941  2002                                              Drama|Thriller     15
## 1942  1991                                   Action|Comedy|Romance|War     15
## 1943  1987                               Comedy|Crime|Romance|Thriller     15
## 1944  1984                                                      Comedy     15
## 1945  2002                                                Comedy|Drama     15
## 1946  2002                                        Comedy|Drama|Romance     15
## 1947  2001                                 Adventure|Animation|Fantasy     15
## 1948  2002                                              Comedy|Romance     15
## 1949  2002                                      Crime|Mystery|Thriller     15
## 1950  1983                                                      Comedy     15
## 1953  2002                                        Comedy|Drama|Romance     15
## 1955  2002                                               Drama|Romance     15
## 1957  2002                                              Crime|Thriller     15
## 1958  2002                                           Adventure|Fantasy     15
## 1959  2002                                   Action|Adventure|Thriller     15
## 1960  2002                                               Drama|Romance     15
## 1963  2002                                      Action|Sci-Fi|Thriller     15
## 1964  2001                                         Comedy|Drama|Horror     15
## 1965  2002                                                Comedy|Drama     15
## 1967  2002                                                 Crime|Drama     15
## 1968  2002                                                 Crime|Drama     15
## 1970  2002                                        Crime|Drama|Thriller     15
## 1971  1990                                          Comedy|Crime|Drama     15
## 1972  2002                                                 Crime|Drama     15
## 1973  2002                                  Comedy|Crime|Drama|Musical     15
## 1975  2002                                 Comedy|Crime|Drama|Thriller     15
## 1976  2002                       Action|Adventure|Crime|Drama|Thriller     15
## 1977  1993                                                      Comedy     15
## 1978  1982                                        Comedy|Drama|Romance     15
## 1979  2003                                             Action|Thriller     15
## 1980  2003                                              Comedy|Romance     15
## 1981  2003                                                Action|Crime     15
## 1982  1990                                                 Crime|Drama     15
## 1983  2003                                                      Comedy     15
## 1984  1991                                                      Comedy     15
## 1985  2002                                        Comedy|Drama|Romance     15
## 1987  2002                                              Drama|Thriller     15
## 1988  2001                            Action|Animation|Sci-Fi|Thriller     15
## 1989  2003                                                      Comedy     15
## 1990  2003                                              Comedy|Musical     15
## 1991  2001                                                 Documentary     15
## 1992  1971                                              Mystery|Sci-Fi     15
## 1994  2002                                                 Documentary     15
## 1995  2003                            Action|Adventure|Sci-Fi|Thriller     15
## 1996  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 1997  2003                                Comedy|Drama|Fantasy|Romance     15
## 1998  2003                         Adventure|Animation|Children|Comedy     15
## 1999  2003                                                Action|Crime     15
## 2000  2003                                                 Documentary     15
## 2001  2002                                                       Drama     15
## 2002  1929                                                 Documentary     15
## 2003  1991                                              Drama|Thriller     15
## 2004  1992                                              Comedy|Romance     15
## 2005  1997                                             Children|Comedy     15
## 2006  2002                                        Action|Horror|Sci-Fi     15
## 2007  2003                      Action|Adventure|Comedy|Crime|Thriller     15
## 2008  2003                                     Action|Adventure|Sci-Fi     15
## 2009  2003                                     Action|Adventure|Sci-Fi     15
## 2010  2003                             Action|Adventure|Comedy|Fantasy     15
## 2011  2003                                               Drama|Fantasy     15
## 2012  2002                                        Crime|Drama|Thriller     15
## 2013  2003                                                      Comedy     15
## 2014  2003                                     Children|Comedy|Fantasy     15
## 2015  2003                                                Comedy|Drama     15
## 2017  1949                                                Comedy|Drama     15
## 2018  2003                                          Comedy|Crime|Drama     15
## 2019  2003                                        Comedy|Drama|Romance     15
## 2020  2003                                       Action|Fantasy|Horror     15
## 2021  2003                                    Animation|Comedy|Fantasy     15
## 2022  1939                                                Comedy|Drama     15
## 2025  2000                                       Drama|Horror|Thriller     15
## 2026  2003                                              Comedy|Musical     15
## 2027  2003                                                Comedy|Drama     15
## 2028  2003                                         Crime|Drama|Mystery     15
## 2029  2003                                              Comedy|Romance     15
## 2030  2003                                       Action|Crime|Thriller     15
## 2031  2003                                        Comedy|Drama|Romance     15
## 2032  2003                                              Drama|Thriller     15
## 2033  2003                        Crime|Drama|Mystery|Romance|Thriller     15
## 2035  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2036  2003                                     Children|Comedy|Fantasy     15
## 2037  2003                                        Comedy|Drama|Romance     15
## 2039  2003                                         Adventure|Drama|War     15
## 2040  2003                        Crime|Drama|Mystery|Romance|Thriller     15
## 2042  1992                                                       Drama     15
## 2044  1991                                                Comedy|Drama     15
## 2045  1983                                       Drama|Sci-Fi|Thriller     15
## 2046  1983                                        Crime|Drama|Thriller     15
## 2047  1991                        Comedy|Drama|Mystery|Sci-Fi|Thriller     15
## 2048  1990                                Action|Comedy|Crime|Thriller     15
## 2049  1972                                               Drama|Romance     15
## 2050  1992                                               Drama|Romance     15
## 2051  1990                                                Comedy|Crime     15
## 2053  2002                                      Action|Adventure|Drama     15
## 2054  1991                                Drama|Fantasy|Mystery|Sci-Fi     15
## 2055  1935                                      Comedy|Musical|Romance     15
## 2056  2003                                  Action|Adventure|Drama|War     15
## 2057  2003                                       Drama|Fantasy|Romance     15
## 2058  2003                              Action|Adventure|Drama|Fantasy     15
## 2059  2003                                             Documentary|War     15
## 2060  2003                                           Drama|Romance|War     15
## 2061  2004                                              Comedy|Romance     15
## 2062  2003                                                Comedy|Drama     15
## 2063  2004                                       Drama|Sci-Fi|Thriller     15
## 2064  2003                                                       Drama     15
## 2065  2004                                              Comedy|Romance     15
## 2066  2004                                            Adventure|Comedy     15
## 2067  2003                                                Comedy|Drama     15
## 2068  2004                                Action|Comedy|Crime|Thriller     15
## 2069  1966                                                       Drama     15
## 2070  2004                                              Comedy|Romance     15
## 2071  2004                                                    Thriller     15
## 2073  2003                                      Drama|Mystery|Thriller     15
## 2074  2004                             Action|Adventure|Fantasy|Horror     15
## 2075  2004                                       Action|Drama|Thriller     15
## 2076  2004                                      Comedy|Fantasy|Romance     15
## 2077  2004                         Action|Crime|Drama|Mystery|Thriller     15
## 2078  2004                                                      Comedy     15
## 2079  2004                                  Action|Adventure|Drama|War     15
## 2081  1990                                                       Drama     15
## 2082  1964                                          Drama|Thriller|War     15
## 2083  1967                            Action|Adventure|Sci-Fi|Thriller     15
## 2084  1983                                   Action|Adventure|Thriller     15
## 2085  1979                                              Drama|Thriller     15
## 2086  1974                                                    Thriller     15
## 2087  1958                                            Action|Adventure     15
## 2088  2002                                                 Documentary     15
## 2090  2004         Adventure|Animation|Children|Comedy|Musical|Romance     15
## 2092  2004                                                Comedy|Drama     15
## 2093  2004                                      Adventure|Fantasy|IMAX     15
## 2094  2004                                                      Comedy     15
## 2095  2004                                    Comedy|Documentary|Drama     15
## 2096  2004                                                      Comedy     15
## 2097  2004                                        Comedy|Drama|Romance     15
## 2098  2004                                         Action|Comedy|Crime     15
## 2099  1999                                           Documentary|Drama     15
## 2100  1992                                             Documentary|War     15
## 2101  2004                                                 Documentary     15
## 2102  1987                                              Comedy|Romance     15
## 2103  2004                                Action|Adventure|Sci-Fi|IMAX     15
## 2105  2004                                                      Comedy     15
## 2106  2004                            Action|Adventure|Sci-Fi|Thriller     15
## 2107  2004                                                 Crime|Drama     15
## 2108  2004                                       Action|Crime|Thriller     15
## 2109  2004                                                    Thriller     15
## 2110  2004                                        Comedy|Drama|Romance     15
## 2111  2004                                 Action|Crime|Drama|Thriller     15
## 2112  2004                                            Adventure|Comedy     15
## 2113  2004                                     Action|Adventure|Sci-Fi     15
## 2114  2004                                               Comedy|Horror     15
## 2115  2004                                                      Comedy     15
## 2118  2003                                                 Documentary     15
## 2119  2004                                        Comedy|Drama|Romance     15
## 2121  2004                                      Drama|Mystery|Thriller     15
## 2122  2004                                     Horror|Mystery|Thriller     15
## 2123  2004                                                       Drama     15
## 2124  2004                  Action|Adventure|Animation|Children|Comedy     15
## 2125  2004                                                       Drama     15
## 2126  2004                     Action|Adventure|Drama|Mystery|Thriller     15
## 2127  2004                         Adventure|Animation|Children|Comedy     15
## 2128  2004                                Action|Comedy|Crime|Thriller     15
## 2133  1993                                                       Drama     15
## 2134  1998                                               Drama|Romance     15
## 2135  2002                                                      Comedy     15
## 2137  2003                                            Mystery|Thriller     15
## 2138  2005                                              Drama|Thriller     15
## 2140  2006                     Animation|Drama|Mystery|Sci-Fi|Thriller     15
## 2141  2004                                                       Drama     15
## 2142  2004                                                   Drama|War     15
## 2143  2004                                    Adventure|Comedy|Fantasy     15
## 2144  2004                                                       Drama     15
## 2145  2004                                                      Comedy     15
## 2146  2005                                              Comedy|Romance     15
## 2147  2005                              Action|Fantasy|Horror|Thriller     15
## 2148  2005                     Action|Crime|Film-Noir|Mystery|Thriller     15
## 2149  2005                                     Adventure|Comedy|Sci-Fi     15
## 2150  2005                                                 Documentary     15
## 2151  2004                                                 Crime|Drama     15
## 2153  2005                             Action|Adventure|Comedy|Romance     15
## 2155  2005                            Action|Adventure|Sci-Fi|Thriller     15
## 2156  2005                                                 Documentary     15
## 2157  2005                                     Action|Adventure|Sci-Fi     15
## 2158  2005                                              Comedy|Romance     15
## 2159  2005                                      Action|Sci-Fi|Thriller     15
## 2160  2005                            Action|Adventure|Sci-Fi|Thriller     15
## 2161  2005                                     Action|Adventure|Sci-Fi     15
## 2162  2005                                                 Documentary     15
## 2163  2005                                              Comedy|Romance     15
## 2164  2005                                             Horror|Thriller     15
## 2165  2005                                              Drama|Thriller     15
## 2166  2005                             Action|Crime|Drama|Thriller|War     15
## 2167  2005                                               Action|Sci-Fi     15
## 2168  2005                    Animation|Comedy|Fantasy|Musical|Romance     15
## 2169  2005                                                 Crime|Drama     15
## 2171  2005                                                Comedy|Drama     15
## 2173  2005                                              Drama|Thriller     15
## 2174  2005                             Adventure|Fantasy|Thriller|IMAX     15
## 2175  2005                                 Action|Crime|Drama|Thriller     15
## 2177  2006                                              Comedy|Romance     15
## 2178  2006                                 Action|Sci-Fi|Thriller|IMAX     15
## 2179  2006                                                Comedy|Drama     15
## 2181  2006                                      Drama|Romance|Thriller     15
## 2182  1963                                        Action|Crime|Mystery     15
## 2183  2006                                         Crime|Drama|Mystery     15
## 2184  2005                               Crime|Drama|Film-Noir|Mystery     15
## 2186  2006                                   Action|Adventure|Thriller     15
## 2187  2006                                      Drama|Mystery|Thriller     15
## 2188  2006                                      Action|Sci-Fi|Thriller     15
## 2189  2006                                   Animation|Children|Comedy     15
## 2191  2006                      Adventure|Comedy|Drama|Fantasy|Romance     15
## 2192  2006                                                Comedy|Drama     15
## 2193  2006                                    Action|Adventure|Fantasy     15
## 2194  2006                                                      Comedy     15
## 2195  2006                                                 Documentary     15
## 2196  2006                                Action|Adventure|Sci-Fi|IMAX     15
## 2197  2006                                      Adventure|Comedy|Drama     15
## 2198  2006                                              Drama|Thriller     15
## 2199  2006                                               Action|Comedy     15
## 2200  2006                                  Action|Comedy|Fantasy|IMAX     15
## 2201  2006                                Comedy|Drama|Fantasy|Romance     15
## 2202  2006                               Drama|Fantasy|Mystery|Romance     15
## 2203  2006                                           Documentary|Drama     15
## 2204  2006                                       Drama|Fantasy|Romance     15
## 2205  2006                                Comedy|Drama|Fantasy|Romance     15
## 2207  2006                                      Drama|Fantasy|Thriller     15
## 2208  2006                                        Crime|Drama|Thriller     15
## 2212  2006                                      Action|Sci-Fi|Thriller     15
## 2213  2006                                              Comedy|Romance     15
## 2214  2006                                                 Documentary     15
## 2215  2007                                    Animation|Children|Drama     15
## 2217  2007                                 Action|Comedy|Crime|Mystery     15
## 2219  2007                                     Action|Fantasy|War|IMAX     15
## 2220  2007                                              Comedy|Romance     15
## 2221  2007                             Adventure|Drama|Sci-Fi|Thriller     15
## 2222  2007                                Crime|Drama|Mystery|Thriller     15
## 2223  2007                       Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2224  2007                                        Comedy|Drama|Romance     15
## 2225  2007                                              Crime|Thriller     15
## 2226  2007                                     Action|Adventure|Sci-Fi     15
## 2227  2007                                           Documentary|Drama     15
## 2228  2007                             Action|Adventure|Crime|Thriller     15
## 2230  2007                                Adventure|Drama|Fantasy|IMAX     15
## 2231  2007                                            Animation|Comedy     15
## 2232  2007                                       Action|Crime|Thriller     15
## 2234  2007                                                      Comedy     15
## 2236  2007                                      Action|Adventure|Drama     15
## 2237  2007                                      Adventure|Comedy|Drama     15
## 2238  2007                                              Drama|Thriller     15
## 2239  2007                                             Animation|Drama     15
## 2240  2007                                        Crime|Drama|Thriller     15
## 2241  2007                                                 Crime|Drama     15
## 2242  2008                                                      Comedy     15
## 2243  2007                          Action|Horror|Sci-Fi|Thriller|IMAX     15
## 2244  2007                                        Comedy|Drama|Romance     15
## 2246  2007                                            Action|Adventure     15
## 2247  2007                                               Drama|Western     15
## 2248  2008                              Action|Mystery|Sci-Fi|Thriller     15
## 2250  2008                                 Comedy|Crime|Drama|Thriller     15
## 2251  2008                      Action|Adventure|Drama|Sci-Fi|Thriller     15
## 2252  2008                                       Action|Crime|Thriller     15
## 2254  2008                                              Comedy|Romance     15
## 2257  2008                                 Action|Crime|Drama|Thriller     15
## 2258  2006                                                       Drama     15
## 2259  2008                              Action|Adventure|Comedy|Sci-Fi     15
## 2260  2008                       Action|Animation|Children|Comedy|IMAX     15
## 2261  2008                                                      Comedy     15
## 2262  2008                                       Drama|Sci-Fi|Thriller     15
## 2263  2008                                               Action|Sci-Fi     15
## 2265  2008                                             Action|Thriller     15
## 2266  2008                       Action|Adventure|Comedy|Crime|Fantasy     15
## 2267  2008                                               Action|Comedy     15
## 2268  2007                                                 Documentary     15
## 2270  2008                                                 Documentary     15
## 2271  2008                                         Action|Comedy|Crime     15
## 2272  2008                                 Action|Adventure|Comedy|War     15
## 2273  2008                                          Comedy|Crime|Drama     15
## 2274  2008                                                      Comedy     15
## 2275  2008                                       Action|Drama|Thriller     15
## 2276  2008                                        Comedy|Drama|Romance     15
## 2278  2008                                         Crime|Drama|Romance     15
## 2279  2008                                   Action|Adventure|Thriller     15
## 2280  2008                                                      Comedy     15
## 2281  2008                  Action|Adventure|Animation|Children|Comedy     15
## 2282  2008                                                       Drama     15
## 2283  2008                                                       Drama     15
## 2284  2008                               Drama|Fantasy|Mystery|Romance     15
## 2286  2009                                         Action|Comedy|Crime     15
## 2287  2009                                  Animation|Fantasy|Thriller     15
## 2288  2008                                                Action|Drama     15
## 2289  2009                                        Comedy|Drama|Romance     15
## 2290  2009                                        Comedy|Crime|Mystery     15
## 2291  2009                                        Comedy|Drama|Romance     15
## 2292  2008                                 Comedy|Drama|Musical|Sci-Fi     15
## 2293  2009                                                      Comedy     15
## 2294  2009                                      Crime|Romance|Thriller     15
## 2295  2008                                         Documentary|Musical     15
## 2296  2009                                                Comedy|Drama     15
## 2298  2009                                            Action|Drama|War     15
## 2300  2009                               Drama|Mystery|Sci-Fi|Thriller     15
## 2301  2009                                      Action|Sci-Fi|Thriller     15
## 2302  2009                                                       Drama     15
## 2305  2009                                          Action|Comedy|IMAX     15
## 2306  2009                          Adventure|Animation|Children|Drama     15
## 2307  2009                                                Comedy|Crime     15
## 2308  2009                                        Crime|Drama|Thriller     15
## 2309  2009                                              Comedy|Romance     15
## 2310  2009                                            Adventure|Comedy     15
## 2313  2009                                Action|Adventure|Sci-Fi|IMAX     15
## 2315  2009                                        Comedy|Drama|Romance     15
## 2317  2009                           Action|Adventure|Children|Fantasy     15
## 2318  2008                                                 Documentary     15
## 2319  2009                                 Comedy|Crime|Drama|Thriller     15
## 2320  2009                             Animation|Children|Fantasy|IMAX     15
## 2321  2008                                                 Documentary     15
## 2322  2009                                                 Documentary     15
## 2323  2009                                                Comedy|Drama     15
## 2324  2009                                        Action|Comedy|Horror     15
## 2325  2009                                              Drama|Thriller     15
## 2326  2009                                               Drama|Romance     15
## 2327  2009                   Adventure|Animation|Children|Comedy|Crime     15
## 2328  2009                                Action|Drama|Sci-Fi|Thriller     15
## 2330  2009                               Action|Crime|Mystery|Thriller     15
## 2331  2009                                                 Crime|Drama     15
## 2332  2010                                      Drama|Mystery|Thriller     15
## 2334  2010                                   Action|Drama|Thriller|War     15
## 2335  2010                                                Action|Crime     15
## 2336  2010                                               Comedy|Sci-Fi     15
## 2338  2010                                               Action|Comedy     15
## 2339  2010                                       Action|Comedy|Romance     15
## 2340  2010                                                 Documentary     15
## 2341  2010                     Action|Adventure|Drama|Mystery|Thriller     15
## 2343  2010                       Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2344  2010                                                      Comedy     15
## 2345  2010                                      Action|Comedy|Thriller     15
## 2346  2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX     15
## 2348  2010                                      Action|Sci-Fi|Thriller     15
## 2350  2010                                       Action|Comedy|Romance     15
## 2351  2010                                                Comedy|Drama     15
## 2352  2010                                             Action|Thriller     15
## 2353  2010                                                      Comedy     15
## 2354  2010                                   Action|Adventure|Thriller     15
## 2355  2010                       Action|Comedy|Fantasy|Musical|Romance     15
## 2356  2010                                              Drama|Thriller     15
## 2357  2010                                                 Documentary     15
## 2358  2010                                                       Drama     15
## 2360  2010                                         Documentary|Mystery     15
## 2362  2010                                             Documentary|War     15
## 2363  2010                                                 Documentary     15
## 2364  2010                                               Action|Comedy     15
## 2365  2010                                              Drama|Thriller     15
## 2366  2010                                       Action|Drama|Thriller     15
## 2367  2010                               Action|Adventure|Fantasy|IMAX     15
## 2368  2010                                                       Drama     15
## 2369  2010      Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX     15
## 2370  2010                                                       Drama     15
## 2371  2010                                Action|Adventure|Sci-Fi|IMAX     15
## 2372  2010                                    Adventure|Comedy|Fantasy     15
## 2373  2010                                                Comedy|Drama     15
## 2374  2010                                                 Documentary     15
## 2375  2011                   Action|Comedy|Crime|Fantasy|Thriller|IMAX     15
## 2376  2011                         Action|Sci-Fi|Thriller|Western|IMAX     15
## 2378  2011                                             Sci-Fi|Thriller     15
## 2379  2011                                              Comedy|Romance     15
## 2380  2011                                        Crime|Drama|Thriller     15
## 2381  2011                                     Romance|Sci-Fi|Thriller     15
## 2384  2011                           Action|Adventure|Mystery|Thriller     15
## 2385  2011                         Action|Adventure|Drama|Fantasy|IMAX     15
## 2386  2011                            Action|Crime|Drama|Thriller|IMAX     15
## 2389  2011                                      Comedy|Fantasy|Romance     15
## 2390  2011                                                       Drama     15
## 2391  2011                                                      Comedy     15
## 2393  2011                        Action|Adventure|Sci-Fi|Thriller|War     15
## 2394  2010                                                       Drama     15
## 2395  2011                                Mystery|Sci-Fi|Thriller|IMAX     15
## 2396  2011                                     Action|Adventure|Sci-Fi     15
## 2397  2011                                                      Comedy     15
## 2399  2011                                                Comedy|Crime     15
## 2400  2011                                                 Documentary     15
## 2401  2011                 Action|Adventure|Drama|Fantasy|Mystery|IMAX     15
## 2402  2011                              Crime|Drama|Film-Noir|Thriller     15
## 2403  2011                        Action|Adventure|Sci-Fi|Thriller|War     15
## 2404  2011                                        Comedy|Drama|Romance     15
## 2405  2011                                   Animation|Children|Comedy     15
## 2407  2010                                                       Drama     15
## 2408  2011                                                 Documentary     15
## 2409  2011                                                 Documentary     15
## 2410  2011                                        Sci-Fi|Thriller|IMAX     15
## 2412  2012                                Action|Adventure|Sci-Fi|IMAX     15
## 2413  2011                                             Action|Thriller     15
## 2414  2011                                    Action|Drama|Sci-Fi|IMAX     15
## 2415  2011                                                 Documentary     15
## 2417  2011                                              Drama|Thriller     15
## 2419  2011                                       Action|Crime|Thriller     15
## 2420  2011                                      Action|Animation|Crime     15
## 2421  2011                     Adventure|Animation|Comedy|Fantasy|IMAX     15
## 2422  2011                               Action|Animation|Mystery|IMAX     15
## 2423  2011                                      Children|Drama|Mystery     15
## 2424  2011                                        Crime|Drama|Thriller     15
## 2425  2012                      Action|Adventure|Drama|Sci-Fi|Thriller     15
## 2426  2010                                        Drama|Romance|Sci-Fi     15
## 2427  2012                                 Action|Adventure|Crime|IMAX     15
## 2428  2012                        Action|Adventure|Drama|Thriller|IMAX     15
## 2429  2011              Action|Adventure|Comedy|Crime|Mystery|Thriller     15
## 2430  2011                              Action|Adventure|Thriller|IMAX     15
## 2433  2012                                 Action|Crime|Drama|Thriller     15
## 2434  2011                                                 Documentary     15
## 2435  2012                                      Action|Sci-Fi|Thriller     15
## 2436  2012                               Action|Crime|Mystery|Thriller     15
## 2437  2012                                       Action|Comedy|Romance     15
## 2438  2012                                Action|Adventure|Sci-Fi|IMAX     15
## 2439  2012                                         Action|Comedy|Crime     15
## 2440  2011                                                 Documentary     15
## 2441  2012                                                      Comedy     15
## 2442  2012                               Comedy|Horror|Sci-Fi|Thriller     15
## 2443  2012                                    Adventure|Comedy|Fantasy     15
## 2444  2012                                 Action|Sci-Fi|Thriller|IMAX     15
## 2445  2012                                          Comedy|Horror|IMAX     15
## 2447  2012                                   Action|Comedy|Sci-Fi|IMAX     15
## 2448  2012                                      Action|Adventure|Drama     15
## 2449  2012                         Adventure|Animation|Children|Comedy     15
## 2450  2012                                   Action|Horror|Sci-Fi|IMAX     15
## 2451  2012                                        Comedy|Drama|Romance     15
## 2452  2012                    Adventure|Animation|Children|Comedy|IMAX     15
## 2453  2012                         Action|Adventure|Animation|Children     15
## 2454  2012                                        Comedy|Drama|Romance     15
## 2455  2008                           Animation|Children|Comedy|Fantasy     15
## 2456  2012                                        Comedy|Drama|Romance     15
## 2457  2012                                Action|Adventure|Sci-Fi|IMAX     15
## 2458  2012                                               Drama|Fantasy     15
## 2459  2012                                      Action|Sci-Fi|Thriller     15
## 2460  2012                              Action|Adventure|Thriller|IMAX     15
## 2461  2012                                                 Documentary     15
## 2462  2012                                                 Documentary     15
## 2463  2012                                         Action|Crime|Sci-Fi     15
## 2464  2012                                                 Documentary     15
## 2465  2012                                               Action|Sci-Fi     15
## 2466  2012                                              Drama|Thriller     15
## 2467  2012                                                 Documentary     15
## 2468  2012                                                 Documentary     15
## 2469  2012                                            Animation|Comedy     15
## 2470  2012                                                       Drama     15
## 2471  2012                                        Adventure|Drama|IMAX     15
## 2472  2012                                                 Documentary     15
## 2473  2012                                                   Drama|War     15
## 2474  2012                                      Adventure|Fantasy|IMAX     15
## 2475  2012                                       Action|Drama|Thriller     15
## 2476  2013                                       Comedy|Horror|Romance     15
## 2477  2012                                       Action|Crime|Thriller     15
## 2478  2012                                        Action|Drama|Western     15
## 2479  2012                                  Drama|Musical|Romance|IMAX     15
## 2480  2012                                                 Documentary     15
## 2482  2012                                                 Documentary     15
## 2483  2013                                                      Comedy     15
## 2484  2012                                                 Documentary     15
## 2485  2013                                Crime|Drama|Mystery|Thriller     15
## 2486  2012                                                 Documentary     15
## 2488  2012                                                 Documentary     15
## 2489  2013                                               Drama|Romance     15
## 2490  2013                                                 Documentary     15
## 2491  2013                       Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2492  2013                               Action|Adventure|Fantasy|IMAX     15
## 2493  2013                                             Action|Thriller     15
## 2494  2013                                Action|Adventure|Sci-Fi|IMAX     15
## 2495  2013                                                       Drama     15
## 2496  2013                                               Action|Comedy     15
## 2497  2013                                 Action|Sci-Fi|Thriller|IMAX     15
## 2498  2013                                Action|Adventure|Sci-Fi|IMAX     15
## 2499  2012                                                Comedy|Drama     15
## 2500  2013                                Action|Adventure|Sci-Fi|IMAX     15
## 2501  2013                                      Crime|Mystery|Thriller     15
## 2502  2013                        Action|Adventure|Fantasy|Sci-Fi|IMAX     15
## 2504  2013                                    Action|Drama|Horror|IMAX     15
## 2505  2013                                    Action|Drama|Sci-Fi|IMAX     15
## 2506  2013                                         Action|Comedy|Crime     15
## 2507  2013                                Action|Comedy|Crime|Thriller     15
## 2508  2013                                                Comedy|Crime     15
## 2509  2013                                         Action|Comedy|Crime     15
## 2510  2013                                                 Documentary     15
## 2511  2012                                                 Documentary     15
## 2512  2013                                          Action|Sci-Fi|IMAX     15
## 2514  2013                               Adventure|Drama|Thriller|IMAX     15
## 2515  2013                               Action|Adventure|Fantasy|IMAX     15
## 2516  2013                                                      Comedy     15
## 2517  2013                                                 Documentary     15
## 2518  2013                                      Adventure|Fantasy|IMAX     15
## 2519  2013                                          Comedy|Crime|Drama     15
## 2520  2013                                                 Crime|Drama     15
## 2522  2013                                                      Comedy     15
## 2525  2014                                  Action|Drama|Thriller|IMAX     15
## 2526  2014                               Adventure|Romance|Sci-Fi|IMAX     15
## 2527  2014                                  Action|Fantasy|Sci-Fi|IMAX     15
## 2528  2013                                            Mystery|Thriller     15
## 2529  2014          Action|Adventure|Animation|Children|Comedy|Fantasy     15
## 2530  2014                                    Action|Crime|Sci-Fi|IMAX     15
## 2531  2013                                        Drama|Fantasy|Sci-Fi     15
## 2532  2014                                                Comedy|Drama     15
## 2533  2014                                                 Sci-Fi|IMAX     15
## 2534  2014                                       Action|Drama|War|IMAX     15
## 2535  2013                                                 Documentary     15
## 2536  2013                                      Horror|Sci-Fi|Thriller     15
## 2538  2014                                        Adventure|Drama|IMAX     15
## 2539  2014                                          Action|Sci-Fi|IMAX     15
## 2540  2014                                           Drama|Sci-Fi|IMAX     15
## 2541  2014                                              Comedy|Romance     15
## 2542  2013                                                 Documentary     15
## 2543  2014                                               Action|Sci-Fi     15
## 2544  2014                                     Action|Adventure|Sci-Fi     15
## 2550  2014                                         Action|Comedy|Crime     15
## 2551  2014                                       Action|Crime|Thriller     15
## 2552  2014                                                Comedy|Drama     15
## 2553  2014                                     Action|Adventure|Sci-Fi     15
## 2554  2014                                                       Drama     15
## 2557  2014                                                      Comedy     15
## 2559  2014                                                    Thriller     15
## 2560  2015                                     Action|Adventure|Sci-Fi     15
## 2561  2014                                     Action|Adventure|Comedy     15
## 2562  2014                                                Drama|Sci-Fi     15
## 2563  2013                               Drama|Mystery|Sci-Fi|Thriller     15
## 2564  2014                                       Action|Mystery|Sci-Fi     15
## 2567  2014                                              Comedy|Romance     15
## 2569  2014                                     Action|Animation|Comedy     15
## 2570  2015                                       Drama|Sci-Fi|Thriller     15
## 2571  2014                                                       Drama     15
## 2572  2014                                          Drama|Thriller|War     15
## 2573  2014                          Comedy|Crime|Drama|Mystery|Romance     15
## 2574  2014                                   Adventure|Sci-Fi|Thriller     15
## 2576  2014                                               Drama|Romance     15
## 2578  2014                                                 Documentary     15
## 2579  2014                                           Adventure|Fantasy     15
## 2580  2014                                               Action|Comedy     15
## 2581  2015                               Action|Adventure|Comedy|Crime     15
## 2582  2015                                             Action|Thriller     15
## 2583  2015                            Action|Adventure|Sci-Fi|Thriller     15
## 2584  2014                                                 Documentary     15
## 2586  2015                            Action|Adventure|Sci-Fi|Thriller     15
## 2587  2015                        Action|Adventure|Fantasy|Sci-Fi|IMAX     15
## 2588  2016                                    Action|Adventure|Fantasy     15
## 2589  2015                                     Action|Adventure|Sci-Fi     15
## 2590  2015                                     Action|Adventure|Sci-Fi     15
## 2591  2015                             Action|Adventure|Fantasy|Sci-Fi     15
## 2592  2016                              Action|Adventure|Comedy|Sci-Fi     15
## 2593  2016                                      Action|Sci-Fi|Thriller     15
## 2594  2016                             Action|Adventure|Fantasy|Sci-Fi     15
## 2595  2015                                      Drama|Mystery|Thriller     15
## 2596  2015                                                     Western     15
## 2597  2015                                 Action|Crime|Drama|Thriller     15
## 2598  2014                                                Comedy|Drama     15
## 2599  2015                                      Action|Sci-Fi|Thriller     15
## 2600  2015                                                Drama|Sci-Fi     15
## 2601  2015                                       Action|Crime|Thriller     15
## 2602  2015                                                Comedy|Crime     15
## 2603  2015                    Action|Adventure|Children|Mystery|Sci-Fi     15
## 2604  2015                                       Drama|Fantasy|Romance     15
## 2605  2015                                       Action|Drama|Thriller     15
## 2606  2015                                                       Drama     15
## 2607  2015                                      Adventure|Drama|Sci-Fi     15
## 2610  2015           Adventure|Animation|Children|Comedy|Drama|Fantasy     15
## 2611  2015                                            Adventure|Sci-Fi     15
## 2612  2016                                            Animation|Comedy     15
## 2613  2016                                     Action|Adventure|Sci-Fi     15
## 2614  2016                                     Action|Adventure|Sci-Fi     15
## 2615  2015                                      Action|Adventure|Crime     15
## 2616  2015                                                       Drama     15
## 2617  2016                             Action|Adventure|Fantasy|Sci-Fi     15
## 2618  2015                                                 Documentary     15
## 2619  2016                                     Adventure|Drama|Fantasy     15
## 2620  2015                                     Action|Adventure|Comedy     15
## 2621  2015                                             Adventure|Drama     15
## 2622  2015                                         Crime|Drama|Mystery     15
## 2623  2015                                                 Documentary     15
## 2624  2015                                    Animation|Comedy|Fantasy     15
## 2625  2015                                                      Comedy     15
## 2628  2015                               Action|Comedy|Sci-Fi|Thriller     15
## 2629  2015                                                Comedy|Drama     15
## 2630  2015                                                    Thriller     15
## 2631  2015                                                       Drama     15
## 2632  2015                                              Drama|Thriller     15
## 2633  2015                                                       Drama     15
## 2634  2015                         Adventure|Animation|Children|Comedy     15
## 2635  2015                                                       Drama     15
## 2636  2015                                                       Drama     15
## 2637  2015                                                      Comedy     15
## 2638  2015                                             Children|Comedy     15
## 2640  2016                                                       Drama     15
## 2641  2016                                                    Thriller     15
## 2642  2016                                       Action|Crime|Thriller     15
## 2643  2016                  Action|Adventure|Animation|Children|Comedy     15
## 2644  2016                                                      Comedy     15
## 2645  2016                              Action|Adventure|Drama|Fantasy     15
## 2646  2016                                                      Comedy     15
## 2647  2016                                              Drama|Thriller     15
## 2648  2016                                  Adventure|Animation|Comedy     15
## 2649  2016                                                      Comedy     15
## 2650  2016                                      Crime|Mystery|Thriller     15
## 2651  2016                                              Drama|Thriller     15
## 2652  2016                                      Action|Comedy|Thriller     15
## 2653  2016                                     Action|Adventure|Comedy     15
## 2654  2016                                                      Comedy     15
## 2656  2016                                       Drama|Sci-Fi|Thriller     15
## 2657  2016                                 Action|Comedy|Horror|Sci-Fi     15
## 2658  2016                                               Action|Comedy     15
## 2659  2016                                            Action|Adventure     15
## 2660  2016                                        Action|Horror|Sci-Fi     15
## 2662  2016                                                      Sci-Fi     15
## 2670  1988                                                       Drama     16
## 2672  1998                                       Action|Crime|Thriller     16
## 2675  1988                                Comedy|Drama|Fantasy|Romance     16
## 2678  2000                                               Drama|Romance     16
## 2686  2002                            Action|Adventure|Sci-Fi|Thriller     16
## 2690  2003                                       Action|Crime|Thriller     16
## 2701  1995                                      Action|Sci-Fi|Thriller     17
## 2702  1995                                       Action|Crime|Thriller     17
## 2705  1994                                                      Comedy     17
## 2707  1994                                                 Crime|Drama     17
## 2708  1977                                     Action|Adventure|Sci-Fi     17
## 2709  1994                                       Action|Crime|Thriller     17
## 2712  1993                                                       Drama     17
## 2714  1994                                                      Comedy     17
## 2715  1994                                    Comedy|Drama|Romance|War     17
## 2716  1994                                     Action|Romance|Thriller     17
## 2718  1993                            Action|Adventure|Sci-Fi|Thriller     17
## 2719  1994                                        Crime|Drama|Thriller     17
## 2724  1990                                     Adventure|Drama|Western     17
## 2726  1996                                 Comedy|Crime|Drama|Thriller     17
## 2729  1996                           Action|Adventure|Romance|Thriller     17
## 2736  1959                                                Comedy|Crime     17
## 2743  1946                                  Film-Noir|Romance|Thriller     17
## 2745  1944                                     Crime|Film-Noir|Mystery     17
## 2746  1935                                      Drama|Mystery|Thriller     17
## 2747  1988                                       Action|Crime|Thriller     17
## 2749  1988                                                Comedy|Crime     17
## 2752  1992                                                       Drama     17
## 2753  1951                                                       Drama     17
## 2755  1989                                                Comedy|Drama     17
## 2760  1983                                     Action|Adventure|Sci-Fi     17
## 2770  1984                                      Action|Sci-Fi|Thriller     17
## 2771  1992                                       Comedy|Fantasy|Horror     17
## 2776  1990                               Action|Crime|Romance|Thriller     17
## 2777  1963                                               Drama|Fantasy     17
## 2779  1987                                        Comedy|Horror|Sci-Fi     17
## 2780  1980                                                      Horror     17
## 2786  1963                                             Horror|Thriller     17
## 2788  1992                            Action|Comedy|Crime|Drama|Sci-Fi     17
## 2792  1997                                     Action|Adventure|Comedy     17
## 2793  1992                                               Horror|Sci-Fi     17
## 2794  1997                                        Action|Comedy|Sci-Fi     17
## 2795  1997                              Drama|Mystery|Romance|Thriller     17
## 2799  1997                                      Drama|Mystery|Thriller     17
## 2804  1997                                               Drama|Romance     17
## 2805  1997                                        Crime|Drama|Thriller     17
## 2808  1997                                                 Crime|Drama     17
## 2812  1998                                              Comedy|Romance     17
## 2817  1984                                            Adventure|Sci-Fi     17
## 2819  1998                                            Action|Drama|War     17
## 2823  1982                                       Comedy|Crime|Thriller     17
## 2826  1986                                       Crime|Horror|Thriller     17
## 2828  1998                                      Action|Horror|Thriller     17
## 2831  1998                                       Action|Crime|Thriller     17
## 2834  1998                                             Action|Thriller     17
## 2839  1999                                                Comedy|Crime     17
## 2840  1999                                                      Comedy     17
## 2846  1999                                               Comedy|Horror     17
## 2847  1975                                Comedy|Horror|Musical|Sci-Fi     17
## 2848  1999                                       Drama|Sci-Fi|Thriller     17
## 2850  1999                                     Action|Adventure|Comedy     17
## 2852  1999                                                    Thriller     17
## 2853  1999                                       Drama|Horror|Thriller     17
## 2854  1999                                      Drama|Mystery|Thriller     17
## 2857  1980                                                      Comedy     17
## 2859  1998                                                Action|Drama     17
## 2861  1986                                                      Comedy     17
## 2862  1996                                        Crime|Drama|Thriller     17
## 2869  1999                                                       Drama     17
## 2870  1992                                                      Comedy     17
## 2875  2000                                                       Drama     17
## 2879  1976                                                Comedy|Drama     17
## 2884  1974                                               Drama|Mystery     17
## 2887  2000                                               Comedy|Horror     17
## 2889  2000                                       Drama|Horror|Thriller     17
## 2891  2000                                               Action|Comedy     17
## 2894  2000                                      Adventure|Comedy|Crime     17
## 2897  1986                          Action|Crime|Drama|Horror|Thriller     17
## 2899  2001                                                 Crime|Drama     17
## 2900  2001                                        Comedy|Drama|Romance     17
## 2902  2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     17
## 2911  2001                 Adventure|Animation|Children|Comedy|Fantasy     17
## 2912  2001                                  Adventure|Children|Fantasy     17
## 2918  2001                                               Drama|Romance     17
## 2922  1970                                            Comedy|Drama|War     17
## 2924  2001                                            Animation|Sci-Fi     17
## 2927  2002                                      Action|Horror|Thriller     17
## 2928  2002                                                    Thriller     17
## 2929  2002                                              Comedy|Romance     17
## 2930  2001                                            Romance|Thriller     17
## 2931  2002                            Action|Adventure|Sci-Fi|Thriller     17
## 2933  2002                                     Action|Mystery|Thriller     17
## 2936  2002                                      Horror|Sci-Fi|Thriller     17
## 2937  2002                                                Action|Crime     17
## 2942  2002                                           Drama|Fantasy|War     17
## 2944  2002                                              Crime|Thriller     17
## 2945  1981                                      Horror|Sci-Fi|Thriller     17
## 2948  1994                                        Crime|Drama|Thriller     17
## 2949  2002                                      Action|Sci-Fi|Thriller     17
## 2953  2003                                             Action|Thriller     17
## 2956  2002                                Crime|Drama|Mystery|Thriller     17
## 2958  2002                                              Drama|Thriller     17
## 2959  2003                                                      Comedy     17
## 2960  2003                                     Action|Adventure|Sci-Fi     17
## 2961  2003                                              Crime|Thriller     17
## 2962  2003                               Crime|Horror|Mystery|Thriller     17
## 2963  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     17
## 2964  2003                                                Action|Crime     17
## 2965  2003                                       Action|Crime|Thriller     17
## 2967  2002                                        Action|Horror|Sci-Fi     17
## 2968  2003                      Action|Adventure|Comedy|Crime|Thriller     17
## 2971  1966                             Adventure|Comedy|Crime|Thriller     17
## 2974  2003                                          Comedy|Crime|Drama     17
## 2975  2003                                        Comedy|Drama|Romance     17
## 2979  2001                                        Drama|Fantasy|Sci-Fi     17
## 2980  1962                                                       Drama     17
## 2983  1997                                       Drama|Horror|Thriller     17
## 2984  1983                                       Drama|Sci-Fi|Thriller     17
## 2988  1955                                    Drama|Film-Noir|Thriller     17
## 2990  1990                        Crime|Drama|Mystery|Romance|Thriller     17
## 2993  1972                                              Comedy|Romance     17
## 3000  2003                                      Action|Sci-Fi|Thriller     17
## 3006  2004                         Action|Crime|Drama|Mystery|Thriller     17
## 3014  2003                               Drama|Horror|Mystery|Thriller     17
## 3015  1975                                               Action|Sci-Fi     17
## 3016  1960                                       Drama|Mystery|Romance     17
## 3018  2004         Adventure|Animation|Children|Comedy|Musical|Romance     17
## 3019  2003                                   Action|Comedy|Crime|Drama     17
## 3022  1962                                Comedy|Drama|Fantasy|Mystery     17
## 3023  2004                                                 Documentary     17
## 3024  2004                            Action|Adventure|Sci-Fi|Thriller     17
## 3025  2004                                       Action|Crime|Thriller     17
## 3026  1972                                     Comedy|Drama|Sci-Fi|War     17
## 3027  2004                                                    Thriller     17
## 3028  2004                                      Drama|Mystery|Thriller     17
## 3030  2004                                     Action|Adventure|Sci-Fi     17
## 3031  2004                                               Comedy|Horror     17
## 3033  1967                                               Comedy|Horror     17
## 3035  2004                                     Horror|Mystery|Thriller     17
## 3037  2004                                              Drama|Thriller     17
## 3038  2004                                        Action|Drama|Romance     17
## 3039  2004                                Drama|Fantasy|Romance|Sci-Fi     17
## 3041  2001                                     Horror|Mystery|Thriller     17
## 3044  2005                               Drama|Mystery|Sci-Fi|Thriller     17
## 3047  2004                                               Action|Comedy     17
## 3050  2005                                     Adventure|Comedy|Sci-Fi     17
## 3051  2005                         Adventure|Animation|Children|Comedy     17
## 3052  2003                                             Horror|Thriller     17
## 3053  2005                            Action|Adventure|Sci-Fi|Thriller     17
## 3055  1995                                                      Comedy     18
## 3057  1995                                              Comedy|Romance     18
## 3058  1995                                                      Action     18
## 3059  1995                                                       Drama     18
## 3061  1995                                                      Comedy     18
## 3064  1995                                                 Crime|Drama     18
## 3065  1995                                        Comedy|Drama|Romance     18
## 3067  1996                                               Drama|Romance     18
## 3068  1995                                      Action|Sci-Fi|Thriller     18
## 3069  1996                                              Drama|Thriller     18
## 3070  1995                                         Crime|Drama|Romance     18
## 3073  1996                                       Drama|Horror|Thriller     18
## 3074  1996                                   Action|Adventure|Thriller     18
## 3076  1996                                               Drama|Romance     18
## 3078  1977                                     Action|Adventure|Sci-Fi     18
## 3079  1994                                             Action|Thriller     18
## 3080  1996                                   Action|Adventure|Thriller     18
## 3083  1996                                              Drama|Thriller     18
## 3084  1996                           Action|Adventure|Mystery|Thriller     18
## 3086  1996                                        Crime|Drama|Thriller     18
## 3088  1996                                                      Comedy     18
## 3090  1996                           Action|Adventure|Romance|Thriller     18
## 3091  1996                                                      Comedy     18
## 3092  1996                                      Action|Sci-Fi|Thriller     18
## 3093  1996                                                Comedy|Crime     18
## 3094  1996                                                Comedy|Drama     18
## 3095  1996                            Action|Adventure|Sci-Fi|Thriller     18
## 3098  1996                               Comedy|Fantasy|Romance|Sci-Fi     18
## 3101  1996                                                      Comedy     18
## 3102  1996                                              Crime|Thriller     18
## 3104  1996                                        Comedy|Drama|Romance     18
## 3105  1996                                             Sci-Fi|Thriller     18
## 3106  1995                 Adventure|Animation|Children|Comedy|Fantasy     19
## 3107  1995                                  Adventure|Children|Fantasy     19
## 3108  1995                                              Comedy|Romance     19
## 3109  1995                                        Comedy|Drama|Romance     19
## 3110  1995                                       Action|Crime|Thriller     19
## 3111  1995                                              Comedy|Romance     19
## 3112  1995                                                      Action     19
## 3113  1995                                   Action|Adventure|Thriller     19
## 3114  1995                                        Comedy|Drama|Romance     19
## 3117  1995                                       Comedy|Crime|Thriller     19
## 3118  1995                         Crime|Drama|Horror|Mystery|Thriller     19
## 3119  1995                                       Action|Crime|Thriller     19
## 3120  1995                                               Drama|Romance     19
## 3121  1995                      Adventure|Drama|Fantasy|Mystery|Sci-Fi     19
## 3122  1995                                     Mystery|Sci-Fi|Thriller     19
## 3124  1995                                               Drama|Romance     19
## 3125  1995                                                 Crime|Drama     19
## 3126  1995                                              Comedy|Romance     19
## 3127  1995                                          Action|Crime|Drama     19
## 3128  1995                                       Comedy|Drama|Thriller     19
## 3130  1995                    Animation|Children|Drama|Musical|Romance     19
## 3132  1995                                        Comedy|Drama|Romance     19
## 3133  1995                                                       Drama     19
## 3134  1994                                        Comedy|Drama|Romance     19
## 3135  1996                                                Comedy|Crime     19
## 3136  1996                                              Comedy|Romance     19
## 3138  1996                                               Drama|Romance     19
## 3139  1995                                             Action|Thriller     19
## 3140  1996                                        Comedy|Drama|Romance     19
## 3141  1996                                   Action|Adventure|Thriller     19
## 3143  1996                              Adventure|Comedy|Crime|Romance     19
## 3144  1995                                               Drama|Romance     19
## 3145  1995                                            Action|Drama|War     19
## 3147  1995                               Action|Adventure|Comedy|Crime     19
## 3148  1992                                              Comedy|Romance     19
## 3149  1996                                                      Comedy     19
## 3150  1996                                                      Comedy     19
## 3152  1995                                        Adventure|Drama|IMAX     19
## 3153  1995                               Action|Adventure|Comedy|Crime     19
## 3158  1995                                       Action|Crime|Thriller     19
## 3159  1995                                          Comedy|Crime|Drama     19
## 3160  1995                                      Action|Sci-Fi|Thriller     19
## 3162  1995                                                      Horror     19
## 3163  1995                                               Drama|Romance     19
## 3164  1995                                              Comedy|Romance     19
## 3166  1995                                               Horror|Sci-Fi     19
## 3167  1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller     19
## 3168  1995                                               Drama|Romance     19
## 3169  1995                                                 Documentary     19
## 3170  1995                                     Action|Adventure|Sci-Fi     19
## 3171  1995                                                       Drama     19
## 3172  1995                                               Drama|Romance     19
## 3176  1994                                            Adventure|Comedy     19
## 3177  1994                                                Comedy|Drama     19
## 3180  1994                                               Drama|Romance     19
## 3181  1994                                                Drama|Horror     19
## 3185  1994                                   Drama|Romance|War|Western     19
## 3186  1993                                                       Drama     19
## 3187  1994                                              Comedy|Romance     19
## 3188  1994                                        Comedy|Drama|Romance     19
## 3189  1995                                                 Crime|Drama     19
## 3194  1994                                                       Drama     19
## 3198  1994                                     Action|Adventure|Sci-Fi     19
## 3202  1994                                      Adventure|Drama|Sci-Fi     19
## 3203  1995                                               Horror|Sci-Fi     19
## 3204  1995                                                      Comedy     19
## 3206  1993                                                       Drama     19
## 3208  1994                                         Adventure|Drama|War     19
## 3209  1994                                                      Comedy     19
## 3210  1994                                                Comedy|Drama     19
## 3211  1993                                               Drama|Musical     19
## 3213  1994                                 Action|Crime|Drama|Thriller     19
## 3214  1994                                      Drama|Mystery|Thriller     19
## 3215  1994                               Action|Crime|Fantasy|Thriller     19
## 3216  1994                                                       Drama     19
## 3220  1994             Adventure|Animation|Children|Drama|Musical|IMAX     19
## 3221  1993                                                       Drama     19
## 3222  1994                               Drama|Horror|Mystery|Thriller     19
## 3223  1994                                 Action|Comedy|Crime|Fantasy     19
## 3224  1994                                                       Drama     19
## 3225  1994                                                Comedy|Drama     19
## 3226  1994                                        Comedy|Drama|Romance     19
## 3228  1994                                             Action|Thriller     19
## 3229  1994                                     Action|Romance|Thriller     19
## 3230  1994                                      Action|Sci-Fi|Thriller     19
## 3231  1994                    Action|Adventure|Comedy|Romance|Thriller     19
## 3232  1994                               Drama|Horror|Romance|Thriller     19
## 3233  1994                                                     Western     19
## 3234  1995                                             Horror|Thriller     19
## 3235  1993                                                       Drama     19
## 3236  1994                                             Action|Thriller     19
## 3237  1993                                                       Drama     19
## 3240  1993                                   Action|Adventure|Thriller     19
## 3241  1993                                              Comedy|Romance     19
## 3242  1993                                                      Comedy     19
## 3243  1993                                                      Comedy     19
## 3244  1993                                                       Drama     19
## 3245  1994                                                Comedy|Drama     19
## 3246  1993                                       Drama|Mystery|Romance     19
## 3247  1993                                              Drama|Thriller     19
## 3253  1994                                                      Comedy     19
## 3254  1993                                             Action|Thriller     19
## 3255  1993                                                       Drama     19
## 3256  1993                                       Action|Crime|Thriller     19
## 3258  1993                                              Drama|Thriller     19
## 3259  1994                                        Crime|Drama|Thriller     19
## 3260  1993                             Action|Adventure|Comedy|Fantasy     19
## 3261  1993                                                       Drama     19
## 3263  1996                                   Action|Adventure|Thriller     19
## 3264  1993                                                Comedy|Drama     19
## 3266  1994                                         Action|Drama|Sci-Fi     19
## 3267  1993                                        Crime|Drama|Thriller     19
## 3268  1993                                                       Drama     19
## 3270  1994                                      Comedy|Mystery|Romance     19
## 3272  1993                                        Action|Drama|Mystery     19
## 3273  1993                          Action|Crime|Drama|Sci-Fi|Thriller     19
## 3274  1993                                                      Comedy     19
## 3275  1992                                                Action|Drama     19
## 3277  1993                                                       Drama     19
## 3281  1994                                                       Drama     19
## 3284  1994                                              Comedy|Romance     19
## 3286  1993                                              Crime|Thriller     19
## 3287  1995                                                Comedy|Drama     19
## 3288  1994                                                       Drama     19
## 3289  1990                                             Children|Comedy     19
## 3290  1992                 Adventure|Animation|Children|Comedy|Musical     19
## 3291  1991                                               Action|Sci-Fi     19
## 3292  1990                                     Adventure|Drama|Western     19
## 3294  1991                                       Crime|Horror|Thriller     19
## 3298  1990                                              Comedy|Romance     19
## 3302  1996                                                      Comedy     19
## 3303  1996                                Crime|Drama|Mystery|Thriller     19
## 3304  1996                           Action|Adventure|Mystery|Thriller     19
## 3305  1996                                    Action|Adventure|Fantasy     19
## 3307  1996                                                    Thriller     19
## 3310  1996                                                       Drama     19
## 3311  1996                               Drama|Fantasy|Horror|Thriller     19
## 3312  1996                                   Action|Adventure|Thriller     19
## 3313  1996                           Action|Adventure|Romance|Thriller     19
## 3314  1996                                      Action|Sci-Fi|Thriller     19
## 3316  1996                            Action|Adventure|Sci-Fi|Thriller     19
## 3317  1996                                             Comedy|Thriller     19
## 3318  1996                                                      Comedy     19
## 3319  1996                                       Action|Drama|Thriller     19
## 3320  1996                               Comedy|Fantasy|Romance|Sci-Fi     19
## 3321  1996                                      Comedy|Horror|Thriller     19
## 3322  1996                                       Drama|Mystery|Western     19
## 3323  1996                                               Drama|Romance     19
## 3324  1996                                              Drama|Thriller     19
## 3326  1996                                             Sci-Fi|Thriller     19
## 3327  1995                                             Horror|Thriller     19
## 3329  1961                                               Drama|Romance     19
## 3334  1942                                               Drama|Romance     19
## 3336  1964                                Comedy|Drama|Musical|Romance     19
## 3346  1945                                    Mystery|Romance|Thriller     19
## 3347  1955                              Crime|Mystery|Romance|Thriller     19
## 3359  1961                                     Children|Comedy|Romance     19
## 3363  1964                             Children|Comedy|Fantasy|Musical     19
## 3368  1996                                                Comedy|Drama     19
## 3370  1996                                                    Thriller     19
## 3372  1973                                               Comedy|Sci-Fi     19
## 3374  1979                                                      Comedy     19
## 3375  1972                                                       Drama     19
## 3378  1987                                       Drama|Musical|Romance     19
## 3381  1989                                                      Comedy     19
## 3382  1992                                      Crime|Mystery|Thriller     19
## 3383  1991                                                       Drama     19
## 3387  1986                                              Action|Romance     19
## 3390  1981                                                       Drama     19
## 3391  1991                                              Comedy|Fantasy     19
## 3392  1989                            Action|Adventure|Sci-Fi|Thriller     19
## 3394  1981                            Action|Adventure|Sci-Fi|Thriller     19
## 3398  1979                                                   Drama|War     19
## 3399  1992                                                      Comedy     19
## 3400  1991                                        Comedy|Drama|Romance     19
## 3404  1996                                           Drama|Romance|War     19
## 3408  1987                     Action|Adventure|Comedy|Fantasy|Romance     19
## 3424  1988                                     Adventure|Drama|Romance     19
## 3432  1984                                                 Crime|Drama     19
## 3442  1989                                                       Drama     19
## 3443  1967                                        Comedy|Drama|Romance     19
## 3452  1986                                             Adventure|Drama     19
## 3460  1990                                                Comedy|Drama     19
## 3463  1991                                          Comedy|Crime|Drama     19
## 3464  1970                                                   Drama|War     19
## 3466  1986                                    Action|Adventure|Fantasy     19
## 3472  1989                                                      Comedy     19
## 3476  1987                                               Drama|Romance     19
## 3477  1989                                            Action|Adventure     19
## 3480  1982                                               Drama|Musical     19
## 3482  1989                                      Children|Drama|Fantasy     19
## 3483  1969                                              Action|Western     19
## 3484  1991                                      Adventure|Drama|Sci-Fi     19
## 3485  1989                                              Comedy|Romance     19
## 3486  1992                               Action|Horror|Sci-Fi|Thriller     19
## 3487  1981                                      Comedy|Horror|Thriller     19
## 3488  1979                               Drama|Horror|Mystery|Thriller     19
## 3489  1987                                             Horror|Thriller     19
## 3491  1958                                               Horror|Sci-Fi     19
## 3492  1991                                             Horror|Thriller     19
## 3493  1992                             Fantasy|Horror|Romance|Thriller     19
## 3494  1992                                             Horror|Thriller     19
## 3498  1984                                             Horror|Thriller     19
## 3500  1976                                     Horror|Mystery|Thriller     19
## 3502  1996                            Action|Adventure|Sci-Fi|Thriller     19
## 3506  1991                                       Action|Mystery|Sci-Fi     19
## 3507  1989                                               Action|Sci-Fi     19
## 3508  1982                            Action|Adventure|Sci-Fi|Thriller     19
## 3510  1986                                     Adventure|Comedy|Sci-Fi     19
## 3511  1992                                                Action|Crime     19
## 3512  1988                                       Action|Comedy|Western     19
## 3513  1978                                      Comedy|Musical|Romance     19
## 3514  1982                                      Comedy|Musical|Romance     19
## 3515  1990                                                Action|Drama     19
## 3516  1992                                       Action|Drama|Thriller     19
## 3518  1978                                             Horror|Thriller     19
## 3519  1983                                               Action|Horror     19
## 3520  1996                                        Action|Comedy|Sci-Fi     19
## 3521  1996                                               Drama|Romance     19
## 3523  1992                            Action|Comedy|Crime|Drama|Sci-Fi     19
## 3524  1996                            Adventure|Animation|Comedy|Crime     19
## 3525  1992                                  Action|Romance|War|Western     19
## 3526  1993                                              Comedy|Romance     19
## 3527  1954                                      Action|Adventure|Drama     19
## 3529  1995                 Adventure|Animation|Children|Comedy|Fantasy     20
## 3530  1995                                     Mystery|Sci-Fi|Thriller     20
## 3531  1995                                              Children|Drama     20
## 3532  1996                           Adventure|Children|Comedy|Musical     20
## 3533  1995                                            Action|Drama|War     20
## 3534  1995                                        Adventure|Drama|IMAX     20
## 3536  1995                                               Drama|Romance     20
## 3537  1994                                            Adventure|Comedy     20
## 3538  1977                                     Action|Adventure|Sci-Fi     20
## 3539  1994                                 Comedy|Crime|Drama|Thriller     20
## 3540  1994                                     Action|Adventure|Sci-Fi     20
## 3542  1994                                                      Comedy     20
## 3543  1994                                    Comedy|Drama|Romance|War     20
## 3544  1994             Adventure|Animation|Children|Drama|Musical|IMAX     20
## 3545  1994                                 Action|Comedy|Crime|Fantasy     20
## 3548  1993                            Action|Adventure|Sci-Fi|Thriller     20
## 3550  1993                                                Comedy|Drama     20
## 3551  1993                                                   Drama|War     20
## 3552  1992                 Adventure|Animation|Children|Comedy|Musical     20
## 3553  1990                                     Adventure|Drama|Western     20
## 3555  1991                                       Crime|Horror|Thriller     20
## 3558  1996                                 Comedy|Crime|Drama|Thriller     20
## 3561  1996                           Action|Adventure|Romance|Thriller     20
## 3565  1972                                                 Crime|Drama     20
## 3566  1954                                            Mystery|Thriller     20
## 3567  1934                                              Comedy|Romance     20
## 3568  1942                                               Drama|Romance     20
## 3569  1954                                      Adventure|Drama|Sci-Fi     20
## 3570  1982                                       Children|Drama|Sci-Fi     20
## 3574  1980                                     Action|Adventure|Sci-Fi     20
## 3578  1983                                     Action|Adventure|Sci-Fi     20
## 3579  1967                                        Comedy|Drama|Romance     20
## 3581  1985                                     Adventure|Comedy|Sci-Fi     20
## 3582  1982                                                       Drama     20
## 3583  1988                                       Action|Comedy|Western     20
## 3584  1993                                              Comedy|Romance     20
## 3589  1972                                      Action|Adventure|Drama     20
## 3593  1999                                        Drama|Horror|Mystery     20
## 3594  1999                                                       Drama     20
## 3595  1999                                 Action|Crime|Drama|Thriller     20
## 3596  1999                                                       Drama     20
## 3597  1953                                                   Drama|War     20
## 3599  2000                                         Action|Thriller|War     20
## 3600  1991                                                      Comedy     20
## 3603  2001                                 Adventure|Animation|Fantasy     20
## 3611  2003                                              Fantasy|Sci-Fi     20
## 3613  1990                                            Action|Drama|War     20
## 3614  1947                                                      Comedy     20
## 3615  2004                                                       Drama     20
## 3620  1956                                            Children|Fantasy     20
## 3624  2008                         Adventure|Animation|Children|Comedy     20
## 3627  1995                                   Action|Adventure|Thriller     21
## 3628  1995                                       Comedy|Crime|Thriller     21
## 3631  1995                                                 Crime|Drama     21
## 3632  1995                                    Action|Adventure|Fantasy     21
## 3634  1996                                   Action|Adventure|Thriller     21
## 3637  1995                                             Action|Children     21
## 3638  1995                                               Horror|Sci-Fi     21
## 3639  1995                                     Action|Adventure|Sci-Fi     21
## 3640  1977                                     Action|Adventure|Sci-Fi     21
## 3641  1994                                   Drama|Romance|War|Western     21
## 3642  1994                                         Drama|Horror|Sci-Fi     21
## 3643  1994                                       Action|Crime|Thriller     21
## 3644  1994                                 Comedy|Crime|Drama|Thriller     21
## 3645  1994                                     Action|Adventure|Sci-Fi     21
## 3646  1994                                      Adventure|Drama|Sci-Fi     21
## 3647  1995                                                      Comedy     21
## 3648  1994                                                      Comedy     21
## 3651  1994                                      Action|Sci-Fi|Thriller     21
## 3652  1994                    Action|Adventure|Comedy|Romance|Thriller     21
## 3653  1994                                    Action|Adventure|Fantasy     21
## 3654  1993                                     Action|Adventure|Sci-Fi     21
## 3655  1993                                                    Thriller     21
## 3656  1993                                           Action|Comedy|War     21
## 3657  1993                            Action|Adventure|Sci-Fi|Thriller     21
## 3658  1993                             Action|Adventure|Comedy|Fantasy     21
## 3661  1982                                      Action|Sci-Fi|Thriller     21
## 3662  1993                                     Comedy|Romance|Thriller     21
## 3663  1993                          Animation|Children|Fantasy|Musical     21
## 3664  1993                                        Action|Drama|Western     21
## 3665  1990                                             Children|Comedy     21
## 3668  1989                                       Action|Crime|Thriller     21
## 3670  1937                    Animation|Children|Drama|Fantasy|Musical     21
## 3671  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     21
## 3672  1990                                              Comedy|Romance     21
## 3673  1981                    Action|Adventure|Animation|Horror|Sci-Fi     21
## 3674  1996                           Action|Adventure|Mystery|Thriller     21
## 3675  1996                                   Action|Adventure|Thriller     21
## 3677  1996                            Action|Adventure|Sci-Fi|Thriller     21
## 3678  1996                            Action|Adventure|Sci-Fi|Thriller     21
## 3680  1952                                      Comedy|Musical|Romance     21
## 3681  1959                   Action|Adventure|Mystery|Romance|Thriller     21
## 3682  1959                                                Comedy|Crime     21
## 3692  1935                                      Comedy|Musical|Romance     21
## 3693  1956                                       Drama|Romance|Western     21
## 3694  1956                                            Adventure|Comedy     21
## 3698  1957                                              Children|Drama     21
## 3699  1954                                      Adventure|Drama|Sci-Fi     21
## 3700  1950                  Animation|Children|Fantasy|Musical|Romance     21
## 3701  1964                             Children|Comedy|Fantasy|Musical     21
## 3702  1971                                  Adventure|Children|Musical     21
## 3703  1951                Adventure|Animation|Children|Fantasy|Musical     21
## 3706  1988                                                Comedy|Crime     21
## 3707  1979                                                      Comedy     21
## 3708  1987                                       Drama|Musical|Romance     21
## 3709  1992                                      Crime|Mystery|Thriller     21
## 3711  1989                                                      Comedy     21
## 3712  1982                                       Children|Drama|Sci-Fi     21
## 3713  1955                                                       Drama     21
## 3716  1989                            Action|Adventure|Sci-Fi|Thriller     21
## 3717  1981                            Action|Adventure|Sci-Fi|Thriller     21
## 3718  1980                                                      Comedy     21
## 3723  1975                                                       Drama     21
## 3734  1974                                                 Crime|Drama     21
## 3735  1987                                                   Drama|War     21
## 3739  1983                                                       Drama     21
## 3740  1973                                                Comedy|Crime     21
## 3744  1974                            Crime|Film-Noir|Mystery|Thriller     21
## 3745  1951                                       Drama|Sci-Fi|Thriller     21
## 3747  1933                                          Comedy|Musical|War     21
## 3750  1993                                      Comedy|Fantasy|Romance     21
## 3751  1992                                               Drama|Western     21
## 3753  1986                                    Action|Adventure|Fantasy     21
## 3755  1940                          Animation|Children|Fantasy|Musical     21
## 3761  1988                                                       Drama     21
## 3763  1985                                                      Comedy     21
## 3764  1982                                               Drama|Musical     21
## 3765  1956                                                Drama|Sci-Fi     21
## 3768  1992                               Action|Horror|Sci-Fi|Thriller     21
## 3770  1979                               Drama|Horror|Mystery|Thriller     21
## 3771  1958                                               Horror|Sci-Fi     21
## 3772  1976                               Drama|Fantasy|Horror|Thriller     21
## 3773  1982                                        Drama|Fantasy|Horror     21
## 3774  1976                                     Horror|Mystery|Thriller     21
## 3775  1990                                   Action|Adventure|Thriller     21
## 3776  1979                                            Adventure|Sci-Fi     21
## 3777  1991                                       Action|Mystery|Sci-Fi     21
## 3778  1989                                               Action|Sci-Fi     21
## 3780  1984                                     Action|Adventure|Sci-Fi     21
## 3781  1986                                     Adventure|Comedy|Sci-Fi     21
## 3782  1978                                      Comedy|Musical|Romance     21
## 3783  1975                                               Action|Horror     21
## 3784  1978                                             Horror|Thriller     21
## 3786  1987                                                Comedy|Drama     21
## 3787  1997                                             Action|Thriller     21
## 3788  1970                                            Comedy|Drama|War     21
## 3790  1995                                    Action|Adventure|Fantasy     22
## 3791  1995                                            Mystery|Thriller     22
## 3792  1995                    Animation|Children|Drama|Musical|Romance     22
## 3793  1996                               Action|Comedy|Horror|Thriller     22
## 3794  1995                               Action|Adventure|Comedy|Crime     22
## 3795  1995                                          Adventure|Children     22
## 3797  1995                                         Action|Crime|Sci-Fi     22
## 3798  1995                                     Action|Adventure|Sci-Fi     22
## 3799  1994                                            Adventure|Comedy     22
## 3800  1994                                                Comedy|Drama     22
## 3803  1995                                                      Comedy     22
## 3805  1994                                       Action|Drama|Thriller     22
## 3806  1994                                     Children|Comedy|Fantasy     22
## 3807  1994                                    Comedy|Drama|Romance|War     22
## 3808  1993                                     Action|Adventure|Sci-Fi     22
## 3811  1993                             Action|Adventure|Comedy|Fantasy     22
## 3814  1993                             Action|Adventure|Comedy|Romance     22
## 3816  1990                                             Children|Comedy     22
## 3817  1992                 Adventure|Animation|Children|Comedy|Musical     22
## 3822  1996                                             Comedy|Thriller     22
## 3823  1996                                                      Comedy     22
## 3825  1979                                                      Comedy     22
## 3827  1982                                       Children|Drama|Sci-Fi     22
## 3828  1986                                              Action|Romance     22
## 3829  1993                             Animation|Children|Comedy|Crime     22
## 3833  1966                                    Action|Adventure|Western     22
## 3834  1979                                            Action|Drama|War     22
## 3836  1979                                               Horror|Sci-Fi     22
## 3840  1978                                                   Drama|War     22
## 3843  1992                               Action|Horror|Sci-Fi|Thriller     22
## 3846  1979                                            Adventure|Sci-Fi     22
## 3848  1982                            Action|Adventure|Sci-Fi|Thriller     22
## 3853  1996                                        Action|Comedy|Sci-Fi     22
## 3855  1997                            Action|Adventure|Sci-Fi|Thriller     22
## 3857  1997                                             Action|Thriller     22
## 3858  1997                                      Drama|Mystery|Thriller     22
## 3859  1997                                                Comedy|Drama     22
## 3860  1997                                      Drama|Mystery|Thriller     22
## 3861  1998                                         Comedy|Drama|Sci-Fi     22
## 3862  1997                                               Drama|Mystery     22
## 3863  1997                                               Drama|Romance     22
## 3864  1997                                   Action|Adventure|Thriller     22
## 3865  1998                                       Action|Crime|Thriller     22
## 3867  1998                                       Drama|Sci-Fi|Thriller     22
## 3869  1998                        Action|Crime|Mystery|Sci-Fi|Thriller     22
## 3870  1998                              Action|Romance|Sci-Fi|Thriller     22
## 3871  1998                                              Comedy|Romance     22
## 3872  1973                                              Horror|Mystery     22
## 3873  1998                                       Action|Comedy|Romance     22
## 3874  1989                                     Adventure|Comedy|Sci-Fi     22
## 3875  1990                                Crime|Drama|Mystery|Thriller     22
## 3876  1989                   Animation|Children|Comedy|Musical|Romance     22
## 3877  1984                                    Action|Adventure|Fantasy     22
## 3879  1997                              Horror|Mystery|Sci-Fi|Thriller     22
## 3882  1981                                              Comedy|Musical     22
## 3883  1998                                                     Romance     22
## 3884  1985                                   Action|Adventure|Thriller     22
## 3885  1998                                                Comedy|Drama     22
## 3887  1999                                                Comedy|Crime     22
## 3890  1999                                              Crime|Thriller     22
## 3891  1990                                                Action|Crime     22
## 3892  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     22
## 3893  1975                                Comedy|Horror|Musical|Sci-Fi     22
## 3894  1999                                       Drama|Sci-Fi|Thriller     22
## 3895  1999                                     Action|Adventure|Comedy     22
## 3896  1999                                    Animation|Comedy|Musical     22
## 3897  1999                                Action|Comedy|Sci-Fi|Western     22
## 3898  1999                                       Drama|Horror|Thriller     22
## 3900  1984                                        Action|Comedy|Sci-Fi     22
## 3901  1989                                       Comedy|Fantasy|Sci-Fi     22
## 3902  1999                                       Action|Comedy|Fantasy     22
## 3904  1999                                              Action|Mystery     22
## 3906  1999                                 Action|Crime|Drama|Thriller     22
## 3907  1992                                             Children|Comedy     22
## 3909  1987                          Action|Crime|Drama|Sci-Fi|Thriller     22
## 3911  1989                                   Action|Adventure|Thriller     22
## 3913  1999                                    Adventure|Comedy|Fantasy     22
## 3915  1999                                   Action|Adventure|Thriller     22
## 3916  1999                                                 Crime|Drama     22
## 3917  1999                                      Drama|Mystery|Thriller     22
## 3919  1992                                                      Comedy     22
## 3920  2000                                             Adventure|Drama     22
## 3921  2000                                      Horror|Sci-Fi|Thriller     22
## 3922  2000                                                      Sci-Fi     22
## 3924  2000                                                       Drama     22
## 3925  1990                       Action|Children|Comedy|Fantasy|Sci-Fi     22
## 3928  2000                                      Action|Adventure|Drama     22
## 3929  2000                                   Action|Adventure|Thriller     22
## 3930  1990                                      Action|Sci-Fi|Thriller     22
## 3931  2000                                   Animation|Children|Comedy     22
## 3933  1991                                                      Comedy     22
## 3934  2000                                      Horror|Sci-Fi|Thriller     22
## 3936  2000                                               Action|Comedy     22
## 3937  2000                                                Drama|Sci-Fi     22
## 3938  2000                                        Action|Drama|Romance     22
## 3939  2000                                            Action|Adventure     22
## 3941  2000                                               Comedy|Sci-Fi     22
## 3942  2000                                      Adventure|Comedy|Crime     22
## 3945  2001                                                 Crime|Drama     22
## 3946  1983                                          Action|Crime|Drama     22
## 3948  2001                                      Adventure|Drama|Sci-Fi     22
## 3949  2000                                Crime|Drama|Mystery|Thriller     22
## 3950  2001                               Action|Adventure|Drama|Sci-Fi     22
## 3952  2001                               Drama|Horror|Mystery|Thriller     22
## 3953  2001                                        Crime|Drama|Thriller     22
## 3955  2001                                  Adventure|Children|Fantasy     22
## 3956  2001                                              Crime|Thriller     22
## 3959  2001                                            Action|Drama|War     22
## 3961  2002                               Action|Horror|Sci-Fi|Thriller     22
## 3962  2002                                                    Thriller     22
## 3964  2002                                              Drama|Thriller     22
## 3966  2002                                        Action|Comedy|Sci-Fi     22
## 3967  2002                                                 Crime|Drama     22
## 3970  2002                                           Adventure|Fantasy     22
## 3971  2002                                   Action|Adventure|Thriller     22
## 3974  2002                                                 Crime|Drama     22
## 3977  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     22
## 3978  2003                                Comedy|Drama|Fantasy|Romance     22
## 3979  2002                                        Action|Horror|Sci-Fi     22
## 3981  2003                                       Action|Fantasy|Sci-Fi     22
## 3982  2003                                       Action|Fantasy|Horror     22
## 3984  1969                                         Action|Comedy|Crime     22
## 3985  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     22
## 3989  2004                                Action|Drama|Horror|Thriller     22
## 3990  2004                             Action|Adventure|Fantasy|Horror     22
## 3992  2004                             Action|Adventure|Fantasy|Horror     22
## 3994  2004         Adventure|Animation|Children|Comedy|Musical|Romance     22
## 3995  2004                                      Adventure|Fantasy|IMAX     22
## 3997  2004                                 Action|Crime|Drama|Thriller     22
## 3998  2004                                     Horror|Mystery|Thriller     22
## 4001  2004                  Action|Adventure|Animation|Children|Comedy     22
## 4006  2005                                     Action|Adventure|Sci-Fi     22
## 4007  2005                                           Action|Crime|IMAX     22
## 4009  1995                 Adventure|Animation|Children|Comedy|Fantasy     23
## 4010  1995                                       Action|Crime|Thriller     23
## 4011  1995                                        Comedy|Drama|Romance     23
## 4013  1995                                                      Comedy     23
## 4014  1995                          Action|Comedy|Crime|Drama|Thriller     23
## 4015  1995                                                Drama|Sci-Fi     23
## 4017  1995                                              Children|Drama     23
## 4020  1994                                        Comedy|Drama|Romance     23
## 4023  1996                                                      Comedy     23
## 4024  1995                                            Action|Drama|War     23
## 4026  1995                                        Adventure|Drama|IMAX     23
## 4027  1995                               Action|Adventure|Comedy|Crime     23
## 4029  1995                                      Action|Sci-Fi|Thriller     23
## 4030  1995                                       Action|Crime|Thriller     23
## 4037  1994                                                Drama|Horror     23
## 4040  1992                                       Drama|Fantasy|Romance     23
## 4041  1995                                Action|Drama|Sci-Fi|Thriller     23
## 4045  1994                                                       Drama     23
## 4046  1993                                                       Drama     23
## 4047  1994                                     Action|Adventure|Sci-Fi     23
## 4051  1994                                                      Comedy     23
## 4055  1994                                               Drama|Romance     23
## 4056  1993                                                 Crime|Drama     23
## 4057  1993                                     Action|Adventure|Sci-Fi     23
## 4058  1993                                                    Thriller     23
## 4059  1993                                            Action|Drama|War     23
## 4060  1994                                                      Comedy     23
## 4061  1993                            Action|Adventure|Sci-Fi|Thriller     23
## 4062  1993                             Action|Adventure|Comedy|Fantasy     23
## 4067  1993                                                   Drama|War     23
## 4068  1994                                         Comedy|Crime|Horror     23
## 4070  1993                                        Comedy|Drama|Romance     23
## 4071  1982                                      Action|Sci-Fi|Thriller     23
## 4072  1990                                             Children|Comedy     23
## 4074  1991                                               Action|Sci-Fi     23
## 4075  1990                                     Adventure|Drama|Western     23
## 4076  1989                                       Action|Crime|Thriller     23
## 4079  1990                                              Comedy|Romance     23
## 4083  1996                                    Action|Adventure|Fantasy     23
## 4089  1996                            Action|Adventure|Sci-Fi|Thriller     23
## 4090  1996                               Comedy|Fantasy|Romance|Sci-Fi     23
## 4091  1996                                               Drama|Romance     23
## 4092  1996                                              Drama|Thriller     23
## 4097  1951                                             Musical|Romance     23
## 4098  1958                              Drama|Mystery|Romance|Thriller     23
## 4102  1960                                        Comedy|Drama|Romance     23
## 4107  1964                                Comedy|Drama|Musical|Romance     23
## 4108  1939                                           Drama|Romance|War     23
## 4111  1968                                      Adventure|Drama|Sci-Fi     23
## 4116  1955                              Crime|Mystery|Romance|Thriller     23
## 4118  1956                                       Drama|Romance|Western     23
## 4119  1955                                                       Drama     23
## 4120  1956                                            Adventure|Comedy     23
## 4123  1938                                              Comedy|Romance     23
## 4124  1935                                      Drama|Mystery|Thriller     23
## 4125  1951                                Adventure|Comedy|Romance|War     23
## 4126  1958                                                       Drama     23
## 4127  1965                                             Musical|Romance     23
## 4128  1988                                       Action|Crime|Thriller     23
## 4131  1996                                                    Thriller     23
## 4136  1992                                      Crime|Mystery|Thriller     23
## 4138  1982                                                       Drama     23
## 4140  1986                                              Action|Romance     23
## 4145  1991                                        Comedy|Drama|Romance     23
## 4146  1991                                       Drama|Fantasy|Romance     23
## 4149  1989                                                       Drama     23
## 4155  1985                                              Fantasy|Sci-Fi     23
## 4161  1962                                                       Drama     23
## 4164  1987                                       Drama|Fantasy|Romance     23
## 4165  1949                                  Film-Noir|Mystery|Thriller     23
## 4168  1989                                 Action|Crime|Drama|Thriller     23
## 4171  1987                                                   Drama|War     23
## 4173  1984                                                 Crime|Drama     23
## 4178  1981                                            Action|Drama|War     23
## 4179  1973                                                Comedy|Crime     23
## 4180  1971                                        Comedy|Drama|Romance     23
## 4182  1984                                      Action|Sci-Fi|Thriller     23
## 4183  1992                                       Comedy|Fantasy|Horror     23
## 4184  1990                                                Comedy|Drama     23
## 4185  1979                                        Comedy|Drama|Romance     23
## 4192  1948                              Action|Adventure|Drama|Western     23
## 4193  1933                                          Comedy|Musical|War     23
## 4194  1980                                                      Horror     23
## 4197  1978                                                   Drama|War     23
## 4199  1992                                               Drama|Western     23
## 4203  1970                                                   Drama|War     23
## 4204  1990                                        Comedy|Drama|Romance     23
## 4206  1940                                            Comedy|Drama|War     23
## 4209  1984                                                      Comedy     23
## 4210  1989                                            Action|Adventure     23
## 4215  1963                                             Horror|Thriller     23
## 4217  1922                                                      Horror     23
## 4219  1996                            Action|Adventure|Sci-Fi|Thriller     23
## 4220  1992                                                Action|Crime     23
## 4221  1978                                      Comedy|Musical|Romance     23
## 4222  1975                                               Action|Horror     23
## 4223  1996                                        Action|Comedy|Sci-Fi     23
## 4226  1992                                  Action|Romance|War|Western     23
## 4227  1996                                         Crime|Drama|Romance     23
## 4228  1997                                             Action|Thriller     23
## 4229  1997               Crime|Drama|Fantasy|Film-Noir|Mystery|Romance     23
## 4230  1997                                   Action|Adventure|Thriller     23
## 4232  1997                                       Action|Drama|Thriller     23
## 4233  1997                              Action|Adventure|Comedy|Sci-Fi     23
## 4234  1997                            Action|Adventure|Sci-Fi|Thriller     23
## 4235  1997                                   Action|Adventure|Thriller     23
## 4236  1997                                     Action|Romance|Thriller     23
## 4237  1997                           Action|Adventure|Fantasy|Thriller     23
## 4238  1997                                        Action|Comedy|Sci-Fi     23
## 4240  1997                                             Action|Thriller     23
## 4246  1997                                               Drama|Romance     23
## 4248  1997                                   Action|Adventure|Thriller     23
## 4252  1998                                       Action|Crime|Thriller     23
## 4253  1998                                            Documentary|IMAX     23
## 4254  1998                                       Drama|Fantasy|Romance     23
## 4256  1998                                     Crime|Drama|Romance|War     23
## 4257  1998                                       Drama|Sci-Fi|Thriller     23
## 4258  1997                                                Comedy|Drama     23
## 4259  1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance     23
## 4260  1998                              Action|Romance|Sci-Fi|Thriller     23
## 4261  1930                                            Action|Drama|War     23
## 4263  1936                                               Drama|Musical     23
## 4265  1948                                                       Drama     23
## 4270  1966                                                       Drama     23
## 4272  1968                                               Drama|Musical     23
## 4274  1971                                       Action|Crime|Thriller     23
## 4275  1976                                                       Drama     23
## 4277  1980                                                       Drama     23
## 4278  1981                                                       Drama     23
## 4279  1983                                                Comedy|Drama     23
## 4280  1985                                               Drama|Romance     23
## 4281  1987                                                       Drama     23
## 4283  1989                                                       Drama     23
## 4284  1973                                              Horror|Mystery     23
## 4285  1992                                   Action|Comedy|Crime|Drama     23
## 4286  1927                                                Drama|Sci-Fi     23
## 4291  1990                                Crime|Drama|Mystery|Thriller     23
## 4292  1998                                                Comedy|Crime     23
## 4294  1965                                           Drama|Romance|War     23
## 4297  1998                               Action|Crime|Mystery|Thriller     23
## 4299  1985                                   Adventure|Fantasy|Romance     23
## 4300  1988                                              Comedy|Fantasy     23
## 4302  1972                                                    Thriller     23
## 4304  1956                            Adventure|Drama|Mystery|Thriller     23
## 4306  1987                                          Action|Crime|Drama     23
## 4308  1941                                              Comedy|Romance     23
## 4309  1998                                                       Drama     23
## 4310  1989                                        Comedy|Drama|Romance     23
## 4311  1998                                Action|Comedy|Crime|Thriller     23
## 4315  1980                                                       Drama     23
## 4317  1997                                    Comedy|Drama|Romance|War     23
## 4318  1998                                                 Crime|Drama     23
## 4319  1998                                                       Drama     23
## 4320  1998                                             Action|Thriller     23
## 4321  1998                                                       Drama     23
## 4323  1998                                             Action|Thriller     23
## 4325  1998                                                       Drama     23
## 4327  1998                                           Animation|Musical     23
## 4330  1998                                              Comedy|Romance     23
## 4332  1986                                                       Drama     23
## 4335  1999                                                      Comedy     23
## 4336  1998                                       Comedy|Crime|Thriller     23
## 4338  1998                                                       Drama     23
## 4339  1999                                                Comedy|Crime     23
## 4340  1999                                                      Comedy     23
## 4342  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     23
## 4343  1999                                     Action|Adventure|Sci-Fi     23
## 4345  1931                                                      Horror     23
## 4347  1975                                Comedy|Horror|Musical|Sci-Fi     23
## 4349  1990                                               Comedy|Horror     23
## 4352  1984                                        Action|Comedy|Sci-Fi     23
## 4353  1999                                              Comedy|Romance     23
## 4354  1999                                              Comedy|Romance     23
## 4357  1962                                               Drama|Romance     23
## 4361  1986                                       Comedy|Horror|Musical     23
## 4363  1999                                              Comedy|Romance     23
## 4364  1999                                               Drama|Romance     23
## 4365  1972                                    Adventure|Drama|Thriller     23
## 4368  1999                                                       Drama     23
## 4371  1964                                   Action|Adventure|Thriller     23
## 4372  1996                                        Crime|Drama|Thriller     23
## 4373  1992                                             Children|Comedy     23
## 4374  1999                                 Action|Crime|Drama|Thriller     23
## 4377  1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     23
## 4380  1989                                                 Crime|Drama     23
## 4381  1993                                                Action|Drama     23
## 4382  1999                                    Adventure|Comedy|Fantasy     23
## 4383  1999                                                   Drama|War     23
## 4385  1999                              Fantasy|Horror|Mystery|Romance     23
## 4386  1999                                   Action|Adventure|Thriller     23
## 4388  1950                                              Comedy|Fantasy     23
## 4390  1940                                                       Drama     23
## 4391  1992                                                       Drama     23
## 4392  1999                 Adventure|Animation|Children|Comedy|Fantasy     23
## 4393  1999                                                 Crime|Drama     23
## 4394  1971                                                       Drama     23
## 4395  1999                                               Drama|Romance     23
## 4400  1970                                                       Drama     23
## 4403  1993                                                      Comedy     23
## 4405  1992                               Action|Crime|Thriller|Western     23
## 4409  1956                                               Drama|Western     23
## 4410  1976                                                       Drama     23
## 4412  1958                                                Action|Drama     23
## 4414  1975                                                       Drama     23
## 4419  1961                                                       Drama     23
## 4421  1951                                               Drama|Romance     23
## 4422  2000                                        Comedy|Drama|Romance     23
## 4423  1991                                    Adventure|Comedy|Fantasy     23
## 4425  1972                                        Drama|Mystery|Sci-Fi     23
## 4426  1976                                                Comedy|Drama     23
## 4427  2000                                              Drama|Thriller     23
## 4430  1952                                        Comedy|Drama|Romance     23
## 4431  1998                                                Comedy|Drama     23
## 4433  2000                                                Comedy|Crime     23
## 4434  2000                                   Action|Adventure|Thriller     23
## 4436  1968                                               Drama|Romance     23
## 4437  1974                                              Comedy|Western     23
## 4438  1965                               Action|Drama|Thriller|Western     23
## 4439  1974                                               Drama|Mystery     23
## 4441  1973                                        Crime|Drama|Thriller     23
## 4443  2000                                            Action|Drama|War     23
## 4445  1959                                               Drama|Mystery     23
## 4446  1989                                                       Drama     23
## 4447  1953                                               Drama|Western     23
## 4453  2000                                           Drama|Romance|War     23
## 4459  2000                                               Drama|Romance     23
## 4460  2000                                                       Drama     23
## 4461  2000                                      Adventure|Comedy|Crime     23
## 4462  2000                                        Crime|Drama|Thriller     23
## 4463  1987                            Crime|Film-Noir|Mystery|Thriller     23
## 4464  1987                                  Action|Adventure|Drama|War     23
## 4465  2001                                             Horror|Thriller     23
## 4466  2001                                                    Thriller     23
## 4467  2001                                                   Drama|War     23
## 4472  1934                                                 Documentary     23
## 4473  1969                                               Drama|Fantasy     23
## 4474  1987                                                       Drama     23
## 4476  2001                                    Action|Drama|Romance|War     23
## 4477  1999                                             Adventure|Drama     23
## 4478  2001                                               Comedy|Sci-Fi     23
## 4479  2001                                          Action|Crime|Drama     23
## 4480  1955                                                      Comedy     23
## 4481  2001                                      Adventure|Drama|Sci-Fi     23
## 4483  1957                                             Drama|Film-Noir     23
## 4484  2001                                              Comedy|Romance     23
## 4485  1994                                            Documentary|IMAX     23
## 4486  1989                                       Drama|Fantasy|Romance     23
## 4487  1989                                     Adventure|Comedy|Sci-Fi     23
## 4490  2001                                                      Comedy     23
## 4493  1971                                               Drama|Musical     23
## 4494  2001                               Crime|Horror|Mystery|Thriller     23
## 4495  2001                               Drama|Mystery|Sci-Fi|Thriller     23
## 4496  2001                                                 Crime|Drama     23
## 4497  2001                 Adventure|Animation|Children|Comedy|Fantasy     23
## 4498  2001                                  Adventure|Children|Fantasy     23
## 4499  2001                                 Action|Crime|Drama|Thriller     23
## 4504  2001                             Mystery|Romance|Sci-Fi|Thriller     23
## 4505  2001                                                       Drama     23
## 4511  2001                                                       Drama     23
## 4512  2001                                               Drama|Romance     23
## 4513  1970                                            Comedy|Drama|War     23
## 4514  2001                                                       Drama     23
## 4515  1994                                                      Comedy     23
## 4524  2002                                              Comedy|Romance     23
## 4525  1945                                                   Drama|War     23
## 4526  2002                                                Comedy|Drama     23
## 4527  2002                            Action|Adventure|Sci-Fi|Thriller     23
## 4529  1957                                           Drama|Romance|War     23
## 4530  2002                                        Comedy|Drama|Romance     23
## 4531  2002                                Action|Adventure|Sci-Fi|IMAX     23
## 4532  1978                                                 Documentary     23
## 4533  2002                         Action|Crime|Drama|Mystery|Thriller     23
## 4534  2002                        Action|Crime|Mystery|Sci-Fi|Thriller     23
## 4536  2002                                    Action|Adventure|Fantasy     23
## 4537  2002                                                 Crime|Drama     23
## 4538  1952                                              Comedy|Romance     23
## 4539  1979                                                      Horror     23
## 4541  1931                                               Drama|Romance     23
## 4542  2001                                 Adventure|Animation|Fantasy     23
## 4546  2002                                     Horror|Mystery|Thriller     23
## 4547  2001                                                       Drama     23
## 4549  2002                                           Adventure|Fantasy     23
## 4552  2002                    Adventure|Animation|Children|Sci-Fi|IMAX     23
## 4557  2002                                                 Crime|Drama     23
## 4558  2002                                                 Crime|Drama     23
## 4561  2002                                  Comedy|Crime|Drama|Musical     23
## 4565  2002                                                       Drama     23
## 4567  2002                                             Adventure|Drama     23
## 4568  2002                                               Drama|Mystery     23
## 4569  2002                                Crime|Drama|Mystery|Thriller     23
## 4573  2003                               Crime|Horror|Mystery|Thriller     23
## 4574  2003                            Action|Adventure|Sci-Fi|Thriller     23
## 4576  2003                         Adventure|Animation|Children|Comedy     23
## 4577  1952                                              Comedy|Romance     23
## 4578  1987                                                Comedy|Drama     23
## 4579  1991                                              Drama|Thriller     23
## 4580  2003                                     Action|Adventure|Sci-Fi     23
## 4582  2002                                        Crime|Drama|Thriller     23
## 4584  1961                                                       Drama     23
## 4586  2003                                                Comedy|Drama     23
## 4587  2000                                                       Drama     23
## 4589  1972                                        Comedy|Drama|Fantasy     23
## 4591  2003                                          Comedy|Crime|Drama     23
## 4592  2003                             Action|Adventure|Crime|Thriller     23
## 4593  2003                                        Comedy|Drama|Romance     23
## 4596  1991                                                 Crime|Drama     23
## 4597  1983                                                      Comedy     23
## 4598  2003                                                Comedy|Drama     23
## 4599  2003                                         Crime|Drama|Mystery     23
## 4606  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     23
## 4607  1991                                                      Comedy     23
## 4608  2003                                         Adventure|Drama|War     23
## 4609  2003                        Crime|Drama|Mystery|Romance|Thriller     23
## 4610  2003                          Comedy|Crime|Drama|Mystery|Romance     23
## 4612  1955                                                       Drama     23
## 4613  1952                                                   Drama|War     23
## 4616  1986                                        Comedy|Drama|Romance     23
## 4617  1990                                Action|Comedy|Crime|Thriller     23
## 4618  1972                                               Drama|Romance     23
## 4621  1986                                               Drama|Romance     23
## 4627  1979                                                  Comedy|War     23
## 4628  1935                                      Comedy|Musical|Romance     23
## 4630  2002                                               Drama|Romance     23
## 4633  2003                                                 Crime|Drama     23
## 4634  2003                                             Children|Comedy     23
## 4635  2003                                           Drama|Romance|War     23
## 4639  2004                                            Mystery|Thriller     23
## 4642  1985                                             Comedy|Thriller     23
## 4643  2004                                       Action|Drama|Thriller     23
## 4644  2004                                  Action|Adventure|Drama|War     23
## 4645  1967                            Action|Adventure|Sci-Fi|Thriller     23
## 4647  1942                               Drama|Horror|Romance|Thriller     23
## 4648  1965                                                 Crime|Drama     23
## 4649  1983                                                       Drama     23
## 4652  1953                                               Drama|Romance     23
## 4653  2002                               Drama|Horror|Mystery|Thriller     23
## 4656  1960                                                       Drama     23
## 4657  1960                                       Drama|Mystery|Romance     23
## 4658  1961                                                Comedy|Drama     23
## 4659  1947                                                       Drama     23
## 4662  2004                                    Comedy|Documentary|Drama     23
## 4663  1932                                          Crime|Drama|Horror     23
## 4664  2004                                        Comedy|Drama|Romance     23
## 4665  2004                                Action|Adventure|Sci-Fi|IMAX     23
## 4666  1988                                                 Crime|Drama     23
## 4669  2004                                        Comedy|Drama|Romance     23
## 4672  2004                                                       Drama     23
## 4675  2004                                Action|Comedy|Crime|Thriller     23
## 4676  1924                                                       Drama     23
## 4678  1934                                        Comedy|Drama|Romance     23
## 4683  2004                                Drama|Fantasy|Romance|Sci-Fi     23
## 4684  1999                       Drama|Horror|Mystery|Romance|Thriller     23
## 4685  2004                                   Drama|Mystery|Romance|War     23
## 4687  2004                                                       Drama     23
## 4689  2005                      Adventure|Children|Comedy|Fantasy|IMAX     23
## 4690  2004                                                       Drama     23
## 4693  2004                         Adventure|Animation|Fantasy|Romance     23
## 4694  2005                     Action|Crime|Film-Noir|Mystery|Thriller     23
## 4696  2005                                    Action|Drama|Romance|War     23
## 4699  2005                                           Action|Crime|IMAX     23
## 4700  2004                                  Comedy|Crime|Drama|Romance     23
## 4701  2005                            Action|Adventure|Sci-Fi|Thriller     23
## 4702  2005                                       Drama|Horror|Thriller     23
## 4704  2005                                                Comedy|Drama     23
## 4705  2005                                              Drama|Thriller     23
## 4706  2005                             Action|Crime|Drama|Thriller|War     23
## 4708  2005                                 Action|Crime|Drama|Thriller     23
## 4709  2005                                                       Drama     23
## 4716  2005                                            Action|Drama|War     23
## 4719  2005                             Adventure|Fantasy|Thriller|IMAX     23
## 4720  2005                                       Drama|Musical|Romance     23
## 4722  2005                     Action|Adventure|Drama|Fantasy|Thriller     23
## 4723  2005                                               Drama|Romance     23
## 4724  2006                                       Adventure|Crime|Drama     23
## 4727  2005                                     Adventure|Drama|Romance     23
## 4728  2005                                   Animation|Children|Comedy     23
## 4731  2006                                   Action|Adventure|Thriller     23
## 4732  2006                                      Drama|Mystery|Thriller     23
## 4733  2006                                    Action|Adventure|Fantasy     23
## 4734  2006                                                      Comedy     23
## 4736  1995                                                 Crime|Drama     24
## 4738  1996                                   Action|Adventure|Thriller     24
## 4739  1995                                        Adventure|Drama|IMAX     24
## 4742  1994                                     Action|Adventure|Sci-Fi     24
## 4746  1992                 Adventure|Animation|Children|Comedy|Musical     24
## 4748  1989                                       Action|Crime|Thriller     24
## 4749  1981                    Action|Adventure|Animation|Horror|Sci-Fi     24
## 4751  1996                           Action|Adventure|Romance|Thriller     24
## 4754  1996                                 Comedy|Crime|Drama|Thriller     24
## 4756  1995                                              Comedy|Romance     25
## 4758  1995                                 Action|Crime|Drama|Thriller     25
## 4761  1996                                   Action|Adventure|Thriller     25
## 4762  1996                                 Comedy|Crime|Drama|Thriller     25
## 4763  1996                                    Action|Adventure|Fantasy     25
## 4764  1996                                                      Comedy     25
## 4765  1996                                        Crime|Drama|Thriller     25
## 4768  1996                                             Comedy|Thriller     25
## 4769  1996                                       Action|Drama|Thriller     25
## 4770  1996                               Comedy|Fantasy|Romance|Sci-Fi     25
## 4772  1996                                              Crime|Thriller     25
## 4773  1996                                               Comedy|Horror     25
## 4775  1996                                               Drama|Mystery     25
## 4776  1996                            Action|Adventure|Sci-Fi|Thriller     25
## 4778  1996                                        Action|Comedy|Sci-Fi     25
## 4779  1996                            Adventure|Animation|Comedy|Crime     25
## 4780  1996                                Comedy|Drama|Fantasy|Romance     25
## 4781  1996                                              Drama|Thriller     25
## 4786  1996                                                Comedy|Crime     26
## 4788  1995                               Action|Adventure|Comedy|Crime     26
## 4789  1995                                       Action|Crime|Thriller     26
## 4790  1977                                     Action|Adventure|Sci-Fi     26
## 4791  1994                                 Comedy|Crime|Drama|Thriller     26
## 4792  1994                                     Action|Adventure|Sci-Fi     26
## 4794  1994                                                      Comedy     26
## 4796  1994                                 Action|Comedy|Crime|Fantasy     26
## 4797  1994                                     Action|Romance|Thriller     26
## 4798  1994                    Action|Adventure|Comedy|Romance|Thriller     26
## 4799  1993                                                    Thriller     26
## 4800  1993                            Action|Adventure|Sci-Fi|Thriller     26
## 4801  1993                                                Comedy|Drama     26
## 4802  1993                                              Crime|Thriller     26
## 4804  1991                                       Crime|Horror|Thriller     26
## 4805  1996                                 Comedy|Crime|Drama|Thriller     26
## 4806  1996                           Action|Adventure|Mystery|Thriller     26
## 4807  1996                                  Adventure|Animation|Comedy     26
## 4808  1996                                   Action|Adventure|Thriller     26
## 4810  1996                            Action|Adventure|Sci-Fi|Thriller     26
## 4812  1988                                       Action|Crime|Thriller     26
## 4813  1992                                      Crime|Mystery|Thriller     26
## 4814  1980                                     Action|Adventure|Sci-Fi     26
## 4816  1983                                     Action|Adventure|Sci-Fi     26
## 4817  1996                            Adventure|Animation|Comedy|Crime     26
## 4819  1997                                        Action|Comedy|Sci-Fi     26
## 4820  1997                                       Drama|Sci-Fi|Thriller     26
## 4821  1997                                             Action|Thriller     26
## 4823  1998                                                      Comedy     26
## 4824  1998                                     Action|Adventure|Sci-Fi     26
## 4826  1998                                            Action|Drama|War     26
## 4834  1991                                Comedy|Drama|Fantasy|Romance     26
## 4836  1999                                                 Crime|Drama     26
## 4838  2000                                        Comedy|Drama|Romance     26
## 4839  2000                                      Action|Adventure|Drama     26
## 4843  2000                                      Adventure|Comedy|Crime     26
## 4844  2001                                               Action|Comedy     26
## 4846  1983                                          Action|Crime|Drama     26
## 4849  2001                                        Comedy|Crime|Romance     26
## 4851  2001                                              Crime|Thriller     26
## 4852  2001                                              Comedy|Romance     26
## 4854  2001                                               Drama|Romance     26
## 4855  2001                                            Action|Drama|War     26
## 4860  2002                                        Comedy|Drama|Romance     26
## 4861  2002                                      Action|Sci-Fi|Thriller     26
## 4863  2002                                                 Crime|Drama     26
## 4864  2002                                                 Crime|Drama     26
## 4866  2003                            Action|Adventure|Sci-Fi|Thriller     26
## 4867  2003                             Action|Adventure|Comedy|Fantasy     26
## 4868  2003                                          Comedy|Crime|Drama     26
## 4870  2003                                         Crime|Drama|Mystery     26
## 4873  2004                                        Drama|Romance|Sci-Fi     26
## 4874  2004                                       Action|Drama|Thriller     26
## 4876  2004                                      Adventure|Fantasy|IMAX     26
## 4878  2004                                        Comedy|Drama|Romance     26
## 4880  2004                                               Comedy|Horror     26
## 4882  2001                                       Action|Drama|Thriller     26
## 4884  2004                                    Adventure|Comedy|Fantasy     26
## 4885  2004                                                   Drama|War     26
## 4889  2005                                                Comedy|Drama     26
## 4891  2005                                                 Crime|Drama     26
## 4892  2005                                                 Crime|Drama     26
## 4893  2005                         Adventure|Animation|Children|Comedy     26
## 4899  2006                                         Crime|Drama|Mystery     26
## 4903  2006                      Action|Adventure|Drama|Sci-Fi|Thriller     26
## 4906  2006                                      Action|Sci-Fi|Thriller     26
## 4908  2006                                                 Documentary     26
## 4910  2007                                 Action|Comedy|Crime|Mystery     26
## 4915  2007                             Action|Adventure|Crime|Thriller     26
## 4917  2007                                                      Comedy     26
## 4918  2007                                        Crime|Drama|Thriller     26
## 4919  2006                    Action|Adventure|Animation|Crime|Fantasy     26
## 4921  2007                                              Drama|Thriller     26
## 4922  2007                                                Comedy|Drama     26
## 4923  2007                                        Crime|Drama|Thriller     26
## 4924  2007                                                 Crime|Drama     26
## 4925  2007                                               Drama|Western     26
## 4926  2008                                 Comedy|Crime|Drama|Thriller     26
## 4928  2008                                     Action|Adventure|Sci-Fi     26
## 4930  2006                                     Adventure|Drama|Fantasy     26
## 4932  2008                 Adventure|Animation|Children|Romance|Sci-Fi     26
## 4934  2008                                         Action|Comedy|Crime     26
## 4935  2008                                          Comedy|Crime|Drama     26
## 4937  2008                                         Crime|Drama|Romance     26
## 4939  2009                                                      Comedy     26
## 4940  2009                                            Action|Drama|War     26
## 4941  2009                                Action|Adventure|Sci-Fi|IMAX     26
## 4942  2009                          Adventure|Animation|Children|Drama     26
## 4943  2009                                                Comedy|Crime     26
## 4944  2007                                     Action|Animation|Sci-Fi     26
## 4945  2009                                                Comedy|Drama     26
## 4946  2009                                Action|Adventure|Sci-Fi|IMAX     26
## 4947  2009                               Action|Crime|Mystery|Thriller     26
## 4949  2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     26
## 4950  2010                                        Crime|Drama|Thriller     26
## 4952  2011              Action|Adventure|Comedy|Crime|Mystery|Thriller     26
## 4966  1997                                               Drama|Romance     27
## 4968  1998                                                      Comedy     27
## 4969  1998                                        Crime|Drama|Thriller     27
## 4970  1998                                        Comedy|Drama|Romance     27
## 4973  1999                                       Drama|Horror|Thriller     27
## 4984  1958                              Drama|Mystery|Romance|Thriller     28
## 4993  1946                              Children|Drama|Fantasy|Romance     28
## 5010  1998                                     Action|Adventure|Sci-Fi     28
## 5014  1989                                                       Drama     28
## 5015  1954                                      Action|Adventure|Drama     28
## 5016  1998                                            Action|Drama|War     28
## 5022  1984                             Action|Adventure|Comedy|Romance     28
## 5028  1997                                              Comedy|Romance     29
## 5029  1997                                    Action|Adventure|Fantasy     29
## 5030  1997                              Comedy|Horror|Mystery|Thriller     29
## 5031  1985                                Comedy|Drama|Fantasy|Romance     29
## 5032  1976                   Adventure|Fantasy|Romance|Sci-Fi|Thriller     29
## 5033  1998                                    Adventure|Children|Drama     29
## 5034  1974                                                      Horror     29
## 5035  1989                                                      Horror     29
## 5037  1999                                             Horror|Thriller     29
## 5038  1989                                       Comedy|Fantasy|Sci-Fi     29
## 5039  1983                                               Drama|Romance     29
## 5041  2002                       Drama|Fantasy|Horror|Mystery|Thriller     29
## 5042  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     29
## 5044  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     29
## 5048  2010                                Action|Drama|Horror|Thriller     29
## 5050  1995                                  Adventure|Children|Fantasy     30
## 5056  1995                                                      Comedy     30
## 5060  1995                                     Mystery|Sci-Fi|Thriller     30
## 5062  1995                                          Action|Crime|Drama     30
## 5063  1995                                       Comedy|Drama|Thriller     30
## 5067  1995                                  Adventure|Children|Fantasy     30
## 5069  1995                                 Action|Crime|Drama|Thriller     30
## 5073  1996                                              Comedy|Romance     30
## 5076  1995                                          Adventure|Children     30
## 5078  1994                                                 Documentary     30
## 5081  1995                                               Horror|Sci-Fi     30
## 5082  1995                                                      Comedy     30
## 5083  1995                                     Action|Adventure|Sci-Fi     30
## 5084  1995                                                       Drama     30
## 5086  1994                                             Action|Thriller     30
## 5087  1995                                                      Comedy     30
## 5090  1995                                                       Drama     30
## 5096  1994                                       Action|Crime|Thriller     30
## 5102  1994                                                      Comedy     30
## 5108  1994             Adventure|Animation|Children|Drama|Musical|IMAX     30
## 5110  1994                                                       Drama     30
## 5117  1994                                                      Comedy     30
## 5118  1993                                                      Comedy     30
## 5121  1993                                      Horror|Sci-Fi|Thriller     30
## 5123  1994                                    Adventure|Comedy|Western     30
## 5145  1994                                                      Comedy     30
## 5146  1993                                                       Drama     30
## 5148  1993                                              Children|Drama     30
## 5149  1994                                         Comedy|Crime|Horror     30
## 5153  1993                                        Comedy|Drama|Romance     30
## 5159  1995                                                 Documentary     30
## 5161  1990                       Comedy|Drama|Fantasy|Romance|Thriller     30
## 5167  1937                    Animation|Children|Drama|Fantasy|Musical     30
## 5173  1996                                              Drama|Thriller     30
## 5175  1996                Adventure|Animation|Children|Fantasy|Musical     30
## 5176  1996                                        Crime|Drama|Thriller     30
## 5179  1964                                                  Comedy|War     30
## 5180  1996                                                Comedy|Crime     30
## 5181  1996                                                Comedy|Drama     30
## 5184  1996                                              Drama|Thriller     30
## 5187  1996                                                 Crime|Drama     30
## 5190  1996                                Crime|Drama|Musical|Thriller     30
## 5212  1996                                 Action|Crime|Drama|Thriller     30
## 5214  1969                                             Children|Comedy     30
## 5215  1957                                              Children|Drama     30
## 5217  1960                                          Adventure|Children     30
## 5218  1965                                     Children|Comedy|Mystery     30
## 5220  1991                                             Adventure|Drama     30
## 5225  1996                                                    Thriller     30
## 5226  1971                             Children|Comedy|Fantasy|Musical     30
## 5227  1971                                                  Comedy|War     30
## 5236  1989                                                      Comedy     30
## 5238  1991                                                       Drama     30
## 5245  1996                                                 Crime|Drama     30
## 5248  1991                                              Comedy|Fantasy     30
## 5249  1981                            Action|Adventure|Sci-Fi|Thriller     30
## 5250  1980                                                      Comedy     30
## 5251  1992                                                      Comedy     30
## 5255  1988                                                 Documentary     30
## 5258  1987                     Action|Adventure|Comedy|Fantasy|Romance     30
## 5260  1986                              Action|Adventure|Horror|Sci-Fi     30
## 5261  1971                                 Crime|Drama|Sci-Fi|Thriller     30
## 5265  1949                                  Film-Noir|Mystery|Thriller     30
## 5278  1971                                        Comedy|Drama|Romance     30
## 5298  1974                                              Comedy|Fantasy     30
## 5301  1980                                               Drama|Romance     30
## 5308  1992                               Action|Horror|Sci-Fi|Thriller     30
## 5316  1976                               Drama|Fantasy|Horror|Thriller     30
## 5323  1992                                                Action|Crime     30
## 5326  1992                                       Action|Drama|Thriller     30
## 5328  1978                                             Horror|Thriller     30
## 5329  1996                                                      Comedy     30
## 5334  1996                                                       Drama     30
## 5336  1997                                             Action|Thriller     30
## 5337  1993                                                      Comedy     30
## 5344  1997                                     Action|Adventure|Comedy     30
## 5347  1997                           Action|Adventure|Fantasy|Thriller     30
## 5351  1997                                             Children|Comedy     30
## 5352  1997                                 Action|Crime|Drama|Thriller     30
## 5356  1991                                               Drama|Romance     30
## 5357  1997                                                      Comedy     30
## 5361  1997                                      Drama|Mystery|Thriller     30
## 5368  1997                                        Action|Horror|Sci-Fi     30
## 5374  1997                               Action|Adventure|Drama|Sci-Fi     30
## 5376  1998                                                Comedy|Crime     30
## 5382  1998                                                    Thriller     30
## 5384  1998                                                Comedy|Drama     30
## 5386  1998                                                      Comedy     30
## 5389  1998                                      Action|Sci-Fi|Thriller     30
## 5390  1998                                      Adventure|Comedy|Drama     30
## 5395  1952                                                       Drama     30
## 5405  1983                                                Comedy|Drama     30
## 5411  1978                                                      Horror     30
## 5416  1992                                   Action|Comedy|Crime|Drama     30
## 5417  1984                                               Comedy|Horror     30
## 5418  1973                               Drama|Mystery|Sci-Fi|Thriller     30
## 5420  1990                             Adventure|Comedy|Sci-Fi|Western     30
## 5421  1972                                      Action|Adventure|Drama     30
## 5422  1961                                     Children|Comedy|Fantasy     30
## 5424  1991                                               Drama|Mystery     30
## 5427  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     30
## 5432  1967                           Animation|Children|Comedy|Musical     30
## 5434  1992                                             Children|Comedy     30
## 5436  1980                                    Adventure|Comedy|Musical     30
## 5438  1982                                     Action|Adventure|Sci-Fi     30
## 5440  1979                                                      Comedy     30
## 5441  1991                                                 Crime|Drama     30
## 5444  1978                        Adventure|Animation|Children|Fantasy     30
## 5445  1984                                                Drama|Sci-Fi     30
## 5448  1983                                             Horror|Thriller     30
## 5449  1984                                             Horror|Thriller     30
## 5452  1963                                               Comedy|Sci-Fi     30
## 5453  1984                                              Comedy|Romance     30
## 5454  1986                                        Comedy|Drama|Romance     30
## 5456  1986                                       Comedy|Fantasy|Horror     30
## 5457  1986                                       Crime|Horror|Thriller     30
## 5463  1998                                                       Drama     30
## 5464  1988                                    Action|Adventure|Fantasy     30
## 5467  1998                                                       Drama     30
## 5474  1992                                              Comedy|Fantasy     30
## 5475  1982                                                      Comedy     30
## 5476  1984                                              Comedy|Romance     30
## 5477  1988                                      Drama|Fantasy|Thriller     30
## 5478  1989                                                Comedy|Crime     30
## 5482  1998                                       Action|Crime|Thriller     30
## 5483  1980                                                      Comedy     30
## 5486  1998                                                      Comedy     30
## 5491  1984                                                      Sci-Fi     30
## 5495  1998                                                 Crime|Drama     30
## 5496  1998                                             Action|Thriller     30
## 5498  1975                                     Mystery|Sci-Fi|Thriller     30
## 5499  1984                                                       Drama     30
## 5503  1976                   Adventure|Fantasy|Romance|Sci-Fi|Thriller     30
## 5505  1985                                        Comedy|Crime|Mystery     30
## 5506  1986                                                Comedy|Drama     30
## 5508  1998                                       Crime|Horror|Thriller     30
## 5512  1985                                   Action|Adventure|Thriller     30
## 5513  1982                             Action|Adventure|Drama|Thriller     30
## 5519  1986                                                Comedy|Drama     30
## 5520  1986                                                      Comedy     30
## 5521  1984                                                       Drama     30
## 5523  1998                                            Action|Drama|War     30
## 5526  1998                                                       Drama     30
## 5530  1986                              Action|Comedy|Romance|Thriller     30
## 5534  1999                                      Drama|Mystery|Thriller     30
## 5535  1989                                                      Horror     30
## 5536  1983                                                      Horror     30
## 5537  1982                                                      Comedy     30
## 5539  1974                                       Action|Drama|Thriller     30
## 5540  1977                                              Drama|Thriller     30
## 5542  1976                                     Action|Adventure|Sci-Fi     30
## 5544  1970                                               Action|Sci-Fi     30
## 5545  1973                                               Action|Sci-Fi     30
## 5546  1972                                               Action|Sci-Fi     30
## 5547  1971                                               Action|Sci-Fi     30
## 5550  1988                                       Drama|Horror|Thriller     30
## 5552  1999                                      Action|Sci-Fi|Thriller     30
## 5553  1999                                                      Comedy     30
## 5554  1997                                                Comedy|Drama     30
## 5559  1990                                                Action|Crime     30
## 5560  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     30
## 5564  1983                                     Action|Adventure|Sci-Fi     30
## 5565  1956                                      Horror|Sci-Fi|Thriller     30
## 5569  1999                                Action|Comedy|Sci-Fi|Western     30
## 5570  1999                                                       Drama     30
## 5571  1999                                                    Thriller     30
## 5576  1986                                                Comedy|Drama     30
## 5582  1982                                                       Drama     30
## 5585  1999                                                      Comedy     30
## 5588  1981                                             Horror|Thriller     30
## 5589  1980                                                      Comedy     30
## 5590  1997                              Comedy|Horror|Romance|Thriller     30
## 5591  1985                                    Adventure|Comedy|Romance     30
## 5601  1980                                   Adventure|Sci-Fi|Thriller     30
## 5617  1983                                               Drama|Romance     30
## 5620  1980                                     Adventure|Drama|Romance     30
## 5628  1999                                                       Drama     30
## 5629  1999                                                Comedy|Drama     30
## 5635  1978                                                    Thriller     30
## 5636  1989                                                 Crime|Drama     30
## 5642  1991                                    Mystery|Romance|Thriller     30
## 5644  1992                                              Drama|Thriller     30
## 5649  1999                              Fantasy|Horror|Mystery|Romance     30
## 5650  1999                                   Action|Adventure|Thriller     30
## 5651  1988                                      Comedy|Fantasy|Romance     30
## 5652  1940                                                       Drama     30
## 5659  1991                                Comedy|Drama|Fantasy|Romance     30
## 5663  1990                                          Comedy|Crime|Drama     30
## 5664  1988                                                       Drama     30
## 5666  1966                                              Comedy|Romance     30
## 5672  1985                                        Crime|Drama|Thriller     30
## 5673  1999                                                       Drama     30
## 5676  1999                                                       Drama     30
## 5682  1991                                                       Drama     30
## 5686  1992                                                Comedy|Crime     30
## 5692  1992                                      Drama|Romance|Thriller     30
## 5693  1992                                              Comedy|Fantasy     30
## 5695  1992                                        Drama|Romance|Sci-Fi     30
## 5697  2000                                                      Comedy     30
## 5701  2000                                             Action|Thriller     30
## 5711  1985                                                      Comedy     30
## 5713  1987                                                      Comedy     30
## 5714  1987                                              Comedy|Romance     30
## 5721  1984                                            Action|Drama|War     30
## 5722  1978                                            Mystery|Thriller     30
## 5726  1990                                              Horror|Mystery     30
## 5728  2000                                          Animation|Children     30
## 5730  1969                                     Adventure|Drama|Western     30
## 5736  1979                                                Comedy|Drama     30
## 5739  1981                                              Comedy|Romance     30
## 5741  1991                                               Drama|Romance     30
## 5743  2000                               Crime|Horror|Mystery|Thriller     30
## 5754  2000                                                Comedy|Drama     30
## 5767  1982                                                      Comedy     30
## 5768  1988                                 Crime|Drama|Sci-Fi|Thriller     30
## 5770  1985                                     Action|Adventure|Sci-Fi     30
## 5778  1986                                       Action|Crime|Thriller     30
## 5781  1979                                                      Comedy     30
## 5782  1972                                                      Comedy     30
## 5793  1971                                                Action|Drama     30
## 5802  1988                                                Comedy|Drama     30
## 5806  2000                                                Comedy|Crime     30
## 5812  1982                                            Children|Musical     30
## 5817  1992                                        Comedy|Drama|Romance     30
## 5821  1987                                          Animation|Children     30
## 5827  1987                                              Comedy|Romance     30
## 5828  2001                                       Drama|Mystery|Romance     30
## 5830  2001                                                    Thriller     30
## 5833  1984                                                      Comedy     30
## 5834  2000                                            Mystery|Thriller     30
## 5835  2001                                        Comedy|Crime|Romance     30
## 5842  1980                                                Comedy|Crime     30
## 5847  1978                                                       Drama     30
## 5852  1987                                                Comedy|Crime     30
## 5855  1989                                                Comedy|Drama     30
## 5859  2000                                                 Crime|Drama     30
## 5860  1981                                               Action|Comedy     30
## 5862  1991                               Comedy|Drama|Mystery|Thriller     30
## 5867  1988                                        Comedy|Drama|Musical     30
## 5870  1988                                               Drama|Romance     30
## 5871  1988                                          Action|Crime|Drama     30
## 5873  1988                                                    Thriller     30
## 5874  1988                                              Comedy|Romance     30
## 5881  1988                                       Comedy|Romance|Sci-Fi     30
## 5882  1988                                         Action|Thriller|War     30
## 5888  1989                                                       Drama     30
## 5890  1989                                              Comedy|Romance     30
## 5891  1989                                                      Comedy     30
## 5893  1989                                       Action|Crime|Thriller     30
## 5897  1989                                                Comedy|Drama     30
## 5901  1980                                                Drama|Sci-Fi     30
## 5902  1980                                                      Comedy     30
## 5903  2001                                                      Comedy     30
## 5911  1980                                                       Drama     30
## 5916  2001                                      Comedy|Fantasy|Romance     30
## 5919  1982                                                      Comedy     30
## 5921  1980                                     Action|Adventure|Sci-Fi     30
## 5922  1990                                    Adventure|Drama|Thriller     30
## 5929  2001                                           Adventure|Fantasy     30
## 5932  1990                          Action|Comedy|Crime|Drama|Thriller     30
## 5933  1980                                                    Thriller     30
## 5935  1970                                            Comedy|Drama|War     30
## 5936  1984                                               Drama|Romance     30
## 5941  1980                                                      Comedy     30
## 5942  2002                      Drama|Fantasy|Mystery|Romance|Thriller     30
## 5947  1980                                                     Musical     30
## 5950  1977                                              Comedy|Fantasy     30
## 5952  1977                                               Action|Comedy     30
## 5954  2001                                                       Drama     30
## 5956  1984                                             Action|Thriller     30
## 5960  1990                                              Comedy|Romance     30
## 5961  1990                                                      Comedy     30
## 5963  1990                                              Comedy|Romance     30
## 5965  1985                                              Comedy|Romance     30
## 5969  1991                                                       Drama     30
## 5970  1978                                                      Comedy     30
## 5975  1993                                     Children|Comedy|Romance     30
## 5977  1985                                               Drama|Romance     30
## 5978  2002                                      Horror|Sci-Fi|Thriller     30
## 5984  2002                                                    Thriller     30
## 5985  1990                                                      Comedy     30
## 5988  1981                                              Drama|Thriller     30
## 5990  2002                                     Horror|Mystery|Thriller     30
## 5993  1983                                        Comedy|Drama|Musical     30
## 5996  1980                                                      Comedy     30
## 6001  1981                                               Drama|Romance     30
## 6005  1981                                                      Comedy     30
## 6011  1981                                                      Comedy     30
## 6012  1981                                          Drama|Thriller|War     30
## 6014  2002                                                Comedy|Crime     30
## 6016  1982                                                Comedy|Drama     30
## 6017  1982                                        Comedy|Drama|Romance     30
## 6021  1982                                                      Comedy     30
## 6024  2002                                        Crime|Drama|Thriller     30
## 6027  1993                                              Drama|Thriller     30
## 6033  1982                                                Comedy|Drama     30
## 6034  1982                                                       Drama     30
## 6035  1982                                      Drama|Mystery|Thriller     30
## 6036  1982                                                   Drama|War     30
## 6037  1982                                                       Drama     30
## 6039  1990                                                 Crime|Drama     30
## 6040  2003                                            Action|Drama|War     30
## 6041  2003                                                      Comedy     30
## 6042  1993                                              Comedy|Romance     30
## 6043  1977                                               Drama|Mystery     30
## 6046  1991                                          Action|Crime|Drama     30
## 6047  2003                                          Drama|Thriller|War     30
## 6050  1991                                              Comedy|Romance     30
## 6052  1979                                              Comedy|Western     30
## 6062  1995                                      Crime|Mystery|Thriller     31
## 6067  1994                                        Comedy|Drama|Romance     31
## 6071  1996                                          Comedy|Crime|Drama     31
## 6075  1989                                                      Comedy     31
## 6076  1989                                                       Drama     31
## 6084  1996                                               Drama|Musical     31
## 6095  1987                                              Comedy|Romance     31
## 6096  1988                                      Comedy|Fantasy|Romance     31
## 6102  2001                                                Comedy|Drama     31
## 6106  2002                                                   Drama|War     31
## 6107  2003                             Action|Adventure|Comedy|Fantasy     31
## 6127  2010                   Adventure|Animation|Children|Fantasy|IMAX     31
## 6130  1995                                                      Comedy     32
## 6132  1995                                    Action|Adventure|Fantasy     32
## 6136  1995                                          Adventure|Children     32
## 6138  1995                                        Action|Drama|Romance     32
## 6139  1995                                         Action|Crime|Sci-Fi     32
## 6142  1994                                              Drama|Thriller     32
## 6144  1994                                              Comedy|Romance     32
## 6146  1994                                   Drama|Romance|War|Western     32
## 6148  1994                                 Comedy|Crime|Drama|Thriller     32
## 6149  1994                                                       Drama     32
## 6150  1994                                     Action|Adventure|Sci-Fi     32
## 6151  1994                                        Comedy|Drama|Fantasy     32
## 6152  1995                                                      Comedy     32
## 6156  1994                                      Drama|Mystery|Thriller     32
## 6158  1994             Adventure|Animation|Children|Drama|Musical|IMAX     32
## 6161  1994                    Action|Adventure|Comedy|Romance|Thriller     32
## 6162  1993                                     Children|Comedy|Fantasy     32
## 6163  1994                                Action|Comedy|Crime|Thriller     32
## 6164  1993                                                       Drama     32
## 6165  1994                                    Adventure|Comedy|Western     32
## 6166  1993                                   Action|Adventure|Thriller     32
## 6172  1992                 Adventure|Animation|Children|Comedy|Musical     32
## 6176  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     32
## 6177  1995                                                      Comedy     33
## 6178  1996                                                      Comedy     33
## 6179  1995                                                  Comedy|War     33
## 6180  1994                                            Adventure|Comedy     33
## 6182  1994                                     Action|Romance|Thriller     33
## 6186  1996                                                       Drama     33
## 6192  1980                                     Action|Adventure|Sci-Fi     33
## 6200  1984                                             Horror|Thriller     33
## 6201  1996                                             Children|Comedy     33
## 6202  1987                                                      Comedy     33
## 6204  1997                              Comedy|Horror|Mystery|Thriller     33
## 6205  1997                                                      Comedy     33
## 6207  1986                                   Adventure|Fantasy|Musical     33
## 6208  1980                                     Horror|Mystery|Thriller     33
## 6211  1982                                                      Horror     33
## 6215  1998                                                      Comedy     33
## 6217  1980                                    Adventure|Comedy|Musical     33
## 6218  1998                                             Horror|Thriller     33
## 6220  1998                                               Action|Comedy     33
## 6221  1988                                    Action|Adventure|Fantasy     33
## 6224  1998                                                Comedy|Drama     33
## 6227  1999                                               Comedy|Sci-Fi     33
## 6230  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     33
## 6231  1999                                                 Documentary     33
## 6232  1999                                              Comedy|Romance     33
## 6234  1997                              Comedy|Horror|Romance|Thriller     33
## 6236  1999                                              Comedy|Romance     33
## 6237  1999                                                      Comedy     33
## 6240  1988                                                Comedy|Drama     33
## 6244  1999                                     Children|Comedy|Fantasy     33
## 6245  2000                              Comedy|Horror|Mystery|Thriller     33
## 6247  2000                                                Comedy|Drama     33
## 6248  2000                                                       Drama     33
## 6249  2000                                        Comedy|Drama|Romance     33
## 6250  1980                                                      Comedy     33
## 6251  2000                                                Comedy|Drama     33
## 6252  1999                                              Comedy|Romance     33
## 6255  1999                                                       Drama     33
## 6256  2000                                            Adventure|Comedy     33
## 6257  2000                                               Comedy|Horror     33
## 6260  2000                                                      Comedy     33
## 6261  2000                                          Comedy|Documentary     33
## 6263  2000                         Comedy|Crime|Drama|Romance|Thriller     33
## 6264  2000                                                       Drama     33
## 6265  2000                                               Drama|Musical     33
## 6269  2000                                      Adventure|Comedy|Crime     33
## 6271  2001                            Adventure|Comedy|Mystery|Romance     33
## 6272  2001                                                      Comedy     33
## 6276  2000                                                 Crime|Drama     33
## 6277  2001                                                      Comedy     33
## 6278  2001                                              Comedy|Romance     33
## 6280  2001                                                      Comedy     33
## 6282  1988                                          Action|Crime|Drama     33
## 6283  1988                                             Children|Comedy     33
## 6285  1988                                                      Comedy     33
## 6287  1989                                                      Comedy     33
## 6288  2001                                                Comedy|Drama     33
## 6289  2001                               Action|Adventure|Drama|Sci-Fi     33
## 6293  1989                                                      Comedy     33
## 6296  2001                                                      Comedy     33
## 6297  1983                                                       Drama     33
## 6302  1980              Action|Adventure|Comedy|Drama|Romance|Thriller     33
## 6303  2001                                              Crime|Thriller     33
## 6304  2001                                                      Comedy     33
## 6306  1987                                                   Adventure     33
## 6309  2002                                      Comedy|Musical|Romance     33
## 6315  1995                                       Action|Crime|Thriller     34
## 6318  1995                                              Comedy|Romance     34
## 6324  1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller     34
## 6332  1994                                     Action|Romance|Thriller     34
## 6333  1995                                             Horror|Thriller     34
## 6334  1993                                     Action|Adventure|Sci-Fi     34
## 6345  1969                                           Adventure|Western     34
## 6354  1939                          Adventure|Children|Fantasy|Musical     34
## 6364  1982                                       Children|Drama|Sci-Fi     34
## 6367  1996                                                Comedy|Drama     34
## 6369  1980                                              Horror|Mystery     34
## 6372  1990                                       Crime|Drama|Film-Noir     34
## 6374  1980                                     Action|Adventure|Sci-Fi     34
## 6384  1993                      Action|Adventure|Comedy|Fantasy|Horror     34
## 6386  1980                                       Action|Comedy|Musical     34
## 6390  1973                                                Comedy|Crime     34
## 6402  1985                                     Adventure|Comedy|Sci-Fi     34
## 6406  1982                                               Drama|Musical     34
## 6408  1992                               Action|Horror|Sci-Fi|Thriller     34
## 6411  1935                                         Drama|Horror|Sci-Fi     34
## 6413  1975                                               Action|Horror     34
## 6416  1997               Crime|Drama|Fantasy|Film-Noir|Mystery|Romance     34
## 6417  1997                              Action|Adventure|Comedy|Sci-Fi     34
## 6418  1997                                        Action|Comedy|Sci-Fi     34
## 6420  1997                              Drama|Mystery|Romance|Thriller     34
## 6423  1997                                      Drama|Mystery|Thriller     34
## 6425  1997                                               Action|Sci-Fi     34
## 6426  1997                                        Action|Horror|Sci-Fi     34
## 6427  1998                                Crime|Drama|Fantasy|Thriller     34
## 6430  1969                                                       Drama     34
## 6431  1976                                                       Drama     34
## 6432  1984                                               Comedy|Sci-Fi     34
## 6442  1998                                     Horror|Mystery|Thriller     34
## 6443  1998                                             Action|Thriller     34
## 6446  1985                                               Comedy|Sci-Fi     34
## 6448  1976                                     Action|Adventure|Sci-Fi     34
## 6450  1960                                      Horror|Sci-Fi|Thriller     34
## 6457  1984                                        Action|Comedy|Sci-Fi     34
## 6459  1997                              Comedy|Horror|Romance|Thriller     34
## 6460  1988                                Comedy|Drama|Fantasy|Romance     34
## 6468  1967                                            Action|Drama|War     34
## 6469  1962                                   Action|Adventure|Thriller     34
## 6472  1987                          Action|Crime|Drama|Sci-Fi|Thriller     34
## 6477  1970                                            Action|Drama|War     34
## 6481  1992                                 Action|Crime|Drama|Thriller     34
## 6482  2000                                                      Comedy     34
## 6485  1991                                       Adventure|Crime|Drama     34
## 6501  1970                                            Comedy|Drama|War     34
## 6502  1995                                                Drama|Sci-Fi     35
## 6503  1995                                              Drama|Thriller     35
## 6504  1994                                                 Crime|Drama     35
## 6506  1996                               Drama|Fantasy|Horror|Thriller     35
## 6508  1964                                Comedy|Drama|Musical|Romance     35
## 6509  1941                            Animation|Children|Drama|Musical     35
## 6510  1996                                       Action|Drama|Thriller     35
## 6511  1992                                              Comedy|Romance     35
## 6512  1983                                                       Drama     35
## 6513  1990                               Action|Crime|Romance|Thriller     35
## 6514  1962                                          Crime|Thriller|War     35
## 6515  1982                                     Action|Adventure|Sci-Fi     35
## 6517  1992                                          Comedy|Crime|Drama     35
## 6518  1998                                                       Drama     35
## 6519  1981                             Adventure|Comedy|Fantasy|Sci-Fi     35
## 6521  2000                                              Drama|Thriller     35
## 6522  1995                                       Action|Crime|Thriller     36
## 6523  1995                                                 Crime|Drama     36
## 6525  1995                                       Comedy|Crime|Thriller     36
## 6527  1995                                                       Drama     36
## 6530  1995                                                   Drama|War     36
## 6533  1995                                        Comedy|Drama|Romance     36
## 6540  1995                          Action|Comedy|Crime|Drama|Thriller     36
## 6541  1995                                                       Drama     36
## 6542  1995                                    Action|Drama|Romance|War     36
## 6543  1995                                       Action|Crime|Thriller     36
## 6544  1995                                                      Comedy     36
## 6547  1995                                       Action|Comedy|Romance     36
## 6550  1994                                                      Comedy     36
## 6552  1994                                              Comedy|Romance     36
## 6554  1994                                               Comedy|Sci-Fi     36
## 6559  1994                                         Drama|Horror|Sci-Fi     36
## 6560  1994                                                       Drama     36
## 6561  1994                                                       Drama     36
## 6569  1995                                                      Comedy     36
## 6575  1994                                                      Comedy     36
## 6576  1994                                      Drama|Mystery|Thriller     36
## 6577  1994                                    Comedy|Drama|Romance|War     36
## 6580  1994                                    Adventure|Comedy|Western     36
## 6581  1994                                        Comedy|Drama|Romance     36
## 6582  1994                                               Drama|Romance     36
## 6583  1994                               Drama|Horror|Romance|Thriller     36
## 6585  1994                                Action|Comedy|Crime|Thriller     36
## 6587  1994                                    Adventure|Comedy|Western     36
## 6588  1993                                   Action|Adventure|Thriller     36
## 6589  1993                                              Comedy|Romance     36
## 6590  1993                                              Drama|Thriller     36
## 6591  1993                                                    Thriller     36
## 6594  1993                            Action|Adventure|Sci-Fi|Thriller     36
## 6596  1993                                                       Drama     36
## 6599  1993                                               Drama|Romance     36
## 6601  1993                                                       Drama     36
## 6604  1994                                         Comedy|Crime|Horror     36
## 6606  1993                                        Comedy|Drama|Romance     36
## 6607  1993                                                    Thriller     36
## 6608  1993                                     Comedy|Romance|Thriller     36
## 6609  1993                          Animation|Children|Fantasy|Musical     36
## 6610  1990                                             Children|Comedy     36
## 6611  1990                       Comedy|Drama|Fantasy|Romance|Thriller     36
## 6612  1992                 Adventure|Animation|Children|Comedy|Musical     36
## 6613  1990                                     Adventure|Drama|Western     36
## 6614  1989                                       Action|Crime|Thriller     36
## 6616  1990                                              Comedy|Romance     36
## 6617  1996                                              Drama|Thriller     36
## 6620  1996                               Comedy|Fantasy|Romance|Sci-Fi     36
## 6622  1988                                       Action|Crime|Thriller     36
## 6623  1982                                                       Drama     36
## 6625  1996                                   Adventure|Children|Comedy     36
## 6629  1961                                               Drama|Romance     37
## 6632  1938                                    Action|Adventure|Romance     37
## 6634  1980                                     Action|Adventure|Sci-Fi     37
## 6641  1998                                Action|Comedy|Crime|Thriller     37
## 6647  2000                                   Animation|Children|Comedy     37
## 6649  2000                                               Action|Comedy     37
## 6651  2000                                       Comedy|Crime|Thriller     37
## 6653  2000                                               Comedy|Sci-Fi     37
## 6656  2001                                               Drama|Romance     37
## 6668  1994                                 Action|Comedy|Crime|Fantasy     38
## 6671  1990                                     Adventure|Drama|Western     38
## 6686  1997                                               Drama|Romance     38
## 6687  1987                                   Action|Comedy|Crime|Drama     38
## 6688  1997                                               Drama|Romance     38
## 6691  1994        Adventure|Animation|Children|Fantasy|Musical|Romance     38
## 6693  1987                                          Action|Crime|Drama     38
## 6707  1991                                                       Drama     38
## 6708  1980                                               Drama|Musical     38
## 6716  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     38
## 6727  2004                                       Action|Drama|Thriller     38
## 6740  2007                                      Action|Adventure|Drama     38
## 6756  2012                                                       Drama     38
## 6772  1995                                       Comedy|Crime|Thriller     39
## 6774  1995                                                       Drama     39
## 6776  1995                                      Crime|Mystery|Thriller     39
## 6777  1995                                                      Comedy     39
## 6779  1995                                                   Drama|War     39
## 6780  1995                                      Action|Sci-Fi|Thriller     39
## 6782  1995                          Action|Comedy|Crime|Drama|Thriller     39
## 6784  1995                               Action|Adventure|Comedy|Crime     39
## 6785  1995                             Action|Adventure|Mystery|Sci-Fi     39
## 6788  1995                                        Action|Drama|Romance     39
## 6789  1995                             Action|Adventure|Crime|Thriller     39
## 6790  1995                                                       Drama     39
## 6793  1995                                      Fantasy|Horror|Mystery     39
## 6799  1994                                         Drama|Horror|Sci-Fi     39
## 6807  1995                                         Action|Crime|Horror     39
## 6808  1995                                               Horror|Sci-Fi     39
## 6809  1995                                                      Comedy     39
## 6810  1995                                      Action|Sci-Fi|Thriller     39
## 6813  1994                               Drama|Horror|Mystery|Thriller     39
## 6815  1993                                      Horror|Sci-Fi|Thriller     39
## 6820  1992                 Adventure|Animation|Children|Comedy|Musical     39
## 6821  1990                                     Adventure|Drama|Western     39
## 6822  1989                                       Action|Crime|Thriller     39
## 6823  1991                                       Crime|Horror|Thriller     39
## 6824  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     39
## 6859  2010                                      Drama|Mystery|Thriller     40
## 6874  1995                                  Adventure|Children|Fantasy     41
## 6879  1995                                      Action|Sci-Fi|Thriller     41
## 6881  1995                                               Horror|Sci-Fi     41
## 6887  1994                                     Action|Adventure|Sci-Fi     41
## 6892  1994                                    Comedy|Drama|Romance|War     41
## 6895  1993                                      Horror|Sci-Fi|Thriller     41
## 6897  1993                                     Action|Adventure|Sci-Fi     41
## 6901  1981                    Action|Adventure|Animation|Horror|Sci-Fi     41
## 6905  1996                                      Action|Sci-Fi|Thriller     41
## 6911  1996                                          Adventure|Children     41
## 6912  1992                               Action|Horror|Sci-Fi|Thriller     41
## 6916  1989                            Action|Adventure|Sci-Fi|Thriller     41
## 6920  1971                                 Crime|Drama|Sci-Fi|Thriller     41
## 6928  1989                                      Children|Drama|Fantasy     41
## 6930  1963                                             Horror|Thriller     41
## 6932  1979                                            Adventure|Sci-Fi     41
## 6941  1997                                   Action|Adventure|Thriller     41
## 6947  1997                                                      Comedy     41
## 6950  1998                                             Sci-Fi|Thriller     41
## 6951  1998                                       Drama|Sci-Fi|Thriller     41
## 6954  1984                                               Comedy|Sci-Fi     41
## 6956  1989                                   Action|Comedy|Crime|Drama     41
## 6957  1984                                               Comedy|Horror     41
## 6960  1990                             Adventure|Comedy|Sci-Fi|Western     41
## 6965  1997                              Horror|Mystery|Sci-Fi|Thriller     41
## 6967  1998                                           Action|Sci-Fi|War     41
## 6968  1958                                       Horror|Mystery|Sci-Fi     41
## 6969  1986                                Drama|Horror|Sci-Fi|Thriller     41
## 6970  1970                                                       Drama     41
## 6971  1974                                       Action|Drama|Thriller     41
## 6975  1970                                               Action|Sci-Fi     41
## 6976  1973                                               Action|Sci-Fi     41
## 6977  1972                                               Action|Sci-Fi     41
## 6978  1979                                                       Drama     41
## 6981  1999                                      Action|Sci-Fi|Thriller     41
## 6983  1980                                               Action|Sci-Fi     41
## 6984  1983                                     Action|Adventure|Sci-Fi     41
## 6985  1962                                               Drama|Romance     41
## 6986  1986                                       Comedy|Horror|Musical     41
## 6990  1990                            Action|Adventure|Sci-Fi|Thriller     41
## 6996  1992                                                      Comedy     41
## 6998  2000                                                      Sci-Fi     41
## 7003  1979                            Action|Adventure|Sci-Fi|Thriller     41
## 7004  1987                                               Action|Sci-Fi     41
## 7005  1984                              Adventure|Drama|Romance|Sci-Fi     41
## 7009  2000                  Action|Adventure|Animation|Children|Sci-Fi     41
## 7011  1992                                               Action|Sci-Fi     41
## 7012  2000                                       Drama|Horror|Thriller     41
## 7014  1984                                             Sci-Fi|Thriller     41
## 7015  2000                                      Action|Sci-Fi|Thriller     41
## 7020  1981                                      Action|Sci-Fi|Thriller     41
## 7023  1989                                       Drama|Sci-Fi|Thriller     41
## 7025  1985                                               Action|Sci-Fi     41
## 7028  2001                                Drama|Fantasy|Mystery|Sci-Fi     41
## 7031  2002                            Action|Adventure|Sci-Fi|Thriller     41
## 7033  2002                                        Action|Comedy|Sci-Fi     41
## 7034  2002                                    Action|Adventure|Fantasy     41
## 7035  1976                                               Action|Comedy     41
## 7039  1983                                        Comedy|Drama|Musical     41
## 7041  2002                                        Drama|Romance|Sci-Fi     41
## 7046  2003                                Action|Drama|Sci-Fi|Thriller     41
## 7052  2002                                        Action|Horror|Sci-Fi     41
## 7053  2003                                     Action|Adventure|Sci-Fi     41
## 7056  1990                                                Drama|Sci-Fi     41
## 7066  1974                                              Fantasy|Sci-Fi     41
## 7074  1995                                       Action|Crime|Thriller     42
## 7080  1994                    Action|Adventure|Comedy|Romance|Thriller     42
## 7083  1993                                                       Drama     42
## 7088  1996                                   Action|Adventure|Thriller     42
## 7097  1992                               Action|Horror|Sci-Fi|Thriller     42
## 7098  1990                                   Action|Adventure|Thriller     42
## 7100  1997                                 Action|Crime|Drama|Thriller     42
## 7104  1999                                      Action|Sci-Fi|Thriller     42
## 7107  2000                                     Action|Adventure|Sci-Fi     42
## 7108  2000                                        Action|Drama|Romance     42
## 7117  2005                                           Action|Crime|IMAX     42
## 7118  2005                             Adventure|Fantasy|Thriller|IMAX     42
## 7124  2008                                         Crime|Drama|Romance     42
## 7125  2009                                Action|Adventure|Sci-Fi|IMAX     42
## 7129  2010                                      Drama|Mystery|Thriller     42
## 7134  2012                                 Action|Adventure|Crime|IMAX     42
## 7135  2012                                      Adventure|Fantasy|IMAX     42
## 7136  2013                                      Adventure|Fantasy|IMAX     42
## 7139  2014                                          Action|Sci-Fi|IMAX     42
## 7140  2014                                     Action|Adventure|Sci-Fi     42
## 7142  2015           Adventure|Animation|Children|Comedy|Drama|Fantasy     42
## 7146  1996                               Action|Comedy|Horror|Thriller     43
## 7147  1996                                                      Comedy     43
## 7149  1995                                                      Comedy     43
## 7150  1994                                                      Comedy     43
## 7151  1994                                            Adventure|Comedy     43
## 7155  1993                                                Comedy|Drama     43
## 7156  1993                                                       Drama     43
## 7158  1995                                                      Comedy     43
## 7159  1992                 Adventure|Animation|Children|Comedy|Musical     43
## 7160  1991                                               Action|Sci-Fi     43
## 7165  1983                                     Action|Adventure|Sci-Fi     43
## 7166  1978                                      Comedy|Musical|Romance     43
## 7167  1997                                        Comedy|Drama|Romance     43
## 7170  1997                                     Action|Adventure|Comedy     43
## 7171  1997                            Action|Adventure|Sci-Fi|Thriller     43
## 7175  1997                                                       Drama     43
## 7176  1997                               Action|Adventure|Drama|Sci-Fi     43
## 7177  1998                                              Comedy|Romance     43
## 7178  1998                                   Adventure|Children|Comedy     43
## 7179  1998                                              Comedy|Romance     43
## 7180  1998                                        Comedy|Drama|Romance     43
## 7181  1998                                        Comedy|Drama|Romance     43
## 7182  1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance     43
## 7184  1985                                                Comedy|Drama     43
## 7186  1987                                   Action|Comedy|Crime|Drama     43
## 7187  1984                                               Comedy|Horror     43
## 7188  1990                                               Comedy|Horror     43
## 7189  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     43
## 7191  1992                                             Children|Comedy     43
## 7192  1979                                                      Comedy     43
## 7193  1984                                              Comedy|Romance     43
## 7194  1980                                            Adventure|Comedy     43
## 7195  1968                                       Drama|Horror|Thriller     43
## 7196  1990                                       Drama|Fantasy|Romance     43
## 7200  1998                                                      Comedy     43
## 7201  1998                                                Comedy|Drama     43
## 7203  1999                                                Comedy|Drama     43
## 7204  1958                                       Horror|Mystery|Sci-Fi     43
## 7205  1986                                Drama|Horror|Sci-Fi|Thriller     43
## 7206  1999                                              Comedy|Romance     43
## 7207  1999                                                      Comedy     43
## 7208  1999                                              Comedy|Fantasy     43
## 7210  1999                                     Action|Adventure|Comedy     43
## 7211  1999                                Crime|Drama|Mystery|Thriller     43
## 7213  1999                                    Animation|Comedy|Musical     43
## 7215  1999                                       Action|Comedy|Fantasy     43
## 7216  1999                                                      Comedy     43
## 7217  1980                                                      Comedy     43
## 7219  1999                                                      Comedy     43
## 7222  1999                                              Comedy|Romance     43
## 7224  1999                                                    Thriller     43
## 7225  1999                                    Adventure|Comedy|Fantasy     43
## 7227  1999                                        Drama|Romance|Sci-Fi     43
## 7229  1999                                                       Drama     43
## 7231  1992                                                Comedy|Crime     43
## 7232  1993                                                      Comedy     43
## 7233  1992                                                Comedy|Drama     43
## 7234  2000                                                      Comedy     43
## 7235  2000                                                Comedy|Crime     43
## 7237  1993                                                      Comedy     43
## 7238  2000                                        Comedy|Drama|Romance     43
## 7241  1984                                                      Comedy     43
## 7242  2000                               Crime|Horror|Mystery|Thriller     43
## 7243  2000                                         Action|Thriller|War     43
## 7244  2000                             Action|Adventure|Comedy|Western     43
## 7245  1991                                                      Comedy     43
## 7247  1990                                                      Comedy     43
## 7248  1988                                 Action|Comedy|Crime|Romance     43
## 7249  1991                                                      Comedy     43
## 7250  1987                                                      Horror     43
## 7251  2000                                                      Comedy     43
## 7255  1995                                                      Comedy     44
## 7256  1995                                       Action|Crime|Thriller     44
## 7257  1995                                               Drama|Romance     44
## 7258  1995                                               Drama|Romance     44
## 7259  1995                                     Mystery|Sci-Fi|Thriller     44
## 7261  1996                                   Action|Adventure|Thriller     44
## 7264  1996                                                      Comedy     44
## 7265  1977                                     Action|Adventure|Sci-Fi     44
## 7266  1996                                   Action|Adventure|Thriller     44
## 7267  1996                                Crime|Drama|Mystery|Thriller     44
## 7268  1996                                                      Comedy     44
## 7269  1996                           Action|Adventure|Mystery|Thriller     44
## 7273  1996                                       Action|Drama|Thriller     44
## 7274  1996                               Comedy|Fantasy|Romance|Sci-Fi     44
## 7275  1996                                               Drama|Romance     44
## 7277  1996                                       Action|Drama|Thriller     44
## 7278  1993                                                      Comedy     45
## 7283  1997                                        Comedy|Drama|Romance     45
## 7286  1999                                              Comedy|Romance     45
## 7288  1990                                               Comedy|Horror     45
## 7289  1999                                    Adventure|Comedy|Fantasy     45
## 7292  2000                                            Action|Drama|War     45
## 7294  2001                                        Comedy|Drama|Romance     45
## 7295  2001                                               Drama|Romance     45
## 7342  1995                                              Comedy|Romance     47
## 7344  1996                                   Action|Adventure|Thriller     47
## 7348  1995                             Action|Adventure|Mystery|Sci-Fi     47
## 7352  1995                                     Action|Adventure|Sci-Fi     47
## 7353  1994                                            Adventure|Comedy     47
## 7355  1994                                                Drama|Horror     47
## 7356  1994                                   Drama|Romance|War|Western     47
## 7360  1994                                                       Drama     47
## 7364  1994                                                      Comedy     47
## 7367  1993                                     Children|Comedy|Fantasy     47
## 7368  1994                                Action|Comedy|Crime|Thriller     47
## 7370  1993                                     Action|Adventure|Sci-Fi     47
## 7373  1989                                       Action|Crime|Thriller     47
## 7375  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     47
## 7377  1995                                  Adventure|Children|Fantasy     48
## 7378  1995                                              Children|Drama     48
## 7380  1976                                        Crime|Drama|Thriller     48
## 7381  1995                                          Adventure|Children     48
## 7382  1995                                      Action|Romance|Western     48
## 7383  1994                                                      Comedy     48
## 7384  1994                                            Adventure|Comedy     48
## 7385  1994                                       Action|Crime|Thriller     48
## 7388  1994                                                      Comedy     48
## 7391  1994                                 Action|Comedy|Crime|Fantasy     48
## 7392  1993                            Action|Adventure|Sci-Fi|Thriller     48
## 7393  1993                                                       Drama     48
## 7396  1995                                                Comedy|Drama     48
## 7397  1991                                       Crime|Horror|Thriller     48
## 7398  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     48
## 7399  1996                           Action|Adventure|Mystery|Thriller     48
## 7400  1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     48
## 7403  1996                                             Comedy|Thriller     48
## 7406  1982                                       Children|Drama|Sci-Fi     48
## 7407  1989                            Action|Adventure|Sci-Fi|Thriller     48
## 7408  1993                             Animation|Children|Comedy|Crime     48
## 7411  1971                                 Crime|Drama|Sci-Fi|Thriller     48
## 7412  1979                                               Horror|Sci-Fi     48
## 7413  1987                                                   Drama|War     48
## 7414  1984                                      Action|Sci-Fi|Thriller     48
## 7416  1985                                     Adventure|Comedy|Sci-Fi     48
## 7417  1988                           Action|Adventure|Animation|Sci-Fi     48
## 7419  1996                              Comedy|Horror|Mystery|Thriller     48
## 7420  1997                                                      Comedy     48
## 7421  1997                                   Action|Adventure|Thriller     48
## 7422  1997                              Action|Adventure|Comedy|Sci-Fi     48
## 7423  1997                            Action|Adventure|Sci-Fi|Thriller     48
## 7424  1997                                        Action|Comedy|Sci-Fi     48
## 7425  1997                            Action|Adventure|Sci-Fi|Thriller     48
## 7426  1997                                               Action|Sci-Fi     48
## 7427  1998                                         Comedy|Drama|Sci-Fi     48
## 7429  1998                                                Comedy|Crime     48
## 7431  1998                                      Action|Sci-Fi|Thriller     48
## 7433  1998                              Action|Romance|Sci-Fi|Thriller     48
## 7435  1998                                              Comedy|Romance     48
## 7436  1973                                              Horror|Mystery     48
## 7437  1998                                       Action|Comedy|Romance     48
## 7438  1998                                      Action|Horror|Thriller     48
## 7439  1997                              Horror|Mystery|Sci-Fi|Thriller     48
## 7440  1982                               Action|Horror|Sci-Fi|Thriller     48
## 7442  1998                 Adventure|Animation|Children|Comedy|Fantasy     48
## 7443  1998                                                Comedy|Drama     48
## 7446  1998                         Adventure|Animation|Children|Comedy     48
## 7447  1986                                Drama|Horror|Sci-Fi|Thriller     48
## 7448  1998                                       Comedy|Crime|Thriller     48
## 7450  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     48
## 7451  1998                                                Action|Crime     48
## 7452  1999                                    Animation|Comedy|Musical     48
## 7453  1999                                              Comedy|Romance     48
## 7454  1999                                       Drama|Horror|Thriller     48
## 7455  1999                               Action|Horror|Sci-Fi|Thriller     48
## 7456  1999                                        Drama|Horror|Mystery     48
## 7457  1999                                              Drama|Thriller     48
## 7459  1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     48
## 7460  1999                                        Comedy|Drama|Fantasy     48
## 7462  1999                 Adventure|Animation|Children|Comedy|Fantasy     48
## 7464  1987                                      Action|Sci-Fi|Thriller     48
## 7467  2000                                                Action|Crime     48
## 7468  2000                  Action|Adventure|Animation|Children|Sci-Fi     48
## 7469  2000                                   Animation|Children|Comedy     48
## 7470  2000                                     Action|Adventure|Sci-Fi     48
## 7472  2000                                                      Comedy     48
## 7474  2000                 Adventure|Animation|Children|Comedy|Fantasy     48
## 7475  2000                                                       Drama     48
## 7476  2000                                            Mystery|Thriller     48
## 7477  2001                            Action|Adventure|Comedy|Thriller     48
## 7479  2001                                       Action|Crime|Thriller     48
## 7480  2001                          Adventure|Animation|Fantasy|Sci-Fi     48
## 7481  2001                               Drama|Horror|Mystery|Thriller     48
## 7483  2001                 Adventure|Animation|Children|Comedy|Fantasy     48
## 7484  2001                           Drama|Fantasy|Horror|Thriller|War     48
## 7486  2001                             Mystery|Romance|Sci-Fi|Thriller     48
## 7492  2001                                               Drama|Romance     48
## 7493  2002                            Action|Adventure|Sci-Fi|Thriller     48
## 7494  2002                                        Action|Comedy|Sci-Fi     48
## 7495  2002                                      Horror|Sci-Fi|Thriller     48
## 7496  1996                                       Drama|Horror|Thriller     48
## 7499  2002                                     Horror|Mystery|Thriller     48
## 7502  2002                                      Action|Sci-Fi|Thriller     48
## 7507  2002                                Crime|Drama|Mystery|Thriller     48
## 7508  2001                                          Comedy|Crime|Drama     48
## 7509  1998                                     Horror|Mystery|Thriller     48
## 7510  2001                            Action|Animation|Sci-Fi|Thriller     48
## 7511  2002                                                 Crime|Drama     48
## 7513  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7517  2003                                        Comedy|Drama|Romance     48
## 7518  1995                          Action|Adventure|Animation|Fantasy     48
## 7519  2003                                                       Drama     48
## 7520  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7521  2003                        Crime|Drama|Mystery|Romance|Thriller     48
## 7523  2003                                       Drama|Fantasy|Romance     48
## 7525  2001                   Action|Comedy|Crime|Drama|Horror|Thriller     48
## 7528  2004                                Action|Drama|Horror|Thriller     48
## 7530  2004                             Action|Adventure|Fantasy|Horror     48
## 7531  2003                                      Drama|Mystery|Thriller     48
## 7534  1998                                  Animation|Fantasy|Thriller     48
## 7535  2004         Adventure|Animation|Children|Comedy|Musical|Romance     48
## 7536  2004                                                      Comedy     48
## 7539  2004                                                 Crime|Drama     48
## 7543  1980                                                      Horror     48
## 7544  2004                                   Animation|Children|Comedy     48
## 7546  2004                                     Horror|Mystery|Thriller     48
## 7547  2004                  Action|Adventure|Animation|Children|Comedy     48
## 7548  2004                   Adventure|Animation|Children|Fantasy|IMAX     48
## 7552  2001                                              Comedy|Romance     48
## 7553  2003                               Action|Animation|Drama|Sci-Fi     48
## 7555  2003                                               Drama|Romance     48
## 7557  2003                                            Mystery|Thriller     48
## 7558  2003                  Adventure|Animation|Fantasy|Musical|Sci-Fi     48
## 7559  2003                                             Action|Thriller     48
## 7560  2004                                              Drama|Thriller     48
## 7562  2003                                                 Documentary     48
## 7564  2005                      Adventure|Children|Comedy|Fantasy|IMAX     48
## 7569  2004                                               Action|Comedy     48
## 7570  2005     Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX     48
## 7571  1995                           Animation|Fantasy|Sci-Fi|Thriller     48
## 7575  2004                                                 Crime|Drama     48
## 7576  2005                         Adventure|Animation|Children|Comedy     48
## 7577  2005                             Action|Adventure|Comedy|Romance     48
## 7578  2005                                         Action|Crime|Horror     48
## 7579  2005                                     Action|Adventure|Sci-Fi     48
## 7580  2005                                      Drama|Mystery|Thriller     48
## 7581  2005                                                Comedy|Drama     48
## 7582  2005                    Animation|Comedy|Fantasy|Musical|Romance     48
## 7583  2004                   Action|Adventure|Animation|Fantasy|Sci-Fi     48
## 7584  2005                         Adventure|Animation|Children|Comedy     48
## 7586  2005                     Action|Adventure|Drama|Fantasy|Thriller     48
## 7587  2005                                        Comedy|Drama|Romance     48
## 7588  2005                                                      Horror     48
## 7589  2006                         Adventure|Animation|Children|Comedy     48
## 7590  2006                                 Action|Sci-Fi|Thriller|IMAX     48
## 7591  2006                                       Drama|Horror|Thriller     48
## 7594  2006                                        Comedy|Horror|Sci-Fi     48
## 7595  2005                                              Drama|Thriller     48
## 7598  2006                                                Comedy|Drama     48
## 7600  2006                                      Adventure|Comedy|Drama     48
## 7601  2006                          Animation|Children|Fantasy|Mystery     48
## 7602  2006                                Comedy|Drama|Fantasy|Romance     48
## 7603  2006                                                       Drama     48
## 7604  2006            Adventure|Animation|Children|Comedy|Fantasy|IMAX     48
## 7608  2006                                       Drama|Fantasy|Romance     48
## 7610  2006                                                      Comedy     48
## 7612  2006                    Adventure|Animation|Children|Comedy|IMAX     48
## 7613  2006                      Action|Adventure|Drama|Sci-Fi|Thriller     48
## 7614  2006                               Drama|Mystery|Sci-Fi|Thriller     48
## 7615  2006                                            Animation|Comedy     48
## 7617  2006                                      Action|Sci-Fi|Thriller     48
## 7618  2005                                                Comedy|Drama     48
## 7620  2007                                    Animation|Children|Drama     48
## 7621  2007                                 Action|Comedy|Crime|Mystery     48
## 7622  2007                                        Crime|Drama|Thriller     48
## 7624  2007                         Action|Crime|Horror|Sci-Fi|Thriller     48
## 7625  2007           Action|Adventure|Animation|Children|Comedy|Sci-Fi     48
## 7627  2007                             Adventure|Drama|Sci-Fi|Thriller     48
## 7628  2007                                              Drama|Thriller     48
## 7629  2007                       Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7630  2007                 Adventure|Animation|Children|Comedy|Fantasy     48
## 7631  2006                                                      Horror     48
## 7632  2007                                   Animation|Children|Comedy     48
## 7633  2007                      Action|Adventure|Crime|Horror|Thriller     48
## 7636  2007                                 Action|Sci-Fi|Thriller|IMAX     48
## 7637  2007                                            Animation|Comedy     48
## 7638  2007                                                      Comedy     48
## 7644  2007                                            Animation|Comedy     48
## 7646  2007                                                Drama|Sci-Fi     48
## 7647  2007                     Action|Adventure|Animation|Fantasy|IMAX     48
## 7648  2007                                Comedy|Drama|Horror|Thriller     48
## 7649  2007                                                       Drama     48
## 7650  2007                                               Horror|Sci-Fi     48
## 7651  2007                          Action|Horror|Sci-Fi|Thriller|IMAX     48
## 7653  2007                                        Comedy|Drama|Romance     48
## 7655  2007                               Drama|Horror|Musical|Thriller     48
## 7656  2007                                               Drama|Western     48
## 7658  2007                                       Drama|Horror|Thriller     48
## 7660  2007                                        Comedy|Drama|Romance     48
## 7662  2008                             Action|Adventure|Fantasy|Sci-Fi     48
## 7664  2006                                                Comedy|Drama     48
## 7665  2008                         Adventure|Animation|Children|Comedy     48
## 7666  2006                                      Comedy|Fantasy|Romance     48
## 7667  2007                                                       Drama     48
## 7670  2007                                       Children|Comedy|Drama     48
## 7674  2008                       Action|Animation|Children|Comedy|IMAX     48
## 7676  2008                                               Action|Comedy     48
## 7677  2008                      Action|Animation|Comedy|Romance|Sci-Fi     48
## 7679  2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     48
## 7680  2008                                                 Documentary     48
## 7682  2008                                          Comedy|Crime|Drama     48
## 7684  2008                                                 Crime|Drama     48
## 7685  2008            Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi     48
## 7686  2008             Action|Adventure|Animation|Children|Comedy|IMAX     48
## 7687  2008                                         Crime|Drama|Romance     48
## 7688  2008                                                      Comedy     48
## 7689  2008                                                       Drama     48
## 7690  2008                  Action|Adventure|Animation|Children|Comedy     48
## 7693  2008                               Drama|Fantasy|Mystery|Romance     48
## 7694  2008                                                      Comedy     48
## 7695  2008                                          Drama|Thriller|War     48
## 7698  2008                        Adventure|Animation|Children|Fantasy     48
## 7700  2009                                  Animation|Fantasy|Thriller     48
## 7701  2008                                                       Drama     48
## 7702  2009                        Action|Drama|Mystery|Sci-Fi|Thriller     48
## 7704  2009                                       Animation|Sci-Fi|IMAX     48
## 7705  2009                                                Comedy|Drama     48
## 7708  2009                                Action|Adventure|Sci-Fi|IMAX     48
## 7709  1997                             Action|Animation|Mystery|Sci-Fi     48
## 7712  2009                                Action|Adventure|Sci-Fi|IMAX     48
## 7713  2009          Action|Adventure|Animation|Children|Comedy|Romance     48
## 7714  2009                                                       Drama     48
## 7721  2009                                  Adventure|Animation|Sci-Fi     48
## 7722  2009                             Animation|Children|Fantasy|IMAX     48
## 7723  2008                                                 Documentary     48
## 7726  2009                                       Action|Fantasy|Sci-Fi     48
## 7727  2009                                                      Comedy     48
## 7728  2009                                        Action|Comedy|Horror     48
## 7729  2009                                               Drama|Romance     48
## 7731  1989                     Animation|Drama|Mystery|Sci-Fi|Thriller     48
## 7732  2009                            Action|Animation|Children|Sci-Fi     48
## 7733  2009                              Horror|Mystery|Sci-Fi|Thriller     48
## 7734  2009                         Crime|Drama|Fantasy|Horror|Thriller     48
## 7735  2009                                                       Drama     48
## 7738  2010                                Action|Drama|Horror|Thriller     48
## 7739  2010                                      Action|Adventure|Drama     48
## 7740  2009                                                 Documentary     48
## 7741  2008                                Adventure|Animation|Children     48
## 7743  2009                               Drama|Horror|Mystery|Thriller     48
## 7745  2010                                      Adventure|Fantasy|IMAX     48
## 7748  2010                                               Action|Comedy     48
## 7750  2009                                                      Horror     48
## 7751  2010                       Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7757  2009                                Drama|Fantasy|Romance|Sci-Fi     48
## 7759  2009                             Fantasy|Horror|Mystery|Thriller     48
## 7761  2010                                        Comedy|Drama|Romance     48
## 7762  2010                                        Drama|Horror|Mystery     48
## 7763  2010                                         Documentary|Mystery     48
## 7765  2010                                                   Animation     48
## 7766  2010                                    Adventure|Drama|Thriller     48
## 7767  2010                Action|Animation|Children|Comedy|Sci-Fi|IMAX     48
## 7769  2010                                                       Drama     48
## 7770  2010      Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX     48
## 7771  2010                                Action|Adventure|Sci-Fi|IMAX     48
## 7772  2010                                              Crime|Thriller     48
## 7773  2010                                  Animation|Children|Fantasy     48
## 7774  2010                                               Comedy|Horror     48
## 7775  2010                                          Animation|Children     48
## 7778  2011                                     Adventure|Comedy|Sci-Fi     48
## 7781  2010                                              Fantasy|Horror     48
## 7783  2011                                Action|Fantasy|Thriller|IMAX     48
## 7786  2010                                     Fantasy|Horror|Thriller     48
## 7787  2011                             Action|Adventure|Crime|Thriller     48
## 7789  2011                         Action|Adventure|Drama|Fantasy|IMAX     48
## 7790  2008                                                      Comedy     48
## 7791  2008                                     Animation|Drama|Fantasy     48
## 7794  2011                                Mystery|Sci-Fi|Thriller|IMAX     48
## 7795  2011                                     Action|Adventure|Sci-Fi     48
## 7796  2011                            Action|Adventure|Sci-Fi|War|IMAX     48
## 7797  2011                        Action|Adventure|Sci-Fi|Thriller|War     48
## 7798  2011                                Action|Drama|Sci-Fi|Thriller     48
## 7799  2012                                Action|Adventure|Sci-Fi|IMAX     48
## 7800  2011                                     Horror|Mystery|Thriller     48
## 7801  2011                                                      Horror     48
## 7802  2011                                                       Drama     48
## 7803  2011                     Adventure|Animation|Comedy|Fantasy|IMAX     48
## 7804  2011                               Action|Animation|Mystery|IMAX     48
## 7805  2011                             Animation|Children|Comedy|Drama     48
## 7806  2012                                 Action|Adventure|Crime|IMAX     48
## 7807  2011              Action|Adventure|Comedy|Crime|Mystery|Thriller     48
## 7808  2011                                                      Horror     48
## 7809  2012                                      Action|Sci-Fi|Thriller     48
## 7810  2012                              Animation|Fantasy|Musical|IMAX     48
## 7811  2011                                                Action|Crime     48
## 7812  2012                               Comedy|Horror|Sci-Fi|Thriller     48
## 7815  2003                                          Animation|Children     48
## 7816  2012                                Action|Adventure|Sci-Fi|IMAX     48
## 7817  2012                                  Adventure|Animation|Comedy     48
## 7819  2012                                      Action|Sci-Fi|Thriller     48
## 7820  2012                                  Adventure|Animation|Comedy     48
## 7821  2011                                                 Documentary     48
## 7822  2012                                         Action|Crime|Sci-Fi     48
## 7825  2012                                             Horror|Thriller     48
## 7826  2012                                   Animation|Children|Comedy     48
## 7828  2012                                            Animation|Comedy     48
## 7829  2012                                                Comedy|Drama     48
## 7830  2012                                        Adventure|Drama|IMAX     48
## 7832  2012                                               Drama|Romance     48
## 7833  2012                   Adventure|Animation|Children|Fantasy|IMAX     48
## 7838  2013                                  Adventure|Animation|Comedy     48
## 7839  2013                                 Action|Sci-Fi|Thriller|IMAX     48
## 7841  2013                        Action|Adventure|Fantasy|Sci-Fi|IMAX     48
## 7842  2013                                Action|Adventure|Sci-Fi|IMAX     48
## 7843  2013                                    Action|Drama|Horror|IMAX     48
## 7844  2013                                    Action|Drama|Sci-Fi|IMAX     48
## 7845  2012                                             Horror|Thriller     48
## 7846  2013                              Animation|Children|Comedy|IMAX     48
## 7847  2013                                             Horror|Thriller     48
## 7848  2013                                          Action|Sci-Fi|IMAX     48
## 7849  2013                                Action|Adventure|Sci-Fi|IMAX     48
## 7850  2013                               Action|Adventure|Fantasy|IMAX     48
## 7851  2013                                                       Drama     48
## 7853  2013          Adventure|Animation|Comedy|Fantasy|Musical|Romance     48
## 7854  2013                                         Action|Drama|Sci-Fi     48
## 7855  2014                                             Horror|Thriller     48
## 7856  2013                               Action|Animation|Fantasy|IMAX     48
## 7857  2014                               Adventure|Romance|Sci-Fi|IMAX     48
## 7858  2014                                    Action|Crime|Sci-Fi|IMAX     48
## 7859  2014                                                 Sci-Fi|IMAX     48
## 7860  2014                                     Action|Mystery|Thriller     48
## 7861  2014                                       Action|Drama|War|IMAX     48
## 7862  2014                                  Adventure|Animation|Comedy     48
## 7863  2013                                      Horror|Sci-Fi|Thriller     48
## 7864  2014                                     Action|Crime|Drama|IMAX     48
## 7865  2014                                Action|Adventure|Sci-Fi|IMAX     48
## 7866  2014                                        Adventure|Drama|IMAX     48
## 7867  2014                                       Action|Crime|Thriller     48
## 7868  2014                                          Action|Sci-Fi|IMAX     48
## 7869  2013                                                      Horror     48
## 7870  2014                         Adventure|Animation|Children|Comedy     48
## 7871  2014                                           Drama|Sci-Fi|IMAX     48
## 7872  2014                                     Action|Adventure|Sci-Fi     48
## 7873  2014                                Action|Adventure|Sci-Fi|IMAX     48
## 7874  2014                              Action|Adventure|Children|IMAX     48
## 7876  2014                                  Action|Adventure|Animation     48
## 7877  2014                                     Action|Adventure|Sci-Fi     48
## 7878  2014                                       Drama|Horror|Thriller     48
## 7879  2014                                                      Sci-Fi     48
## 7880  2014                                     Action|Adventure|Sci-Fi     48
## 7881  2013                               Drama|Mystery|Sci-Fi|Thriller     48
## 7882  2014                                       Action|Mystery|Sci-Fi     48
## 7883  2014                              Action|Mystery|Sci-Fi|Thriller     48
## 7884  2014                                             Action|Thriller     48
## 7885  2014                                                      Horror     48
## 7886  2014                                     Action|Animation|Comedy     48
## 7887  2010                                                      Horror     48
## 7888  2014                                           Adventure|Fantasy     48
## 7890  1995                                  Adventure|Children|Fantasy     49
## 7892  1995                                         Action|Crime|Sci-Fi     49
## 7893  1995                   Adventure|Children|Comedy|Fantasy|Romance     49
## 7894  1995                                     Action|Thriller|Western     49
## 7895  1994                                      Adventure|Drama|Sci-Fi     49
## 7897  1994                                    Adventure|Children|Drama     49
## 7899  1993                                                       Drama     49
## 7900  1990                                     Adventure|Drama|Western     49
## 7901  1989                                       Action|Crime|Thriller     49
## 7903  1968                                     Adventure|Comedy|Sci-Fi     49
## 7904  1995                                 Action|Adventure|Comedy|War     49
## 7905  1996                                   Action|Adventure|Thriller     49
## 7913  1956                                            Adventure|Comedy     49
## 7916  1960                                          Adventure|Children     49
## 7920  1981                            Action|Adventure|Sci-Fi|Thriller     49
## 7926  1983                                     Action|Adventure|Sci-Fi     49
## 7933  1982                            Action|Adventure|Sci-Fi|Thriller     49
## 7936  1996                                        Action|Comedy|Sci-Fi     49
## 7937  1997                                        Action|Comedy|Sci-Fi     49
## 7938  1997                                               Action|Sci-Fi     49
## 7940  1972                                      Action|Adventure|Drama     49
## 7941  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     49
## 7942  1980                                    Adventure|Comedy|Musical     49
## 7943  1991                                     Action|Adventure|Sci-Fi     49
## 7944  1982                                     Action|Adventure|Sci-Fi     49
## 7949  1933                             Action|Adventure|Fantasy|Horror     49
## 7950  1985                                   Action|Adventure|Thriller     49
## 7952  1985          Action|Adventure|Children|Fantasy|Mystery|Thriller     49
## 7955  1974                             Action|Adventure|Drama|Thriller     49
## 7956  1979                                                   Adventure     49
## 7958  1959                                                         War     49
## 7959  1987                                     Action|Adventure|Comedy     49
## 7960  1986                                                  Action|War     49
## 7961  1988                                                  Action|War     49
## 7962  1992                                                      Action     49
## 7963  1972                                    Adventure|Drama|Thriller     49
## 7964  1958                                         Musical|Romance|War     49
## 7969  1970                                            Action|Drama|War     49
## 7971  1992                                                Comedy|Crime     49
## 7972  1992                                        Drama|Romance|Sci-Fi     49
## 7974  1988                                    Adventure|Children|Drama     49
## 7976  1984                                            Action|Drama|War     49
## 7977  1963                                    Adventure|Drama|Thriller     49
## 7978  1978                                            Action|Drama|War     49
## 7982  1970                                           Action|Comedy|War     49
## 7983  1966                                            Adventure|Sci-Fi     49
## 7985  1960                                    Action|Drama|War|Western     49
## 7989  1995                                       Comedy|Crime|Thriller     50
## 7990  1995                                              Comedy|Romance     50
## 7991  1995                                            Mystery|Thriller     50
## 7992  1996                                   Action|Adventure|Thriller     50
## 7994  1995                                        Adventure|Drama|IMAX     50
## 7995  1995                             Action|Adventure|Mystery|Sci-Fi     50
## 7998  1995                                       Action|Crime|Thriller     50
## 7999  1995                                     Action|Adventure|Sci-Fi     50
## 8000  1994                                            Adventure|Comedy     50
## 8001  1994                                                Drama|Horror     50
## 8002  1994                                                       Drama     50
## 8005  1994                                       Action|Drama|Thriller     50
## 8006  1994                                     Action|Adventure|Sci-Fi     50
## 8007  1993                                                       Drama     50
## 8009  1994                                                      Comedy     50
## 8010  1994                                 Action|Crime|Drama|Thriller     50
## 8015  1994                                     Action|Romance|Thriller     50
## 8016  1994                    Action|Adventure|Comedy|Romance|Thriller     50
## 8017  1994                                Action|Comedy|Crime|Thriller     50
## 8018  1993                                   Action|Adventure|Thriller     50
## 8020  1993                                     Action|Adventure|Sci-Fi     50
## 8021  1993                                              Drama|Thriller     50
## 8022  1993                                                    Thriller     50
## 8024  1993                                               Drama|Romance     50
## 8026  1993                                        Comedy|Drama|Romance     50
## 8027  1993                                        Action|Drama|Western     50
## 8028  1990                       Comedy|Drama|Fantasy|Romance|Thriller     50
## 8030  1990                                     Adventure|Drama|Western     50
## 8031  1990                                              Comedy|Romance     50
## 8033  1996                                       Action|Drama|Thriller     50
## 8035  1997                                             Action|Thriller     51
## 8036  1998                                        Comedy|Drama|Romance     51
## 8040  1985                                        Comedy|Drama|Romance     51
## 8041  1998                                        Comedy|Drama|Romance     51
## 8047  1999                                Action|Comedy|Sci-Fi|Western     51
## 8050  1999                                              Comedy|Romance     51
## 8051  1986                                    Adventure|Drama|Thriller     51
## 8056  1999                                              Drama|Thriller     51
## 8066  1993                                                       Drama     52
## 8067  1994                                               Drama|Romance     52
## 8072  1997                                        Comedy|Drama|Romance     52
## 8074  1985                                                      Horror     52
## 8075  1998                                     Horror|Mystery|Thriller     52
## 8077  1988                                               Comedy|Sci-Fi     52
## 8078  1999                                             Comedy|Thriller     52
## 8082  2000                                     Action|Adventure|Sci-Fi     52
## 8085  2000                                               Drama|Romance     52
## 8088  2001                                        Comedy|Crime|Romance     52
## 8092  2001                                              Comedy|Romance     52
## 8093  2002                                              Comedy|Romance     52
## 8101  2003                                             Horror|Thriller     52
## 8104  2003                             Action|Adventure|Comedy|Fantasy     52
## 8105  2001                                Comedy|Drama|Musical|Romance     52
## 8111  2004                                                    Thriller     52
## 8112  2004                                          Comedy|Crime|Drama     52
## 8114  2004                                        Action|Drama|Romance     52
## 8117  2004                                                      Comedy     52
## 8119  2005                                       Action|Drama|Thriller     52
## 8120  2005                                                Comedy|Drama     52
## 8123  2005                                               Drama|Romance     52
## 8126  2006                                      Drama|Mystery|Thriller     52
## 8127  2007                                    Animation|Children|Drama     52
## 8128  2006                                        Comedy|Drama|Romance     52
## 8132  2008                                        Comedy|Drama|Romance     52
## 8135  1995                                          Adventure|Children     53
## 8136  1993                                         Adventure|Animation     53
## 8137  1994                                Action|Comedy|Crime|Thriller     53
## 8138  1994                                    Adventure|Children|Drama     53
## 8139  1994                                          Adventure|Children     53
## 8142  1990                                   Action|Adventure|Thriller     53
## 8143  1997                                        Action|Comedy|Sci-Fi     53
## 8146  1998                                                      Comedy     53
## 8148  1986                                             Horror|Thriller     53
## 8149  1992                                   Action|Comedy|Crime|Drama     53
## 8150  1985                                  Adventure|Children|Fantasy     53
## 8152  1986                                            Adventure|Sci-Fi     53
## 8153  1998                                           Animation|Musical     53
## 8155  1990                                                Action|Drama     53
## 8160  1999                                    Animation|Comedy|Musical     53
## 8161  1999                                             Children|Comedy     53
## 8162  1999                                       Drama|Horror|Thriller     53
## 8163  1984                                        Action|Comedy|Sci-Fi     53
## 8164  1989                                       Comedy|Fantasy|Sci-Fi     53
## 8165  1999                            Action|Adventure|Children|Comedy     53
## 8166  1999                   Adventure|Animation|Children|Drama|Sci-Fi     53
## 8168  1999                                              Drama|Thriller     53
## 8169  1999                                        Crime|Drama|Thriller     53
## 8171  1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     53
## 8172  1999                                        Comedy|Drama|Fantasy     53
## 8174  1999                 Adventure|Animation|Children|Comedy|Fantasy     53
## 8175  1999                                                       Drama     53
## 8184  1963                                             Horror|Thriller     54
## 8187  1988                                     Action|Adventure|Comedy     54
## 8188  1999                                      Action|Sci-Fi|Thriller     54
## 8189  1973                                   Action|Adventure|Thriller     54
## 8191  1936                                        Comedy|Drama|Romance     54
## 8194  1988                                    Adventure|Comedy|Fantasy     54
## 8200  1967                  Action|Adventure|Animation|Children|Comedy     54
## 8202  2004                                                   Drama|War     54
## 8203  2005                                           Action|Crime|IMAX     54
## 8207  2006                                               Drama|Romance     54
## 8209  2006                                        Crime|Drama|Thriller     54
## 8211  2007                                                 Crime|Drama     54
## 8216  2009                                        Crime|Drama|Thriller     54
## 8220  2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     54
## 8221  2006                 Adventure|Animation|Children|Comedy|Fantasy     54
## 8223  1995                 Adventure|Animation|Children|Comedy|Fantasy     55
## 8224  1995                                                      Comedy     55
## 8226  1995                                              Comedy|Romance     55
## 8227  1995                                                      Action     55
## 8230  1996                                               Drama|Romance     55
## 8231  1996                                              Drama|Thriller     55
## 8232  1996                                   Action|Adventure|Thriller     55
## 8233  1996                                              Drama|Thriller     55
## 8235  1995                               Action|Adventure|Comedy|Crime     55
## 8239  1996                                   Action|Adventure|Thriller     55
## 8240  1996                                 Comedy|Crime|Drama|Thriller     55
## 8241  1996                                          Adventure|Children     55
## 8245  1996                                        Crime|Drama|Thriller     55
## 8246  1996                                              Comedy|Romance     55
## 8250  1996                           Action|Adventure|Romance|Thriller     55
## 8251  1996                                               Action|Sci-Fi     55
## 8252  1996                                            Action|Adventure     55
## 8254  1996                                             Comedy|Thriller     55
## 8257  1996                                               Drama|Romance     55
## 8260  1971                             Children|Comedy|Fantasy|Musical     55
## 8264  1995                                       Comedy|Crime|Thriller     56
## 8272  1995                                                       Drama     56
## 8273  1995                             Action|Adventure|Mystery|Sci-Fi     56
## 8277  1994                                            Adventure|Comedy     56
## 8280  1977                                     Action|Adventure|Sci-Fi     56
## 8281  1995                                Action|Drama|Sci-Fi|Thriller     56
## 8285  1995                                                      Comedy     56
## 8287  1994                                                      Comedy     56
## 8291  1993                                     Action|Adventure|Sci-Fi     56
## 8300  1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     56
## 8301  1964                                                  Comedy|War     56
## 8307  1968                                      Adventure|Drama|Sci-Fi     56
## 8309  1944                                     Crime|Film-Noir|Mystery     56
## 8316  1992                                      Drama|Romance|Thriller     56
## 8319  1996                                                Comedy|Drama     56
## 8321  1989                                                       Drama     56
## 8323  1980                                     Action|Adventure|Sci-Fi     56
## 8331  1983                                     Action|Adventure|Sci-Fi     56
## 8337  1977                                              Comedy|Romance     56
## 8339  1984                                      Action|Sci-Fi|Thriller     56
## 8340  1979                                        Comedy|Drama|Romance     56
## 8341  1967                                        Comedy|Drama|Romance     56
## 8347  1978                                                   Drama|War     56
## 8356  1969                                              Action|Western     56
## 8357  1989                                              Comedy|Romance     56
## 8367  1997                                               Action|Sci-Fi     56
## 8372  1997                                        Comedy|Drama|Romance     56
## 8376  1969                                                       Drama     56
## 8380  1983                                                Comedy|Drama     56
## 8381  1988                                                       Drama     56
## 8383  1987                                   Action|Comedy|Crime|Drama     56
## 8386  1989                                     Adventure|Comedy|Sci-Fi     56
## 8388  1994                                             Children|Comedy     56
## 8391  1989                                                      Comedy     56
## 8392  1992                                             Children|Comedy     56
## 8396  1987                                          Action|Crime|Drama     56
## 8398  1992                                              Comedy|Fantasy     56
## 8401  1997                                    Comedy|Drama|Romance|War     56
## 8407  1999                                              Comedy|Romance     56
## 8412  1984                                        Action|Comedy|Sci-Fi     56
## 8422  1964                                   Action|Adventure|Thriller     56
## 8423  1964                                              Action|Western     56
## 8427  1983                                                      Comedy     56
## 8432  1984                                                       Drama     56
## 8433  1988                                Action|Comedy|Crime|Thriller     56
## 8435  1971                                                       Drama     56
## 8437  1982                                        Comedy|Drama|Romance     56
## 8439  1992                                                Comedy|Drama     56
## 8440  1992                                               Action|Comedy     56
## 8442  1988                                        Comedy|Drama|Romance     56
## 8446  1961                                                       Drama     56
## 8448  1991                                    Adventure|Comedy|Fantasy     56
## 8450  1980                                                      Comedy     56
## 8452  1985                                            Adventure|Comedy     56
## 8460  2000                                                       Drama     56
## 8461  2000                                                       Drama     56
## 8462  1994                                               Action|Comedy     56
## 8463  2000                                     Children|Comedy|Fantasy     56
## 8469  1984                                   Action|Comedy|Crime|Drama     56
## 8471  1987                                          Comedy|Documentary     56
## 8473  1983                                          Action|Crime|Drama     56
## 8476  1962                                         Crime|Drama|Western     56
## 8481  2001                                        Crime|Drama|Thriller     56
## 8482  2001                                                      Comedy     56
## 8485  2001                                                 Crime|Drama     56
## 8500  1991                                        Comedy|Drama|Romance     56
## 8502  2002                                 Comedy|Crime|Drama|Thriller     56
## 8504  2003                                                      Comedy     56
## 8505  2003                                Comedy|Drama|Fantasy|Romance     56
## 8507  2001                                               Action|Comedy     56
## 8512  2003                                         Crime|Drama|Mystery     56
## 8513  2003                                              Comedy|Romance     56
## 8517  2003                                        Comedy|Drama|Romance     56
## 8518  1991                                                Comedy|Drama     56
## 8519  1990                                        Crime|Drama|Thriller     56
## 8520  2000                                Action|Drama|Horror|Thriller     56
## 8521  1985                                              Comedy|Fantasy     56
## 8533  2004                                                      Comedy     56
## 8536  2004                                        Comedy|Drama|Romance     56
## 8539  2004                                                Drama|Sci-Fi     56
## 8542  2004                     Action|Adventure|Drama|Mystery|Thriller     56
## 8544  1983                                          Comedy|Documentary     56
## 8548  2005                                              Comedy|Romance     56
## 8549  2004                                                 Crime|Drama     56
## 8553  2005                                                Comedy|Drama     56
## 8557  2005                                 Action|Crime|Drama|Thriller     56
## 8566  2006                                        Crime|Drama|Thriller     56
## 8570  2006                                                       Drama     56
## 8580  2007                                     Action|Fantasy|War|IMAX     56
## 8584  2007                             Action|Adventure|Comedy|Fantasy     56
## 8590  2007                                           Drama|Romance|War     56
## 8591  2007                                        Crime|Drama|Thriller     56
## 8592  2007                                      Action|Adventure|Drama     56
## 8593  2007                                        Crime|Drama|Thriller     56
## 8596  2007                          Action|Horror|Sci-Fi|Thriller|IMAX     56
## 8601  2008                                                      Comedy     56
## 8603  2008                      Action|Adventure|Drama|Sci-Fi|Thriller     56
## 8606  2008                                     Action|Adventure|Sci-Fi     56
## 8607  2008                                 Action|Crime|Drama|Thriller     56
## 8608  2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     56
## 8614  2008                                   Action|Adventure|Thriller     56
## 8617  2008                                          Drama|Thriller|War     56
## 8625  2009                                        Crime|Drama|Thriller     56
## 8637  2009                                                       Drama     56
## 8657  2010                                       Drama|Musical|Romance     56
## 8664  2011                                                      Comedy     56
## 8665  2011                        Action|Adventure|Sci-Fi|Thriller|War     56
## 8667  2011                                        Comedy|Drama|Romance     56
## 8668  2011                                                Comedy|Crime     56
## 8671  2011                                                       Drama     56
## 8672  2011                                         Action|Comedy|Crime     56
## 8680  2012                                 Action|Adventure|Crime|IMAX     56
## 8682  2012                                                      Comedy     56
## 8691  2012                                              Comedy|Fantasy     56
## 8694  2012                                                      Comedy     56
## 8700  2012                                               Action|Comedy     56
## 8702  2012                                                Comedy|Drama     56
## 8703  2012                                                       Drama     56
## 8706  2012                                                       Drama     56
## 8708  2013                                     Romance|Sci-Fi|Thriller     56
## 8711  2013                                    Action|Adventure|Romance     56
## 8718  2013                                             Horror|Thriller     56
## 8722  2010                                              Comedy|Romance     56
## 8724  2013                                                      Comedy     56
## 8729  2013                                                 Crime|Drama     56
## 8731  2013                                                Comedy|Drama     56
## 8734  2014                                               Action|Comedy     56
## 8737  2014                                     Action|Adventure|Sci-Fi     56
## 8738  2014                                                      Comedy     56
## 8744  2014                                              Drama|Thriller     56
## 8745  2014                                     Action|Adventure|Sci-Fi     56
## 8747  2014                                                Comedy|Crime     56
## 8748  2014                                                       Drama     56
## 8751  2014                                                       Drama     56
## 8757  2015                        Action|Adventure|Fantasy|Sci-Fi|IMAX     56
## 8761  2015                                                      Comedy     56
## 8766  2015                                Action|Comedy|Fantasy|Sci-Fi     56
## 8768  2016                             Action|Adventure|Fantasy|Sci-Fi     56
## 8772  2015                                                       Drama     56
## 8777  2015                                                       Drama     56
## 8790  1995                            Crime|Film-Noir|Mystery|Thriller     57
## 8796  1994                                      Drama|Mystery|Thriller     57
## 8797  1994                                    Comedy|Drama|Romance|War     57
## 8809  1989                                       Action|Crime|Thriller     57
## 8812  1996                           Action|Adventure|Mystery|Thriller     57
## 8818  1975                                     Children|Comedy|Western     57
## 8828  1989                                                      Comedy     57
## 8829  1992                                      Crime|Mystery|Thriller     57
## 8836  1980                                                      Horror     57
## 8837  1981                            Action|Adventure|Sci-Fi|Thriller     57
## 8849  1986                              Action|Adventure|Horror|Sci-Fi     57
## 8850  1979                                            Action|Drama|War     57
## 8851  1979                                               Horror|Sci-Fi     57
## 8859  1984                                      Action|Sci-Fi|Thriller     57
## 8868  1985                                     Adventure|Comedy|Sci-Fi     57
## 8869  1970                                                   Drama|War     57
## 8870  1986                                    Action|Adventure|Fantasy     57
## 8873  1984                                                      Comedy     57
## 8880  1983                                                      Horror     57
## 8881  1982                                                      Horror     57
## 8895  1997                                Crime|Drama|Mystery|Thriller     57
## 8898  1982                                    Action|Adventure|Fantasy     57
## 8902  1997                                      Drama|Mystery|Thriller     57
## 8909  1997                                               Drama|Romance     57
## 8910  1998                                                Comedy|Crime     57
## 8911  1998                                Crime|Drama|Fantasy|Thriller     57
## 8914  1998                        Action|Crime|Mystery|Sci-Fi|Thriller     57
## 8916  1998                              Action|Romance|Sci-Fi|Thriller     57
## 8917  1998                                Action|Comedy|Crime|Thriller     57
## 8930  1986                                   Adventure|Fantasy|Musical     57
## 8932  1980                                     Horror|Mystery|Thriller     57
## 8933  1981                                                      Horror     57
## 8934  1984                                                      Horror     57
## 8935  1985                                                      Horror     57
## 8936  1986                                                      Horror     57
## 8937  1989                                                      Horror     57
## 8939  1981                                                      Horror     57
## 8940  1982                                                      Horror     57
## 8941  1980                                                      Horror     57
## 8943  1986                                             Horror|Thriller     57
## 8944  1988                                             Horror|Thriller     57
## 8948  1984                                               Comedy|Horror     57
## 8949  1985                    Action|Adventure|Children|Comedy|Fantasy     57
## 8951  1973                               Drama|Mystery|Sci-Fi|Thriller     57
## 8954  1998                                                Comedy|Crime     57
## 8957  1981                                              Comedy|Fantasy     57
## 8958  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     57
## 8960  1980                                    Adventure|Comedy|Musical     57
## 8961  1983                     Children|Drama|Fantasy|Mystery|Thriller     57
## 8965  1983                                                      Comedy     57
## 8968  1983                                                    Thriller     57
## 8969  1983                                             Horror|Thriller     57
## 8970  1984                                             Horror|Thriller     57
## 8973  1985                                   Adventure|Fantasy|Romance     57
## 8974  1984                                              Comedy|Romance     57
## 8975  1998                                            Action|Adventure     57
## 8976  1984                                  Adventure|Children|Fantasy     57
## 8977  1978                                               Comedy|Horror     57
## 8987  1968                                                      Comedy     57
## 8988  1981                                              Comedy|Musical     57
## 8993  1995                                                      Comedy     58
## 8995  1994                                                      Comedy     58
## 8996  1993                                     Children|Comedy|Fantasy     58
## 8997  1993                                             Comedy|Thriller     58
## 9000  1960                                        Comedy|Drama|Romance     58
## 9002  1938                                    Action|Adventure|Romance     58
## 9003  1956                                            Adventure|Comedy     58
## 9006  1996                                             Crime|Film-Noir     58
## 9007  1975                                     Children|Comedy|Western     58
## 9010  1989                            Action|Adventure|Sci-Fi|Thriller     58
## 9015  1977                                              Comedy|Romance     58
## 9017  1992                               Action|Horror|Sci-Fi|Thriller     58
## 9021  1997                                   Action|Adventure|Thriller     58
## 9022  1997                                     Action|Adventure|Comedy     58
## 9025  1997                                        Comedy|Drama|Romance     58
## 9028  1961                                     Children|Comedy|Fantasy     58
## 9029  1979                                     Children|Comedy|Western     58
## 9030  1989                                                      Comedy     58
## 9031  1961                                Adventure|Animation|Children     58
## 9032  1991                                     Children|Comedy|Fantasy     58
## 9034  1998                                            Action|Adventure     58
## 9039  1986                                     Action|Mystery|Thriller     58
## 9041  1970                                                       Drama     58
## 9042  1977                                                       Drama     58
## 9043  1988                                       Drama|Horror|Thriller     58
## 9044  1999                                     Action|Adventure|Comedy     58
## 9048  1992                                                      Action     58
## 9049  1999                                      Horror|Sci-Fi|Thriller     58
## 9052  1958                                    Action|Adventure|Fantasy     58
## 9058  2000                               Crime|Horror|Mystery|Thriller     58
## 9060  1980                                                       Drama     58
## 9061  1974                                          Adventure|Children     58
## 9064  1988                                Action|Comedy|Crime|Thriller     58
## 9065  1995                                        Comedy|Drama|Romance     59
## 9068  1976                                        Crime|Drama|Thriller     59
## 9070  1994                                                      Comedy     59
## 9071  1994                                            Adventure|Comedy     59
## 9072  1995                                Action|Drama|Sci-Fi|Thriller     59
## 9075  1994                                                 Crime|Drama     59
## 9076  1994                                 Action|Comedy|Crime|Fantasy     59
## 9077  1994                    Action|Adventure|Comedy|Romance|Thriller     59
## 9078  1993                                     Children|Comedy|Fantasy     59
## 9083  1990                                             Children|Comedy     59
## 9084  1990                                     Adventure|Drama|Western     59
## 9085  1991                                       Crime|Horror|Thriller     59
## 9090  1939                          Adventure|Children|Fantasy|Musical     59
## 9093  1975                                                       Drama     59
## 9094  1990                                                 Crime|Drama     59
## 9096  1996                            Action|Adventure|Sci-Fi|Thriller     59
## 9098  1997                                   Action|Adventure|Thriller     59
## 9099  1998                                              Comedy|Romance     59
## 9100  1988                                                       Drama     59
## 9101  1985                                                Comedy|Drama     59
## 9102  1998                                            Action|Drama|War     59
## 9103  1982                                     Action|Adventure|Sci-Fi     59
## 9104  1984                                  Adventure|Children|Fantasy     59
## 9106  1988                                    Action|Adventure|Fantasy     59
## 9107  1987                                          Action|Crime|Drama     59
## 9108  1992                                                      Comedy     59
## 9110  1998                                        Comedy|Drama|Romance     59
## 9111  1986                                            Adventure|Comedy     59
## 9112  1998                                       Comedy|Crime|Thriller     59
## 9114  1978                                     Action|Adventure|Sci-Fi     59
## 9115  1999                                              Comedy|Romance     59
## 9116  1999                                     Action|Adventure|Comedy     59
## 9118  1984                                        Action|Comedy|Sci-Fi     59
## 9119  1999                                              Action|Mystery     59
## 9120  1988                                Comedy|Drama|Fantasy|Romance     59
## 9123  1999                                        Comedy|Drama|Fantasy     59
## 9126  2000                                   Action|Adventure|Thriller     59
## 9128  2000                                                      Comedy     59
## 9129  2000                                                      Comedy     59
## 9130  2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     59
## 9132  1970                                            Comedy|Drama|War     59
## 9133  2002                            Action|Adventure|Sci-Fi|Thriller     59
## 9140  1990                                                       Drama     59
## 9141  2005                                           Action|Crime|IMAX     59
## 9144  1995                                       Comedy|Crime|Thriller     60
## 9147  1995                                         Action|Crime|Sci-Fi     60
## 9152  1996                                    Action|Adventure|Fantasy     60
## 9154  1995                                   Animation|Children|Comedy     60
## 9162  1978                                      Comedy|Musical|Romance     60
## 9163  1997                                                      Comedy     60
## 9168  1984                                    Action|Adventure|Fantasy     60
## 9174  1985                                        Comedy|Horror|Sci-Fi     60
## 9175  1999                                                       Drama     60
## 9177  1976                                             Action|Thriller     60
## 9184  2002                                           Adventure|Fantasy     60
## 9189  2003                                                Comedy|Crime     60
## 9195  2003                                             Action|Thriller     60
## 9198  1995                                  Adventure|Children|Fantasy     61
## 9199  1995                                              Children|Drama     61
## 9200  1995                    Animation|Children|Drama|Musical|Romance     61
## 9203  1995                                          Adventure|Children     61
## 9205  1994                                        Comedy|Drama|Fantasy     61
## 9206  1994             Adventure|Animation|Children|Drama|Musical|IMAX     61
## 9208  1993                          Animation|Children|Fantasy|Musical     61
## 9209  1995                                                      Comedy     61
## 9210  1990                                             Children|Comedy     61
## 9212  1992                 Adventure|Animation|Children|Comedy|Musical     61
## 9214  1991                                       Crime|Horror|Thriller     61
## 9215  1937                    Animation|Children|Drama|Fantasy|Musical     61
## 9216  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     61
## 9217  1940                          Animation|Children|Fantasy|Musical     61
## 9218  1970                                          Animation|Children     61
## 9219  1996                Adventure|Animation|Children|Fantasy|Musical     61
## 9220  1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     61
## 9221  1996                                             Children|Comedy     61
## 9222  1939                          Adventure|Children|Fantasy|Musical     61
## 9223  1946                              Children|Drama|Fantasy|Romance     61
## 9224  1969                                             Children|Comedy     61
## 9225  1950                  Animation|Children|Fantasy|Musical|Romance     61
## 9226  1964                             Children|Comedy|Fantasy|Musical     61
## 9227  1941                            Animation|Children|Drama|Musical     61
## 9229  1996                                               Drama|Romance     61
## 9230  1971                             Children|Comedy|Fantasy|Musical     61
## 9231  1982                                       Children|Drama|Sci-Fi     61
## 9234  1962                                                       Drama     61
## 9235  1980                                       Action|Comedy|Musical     61
## 9236  1996                                   Adventure|Children|Comedy     61
## 9237  1978                                      Comedy|Musical|Romance     61
## 9239  1997                                        Action|Comedy|Sci-Fi     61
## 9240  1998                                              Comedy|Romance     61
## 9242  1976                                                       Drama     61
## 9244  1942                                    Animation|Children|Drama     61
## 9245  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     61
## 9246  1967                           Animation|Children|Comedy|Musical     61
## 9247  1955                           Animation|Children|Comedy|Romance     61
## 9248  1989                   Animation|Children|Comedy|Musical|Romance     61
## 9249  1961                                Adventure|Animation|Children     61
## 9250  1953                          Animation|Children|Fantasy|Musical     61
## 9251  1989                     Animation|Children|Comedy|Drama|Fantasy     61
## 9252  1984                                              Comedy|Romance     61
## 9253  1984                                  Adventure|Children|Fantasy     61
## 9254  1988                                              Comedy|Fantasy     61
## 9255  1998                                Action|Comedy|Crime|Thriller     61
## 9257  1998                         Adventure|Animation|Children|Comedy     61
## 9258  1998                                    Adventure|Children|Drama     61
## 9262  1984                                        Action|Comedy|Sci-Fi     61
## 9263  1999                   Adventure|Animation|Children|Drama|Sci-Fi     61
## 9264  1983                                             Children|Comedy     61
## 9267  1992                                             Children|Comedy     61
## 9268  1999                 Adventure|Animation|Children|Comedy|Fantasy     61
## 9269  1968                                               Drama|Romance     61
## 9270  2000                                   Animation|Children|Comedy     61
## 9271  2000                                     Children|Comedy|Fantasy     61
## 9272  2000                 Adventure|Animation|Children|Comedy|Fantasy     61
## 9273  2000                                                Comedy|Crime     61
## 9274  2001                            Action|Adventure|Children|Comedy     61
## 9275  2001                                        Comedy|Drama|Romance     61
## 9276  2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     61
## 9278  2001                                               Action|Comedy     61
## 9279  2001                 Adventure|Animation|Children|Comedy|Fantasy     61
## 9280  2001                                      Comedy|Fantasy|Romance     61
## 9281  2001                                  Adventure|Children|Fantasy     61
## 9283  2002                                              Comedy|Romance     61
## 9285  2002                         Adventure|Animation|Children|Sci-Fi     61
## 9286  2002                                              Comedy|Romance     61
## 9287  2002                                        Action|Comedy|Sci-Fi     61
## 9288  2002                                                      Comedy     61
## 9290  1977                                        Comedy|Drama|Romance     61
## 9291  2002                                           Adventure|Fantasy     61
## 9294  2002                                        Comedy|Drama|Romance     61
## 9296  2003                                Comedy|Drama|Fantasy|Romance     61
## 9297  2003                         Adventure|Animation|Children|Comedy     61
## 9298  2003                             Action|Adventure|Comedy|Fantasy     61
## 9299  1942                                           Adventure|Fantasy     61
## 9301  2003                                     Children|Comedy|Fantasy     61
## 9304  2003                                             Children|Comedy     61
## 9306  2004         Adventure|Animation|Children|Comedy|Musical|Romance     61
## 9307  2004                                      Adventure|Fantasy|IMAX     61
## 9308  2004                                                      Comedy     61
## 9309  2004                                    Comedy|Documentary|Drama     61
## 9310  1972                                               Comedy|Sci-Fi     61
## 9312  2004                                                       Drama     61
## 9314  2004                           Adventure|Children|Comedy|Fantasy     61
## 9315  2005                      Adventure|Children|Comedy|Fantasy|IMAX     61
## 9316  2005                                     Adventure|Comedy|Sci-Fi     61
## 9317  2005                         Adventure|Animation|Children|Comedy     61
## 9318  2005                                               Drama|Romance     61
## 9321  2005                                     Action|Adventure|Sci-Fi     61
## 9323  2005                                               Drama|Romance     61
## 9325  2005                                  Adventure|Children|Fantasy     61
## 9328  2006                         Adventure|Animation|Children|Comedy     61
## 9329  2006                                   Animation|Children|Comedy     61
## 9331  2006                                    Action|Adventure|Fantasy     61
## 9335  2006                                Comedy|Drama|Fantasy|Romance     61
## 9336  2006                               Drama|Fantasy|Mystery|Romance     61
## 9341  2007                 Adventure|Animation|Children|Comedy|Fantasy     61
## 9342  2007                             Action|Adventure|Comedy|Fantasy     61
## 9344  2007                                     Action|Adventure|Sci-Fi     61
## 9346  2007                                Adventure|Drama|Fantasy|IMAX     61
## 9347  2007                                            Animation|Comedy     61
## 9349  2008                                                      Comedy     61
## 9350  2007                                                 Documentary     61
## 9354  2007                               Drama|Horror|Musical|Thriller     61
## 9355  2008                             Action|Adventure|Fantasy|Sci-Fi     61
## 9357  2008                      Action|Adventure|Drama|Sci-Fi|Thriller     61
## 9362  2008                       Action|Adventure|Comedy|Crime|Fantasy     61
## 9366  1994                                                 Crime|Drama     62
## 9378  2006                   Action|Adventure|Crime|Drama|Thriller|War     62
## 9383  2008                                   Action|Drama|Thriller|War     62
## 9389  2012                        Action|Adventure|Drama|Thriller|IMAX     62
## 9390  2011                                                Comedy|Drama     62
## 9392  2013                                Action|Adventure|Sci-Fi|IMAX     62
## 9393  2011                                                 Documentary     62
## 9401  2014                                                Comedy|Drama     62
## 9404  2014                                                  Action|War     62
## 9405  2014                                             Action|Thriller     62
## 9406  2014                                        Crime|Drama|Thriller     62
## 9409  2015                         Action|Crime|Drama|Mystery|Thriller     62
## 9411  2015                                     Action|Adventure|Sci-Fi     62
## 9418  1995                                        Comedy|Drama|Romance     63
## 9420  1994                                        Comedy|Drama|Romance     63
## 9421  1995                               Action|Adventure|Comedy|Crime     63
## 9423  1995                                    Action|Drama|Romance|War     63
## 9424  1994                                                 Documentary     63
## 9426  1994                                       Action|Drama|Thriller     63
## 9428  1994                    Action|Adventure|Comedy|Romance|Thriller     63
## 9430  1993                                                    Thriller     63
## 9432  1993                                               Drama|Romance     63
## 9433  1993                                                      Comedy     63
## 9437  1996                                              Crime|Thriller     63
## 9438  1993                                    Adventure|Children|Drama     63
## 9441  1996                                                      Horror     63
## 9446  1977                                              Comedy|Romance     63
## 9447  1973                                                Comedy|Crime     63
## 9450  1989                                              Comedy|Romance     63
## 9452  1991                                       Action|Mystery|Sci-Fi     63
## 9454  1986                                     Adventure|Comedy|Sci-Fi     63
## 9456  1997                                             Children|Comedy     63
## 9457  1997                                                      Comedy     63
## 9462  1997                                                Comedy|Drama     63
## 9465  1988                                                       Drama     63
## 9468  1978                        Adventure|Animation|Children|Fantasy     63
## 9469  1988                                              Comedy|Fantasy     63
## 9471  1992                                                      Comedy     63
## 9478  1999                                        Drama|Horror|Mystery     63
## 9489  2000                                                       Drama     63
## 9493  2000                                   Animation|Children|Comedy     63
## 9499  2000                                                       Drama     63
## 9509  2003                                       Action|Fantasy|Sci-Fi     63
## 9513  2004                                                       Drama     63
## 9515  1995                                        Adventure|Drama|IMAX     64
## 9517  1995                                       Action|Crime|Thriller     64
## 9518  1995                                        Action|Drama|Romance     64
## 9519  1994                                            Adventure|Comedy     64
## 9525  1994                                                      Comedy     64
## 9534  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     64
## 9538  1939                                           Drama|Romance|War     65
## 9543  1983                                     Action|Adventure|Sci-Fi     65
## 9546  1983                                                      Comedy     65
## 9548  1985                                     Adventure|Comedy|Sci-Fi     65
## 9550  1984                                                      Comedy     65
## 9555  1980                                                       Drama     65
## 9563  1995                         Crime|Drama|Horror|Mystery|Thriller     66
## 9564  1995                                               Drama|Romance     66
## 9583  1986                              Action|Adventure|Horror|Sci-Fi     66
## 9588  1986                                    Action|Adventure|Fantasy     66
## 9589  1997                                 Action|Crime|Drama|Thriller     66
## 9590  1997                                        Action|Comedy|Sci-Fi     66
## 9592  1998                                                Comedy|Crime     66
## 9599  1998                                        Crime|Drama|Thriller     66
## 9600  1986                                Drama|Horror|Sci-Fi|Thriller     66
## 9601  1989                                               Horror|Sci-Fi     66
## 9602  1999                                      Action|Sci-Fi|Thriller     66
## 9607  1987                                      Action|Sci-Fi|Thriller     66
## 9610  1971                                                Action|Drama     66
## 9611  1995                 Adventure|Animation|Children|Comedy|Fantasy     67
## 9613  1995                                               Comedy|Horror     67
## 9619  1995                                          Action|Crime|Drama     67
## 9622  1995                                                       Drama     67
## 9624  1996                                                      Comedy     67
## 9625  1996                                        Comedy|Drama|Romance     67
## 9626  1996                                   Action|Adventure|Thriller     67
## 9627  1996                                                      Comedy     67
## 9628  1996                           Adventure|Children|Comedy|Musical     67
## 9630  1995                               Action|Adventure|Comedy|Crime     67
## 9631  1996                                                      Comedy     67
## 9634  1995                                          Adventure|Children     67
## 9637  1994                                   Drama|Romance|War|Western     67
## 9645  1995                                              Comedy|Romance     67
## 9648  1994                                     Action|Adventure|Sci-Fi     67
## 9651  1994                                      Drama|Mystery|Thriller     67
## 9654  1994                                  Adventure|Children|Romance     67
## 9656  1994                                    Adventure|Comedy|Western     67
## 9660  1993                                   Action|Adventure|Thriller     67
## 9662  1993                                              Drama|Thriller     67
## 9664  1993                                             Action|Thriller     67
## 9671  1993                                                       Drama     67
## 9676  1990                       Comedy|Drama|Fantasy|Romance|Thriller     67
## 9679  1989                                       Action|Crime|Thriller     67
## 9683  1996                                          Adventure|Children     67
## 9687  1996                                Crime|Drama|Mystery|Thriller     67
## 9688  1996        Adventure|Animation|Children|Fantasy|Musical|Romance     67
## 9689  1996                                                      Comedy     67
## 9690  1996                           Action|Adventure|Mystery|Thriller     67
## 9692  1996                                    Action|Adventure|Fantasy     67
## 9693  1996                                                      Comedy     67
## 9694  1996                                          Action|Crime|Drama     67
## 9696  1996                                              Comedy|Romance     67
## 9698  1996                                          Adventure|Children     67
## 9699  1996                                                      Comedy     67
## 9700  1996                               Drama|Fantasy|Horror|Thriller     67
## 9703  1996                                                      Comedy     67
## 9705  1996                                             Comedy|Thriller     67
## 9706  1996                               Comedy|Fantasy|Romance|Sci-Fi     67
## 9707  1996                            Action|Adventure|Sci-Fi|Thriller     67
## 9708  1996                                        Comedy|Drama|Romance     67
## 9710  1965                                             Musical|Romance     67
## 9715  1995                                  Adventure|Children|Fantasy     68
## 9716  1995                                        Comedy|Drama|Romance     68
## 9718  1977                                     Action|Adventure|Sci-Fi     68
## 9719  1994                                        Comedy|Drama|Fantasy     68
## 9722  1994                                 Action|Comedy|Crime|Fantasy     68
## 9726  1995                                              Comedy|Romance     68
## 9729  1993                                                   Drama|War     68
## 9730  1993                                        Comedy|Drama|Romance     68
## 9731  1982                                      Action|Sci-Fi|Thriller     68
## 9732  1990                                             Children|Comedy     68
## 9734  1990                                     Adventure|Drama|Western     68
## 9735  1989                                       Action|Crime|Thriller     68
## 9736  1990                                              Comedy|Romance     68
## 9737  1996                                          Comedy|Crime|Drama     68
## 9738  1996                            Action|Adventure|Sci-Fi|Thriller     68
## 9743  1955                              Crime|Mystery|Romance|Thriller     68
## 9744  1950                                                      Comedy     68
## 9747  1971                             Children|Comedy|Fantasy|Musical     68
## 9749  1989                                                       Drama     68
## 9751  1987                     Action|Adventure|Comedy|Fantasy|Romance     68
## 9753  1986                              Action|Adventure|Horror|Sci-Fi     68
## 9763  1996                                Comedy|Drama|Fantasy|Romance     68
## 9766  1997                                               Drama|Romance     68
## 9771  1998                                    Adventure|Children|Drama     68
## 9772  1984                                                       Drama     68
## 9774  1986                                                Comedy|Drama     68
## 9776  1986                                       Comedy|Horror|Musical     68
## 9778  1978                                                      Comedy     68
## 9779  1980                                                      Comedy     68
## 9780  1988                                Comedy|Drama|Fantasy|Romance     68
## 9782  1981                             Adventure|Comedy|Fantasy|Sci-Fi     68
## 9783  1987                                              Comedy|Romance     68
## 9784  1999                                                       Drama     68
## 9785  1992                                                Comedy|Crime     68
## 9787  2000                                      Action|Adventure|Drama     68
## 9789  2000                                              Drama|Thriller     68
## 9792  2001                 Adventure|Animation|Children|Comedy|Fantasy     68
## 9793  2001                                              Crime|Thriller     68
## 9794  2001                                              Comedy|Romance     68
## 9797  2002                         Adventure|Animation|Children|Comedy     68
## 9798  2002                                              Comedy|Romance     68
## 9800  2002                                     Action|Mystery|Thriller     68
## 9804  2002                                                   Drama|War     68
## 9805  2002                                        Comedy|Drama|Romance     68
## 9806  2003                           Adventure|Children|Comedy|Mystery     68
## 9807  2003                                Comedy|Drama|Fantasy|Romance     68
## 9808  2003                         Adventure|Animation|Children|Comedy     68
## 9810  2003                                              Comedy|Musical     68
## 9811  2003                                       Action|Crime|Thriller     68
## 9812  2003                                       Drama|Fantasy|Romance     68
## 9814  2004                                        Drama|Romance|Sci-Fi     68
## 9816  2004                                        Comedy|Drama|Romance     68
## 9819  2004                                     Action|Adventure|Sci-Fi     68
## 9822  1957                                             Adventure|Drama     68
## 9824  2004                                                       Drama     68
## 9825  2004                                                   Drama|War     68
## 9826  2004                                                       Drama     68
## 9828  2004                         Adventure|Animation|Fantasy|Romance     68
## 9830  2005                                     Adventure|Comedy|Sci-Fi     68
## 9831  2006                         Adventure|Animation|Children|Comedy     68
## 9832  2006                                   Animation|Children|Comedy     68
## 9833  2006                                       Drama|Fantasy|Romance     68
## 9834  2006                                Comedy|Drama|Fantasy|Romance     68
## 9835  2007                            Adventure|Comedy|Fantasy|Romance     68
## 9838  1995                                  Adventure|Children|Fantasy     69
## 9845  1995                                          Adventure|Children     69
## 9848  1994                                 Comedy|Crime|Drama|Thriller     69
## 9854  1994                                             Children|Comedy     69
## 9855  1993                                     Children|Comedy|Fantasy     69
## 9856  1993                                                Comedy|Drama     69
## 9861  1940                          Animation|Children|Fantasy|Musical     69
## 9863  1996                               Comedy|Fantasy|Romance|Sci-Fi     69
## 9867  1964                             Children|Comedy|Fantasy|Musical     69
## 9873  1997                                                      Comedy     69
## 9877  1976                                                       Drama     69
## 9882  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     69
## 9883  1998                                     Children|Comedy|Romance     69
## 9884  1963                                               Comedy|Sci-Fi     69
## 9889  1985                                                Comedy|Crime     69
## 9895  1968                                               Drama|Romance     69
## 9897  2000                                                      Comedy     69
## 9898  2000                                                      Comedy     69
## 9899  2000                                               Action|Comedy     69
## 9900  2001                                                Comedy|Drama     69
## 9902  2001                               Drama|Mystery|Sci-Fi|Thriller     69
## 9907  2002                            Action|Adventure|Sci-Fi|Thriller     69
## 9915  2008                                        Comedy|Drama|Romance     69
## 9921  1995                                              Comedy|Romance     70
## 9922  1995                                                      Action     70
## 9923  1995                                               Comedy|Horror     70
## 9924  1995                                                       Drama     70
## 9935  1996                                                      Comedy     70
## 9941  1996                                                      Comedy     70
## 9945  1996                                                      Comedy     70
## 9951  1996                                   Action|Adventure|Thriller     70
## 9957  1996                                                      Comedy     70
## 9958  1996                                              Drama|Thriller     70
## 9959  1996                           Action|Adventure|Mystery|Thriller     70
## 9962  1996                                                      Comedy     70
## 9964  1996                                               Comedy|Sci-Fi     70
## 9965  1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     70
## 9972  1996                               Drama|Fantasy|Horror|Thriller     70
## 9975  1996                                               Action|Sci-Fi     70
## 9976  1996                                                      Comedy     70
## 9978  1996                                      Action|Sci-Fi|Thriller     70
## 9979  1996                                            Action|Adventure     70
## 9982  1996                                             Comedy|Thriller     70
## 9989  1996                                     Children|Comedy|Fantasy     70
## 10002 1991                                               Action|Sci-Fi     71
## 10014 1986                                              Comedy|Romance     71
## 10021 1964                                                     Musical     71
## 10024 1995                 Adventure|Animation|Children|Comedy|Fantasy     72
## 10025 1995                                  Adventure|Children|Fantasy     72
## 10026 1995                                            Mystery|Thriller     72
## 10028 1995                                            Action|Drama|War     72
## 10029 1995                                        Adventure|Drama|IMAX     72
## 10030 1977                                     Action|Adventure|Sci-Fi     72
## 10034 1993                            Action|Adventure|Sci-Fi|Thriller     72
## 10037 1991                                       Crime|Horror|Thriller     72
## 10041 1942                                               Drama|Romance     72
## 10043 1988                                       Action|Crime|Thriller     72
## 10044 1980                                     Action|Adventure|Sci-Fi     72
## 10045 1986                              Action|Adventure|Horror|Sci-Fi     72
## 10051 1989                                                       Drama     72
## 10053 1985                                     Adventure|Comedy|Sci-Fi     72
## 10054 1998                                         Comedy|Drama|Sci-Fi     72
## 10055 1988                                                       Drama     72
## 10056 1998                                       Action|Comedy|Romance     72
## 10057 1998                                            Action|Drama|War     72
## 10059 1998                                                Comedy|Drama     72
## 10060 1999                                      Action|Sci-Fi|Thriller     72
## 10061 1999                                     Action|Adventure|Sci-Fi     72
## 10062 1998                                                Action|Crime     72
## 10065 1986                                                      Comedy     72
## 10067 1999                 Adventure|Animation|Children|Comedy|Fantasy     72
## 10068 2000                                        Comedy|Drama|Romance     72
## 10069 2000                                      Action|Adventure|Drama     72
## 10070 2000                                                Action|Crime     72
## 10071 2000                                            Action|Drama|War     72
## 10072 2000                                     Action|Adventure|Sci-Fi     72
## 10073 2000                                                       Drama     72
## 10074 2000                                                       Drama     72
## 10075 2000                                        Action|Drama|Romance     72
## 10076 2000                                       Comedy|Crime|Thriller     72
## 10077 2000                                              Comedy|Romance     72
## 10079 2000                                                Comedy|Crime     72
## 10080 2000                                      Adventure|Comedy|Crime     72
## 10082 2001                                        Comedy|Drama|Romance     72
## 10084 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     72
## 10085 2001                                              Comedy|Romance     72
## 10086 2001                               Drama|Horror|Mystery|Thriller     72
## 10088 2001                 Adventure|Animation|Children|Comedy|Fantasy     72
## 10089 2001                                              Crime|Thriller     72
## 10090 2001                                              Comedy|Romance     72
## 10091 2001                                                Comedy|Drama     72
## 10092 2001                                           Adventure|Fantasy     72
## 10093 2001                                               Drama|Romance     72
## 10094 2002                         Adventure|Animation|Children|Comedy     72
## 10095 2002                            Action|Adventure|Sci-Fi|Thriller     72
## 10096 2002                                Action|Adventure|Sci-Fi|IMAX     72
## 10097 2002                                     Action|Mystery|Thriller     72
## 10098 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     72
## 10099 2002                                     Horror|Mystery|Thriller     72
## 10100 2002                                      Action|Sci-Fi|Thriller     72
## 10101 2002                                           Adventure|Fantasy     72
## 10102 2002                                                 Crime|Drama     72
## 10103 2002                                                   Drama|War     72
## 10104 2003                            Action|Adventure|Sci-Fi|Thriller     72
## 10105 2003                         Adventure|Animation|Children|Comedy     72
## 10106 2002                                        Action|Horror|Sci-Fi     72
## 10107 2003                             Action|Adventure|Comedy|Fantasy     72
## 10109 2003                                              Comedy|Musical     72
## 10110 2003                                       Action|Crime|Thriller     72
## 10111 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     72
## 10112 2003                                  Action|Adventure|Drama|War     72
## 10113 2003                                       Drama|Fantasy|Romance     72
## 10114 2003                              Action|Adventure|Drama|Fantasy     72
## 10115 2004                                       Drama|Sci-Fi|Thriller     72
## 10116 2004                                        Drama|Romance|Sci-Fi     72
## 10117 2004                                       Action|Drama|Thriller     72
## 10118 2004                                  Action|Adventure|Drama|War     72
## 10119 2001                                            Action|Drama|War     72
## 10120 2004                            Action|Adventure|Sci-Fi|Thriller     72
## 10121 2004                                               Comedy|Horror     72
## 10122 2004                                      Drama|Mystery|Thriller     72
## 10123 2004                  Action|Adventure|Animation|Children|Comedy     72
## 10124 2005                              Action|Fantasy|Horror|Thriller     72
## 10125 2005                                           Action|Crime|IMAX     72
## 10126 2005                             Action|Crime|Drama|Thriller|War     72
## 10127 2005                                  Adventure|Children|Fantasy     72
## 10128 2006                                 Action|Sci-Fi|Thriller|IMAX     72
## 10129 2006                                                Comedy|Drama     72
## 10130 2006                                      Drama|Mystery|Thriller     72
## 10131 2006                                      Adventure|Comedy|Drama     72
## 10132 2006                               Drama|Fantasy|Mystery|Romance     72
## 10133 2006                                                      Comedy     72
## 10134 2006                                      Drama|Fantasy|Thriller     72
## 10135 2006                                        Crime|Drama|Thriller     72
## 10136 2006                                   Action|Adventure|Thriller     72
## 10138 2007                                 Action|Comedy|Crime|Mystery     72
## 10139 2007                                        Crime|Drama|Thriller     72
## 10140 2007                                     Action|Fantasy|War|IMAX     72
## 10141 2007                         Action|Crime|Horror|Sci-Fi|Thriller     72
## 10142 2007                       Action|Adventure|Sci-Fi|Thriller|IMAX     72
## 10143 2007                                        Comedy|Drama|Romance     72
## 10144 2007                                      Horror|Sci-Fi|Thriller     72
## 10145 2007                             Action|Adventure|Comedy|Fantasy     72
## 10146 2007                                              Crime|Thriller     72
## 10147 2007                      Action|Adventure|Crime|Horror|Thriller     72
## 10148 2007                             Action|Adventure|Crime|Thriller     72
## 10149 2007                                 Action|Sci-Fi|Thriller|IMAX     72
## 10150 2007                                Adventure|Drama|Fantasy|IMAX     72
## 10151 2007                            Adventure|Comedy|Fantasy|Romance     72
## 10152 2007                                            Animation|Comedy     72
## 10153 2007                                       Action|Crime|Thriller     72
## 10154 2007                                                      Comedy     72
## 10155 2007                                  Action|Crime|Drama|Western     72
## 10156 2007                                      Action|Adventure|Drama     72
## 10157 2007                                      Adventure|Comedy|Drama     72
## 10158 2007                                        Crime|Drama|Thriller     72
## 10160 2007                          Action|Horror|Sci-Fi|Thriller|IMAX     72
## 10162 2007                               Drama|Horror|Musical|Thriller     72
## 10164 2008                                     Action|Crime|Drama|IMAX     72
## 10165 2008                                     Action|Adventure|Sci-Fi     72
## 10167 2008                                          Comedy|Crime|Drama     72
## 10168 2008                               Drama|Fantasy|Mystery|Romance     72
## 10169 2009                                            Action|Drama|War     72
## 10170 2009                                      Action|Sci-Fi|Thriller     72
## 10171 2009                                Action|Adventure|Sci-Fi|IMAX     72
## 10173 2009                                                Comedy|Crime     72
## 10174 2009                                Action|Adventure|Sci-Fi|IMAX     72
## 10175 2010                                      Drama|Mystery|Thriller     72
## 10176 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     72
## 10177 2010                       Action|Comedy|Fantasy|Musical|Romance     72
## 10178 2010                                    Adventure|Drama|Thriller     72
## 10179 2010                                              Drama|Thriller     72
## 10180 2010                                                     Western     72
## 10181 2011                                      Comedy|Fantasy|Romance     72
## 10182 2011                        Action|Adventure|Sci-Fi|Thriller|War     72
## 10183 2011                                Action|Drama|Sci-Fi|Thriller     72
## 10184 2011                                                       Drama     72
## 10185 2012                                Action|Adventure|Sci-Fi|IMAX     72
## 10186 2012                                 Action|Adventure|Crime|IMAX     72
## 10189 2012                                           Drama|Sci-Fi|IMAX     72
## 10190 2012                                        Adventure|Drama|IMAX     72
## 10191 2012                                        Action|Drama|Western     72
## 10192 2013                                Action|Adventure|Sci-Fi|IMAX     72
## 10193 2013                                    Action|Drama|Horror|IMAX     72
## 10194 2013                                       Drama|Fantasy|Romance     72
## 10195 2013                                          Action|Sci-Fi|IMAX     72
## 10196 2013                                                       Drama     72
## 10197 2013                                                       Drama     72
## 10199 2014                                                 Sci-Fi|IMAX     72
## 10200 2014                                                       Drama     72
## 10201 2014                                     Action|Adventure|Sci-Fi     72
## 10202 2014                                                  Action|War     72
## 10203 2015                                       Drama|Sci-Fi|Thriller     72
## 10204 2014                                          Drama|Thriller|War     72
## 10205 2014                                               Drama|Romance     72
## 10207 2015                        Action|Adventure|Fantasy|Sci-Fi|IMAX     72
## 10208 2016                              Action|Adventure|Comedy|Sci-Fi     72
## 10209 2016                                      Action|Sci-Fi|Thriller     72
## 10210 2015                                      Adventure|Drama|Sci-Fi     72
## 10211 2016                             Action|Adventure|Fantasy|Sci-Fi     72
## 10212 2015                                             Adventure|Drama     72
## 10213 2015                                                    Thriller     72
## 10214 2016                              Action|Adventure|Drama|Fantasy     72
## 10216 1995                                  Adventure|Children|Fantasy     73
## 10218 1995                                   Action|Adventure|Thriller     73
## 10219 1995                                    Action|Adventure|Romance     73
## 10221 1995                                                      Comedy     73
## 10222 1995                                       Comedy|Crime|Thriller     73
## 10224 1995                                                       Drama     73
## 10226 1995                                              Children|Drama     73
## 10229 1995                                    Action|Adventure|Fantasy     73
## 10231 1995                    Animation|Children|Drama|Musical|Romance     73
## 10233 1995                                  Adventure|Children|Fantasy     73
## 10234 1996                                                Comedy|Crime     73
## 10235 1996                                                      Comedy     73
## 10237 1996                               Action|Comedy|Horror|Thriller     73
## 10238 1994                                             Action|Thriller     73
## 10239 1996                              Adventure|Comedy|Crime|Romance     73
## 10240 1996                                                      Comedy     73
## 10241 1996                           Adventure|Children|Comedy|Musical     73
## 10243 1976                                        Crime|Drama|Thriller     73
## 10244 1995                               Action|Adventure|Comedy|Crime     73
## 10245 1995                          Action|Comedy|Crime|Drama|Thriller     73
## 10247 1995                                        Adventure|Drama|IMAX     73
## 10248 1995                               Action|Adventure|Comedy|Crime     73
## 10249 1995                                          Adventure|Children     73
## 10250 1995                             Action|Adventure|Mystery|Sci-Fi     73
## 10251 1995                                      Action|Romance|Western     73
## 10252 1995                                       Action|Crime|Thriller     73
## 10253 1995                                        Action|Drama|Romance     73
## 10254 1995                                    Adventure|Children|Drama     73
## 10255 1995                                      Action|Sci-Fi|Thriller     73
## 10256 1995                                         Action|Crime|Sci-Fi     73
## 10258 1995                                                      Horror     73
## 10259 1995                                              Comedy|Romance     73
## 10260 1995                                       Action|Crime|Thriller     73
## 10261 1995                                                       Drama     73
## 10263 1995                                     Action|Adventure|Sci-Fi     73
## 10267 1994                                            Adventure|Comedy     73
## 10270 1995                           Animation|Children|Comedy|Romance     73
## 10273 1994                                                Drama|Horror     73
## 10274 1994                                               Comedy|Sci-Fi     73
## 10275 1995                   Adventure|Children|Comedy|Fantasy|Romance     73
## 10278 1995                                                      Comedy     73
## 10279 1994                                       Action|Crime|Thriller     73
## 10280 1995                                Action|Drama|Sci-Fi|Thriller     73
## 10284 1994                                     Action|Adventure|Sci-Fi     73
## 10288 1995                                        Action|Comedy|Sci-Fi     73
## 10289 1995                                                      Comedy     73
## 10290 1993                                                       Drama     73
## 10291 1995                                      Action|Sci-Fi|Thriller     73
## 10292 1994                                                      Comedy     73
## 10293 1994                                 Action|Crime|Drama|Thriller     73
## 10294 1994                                                Comedy|Drama     73
## 10298 1994                                 Action|Comedy|Crime|Fantasy     73
## 10299 1994                                    Adventure|Comedy|Western     73
## 10300 1994                                             Children|Comedy     73
## 10301 1994                                     Action|Romance|Thriller     73
## 10302 1994                    Action|Adventure|Comedy|Romance|Thriller     73
## 10303 1995                                             Horror|Thriller     73
## 10304 1994                                                 Crime|Drama     73
## 10305 1993                                     Children|Comedy|Fantasy     73
## 10306 1994                                                      Comedy     73
## 10308 1993                                                 Crime|Drama     73
## 10309 1993                                               Comedy|Sci-Fi     73
## 10310 1993                                                      Comedy     73
## 10311 1993                                     Action|Adventure|Sci-Fi     73
## 10314 1993                                           Action|Comedy|War     73
## 10316 1993                                             Action|Thriller     73
## 10318 1993                                              Drama|Thriller     73
## 10320 1993                             Action|Adventure|Comedy|Fantasy     73
## 10322 1993                                              Comedy|Romance     73
## 10323 1993                                                Comedy|Drama     73
## 10324 1994                                     Action|Children|Romance     73
## 10325 1993                                        Crime|Drama|Thriller     73
## 10327 1993                                                       Drama     73
## 10328 1994                                                      Comedy     73
## 10330 1992                                                Action|Drama     73
## 10333 1993                          Animation|Children|Fantasy|Musical     73
## 10336 1994                                             Children|Comedy     73
## 10337 1995                                                      Comedy     73
## 10338 1990                                             Children|Comedy     73
## 10340 1991                                               Action|Sci-Fi     73
## 10344 1937                    Animation|Children|Drama|Fantasy|Musical     73
## 10346 1940                          Animation|Children|Fantasy|Musical     73
## 10347 1990                                              Comedy|Romance     73
## 10349 1981                    Action|Adventure|Animation|Horror|Sci-Fi     73
## 10351 1996        Adventure|Animation|Children|Fantasy|Musical|Romance     73
## 10352 1996                           Action|Adventure|Mystery|Thriller     73
## 10353 1996                                    Action|Adventure|Fantasy     73
## 10354 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     73
## 10355 1996                                          Action|Crime|Drama     73
## 10356 1996                                            Action|Adventure     73
## 10357 1996                                              Comedy|Romance     73
## 10358 1996                                                      Comedy     73
## 10359 1996                                   Action|Adventure|Thriller     73
## 10361 1996                           Action|Adventure|Romance|Thriller     73
## 10362 1996                                               Action|Sci-Fi     73
## 10364 1996                                             Horror|Thriller     73
## 10366 1996                                      Action|Sci-Fi|Thriller     73
## 10367 1996                                            Action|Adventure     73
## 10369 1996                            Action|Adventure|Sci-Fi|Thriller     73
## 10370 1996                                             Comedy|Thriller     73
## 10371 1996                                                      Comedy     73
## 10372 1996                                       Action|Drama|Thriller     73
## 10373 1996                               Comedy|Fantasy|Romance|Sci-Fi     73
## 10374 1996                                      Comedy|Horror|Thriller     73
## 10375 1996                                               Drama|Romance     73
## 10376 1996                                              Crime|Thriller     73
## 10377 1996                            Action|Adventure|Sci-Fi|Thriller     73
## 10379 1996                                             Sci-Fi|Thriller     73
## 10383 1968                                      Adventure|Drama|Sci-Fi     73
## 10386 1993                                    Adventure|Children|Drama     73
## 10387 1993                                                      Comedy     73
## 10388 1950                  Animation|Children|Fantasy|Musical|Romance     73
## 10389 1963                          Animation|Children|Fantasy|Musical     73
## 10390 1991                                             Adventure|Drama     73
## 10391 1941                            Animation|Children|Drama|Musical     73
## 10392 1951                Adventure|Animation|Children|Fantasy|Musical     73
## 10393 1981                                    Animation|Children|Drama     73
## 10395 1996                                            Action|Adventure     73
## 10396 1996                                               Drama|Romance     73
## 10400 1992                                      Crime|Mystery|Thriller     73
## 10402 1991                                                       Drama     73
## 10403 1992                                      Drama|Romance|Thriller     73
## 10405 1986                                              Action|Romance     73
## 10406 1996                                                Comedy|Drama     73
## 10409 1975                                    Adventure|Comedy|Fantasy     73
## 10412 1989                                                       Drama     73
## 10430 1980                                       Action|Comedy|Musical     73
## 10433 1984                                                       Drama     73
## 10437 1989                                                   Drama|War     73
## 10439 1989                                                       Drama     73
## 10444 1986                                             Adventure|Drama     73
## 10454 1989                                                      Comedy     73
## 10455 1984                                                      Comedy     73
## 10458 1982                                               Drama|Musical     73
## 10459 1984                                                   Drama|War     73
## 10460 1989                                      Children|Drama|Fantasy     73
## 10461 1992                               Action|Horror|Sci-Fi|Thriller     73
## 10462 1981                                      Comedy|Horror|Thriller     73
## 10463 1992                             Fantasy|Horror|Romance|Thriller     73
## 10464 1992                                             Horror|Thriller     73
## 10467 1984                                             Horror|Thriller     73
## 10468 1976                                     Horror|Mystery|Thriller     73
## 10469 1996                            Action|Adventure|Sci-Fi|Thriller     73
## 10471 1996                                             Children|Comedy     73
## 10472 1996                                   Adventure|Children|Comedy     73
## 10473 1990                                   Action|Adventure|Thriller     73
## 10474 1991                                       Action|Mystery|Sci-Fi     73
## 10476 1992                                                Action|Crime     73
## 10479 1996                                        Action|Comedy|Sci-Fi     73
## 10483 1996                            Adventure|Animation|Comedy|Crime     73
## 10485 1992                                  Action|Romance|War|Western     73
## 10486 1997                                             Action|Thriller     73
## 10487 1997                                                      Comedy     73
## 10488 1997               Crime|Drama|Fantasy|Film-Noir|Mystery|Romance     73
## 10490 1997                              Action|Romance|Sci-Fi|Thriller     73
## 10491 1997                                                      Comedy     73
## 10492 1997                                   Action|Adventure|Thriller     73
## 10494 1997                                       Action|Drama|Thriller     73
## 10495 1997                                     Action|Adventure|Comedy     73
## 10496 1997                              Action|Adventure|Comedy|Sci-Fi     73
## 10497 1997                            Action|Adventure|Sci-Fi|Thriller     73
## 10498 1997                                   Action|Adventure|Thriller     73
## 10499 1997                           Action|Adventure|Fantasy|Thriller     73
## 10501 1997                                 Action|Crime|Drama|Thriller     73
## 10502 1997                                        Action|Comedy|Sci-Fi     73
## 10503 1997                                                Drama|Sci-Fi     73
## 10506 1997                            Action|Adventure|Sci-Fi|Thriller     73
## 10507 1997                                    Adventure|Children|Drama     73
## 10508 1997                              Drama|Mystery|Romance|Thriller     73
## 10509 1997                                                      Action     73
## 10510 1997                                      Horror|Sci-Fi|Thriller     73
## 10511 1997                                             Action|Thriller     73
## 10514 1997                                        Comedy|Drama|Romance     73
## 10515 1997                                     Horror|Mystery|Thriller     73
## 10516 1997                                      Drama|Mystery|Thriller     73
## 10517 1997                                       Drama|Sci-Fi|Thriller     73
## 10519 1985                                      Drama|Romance|Thriller     73
## 10520 1997                                               Action|Sci-Fi     73
## 10521 1997                                    Action|Adventure|Fantasy     73
## 10523 1997                                        Action|Horror|Sci-Fi     73
## 10525 1997                                             Children|Comedy     73
## 10526 1997                                               Drama|Romance     73
## 10527 1997                                        Crime|Drama|Thriller     73
## 10530 1998                                       Action|Crime|Thriller     73
## 10532 1997                                                      Comedy     73
## 10533 1998                                        Action|Horror|Sci-Fi     73
## 10534 1998                                              Comedy|Romance     73
## 10535 1998                                             Sci-Fi|Thriller     73
## 10537 1990                                              Crime|Thriller     73
## 10538 1998                                       Action|Crime|Thriller     73
## 10539 1998                                          Adventure|Children     73
## 10540 1998                                                       Drama     73
## 10541 1997                                               Action|Comedy     73
## 10542 1998                                               Horror|Sci-Fi     73
## 10543 1998                                       Drama|Sci-Fi|Thriller     73
## 10544 1998                                      Action|Sci-Fi|Thriller     73
## 10545 1998                                      Adventure|Comedy|Drama     73
## 10546 1998                        Action|Crime|Mystery|Sci-Fi|Thriller     73
## 10547 1998                                                      Comedy     73
## 10550 1998                              Action|Romance|Sci-Fi|Thriller     73
## 10551 1998                              Animation|Children|Fantasy|War     73
## 10552 1998                                              Comedy|Romance     73
## 10553 1971                                       Action|Crime|Thriller     73
## 10556 1984                                               Comedy|Sci-Fi     73
## 10559 1980                                     Horror|Mystery|Thriller     73
## 10561 1988                                             Horror|Thriller     73
## 10568 1998                                       Action|Comedy|Romance     73
## 10571 1990                             Adventure|Comedy|Sci-Fi|Western     73
## 10573 1984                                            Adventure|Sci-Fi     73
## 10574 1990                                Crime|Drama|Mystery|Thriller     73
## 10576 1985                        Adventure|Animation|Children|Fantasy     73
## 10577 1993                              Children|Comedy|Fantasy|Horror     73
## 10578 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     73
## 10579 1998                         Action|Crime|Drama|Mystery|Thriller     73
## 10580 1998                                                      Comedy     73
## 10583 1955                           Animation|Children|Comedy|Romance     73
## 10584 1989                   Animation|Children|Comedy|Musical|Romance     73
## 10585 1992                                             Children|Comedy     73
## 10586 1953                          Animation|Children|Fantasy|Musical     73
## 10587 1990                                Adventure|Animation|Children     73
## 10588 1977                    Adventure|Animation|Children|Crime|Drama     73
## 10590 1959                                  Animation|Children|Musical     73
## 10591 1982                                     Action|Adventure|Sci-Fi     73
## 10594 1991                                     Children|Comedy|Fantasy     73
## 10599 1991                Adventure|Animation|Children|Musical|Western     73
## 10600 1985                                   Adventure|Fantasy|Romance     73
## 10602 1986                                       Comedy|Fantasy|Horror     73
## 10603 1980                                            Adventure|Comedy     73
## 10604 1986                                       Crime|Horror|Thriller     73
## 10605 1984                                  Adventure|Children|Fantasy     73
## 10606 1987                                  Action|Comedy|Drama|Horror     73
## 10607 1998                                      Action|Horror|Thriller     73
## 10611 1998                                                      Comedy     73
## 10614 1989                                        Comedy|Drama|Romance     73
## 10616 1998                                Action|Comedy|Crime|Thriller     73
## 10620 1990                                       Drama|Fantasy|Romance     73
## 10621 1998                 Adventure|Animation|Children|Comedy|Fantasy     73
## 10622 1992                                                      Comedy     73
## 10624 1998                                      Comedy|Horror|Thriller     73
## 10626 1998                                        Comedy|Drama|Fantasy     73
## 10627 1997                                    Comedy|Drama|Romance|War     73
## 10628 1990                                     Fantasy|Horror|Thriller     73
## 10630 1998                                                      Comedy     73
## 10631 1998                                                     Romance     73
## 10632 1998                                             Action|Thriller     73
## 10633 1998                         Adventure|Animation|Children|Comedy     73
## 10635 1984                                                Comedy|Crime     73
## 10636 1998                                                Comedy|Crime     73
## 10637 1998                                        Crime|Drama|Thriller     73
## 10638 1998                                           Animation|Musical     73
## 10641 1985                                   Action|Adventure|Thriller     73
## 10642 1982                             Action|Adventure|Drama|Thriller     73
## 10643 1988                               Action|Adventure|Thriller|War     73
## 10644 1984                             Action|Adventure|Comedy|Romance     73
## 10646 1982                                                Action|Drama     73
## 10647 1985                                                Action|Drama     73
## 10648 1990                                                Action|Drama     73
## 10651 1989                             Action|Adventure|Children|Drama     73
## 10652 1998                                              Comedy|Romance     73
## 10654 1998                                               Horror|Sci-Fi     73
## 10655 1998                     Action|Adventure|Drama|Fantasy|Thriller     73
## 10657 1987                                                      Horror     73
## 10660 1986                                                      Horror     73
## 10662 1986                                            Adventure|Comedy     73
## 10663 1999                                             Action|Thriller     73
## 10664 1973                                            Animation|Sci-Fi     73
## 10666 1976                                     Action|Adventure|Sci-Fi     73
## 10668 1999                                                       Drama     73
## 10670 1988                                       Drama|Horror|Thriller     73
## 10671 1999                                                      Comedy     73
## 10674 1999                                              Comedy|Romance     73
## 10676 1992                                               Action|Comedy     73
## 10679 1999                                              Crime|Thriller     73
## 10680 1999                                               Comedy|Horror     73
## 10681 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     73
## 10682 1999                                     Action|Adventure|Sci-Fi     73
## 10683 1975                                Comedy|Horror|Musical|Sci-Fi     73
## 10684 1999                                              Comedy|Romance     73
## 10685 1999                                     Action|Adventure|Comedy     73
## 10688 1999                                                      Comedy     73
## 10689 1990                                               Comedy|Horror     73
## 10690 1999                                    Animation|Comedy|Musical     73
## 10691 1999                                Action|Comedy|Sci-Fi|Western     73
## 10692 1999                                              Comedy|Romance     73
## 10694 1999                                       Drama|Horror|Thriller     73
## 10696 1999                                             Horror|Thriller     73
## 10698 1989                                       Comedy|Fantasy|Sci-Fi     73
## 10699 1999                            Action|Adventure|Children|Comedy     73
## 10700 1999                               Action|Horror|Sci-Fi|Thriller     73
## 10701 1999                                       Action|Comedy|Fantasy     73
## 10702 1999                                              Comedy|Romance     73
## 10704 1986                                    Adventure|Drama|Thriller     73
## 10705 1986                                       Comedy|Horror|Musical     73
## 10706 1999                   Adventure|Animation|Children|Drama|Sci-Fi     73
## 10708 1999                                                      Comedy     73
## 10709 1980                                                      Comedy     73
## 10710 1988                                Comedy|Drama|Fantasy|Romance     73
## 10711 1990                                             Children|Comedy     73
## 10713 1992                                               Action|Sci-Fi     73
## 10716 1999                                                      Comedy     73
## 10717 1979                                                       Drama     73
## 10720 1981                                           Adventure|Fantasy     73
## 10721 1991                                     Action|Adventure|Comedy     73
## 10722 1999                           Action|Adventure|Comedy|Drama|War     73
## 10723 1988                                               Horror|Sci-Fi     73
## 10724 1979                                               Horror|Sci-Fi     73
## 10725 1983                                                      Comedy     73
## 10734 1992                                             Children|Comedy     73
## 10736 1981                             Adventure|Comedy|Fantasy|Sci-Fi     73
## 10737 1999                                             Horror|Thriller     73
## 10739 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     73
## 10742 1990                                               Comedy|Horror     73
## 10744 1985                                        Comedy|Horror|Sci-Fi     73
## 10747 1987                                               Comedy|Sci-Fi     73
## 10750 1999                                    Adventure|Comedy|Fantasy     73
## 10751 1984                                     Adventure|Comedy|Sci-Fi     73
## 10752 1999                              Fantasy|Horror|Mystery|Romance     73
## 10753 1999                                   Action|Adventure|Thriller     73
## 10754 1987                                              Drama|Thriller     73
## 10757 1999                      Action|Fantasy|Horror|Mystery|Thriller     73
## 10759 1999                                                      Comedy     73
## 10760 1999                                                 Crime|Drama     73
## 10762 1999                                                       Drama     73
## 10763 1999                                                       Drama     73
## 10765 1999                                     Adventure|Comedy|Sci-Fi     73
## 10767 1982                                        Comedy|Drama|Romance     73
## 10770 1992                                                      Comedy     73
## 10771 1993                                                      Comedy     73
## 10772 1992                                                Comedy|Drama     73
## 10773 1992                                 Action|Crime|Drama|Thriller     73
## 10776 1992                               Action|Crime|Thriller|Western     73
## 10777 2000                              Comedy|Horror|Mystery|Thriller     73
## 10778 2000                                 Action|Crime|Drama|Thriller     73
## 10780 2000                                      Horror|Sci-Fi|Thriller     73
## 10782 1986                                               Drama|Romance     73
## 10783 1988                                        Comedy|Drama|Romance     73
## 10787 1991                                               Drama|Romance     73
## 10788 1990                       Action|Children|Comedy|Fantasy|Sci-Fi     73
## 10789 1991                                     Action|Children|Fantasy     73
## 10790 1993                    Action|Adventure|Children|Comedy|Fantasy     73
## 10791 1987                                            Comedy|Drama|War     73
## 10792 1977                                      Adventure|Drama|Sci-Fi     73
## 10796 1991                                    Adventure|Comedy|Fantasy     73
## 10798 1987                                      Action|Sci-Fi|Thriller     73
## 10801 2000                                               Drama|Romance     73
## 10802 2000                                         Action|Thriller|War     73
## 10803 1995                                               Horror|Sci-Fi     73
## 10804 1996                                               Horror|Sci-Fi     73
## 10807 2000                                               Action|Sci-Fi     73
## 10808 2000                                                      Comedy     73
## 10809 2000                                   Action|Adventure|Thriller     73
## 10810 1974                                              Comedy|Western     73
## 10812 1988                          Adventure|Animation|Fantasy|Sci-Fi     73
## 10813 1982                                                      Comedy     73
## 10816 1979                                     Action|Adventure|Sci-Fi     73
## 10817 1981                            Action|Adventure|Sci-Fi|Thriller     73
## 10818 1985                                     Action|Adventure|Sci-Fi     73
## 10820 2000                                                Action|Crime     73
## 10821 1987                                              Horror|Western     73
## 10824 1986                             Action|Adventure|Comedy|Fantasy     73
## 10825 2000                  Action|Adventure|Animation|Children|Sci-Fi     73
## 10826 2000                                   Animation|Children|Comedy     73
## 10827 2000                                            Adventure|Comedy     73
## 10828 2000                                            Action|Drama|War     73
## 10829 2000                                              Drama|Thriller     73
## 10831 2000                                               Comedy|Horror     73
## 10832 2000                                     Action|Adventure|Sci-Fi     73
## 10833 2000                                                      Comedy     73
## 10834 2000                                      Horror|Sci-Fi|Thriller     73
## 10836 2000                                                      Comedy     73
## 10837 2000                                                      Comedy     73
## 10838 2000                                                      Comedy     73
## 10840 2000                                                       Drama     73
## 10841 1987                                                      Horror     73
## 10844 2000                                                       Drama     73
## 10845 2000                                                      Comedy     73
## 10846 1985                                                      Horror     73
## 10847 1987                                               Comedy|Horror     73
## 10848 2000                                                       Drama     73
## 10851 2000                                               Action|Comedy     73
## 10852 2000                                                      Comedy     73
## 10853 2000                                      Action|Sci-Fi|Thriller     73
## 10854 2000                                                Drama|Sci-Fi     73
## 10855 2000                                        Action|Drama|Romance     73
## 10856 1987                                                      Comedy     73
## 10861 2000                                               Comedy|Sci-Fi     73
## 10862 2000                                              Comedy|Romance     73
## 10863 2000                                                       Drama     73
## 10864 2000                                                       Drama     73
## 10865 2000                                                Comedy|Crime     73
## 10868 2001                                               Drama|Romance     73
## 10869 2001                                              Comedy|Romance     73
## 10870 1984                                   Action|Comedy|Crime|Drama     73
## 10873 1987                                      Comedy|Horror|Thriller     73
## 10874 1987                                     Adventure|Comedy|Horror     73
## 10875 2001                                             Horror|Thriller     73
## 10876 1984                                                      Comedy     73
## 10877 2001                                                   Drama|War     73
## 10879 2001                            Action|Adventure|Children|Comedy     73
## 10881 2001                                        Comedy|Drama|Romance     73
## 10882 2001                                                      Comedy     73
## 10884 2001                            Action|Adventure|Comedy|Thriller     73
## 10886 2001                                       Action|Comedy|Romance     73
## 10888 2001                                       Drama|Musical|Romance     73
## 10889 2001                                    Action|Drama|Romance|War     73
## 10890 2001                                                      Comedy     73
## 10891 2001                                               Comedy|Sci-Fi     73
## 10892 2001                                          Action|Crime|Drama     73
## 10895 2001                                            Action|Adventure     73
## 10897 2001                                      Adventure|Drama|Sci-Fi     73
## 10898 2000                                                 Crime|Drama     73
## 10899 2001                                                      Comedy     73
## 10900 1981                                                      Comedy     73
## 10901 1977                                                      Horror     73
## 10903 1978                                                      Action     73
## 10906 2001                                              Comedy|Romance     73
## 10907 2001                                                Action|Drama     73
## 10908 1998                                 Animation|Drama|Sci-Fi|IMAX     73
## 10910 1988                                          Action|Crime|Drama     73
## 10912 1985                                        Comedy|Horror|Sci-Fi     73
## 10914 1989                                     Adventure|Comedy|Sci-Fi     73
## 10916 1989                                                      Action     73
## 10917 1989                                      Horror|Sci-Fi|Thriller     73
## 10918 1989                                                      Comedy     73
## 10919 1989                                              Comedy|Romance     73
## 10921 2001                            Action|Adventure|Sci-Fi|Thriller     73
## 10924 2001                               Action|Adventure|Drama|Sci-Fi     73
## 10925 1982                                               Comedy|Horror     73
## 10926 2001                                               Action|Comedy     73
## 10928 2001                                                      Comedy     73
## 10929 2001                               Drama|Horror|Mystery|Thriller     73
## 10930 2001                                                      Comedy     73
## 10931 2001                                            Adventure|Comedy     73
## 10932 2001                                                      Horror     73
## 10933 2001                                       Drama|Musical|Romance     73
## 10934 2001                                        Crime|Drama|Thriller     73
## 10936 2001                                                      Comedy     73
## 10937 2001                                              Comedy|Romance     73
## 10939 2001                      Crime|Drama|Film-Noir|Mystery|Thriller     73
## 10941 2001                               Crime|Horror|Mystery|Thriller     73
## 10945 2001                 Adventure|Animation|Children|Comedy|Fantasy     73
## 10946 2001                                      Comedy|Fantasy|Romance     73
## 10947 2001                                  Adventure|Children|Fantasy     73
## 10948 2001                                    Adventure|Comedy|Fantasy     73
## 10949 1982                                    Action|Adventure|Fantasy     73
## 10950 2001                                              Crime|Thriller     73
## 10951 2001                                                      Comedy     73
## 10952 2001                             Mystery|Romance|Sci-Fi|Thriller     73
## 10954 1991                             Adventure|Comedy|Fantasy|Sci-Fi     73
## 10955 1983                                     Action|Adventure|Sci-Fi     73
## 10956 2001                                                      Comedy     73
## 10961 2002                                                      Comedy     73
## 10962 1984                                    Action|Adventure|Fantasy     73
## 10963 1993                                                Action|Drama     73
## 10965 2002                                               Action|Sci-Fi     73
## 10967 2001                                        Comedy|Crime|Mystery     73
## 10968 1976                                                      Comedy     73
## 10970 2002                                              Comedy|Romance     73
## 10971 2002                                            Action|Drama|War     73
## 10974 1980                                               Comedy|Horror     73
## 10975 1981                                                      Horror     73
## 10976 2002                         Adventure|Animation|Children|Comedy     73
## 10977 2002                               Action|Horror|Sci-Fi|Thriller     73
## 10979 2002                                                    Thriller     73
## 10980 2002                                                      Comedy     73
## 10981 2001                                        Crime|Drama|Thriller     73
## 10982 2002                                              Comedy|Romance     73
## 10983 2002                           Action|Adventure|Fantasy|Thriller     73
## 10986 2002                                Action|Adventure|Sci-Fi|IMAX     73
## 10987 2002                         Action|Crime|Drama|Mystery|Thriller     73
## 10988 2002                                                      Comedy     73
## 10989 2002                                     Action|Mystery|Thriller     73
## 10990 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     73
## 10991 2002                                              Comedy|Romance     73
## 10992 1993                                     Children|Comedy|Romance     73
## 10993 2002                                        Action|Comedy|Sci-Fi     73
## 10994 2002                                    Action|Adventure|Fantasy     73
## 10995 2002                                                 Crime|Drama     73
## 10996 2002                                                      Comedy     73
## 10997 2002                                      Horror|Sci-Fi|Thriller     73
## 10998 2002                                          Adventure|Children     73
## 10999 2002                                       Action|Crime|Thriller     73
## 11000 2002                                     Adventure|Drama|Romance     73
## 11002 1991                                   Action|Comedy|Romance|War     73
## 11003 2002                                                      Comedy     73
## 11004 2002                                                Action|Crime     73
## 11005 1991                                                      Comedy     73
## 11006 2002                                        Comedy|Drama|Romance     73
## 11008 2002                                               Action|Comedy     73
## 11009 2002                                      Crime|Mystery|Thriller     73
## 11013 2002                                     Horror|Mystery|Thriller     73
## 11015 1993                                               Action|Horror     73
## 11016 1981                                          Documentary|Horror     73
## 11017 1978                                          Documentary|Horror     73
## 11018 1985                                          Documentary|Horror     73
## 11019 1990                                          Documentary|Horror     73
## 11021 2002                                                       Drama     73
## 11022 2002                                           Adventure|Fantasy     73
## 11023 2002                    Adventure|Animation|Children|Sci-Fi|IMAX     73
## 11026 2002                                                      Comedy     73
## 11027 2002                                              Comedy|Romance     73
## 11030 2002                                                       Drama     73
## 11031 2002                                                 Crime|Drama     73
## 11034 2002                                  Comedy|Crime|Drama|Musical     73
## 11037 2003                                              Comedy|Romance     73
## 11038 2003                                     Action|Adventure|Comedy     73
## 11039 2003                                                Action|Crime     73
## 11040 2003                                                      Comedy     73
## 11041 2003                                                      Comedy     73
## 11042 2003                                       Action|Drama|Thriller     73
## 11043 2002                                        Comedy|Drama|Romance     73
## 11045 2002                                              Drama|Thriller     73
## 11046 2003                                                      Comedy     73
## 11047 2003                                                Comedy|Crime     73
## 11048 1971                                              Mystery|Sci-Fi     73
## 11050 2003                            Action|Adventure|Sci-Fi|Thriller     73
## 11051 2003                                             Children|Comedy     73
## 11052 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11053 2003                                Comedy|Drama|Fantasy|Romance     73
## 11055 2003                                                Action|Crime     73
## 11056 2003                                             Horror|Thriller     73
## 11057 2003                                       Action|Crime|Thriller     73
## 11059 2002                                        Action|Horror|Sci-Fi     73
## 11060 2003                      Action|Adventure|Comedy|Crime|Thriller     73
## 11061 2003                                     Action|Adventure|Sci-Fi     73
## 11062 2003                                     Action|Adventure|Sci-Fi     73
## 11064 2003                                Action|Comedy|Crime|Thriller     73
## 11066 2003                    Action|Adventure|Comedy|Romance|Thriller     73
## 11067 2003                                                       Drama     73
## 11068 2003                                   Action|Adventure|Children     73
## 11069 1985                                Action|Comedy|Crime|Thriller     73
## 11070 2003                                                      Comedy     73
## 11071 2003                                     Children|Comedy|Fantasy     73
## 11072 2003                                             Action|Thriller     73
## 11073 1988                                               Comedy|Horror     73
## 11074 2003                                      Action|Horror|Thriller     73
## 11076 1985                                            Action|Adventure     73
## 11077 2003                                             Horror|Thriller     73
## 11078 2002                                             Horror|Thriller     73
## 11082 2003                                       Action|Fantasy|Horror     73
## 11084 1983                              Fantasy|Horror|Sci-Fi|Thriller     73
## 11087 1983                                                      Comedy     73
## 11089 2000                                       Drama|Horror|Thriller     73
## 11090 1995                          Action|Adventure|Animation|Fantasy     73
## 11091 2003                                              Comedy|Musical     73
## 11094 2003                                                       Drama     73
## 11095 2003                                               Comedy|Horror     73
## 11096 2002      Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller     73
## 11097 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11098 2003                                     Children|Comedy|Fantasy     73
## 11099 2003                                         Adventure|Drama|War     73
## 11100 2003                                             Horror|Thriller     73
## 11101 2003                        Crime|Drama|Mystery|Romance|Thriller     73
## 11102 2003                                                Comedy|Crime     73
## 11103 1991                                          Action|Crime|Drama     73
## 11107 1985                                              Comedy|Fantasy     73
## 11108 1990                                            Children|Fantasy     73
## 11109 1987                              Comedy|Fantasy|Horror|Thriller     73
## 11113 1993                                               Comedy|Horror     73
## 11115 2003                                  Action|Adventure|Drama|War     73
## 11116 2003                                       Drama|Fantasy|Romance     73
## 11118 2003                                             Children|Comedy     73
## 11120 2004                                       Drama|Sci-Fi|Thriller     73
## 11122 2004                                              Comedy|Romance     73
## 11123 1985                                            Adventure|Comedy     73
## 11125 2004                                                       Drama     73
## 11126 2004                                             Adventure|Drama     73
## 11127 2004                                Action|Comedy|Crime|Thriller     73
## 11128 2004                                              Comedy|Romance     73
## 11129 2004                                Action|Drama|Horror|Thriller     73
## 11131 2004                                                Comedy|Crime     73
## 11132 2004                             Action|Adventure|Fantasy|Horror     73
## 11133 1978                                         Action|Drama|Horror     73
## 11134 1987                                               Comedy|Horror     73
## 11137 2004                         Action|Crime|Drama|Mystery|Thriller     73
## 11138 2004                             Action|Adventure|Fantasy|Horror     73
## 11139 2004                                  Action|Adventure|Drama|War     73
## 11143 1990                                              Comedy|Romance     73
## 11144 1985                                   Adventure|Children|Sci-Fi     73
## 11146 2000                                        Drama|Fantasy|Sci-Fi     73
## 11148 1996                                        Comedy|Horror|Sci-Fi     73
## 11149 2001                                        Comedy|Horror|Sci-Fi     73
## 11150 1998                                     Action|Adventure|Comedy     73
## 11152 1986                                               Horror|Sci-Fi     73
## 11153 1987                                                      Horror     73
## 11156 2004         Adventure|Animation|Children|Comedy|Musical|Romance     73
## 11157 2004                      Action|Adventure|Drama|Sci-Fi|Thriller     73
## 11158 2004                                                      Comedy     73
## 11159 2004                                      Adventure|Fantasy|IMAX     73
## 11160 2004                                      Action|Sci-Fi|Thriller     73
## 11161 2004                                   Animation|Children|Comedy     73
## 11162 2004                                     Comedy|Fantasy|Thriller     73
## 11163 2004                                                      Comedy     73
## 11164 1932                                          Crime|Drama|Horror     73
## 11165 2004                                   Adventure|Children|Comedy     73
## 11166 2004                                                      Comedy     73
## 11168 2004                                         Action|Comedy|Crime     73
## 11169 2004                                                 Documentary     73
## 11170 2004                                Action|Adventure|Sci-Fi|IMAX     73
## 11172 2004                                  Action|Adventure|Drama|War     73
## 11174 2004                            Action|Adventure|Sci-Fi|Thriller     73
## 11175 2004                                       Action|Crime|Thriller     73
## 11176 2004                                      Drama|Mystery|Thriller     73
## 11178 2004                                 Action|Crime|Drama|Thriller     73
## 11179 2004                                            Adventure|Comedy     73
## 11180 2004                               Action|Horror|Sci-Fi|Thriller     73
## 11181 2004                          Action|Adventure|Animation|Fantasy     73
## 11182 1988                                                      Horror     73
## 11183 2004                                                      Comedy     73
## 11184 2004                               Action|Horror|Sci-Fi|Thriller     73
## 11188 2004                                                Drama|Sci-Fi     73
## 11189 2004                           Action|Adventure|Animation|Comedy     73
## 11190 1967                                               Comedy|Horror     73
## 11191 2004                                     Horror|Mystery|Thriller     73
## 11192 2004                                        Comedy|Drama|Romance     73
## 11195 2004                  Action|Adventure|Animation|Children|Comedy     73
## 11196 2004                     Action|Adventure|Drama|Mystery|Thriller     73
## 11197 2004                                Action|Comedy|Crime|Thriller     73
## 11200 1977                                  Animation|Children|Fantasy     73
## 11201 1983                                       Action|Mystery|Sci-Fi     73
## 11203 1986                                        Crime|Drama|Thriller     73
## 11204 1987                              Fantasy|Horror|Sci-Fi|Thriller     73
## 11206 1990                                               Comedy|Horror     73
## 11208 1991                                                 Documentary     73
## 11211 1998                           Action|Documentary|Drama|Thriller     73
## 11216 2000                                            Animation|Comedy     73
## 11217 2002                                                      Comedy     73
## 11220 2003                                            Drama|Sci-Fi|War     73
## 11223 2003                                   Action|Drama|Thriller|War     73
## 11224 2004                           Adventure|Children|Comedy|Fantasy     73
## 11225 2002                                                      Horror     73
## 11227 2004                                              Fantasy|Horror     73
## 11228 2004                                    Action|Horror|Sci-Fi|War     73
## 11229 2003                  Adventure|Animation|Fantasy|Musical|Sci-Fi     73
## 11231 2004                                        Comedy|Drama|Romance     73
## 11233 2006                     Animation|Drama|Mystery|Sci-Fi|Thriller     73
## 11237 2004                                                       Drama     73
## 11238 2004                                                       Drama     73
## 11239 2004                                                      Comedy     73
## 11241 2005                                                       Drama     73
## 11242 1991                             Action|Adventure|Fantasy|Sci-Fi     73
## 11243 2005                                             Children|Comedy     73
## 11244 2005                               Drama|Horror|Mystery|Thriller     73
## 11246 2005                                              Comedy|Romance     73
## 11247 2005                              Action|Fantasy|Horror|Thriller     73
## 11248 2004                                               Action|Comedy     73
## 11249 1995                          Adventure|Animation|Comedy|Fantasy     73
## 11252 2005                                     Action|Adventure|Comedy     73
## 11253 2005                                     Adventure|Comedy|Sci-Fi     73
## 11255 2005                                             Horror|Thriller     73
## 11258 2005                                     Action|Adventure|Sci-Fi     73
## 11259 2005                             Action|Adventure|Comedy|Romance     73
## 11261 2005                                      Action|Horror|Thriller     73
## 11262 2005                            Action|Adventure|Sci-Fi|Thriller     73
## 11263 2005                                     Action|Adventure|Sci-Fi     73
## 11264 2005                                              Comedy|Romance     73
## 11265 2005                                      Action|Sci-Fi|Thriller     73
## 11266 2005                                     Action|Adventure|Sci-Fi     73
## 11267 2005                                                Comedy|Drama     73
## 11268 2005                                                      Comedy     73
## 11269 2005                                              Comedy|Romance     73
## 11270 2005                                       Action|Crime|Thriller     73
## 11271 2005                             Action|Crime|Drama|Thriller|War     73
## 11272 2005                                  Adventure|Animation|Comedy     73
## 11273 2005                                               Action|Sci-Fi     73
## 11276 2005                               Comedy|Crime|Mystery|Thriller     73
## 11277 2005                                         Crime|Drama|Western     73
## 11278 2005                                             Horror|Thriller     73
## 11279 2005                                            Action|Drama|War     73
## 11280 2005                                          Action|Crime|Drama     73
## 11281 2005                                               Drama|Romance     73
## 11283 2005                             Adventure|Fantasy|Thriller|IMAX     73
## 11284 2005                                         Crime|Drama|Romance     73
## 11285 2005                                  Adventure|Children|Fantasy     73
## 11286 2005                     Action|Adventure|Drama|Fantasy|Thriller     73
## 11288 2005                                                Comedy|Crime     73
## 11289 2005                                                      Horror     73
## 11290 2006                                                      Comedy     73
## 11291 1986                                       Comedy|Fantasy|Horror     73
## 11292 2006                                              Comedy|Romance     73
## 11294 2006                                              Crime|Thriller     73
## 11296 2006                                                Comedy|Drama     73
## 11299 2006                                       Drama|Horror|Thriller     73
## 11302 2006                                               Comedy|Horror     73
## 11304 2005                                Action|Comedy|Crime|Thriller     73
## 11305 2006                                   Action|Adventure|Thriller     73
## 11306 2006                                      Drama|Mystery|Thriller     73
## 11308 2006                                                      Comedy     73
## 11309 2006                      Adventure|Comedy|Drama|Fantasy|Romance     73
## 11310 2006                                    Action|Adventure|Fantasy     73
## 11311 2006                                                      Comedy     73
## 11312 2006                                                      Comedy     73
## 11314 2006                                 Action|Crime|Drama|Thriller     73
## 11315 2006                                   Animation|Children|Comedy     73
## 11316 2006                                      Adventure|Comedy|Drama     73
## 11317 2006                                                      Comedy     73
## 11318 2006                               Action|Comedy|Horror|Thriller     73
## 11319 2006                                               Action|Comedy     73
## 11320 2006                                  Action|Comedy|Fantasy|IMAX     73
## 11322 2006                                                       Drama     73
## 11323 2006                                             Action|Thriller     73
## 11325 2006                                                      Comedy     73
## 11326 2006                                                Action|Drama     73
## 11328 2006                                       Drama|Fantasy|Romance     73
## 11329 2006                                    Adventure|Drama|Thriller     73
## 11330 2006                                                      Comedy     73
## 11331 2006                                      Drama|Fantasy|Thriller     73
## 11333 2006                               Drama|Horror|Mystery|Thriller     73
## 11335 2006                                        Comedy|Drama|Romance     73
## 11338 2006                                       Crime|Horror|Thriller     73
## 11340 2006                                      Action|Sci-Fi|Thriller     73
## 11341 2006                                                      Comedy     73
## 11342 2006                     Adventure|Drama|Horror|Mystery|Thriller     73
## 11343 2006                   Action|Adventure|Crime|Drama|Thriller|War     73
## 11344 2006                                    Action|Adventure|Fantasy     73
## 11345 2006                                                Action|Drama     73
## 11348 2006                                                      Comedy     73
## 11349 2006                                 Action|Crime|Drama|Thriller     73
## 11350 2007                                            Adventure|Comedy     73
## 11351 2007                                              Comedy|Romance     73
## 11352 2007                                    Animation|Children|Drama     73
## 11353 2007                                 Action|Comedy|Crime|Mystery     73
## 11356 2007                                     Action|Fantasy|War|IMAX     73
## 11358 2007                                             Horror|Thriller     73
## 11359 2007                                              Comedy|Romance     73
## 11360 2007                         Action|Crime|Horror|Sci-Fi|Thriller     73
## 11361 2007                             Adventure|Drama|Sci-Fi|Thriller     73
## 11362 2007                                              Drama|Thriller     73
## 11363 2007    Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi     73
## 11365 2007                       Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11367 2007                                        Comedy|Drama|Romance     73
## 11368 2007                                      Horror|Sci-Fi|Thriller     73
## 11369 2007                 Adventure|Animation|Children|Comedy|Fantasy     73
## 11370 2007                             Action|Adventure|Comedy|Fantasy     73
## 11372 2007                                              Crime|Thriller     73
## 11374 2007                      Action|Adventure|Crime|Horror|Thriller     73
## 11376 2007                             Action|Adventure|Crime|Thriller     73
## 11377 2007                                 Action|Sci-Fi|Thriller|IMAX     73
## 11378 2007                                Adventure|Drama|Fantasy|IMAX     73
## 11379 2007                               Drama|Fantasy|Musical|Romance     73
## 11380 2007                                            Animation|Comedy     73
## 11381 2007                                       Action|Crime|Thriller     73
## 11382 2007                                                      Comedy     73
## 11385 2007                                Action|Comedy|Crime|Thriller     73
## 11386 2007                                                Comedy|Drama     73
## 11387 2007                                        Action|Horror|Sci-Fi     73
## 11392 2007                               Action|Horror|Sci-Fi|Thriller     73
## 11393 2007                                              Comedy|Romance     73
## 11395 2007                                      Adventure|Comedy|Drama     73
## 11397 2007                                       Crime|Horror|Thriller     73
## 11399 2007                                        Crime|Drama|Thriller     73
## 11400 2007                                        Crime|Drama|Thriller     73
## 11402 2008                                                      Comedy     73
## 11403 2007                     Action|Adventure|Animation|Fantasy|IMAX     73
## 11404 2006                                Comedy|Drama|Sci-Fi|Thriller     73
## 11406 2007                          Action|Horror|Sci-Fi|Thriller|IMAX     73
## 11407 2007                                     Animation|Comedy|Sci-Fi     73
## 11408 2007                                        Comedy|Drama|Romance     73
## 11409 2007                                                Comedy|Drama     73
## 11410 2007                               Drama|Horror|Musical|Thriller     73
## 11411 2007                                            Action|Adventure     73
## 11413 2007                                        Action|Horror|Sci-Fi     73
## 11414 2008                              Action|Mystery|Sci-Fi|Thriller     73
## 11415 2008                                   Action|Drama|Thriller|War     73
## 11416 2008                                                      Comedy     73
## 11417 2008                             Action|Adventure|Fantasy|Sci-Fi     73
## 11419 2008                      Action|Adventure|Drama|Sci-Fi|Thriller     73
## 11420 2008                                                      Comedy     73
## 11421 2008                                  Adventure|Romance|Thriller     73
## 11422 2008                                       Action|Crime|Thriller     73
## 11424 2008                                                      Comedy     73
## 11427 2008                                                      Action     73
## 11428 2008                                Crime|Drama|Romance|Thriller     73
## 11429 2008                                             Horror|Thriller     73
## 11430 2008                                              Comedy|Romance     73
## 11431 2008                                        Action|Comedy|Sci-Fi     73
## 11432 2008                                            Adventure|Comedy     73
## 11433 2008                                     Action|Adventure|Sci-Fi     73
## 11434 2008                                 Action|Crime|Drama|Thriller     73
## 11435 2006                                     Adventure|Drama|Fantasy     73
## 11436 2008                              Action|Adventure|Comedy|Sci-Fi     73
## 11437 2008                       Action|Animation|Children|Comedy|IMAX     73
## 11438 2008                                                      Comedy     73
## 11440 2008                                       Drama|Sci-Fi|Thriller     73
## 11441 2008                 Adventure|Animation|Children|Romance|Sci-Fi     73
## 11442 2008                                             Action|Thriller     73
## 11443 2008                       Action|Adventure|Comedy|Crime|Fantasy     73
## 11444 2008                                               Action|Comedy     73
## 11447 1966                                   Animation|Children|Comedy     73
## 11449 2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     73
## 11450 2008                                                 Crime|Drama     73
## 11452 2008                                         Action|Comedy|Crime     73
## 11453 2008                                 Action|Adventure|Comedy|War     73
## 11454 2008                            Action|Adventure|Sci-Fi|Thriller     73
## 11455 2008                                          Comedy|Crime|Drama     73
## 11456 2008                                                      Comedy     73
## 11457 2008                                                      Comedy     73
## 11458 2008                                 Action|Crime|Drama|Thriller     73
## 11459 2008                                        Comedy|Drama|Romance     73
## 11461 2008                                                     Musical     73
## 11462 2008            Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi     73
## 11463 2009                                    Adventure|Drama|Thriller     73
## 11465 2008                                   Action|Adventure|Thriller     73
## 11466 2008                                                      Comedy     73
## 11467 2008                                   Adventure|Children|Comedy     73
## 11468 2008                                      Action|Horror|Thriller     73
## 11470 2008                              Drama|Fantasy|Romance|Thriller     73
## 11472 2008                                           Action|Sci-Fi|War     73
## 11478 2008                                          Drama|Thriller|War     73
## 11480 2006                                       Comedy|Horror|Musical     73
## 11482 2008                                     Action|Adventure|Sci-Fi     73
## 11483 2009                                                      Horror     73
## 11485 2009                              Action|Animation|Comedy|Sci-Fi     73
## 11486 2009                                                   Animation     73
## 11488 2008                                                      Action     73
## 11490 2008                                         Documentary|Musical     73
## 11491 2009                                               Action|Comedy     73
## 11492 2009                                                Comedy|Drama     73
## 11493 2009                                 Action|Crime|Drama|Thriller     73
## 11498 2009                                      Action|Sci-Fi|Thriller     73
## 11499 2009                                Action|Adventure|Sci-Fi|IMAX     73
## 11500 2008                                                      Comedy     73
## 11501 2009                                Crime|Drama|Mystery|Thriller     73
## 11502 2007                                                       Drama     73
## 11503 2009                                               Comedy|Horror     73
## 11505 2005                            Action|Adventure|Animation|Drama     73
## 11506 2009                                              Comedy|Musical     73
## 11507 2009                                                Comedy|Crime     73
## 11508 2009                                        Crime|Drama|Thriller     73
## 11510 2009                                        Crime|Drama|Thriller     73
## 11511 2002                                            Animation|Comedy     73
## 11512 2009                           Action|Adventure|Animation|Horror     73
## 11514 2009                      Adventure|Fantasy|Mystery|Romance|IMAX     73
## 11515 2009                                     Mystery|Sci-Fi|Thriller     73
## 11517 1990                                              Fantasy|Horror     73
## 11518 2009                                  Adventure|Animation|Sci-Fi     73
## 11521 2009                                                      Comedy     73
## 11522 2009                                             Horror|Thriller     73
## 11526 2009                                         Action|Comedy|Crime     73
## 11528 2009                       Adventure|Children|Drama|Fantasy|IMAX     73
## 11529 2009                                              Drama|Thriller     73
## 11531 2009                                               Action|Comedy     73
## 11533 2009                                                   Animation     73
## 11538 2010                                Action|Drama|Horror|Thriller     73
## 11539 2010                                      Action|Adventure|Drama     73
## 11544 2010                                                Action|Crime     73
## 11545 2010                                        Crime|Drama|Thriller     73
## 11547 2009                                 Comedy|Crime|Drama|Thriller     73
## 11548 2009                                                      Comedy     73
## 11549 2010                                               Comedy|Sci-Fi     73
## 11552 2009                                        Crime|Drama|Thriller     73
## 11553 2010                       Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11554 2010                                                Comedy|Drama     73
## 11555 2010                                                       Drama     73
## 11556 2010                          Action|Adventure|Drama|Romance|War     73
## 11557 2010                                                      Comedy     73
## 11558 2009                                      Horror|Sci-Fi|Thriller     73
## 11559 2009                                            Mystery|Thriller     73
## 11560 2010                                      Action|Comedy|Thriller     73
## 11562 2010                                              Drama|Thriller     73
## 11563 2010                               Fantasy|Romance|Thriller|IMAX     73
## 11565 2010                                      Action|Sci-Fi|Thriller     73
## 11568 2010                                                Comedy|Drama     73
## 11569 2010                                             Horror|Thriller     73
## 11572 2010                                                      Action     73
## 11573 2010                                   Action|Adventure|Thriller     73
## 11575 2010                                                 Crime|Drama     73
## 11576 2010                                      Action|Horror|Thriller     73
## 11577 1989                   Action|Adventure|Animation|Fantasy|Sci-Fi     73
## 11582 2010                                        Drama|Horror|Mystery     73
## 11583 2010                                     Horror|Mystery|Thriller     73
## 11584 2010                                               Comedy|Sci-Fi     73
## 11585 2010                                    Adventure|Drama|Thriller     73
## 11588 1982                                               Action|Sci-Fi     73
## 11592 2009                                                      Horror     73
## 11597 2011                         Action|Sci-Fi|Thriller|Western|IMAX     73
## 11599 2011                                     Adventure|Comedy|Sci-Fi     73
## 11605 2011                                                Comedy|Drama     73
## 11607 2011                            Action|Crime|Drama|Thriller|IMAX     73
## 11612 2010                                                Comedy|Drama     73
## 11614 2011                                                Comedy|Crime     73
## 11617 2011                              Crime|Drama|Film-Noir|Thriller     73
## 11618 2011                        Action|Adventure|Sci-Fi|Thriller|War     73
## 11620 2011                                Action|Drama|Sci-Fi|Thriller     73
## 11621 2011                                        Drama|Romance|Sci-Fi     73
## 11623 2011                                Action|Crime|Horror|Thriller     73
## 11624 2011                                        Sci-Fi|Thriller|IMAX     73
## 11627 2011                                                Comedy|Drama     73
## 11628 2011                                              Drama|Thriller     73
## 11629 2011                                                Comedy|Drama     73
## 11630 2011                                              Drama|Thriller     73
## 11632 2012                                            Action|Adventure     73
## 11637 2012                                                Action|Drama     73
## 11638 2011                                             Horror|Thriller     73
## 11640 2012                                Action|Adventure|Sci-Fi|IMAX     73
## 11641 2011                                                Comedy|Drama     73
## 11643 2012                                                      Comedy     73
## 11647 2012                                 Action|Sci-Fi|Thriller|IMAX     73
## 11650 2012                         Adventure|Animation|Children|Comedy     73
## 11654 1987                         Action|Adventure|Animation|Children     73
## 11655 1990                  Action|Adventure|Animation|Sci-Fi|Thriller     73
## 11656 1990                           Action|Adventure|Animation|Sci-Fi     73
## 11658 1992                                  Action|Adventure|Animation     73
## 11662 2012                                               Drama|Fantasy     73
## 11663 1994                                  Action|Adventure|Animation     73
## 11664 1995                                  Action|Adventure|Animation     73
## 11665 2012                                      Action|Sci-Fi|Thriller     73
## 11666 1995                                  Action|Adventure|Animation     73
## 11669 1997                                  Action|Adventure|Animation     73
## 11671 2012                                                      Comedy     73
## 11672 2012                                  Adventure|Animation|Comedy     73
## 11673 2012                                                 Crime|Drama     73
## 11674 2012                                              Comedy|Musical     73
## 11676 2012                                               Action|Sci-Fi     73
## 11681 2012                                        Crime|Drama|Thriller     73
## 11682 2012                                            Animation|Comedy     73
## 11684 2012                                                       Drama     73
## 11686 2009                                     Action|Animation|Sci-Fi     73
## 11690 2012                                       Action|Crime|Thriller     73
## 11693 2013                                          Action|Crime|Drama     73
## 11698 2013                                Action|Adventure|Sci-Fi|IMAX     73
## 11699 2013                                         Action|Comedy|Crime     73
## 11703 2013                                                       Drama     73
## 11705 2013                                  Action|Crime|Thriller|IMAX     73
## 11707 2013                        Action|Adventure|Fantasy|Sci-Fi|IMAX     73
## 11709 2013                                Action|Adventure|Sci-Fi|IMAX     73
## 11710 2013                                    Action|Drama|Horror|IMAX     73
## 11711 2013                                    Action|Drama|Sci-Fi|IMAX     73
## 11712 2013                               Action|Adventure|Western|IMAX     73
## 11713 2013                                                       Drama     73
## 11714 2013                                             Horror|Thriller     73
## 11715 2013                             Action|Adventure|Fantasy|Sci-Fi     73
## 11719 2013                                        Comedy|Drama|Romance     73
## 11721 2013                                Action|Adventure|Sci-Fi|IMAX     73
## 11724 2013                                Action|Adventure|Sci-Fi|IMAX     73
## 11725 2013                                      Adventure|Fantasy|IMAX     73
## 11726 2013                                    Action|Adventure|Fantasy     73
## 11729 2013                                      Adventure|Comedy|Drama     73
## 11731 2013                                   Action|Drama|Thriller|War     73
## 11732 2013                                                      Comedy     73
## 11734 2013                               Action|Animation|Fantasy|IMAX     73
## 11735 1991                                          Animation|Children     73
## 11736 1996                         Action|Adventure|Animation|Children     73
## 11737 2014                               Adventure|Romance|Sci-Fi|IMAX     73
## 11740 2013                                               Drama|Mystery     73
## 11744 2014                                     Action|Crime|Drama|IMAX     73
## 11745 2013                                                      Comedy     73
## 11746 2014                                        Adventure|Drama|IMAX     73
## 11749 2013                                                       Drama     73
## 11750 2014                                               Action|Sci-Fi     73
## 11752 2014                                Action|Adventure|Sci-Fi|IMAX     73
## 11753 2014                                                Comedy|Drama     73
## 11754 2014                              Action|Adventure|Children|IMAX     73
## 11756 2015                                   Action|Adventure|Thriller     73
## 11759 2014                                                       Drama     73
## 11760 2014                                       Drama|Horror|Thriller     73
## 11763 2014                                                      Sci-Fi     73
## 11764 2014                                      Action|Horror|Thriller     73
## 11767 2014                                     Action|Adventure|Comedy     73
## 11768 2014                                       Action|Crime|Thriller     73
## 11770 2014                                       Action|Mystery|Sci-Fi     73
## 11772 2014                                         Comedy|Drama|Horror     73
## 11775 2014                                             Action|Thriller     73
## 11779 2012                                            Animation|Comedy     73
## 11780 2005                                           Animation|Fantasy     73
## 11781 2014                                                    Thriller     73
## 11783 2014                                   Adventure|Sci-Fi|Thriller     73
## 11784 2014                                                Comedy|Drama     73
## 11786 2015                      Action|Adventure|Drama|Sci-Fi|Thriller     73
## 11787 2014                                       Comedy|Crime|Thriller     73
## 11788 2014                                           Adventure|Fantasy     73
## 11789 2015                               Action|Adventure|Comedy|Crime     73
## 11790 2015                                             Action|Thriller     73
## 11791 2014                                                      Horror     73
## 11795 2015                                     Action|Adventure|Sci-Fi     73
## 11797 2016                             Action|Adventure|Fantasy|Sci-Fi     73
## 11798 1948                                  Animation|Children|Fantasy     73
## 11799 2015                                                Comedy|Drama     73
## 11801 2014                                       Drama|Horror|Thriller     73
## 11802 2015                                                      Horror     73
## 11803 2015                                       Comedy|Romance|Sci-Fi     73
## 11805 2015                         Adventure|Animation|Children|Comedy     73
## 11806 2016                                     Adventure|Drama|Fantasy     73
## 11809 2015                                         Crime|Drama|Mystery     73
## 11810 2015                                                      Horror     73
## 11812 2015                                               Comedy|Horror     73
## 11815 2015                                                       Drama     73
## 11816 2016                                                    Thriller     73
## 11817 2016                                                      Comedy     73
## 11819 2016                                                    Thriller     73
## 11821 1987                                                      Horror     73
## 11822 2016                                                      Horror     73
## 11823 2016             Action|Adventure|Animation|Drama|Fantasy|Sci-Fi     73
## 11826 1995                                                 Crime|Drama     74
## 11835 1996                                                      Comedy     74
## 11838 1979                                                      Comedy     74
## 11839 1982                                       Children|Drama|Sci-Fi     74
## 11849 1997                                               Drama|Romance     74
## 11851 1998                                       Drama|Sci-Fi|Thriller     74
## 11854 1976                                                       Drama     74
## 11861 1998                                                       Drama     74
## 11866 1999                                               Action|Sci-Fi     74
## 11870 1978                                     Action|Adventure|Sci-Fi     74
## 11874 1995                 Adventure|Animation|Children|Comedy|Fantasy     75
## 11875 1995                                              Comedy|Romance     75
## 11880 1994                                     Action|Adventure|Sci-Fi     75
## 11882 1994                                      Drama|Mystery|Thriller     75
## 11885 1994                                    Adventure|Comedy|Western     75
## 11887 1994                                      Action|Sci-Fi|Thriller     75
## 11888 1993                                     Action|Adventure|Sci-Fi     75
## 11889 1993                            Action|Adventure|Sci-Fi|Thriller     75
## 11890 1993                                               Drama|Romance     75
## 11891 1993                                                      Comedy     75
## 11895 1989                                       Action|Crime|Thriller     75
## 11897 1996                                       Action|Drama|Thriller     75
## 11898 1996                                       Drama|Mystery|Western     75
## 11899 1972                                                 Crime|Drama     75
## 11900 1996                                             Sci-Fi|Thriller     75
## 11901 1952                                      Comedy|Musical|Romance     75
## 11908 1979                                                      Comedy     75
## 11909 1989                            Action|Adventure|Sci-Fi|Thriller     75
## 11911 1987                     Action|Adventure|Comedy|Fantasy|Romance     75
## 11913 1966                                    Action|Adventure|Western     75
## 11914 1962                                                       Drama     75
## 11915 1979                                            Action|Drama|War     75
## 11918 1974                                                 Crime|Drama     75
## 11919 1984                                                       Drama     75
## 11920 1973                                                Comedy|Crime     75
## 11921 1984                                      Action|Sci-Fi|Thriller     75
## 11925 1993                                      Comedy|Fantasy|Romance     75
## 11931 1985                                                      Comedy     75
## 11932 1996                            Action|Adventure|Sci-Fi|Thriller     75
## 11933 1996                                                       Drama     75
## 11934 1986                                     Adventure|Comedy|Sci-Fi     75
## 11935 1993                                              Comedy|Romance     75
## 11936 1997                                     Action|Adventure|Comedy     75
## 11937 1997                                        Action|Comedy|Sci-Fi     75
## 11940 1997                                               Drama|Romance     75
## 11941 1998                              Action|Romance|Sci-Fi|Thriller     75
## 11942 1986                                   Adventure|Fantasy|Musical     75
## 11943 1982                                             Horror|Thriller     75
## 11944 1984                                               Comedy|Horror     75
## 11945 1985                    Action|Adventure|Children|Comedy|Fantasy     75
## 11947 1990                             Adventure|Comedy|Sci-Fi|Western     75
## 11948 1984                                    Action|Adventure|Fantasy     75
## 11949 1985                                       Comedy|Fantasy|Sci-Fi     75
## 11951 1998                                      Action|Horror|Thriller     75
## 11952 1988                                              Comedy|Fantasy     75
## 11954 1998                                                       Drama     75
## 11957 1984                                                      Sci-Fi     75
## 11958 1998                         Adventure|Animation|Children|Comedy     75
## 11959 1985                                        Comedy|Crime|Mystery     75
## 11961 1998                                              Comedy|Romance     75
## 11965 1999                                      Action|Sci-Fi|Thriller     75
## 11967 1999                                                    Thriller     75
## 11968 1999                                       Drama|Horror|Thriller     75
## 11969 1988                                Comedy|Drama|Fantasy|Romance     75
## 11971 1990                            Action|Adventure|Sci-Fi|Thriller     75
## 11972 1999                                 Action|Crime|Drama|Thriller     75
## 11973 1973                                   Action|Adventure|Thriller     75
## 11975 1993                                                Action|Drama     75
## 11977 1988                                      Comedy|Fantasy|Romance     75
## 11978 1999                                                 Crime|Drama     75
## 11979 1992                                                       Drama     75
## 11981 2000                                              Drama|Thriller     75
## 11983 2000                                     Action|Adventure|Sci-Fi     75
## 11984 2000                                                      Comedy     75
## 11986 2001                                                   Drama|War     75
## 11988 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     75
## 11989 1989                                     Adventure|Comedy|Sci-Fi     75
## 11994 1991                             Adventure|Comedy|Fantasy|Sci-Fi     75
## 11996 1983                                             Sci-Fi|Thriller     75
## 11997 2002                                     Action|Adventure|Sci-Fi     75
## 12001 2003                               Crime|Horror|Mystery|Thriller     75
## 12002 2003                                     Action|Adventure|Sci-Fi     75
## 12007 1985                                   Adventure|Children|Sci-Fi     75
## 12011 2004                              Action|Fantasy|Horror|Thriller     75
## 12012 2005                               Drama|Mystery|Sci-Fi|Thriller     75
## 12018 2006                                       Drama|Horror|Thriller     75
## 12020 1995                                     Action|Thriller|Western     76
## 12021 1993                                              Children|Drama     76
## 12025 1989                                                       Drama     76
## 12026 1944                                     Comedy|Mystery|Thriller     76
## 12029 1953                          Animation|Children|Fantasy|Musical     76
## 12032 1974                                              Comedy|Western     76
## 12034 2000                                     Children|Comedy|Fantasy     76
## 12037 2006                   Action|Adventure|Crime|Drama|Thriller|War     76
## 12038 2007                            Adventure|Comedy|Fantasy|Romance     76
## 12040 1995                                       Action|Crime|Thriller     77
## 12041 1995                                   Action|Adventure|Thriller     77
## 12043 1995                                              Children|Drama     77
## 12044 1995                                              Comedy|Romance     77
## 12046 1995                                                       Drama     77
## 12047 1996                               Action|Comedy|Horror|Thriller     77
## 12048 1995                                      Action|Sci-Fi|Thriller     77
## 12049 1996                                   Action|Adventure|Thriller     77
## 12050 1995                                            Action|Drama|War     77
## 12052 1996                                                      Comedy     77
## 12053 1995                                          Drama|Thriller|War     77
## 12054 1995                                      Action|Romance|Western     77
## 12055 1995                                       Action|Crime|Thriller     77
## 12056 1995                                         Action|Crime|Sci-Fi     77
## 12057 1995                                       Action|Crime|Thriller     77
## 12058 1995                                     Action|Adventure|Sci-Fi     77
## 12060 1994                                            Adventure|Comedy     77
## 12061 1994                                                Drama|Horror     77
## 12063 1994                                       Action|Crime|Thriller     77
## 12064 1995                                Action|Drama|Sci-Fi|Thriller     77
## 12066 1994                                 Comedy|Crime|Drama|Thriller     77
## 12069 1994                                      Adventure|Drama|Sci-Fi     77
## 12070 1995                                              Comedy|Romance     77
## 12071 1994                                                      Comedy     77
## 12072 1994                                 Action|Crime|Drama|Thriller     77
## 12074 1994                                    Comedy|Drama|Romance|War     77
## 12075 1994             Adventure|Animation|Children|Drama|Musical|IMAX     77
## 12076 1994                                 Action|Comedy|Crime|Fantasy     77
## 12077 1994                                     Action|Romance|Thriller     77
## 12078 1994                    Action|Adventure|Comedy|Romance|Thriller     77
## 12079 1994                                                      Comedy     77
## 12080 1993                                     Action|Adventure|Sci-Fi     77
## 12081 1993                                                    Thriller     77
## 12082 1993                            Action|Adventure|Sci-Fi|Thriller     77
## 12083 1993                                                Comedy|Drama     77
## 12084 1982                                      Action|Sci-Fi|Thriller     77
## 12086 1990                                             Children|Comedy     77
## 12087 1990                       Comedy|Drama|Fantasy|Romance|Thriller     77
## 12088 1992                 Adventure|Animation|Children|Comedy|Musical     77
## 12090 1990                                     Adventure|Drama|Western     77
## 12091 1989                                       Action|Crime|Thriller     77
## 12092 1991                                       Crime|Horror|Thriller     77
## 12093 1991             Animation|Children|Fantasy|Musical|Romance|IMAX     77
## 12094 1990                                              Comedy|Romance     77
## 12095 1996                                 Comedy|Crime|Drama|Thriller     77
## 12096 1996                           Action|Adventure|Mystery|Thriller     77
## 12097 1996                                  Adventure|Animation|Comedy     77
## 12098 1996                                   Action|Adventure|Thriller     77
## 12099 1996                           Action|Adventure|Romance|Thriller     77
## 12101 1995                                   Animation|Children|Comedy     77
## 12103 1996                            Action|Adventure|Sci-Fi|Thriller     77
## 12104 1996                                             Action|Thriller     77
## 12105 1996                            Action|Adventure|Sci-Fi|Thriller     77
## 12107 1968                                      Adventure|Drama|Sci-Fi     77
## 12108 1988                                       Action|Crime|Thriller     77
## 12110 1988                                                Comedy|Crime     77
## 12112 1982                                       Children|Drama|Sci-Fi     77
## 12115 1993                             Animation|Children|Comedy|Crime     77
## 12122 1979                                            Action|Drama|War     77
## 12124 1979                                               Horror|Sci-Fi     77
## 12126 1985                                                   Drama|War     77
## 12128 1987                                                   Drama|War     77
## 12129 1989                  Adventure|Animation|Children|Comedy|Sci-Fi     77
## 12131 1980                                                      Horror     77
## 12134 1985                                     Adventure|Comedy|Sci-Fi     77
## 12135 1988                           Action|Adventure|Animation|Sci-Fi     77
## 12136 1974                                              Comedy|Fantasy     77
## 12140 1978                                      Comedy|Musical|Romance     77
## 12141 1975                                               Action|Horror     77
## 12142 1996                                               Drama|Romance     77
## 12145 1997                                   Action|Adventure|Thriller     77
## 12146 1997                                        Action|Comedy|Sci-Fi     77
## 12147 1997                                                Drama|Sci-Fi     77
## 12148 1997                            Action|Adventure|Sci-Fi|Thriller     77
## 12150 1997                                       Drama|Sci-Fi|Thriller     77
## 12152 1998                                         Comedy|Drama|Sci-Fi     77
## 12153 1997                                               Drama|Romance     77
## 12154 1997                                               Drama|Romance     77
## 12155 1998                                                Comedy|Crime     77
## 12156 1998                                       Action|Comedy|Musical     77
## 12157 1998                                             Sci-Fi|Thriller     77
## 12158 1997                                        Comedy|Drama|Romance     77
## 12159 1998                              Action|Romance|Sci-Fi|Thriller     77
## 12160 1998                                              Comedy|Romance     77
## 12161 1988                                                       Drama     77
## 12163 1985                                                Comedy|Drama     77
## 12164 1987                                   Action|Comedy|Crime|Drama     77
## 12165 1989                                   Action|Comedy|Crime|Drama     77
## 12168 1990                             Adventure|Comedy|Sci-Fi|Western     77
## 12169 1984                                            Adventure|Sci-Fi     77
## 12170 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     77
## 12171 1989                   Animation|Children|Comedy|Musical|Romance     77
## 12179 1990                                       Drama|Fantasy|Romance     77
## 12181 1998                         Adventure|Animation|Children|Comedy     77
## 12182 1998                                                Comedy|Drama     77
## 12183 1986                                     Adventure|Comedy|Sci-Fi     77
## 12185 1976                                     Action|Adventure|Sci-Fi     77
## 12186 1968                                         Action|Drama|Sci-Fi     77
## 12187 1999                                                       Drama     77
## 12190 1999                                                      Comedy     77
## 12192 1999                                     Action|Adventure|Sci-Fi     77
## 12193 1978                                     Action|Adventure|Sci-Fi     77
## 12194 1980                                               Action|Sci-Fi     77
## 12195 1999                                              Comedy|Romance     77
## 12198 1999                                              Comedy|Romance     77
## 12199 1999                                             Children|Comedy     77
## 12200 1999                                       Drama|Horror|Thriller     77
## 12204 1988                                Comedy|Drama|Fantasy|Romance     77
## 12205 1992                                               Action|Sci-Fi     77
## 12206 1999                                               Drama|Romance     77
## 12207 1990                            Action|Adventure|Sci-Fi|Thriller     77
## 12211 1987                          Action|Crime|Drama|Sci-Fi|Thriller     77
## 12212 1990                                Action|Crime|Sci-Fi|Thriller     77
## 12213 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     77
## 12218 1999                              Fantasy|Horror|Mystery|Romance     77
## 12219 1999                 Adventure|Animation|Children|Comedy|Fantasy     77
## 12221 1999                                                       Drama     77
## 12222 1999                                     Adventure|Comedy|Sci-Fi     77
## 12225 1992                                        Action|Comedy|Horror     77
## 12228 1981                                             Children|Comedy     77
## 12229 1984                                     Children|Comedy|Musical     77
## 12230 2000                                                       Drama     77
## 12231 1991                                       Adventure|Crime|Drama     77
## 12233 1989                                            Animation|Comedy     77
## 12234 1990                       Action|Children|Comedy|Fantasy|Sci-Fi     77
## 12235 1991                                     Action|Children|Fantasy     77
## 12238 2000                                      Action|Adventure|Drama     77
## 12239 2000                                   Action|Adventure|Thriller     77
## 12243 1985                                     Action|Adventure|Sci-Fi     77
## 12244 2000                                   Animation|Children|Comedy     77
## 12245 2000                                            Action|Drama|War     77
## 12247 2000                                                      Comedy     77
## 12248 2000                                                       Drama     77
## 12249 2000                                               Action|Comedy     77
## 12251 2000                                        Action|Drama|Romance     77
## 12253 2000                                      Adventure|Comedy|Crime     77
## 12254 1991                                                      Comedy     77
## 12255 1987                                              Romance|Sci-Fi     77
## 12256 2001                                        Comedy|Drama|Romance     77
## 12257 2001                            Action|Adventure|Comedy|Thriller     77
## 12258 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     77
## 12259 2001                          Adventure|Animation|Fantasy|Sci-Fi     77
## 12260 2001                                              Comedy|Romance     77
## 12263 1985                                        Comedy|Horror|Sci-Fi     77
## 12265 2001                                  Adventure|Children|Fantasy     77
## 12266 2001                                              Crime|Thriller     77
## 12267 2001                                                Comedy|Drama     77
## 12268 2001                                           Adventure|Fantasy     77
## 12269 2002                                     Action|Adventure|Sci-Fi     77
## 12271 2002                                      Action|Horror|Thriller     77
## 12273 2002                                Action|Adventure|Sci-Fi|IMAX     77
## 12274 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     77
## 12275 2002                                      Horror|Sci-Fi|Thriller     77
## 12278 1983                                                      Comedy     77
## 12279 2002                                                 Documentary     77
## 12281 2002                                           Adventure|Fantasy     77
## 12283 1982                                  Animation|Children|Fantasy     77
## 12284 2003                                                Action|Crime     77
## 12285 2002                                              Drama|Thriller     77
## 12286 1971                                              Mystery|Sci-Fi     77
## 12287 1966                                                Drama|Sci-Fi     77
## 12288 1978                   Adventure|Children|Comedy|Fantasy|Musical     77
## 12291 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     77
## 12292 2003                         Adventure|Animation|Children|Comedy     77
## 12293 2003                                     Action|Adventure|Sci-Fi     77
## 12296 1971                               Action|Adventure|Drama|Sci-Fi     77
## 12297 1963                                                Comedy|Crime     77
## 12301 2003                                       Action|Crime|Thriller     77
## 12302 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     77
## 12304 2003                                  Action|Adventure|Drama|War     77
## 12306 2003                                      Action|Sci-Fi|Thriller     77
## 12311 2004                                       Action|Drama|Thriller     77
## 12313 1967                                              Comedy|Fantasy     77
## 12320 2004                                      Adventure|Fantasy|IMAX     77
## 12322 2004                                                 Documentary     77
## 12324 2004                            Action|Adventure|Sci-Fi|Thriller     77
## 12327 2004                                                       Drama     77
## 12329 1983                              Fantasy|Horror|Sci-Fi|Thriller     77
## 12330 1990                                                Comedy|Crime     77
## 12331 2004                                                      Comedy     77
## 12333 1977                                Animation|Fantasy|Sci-Fi|War     77
## 12334 2005                                Action|Adventure|Crime|Drama     77
## 12336 2004                                               Action|Comedy     77
## 12338 2005                                     Action|Adventure|Sci-Fi     77
## 12340 2005                                      Action|Sci-Fi|Thriller     77
## 12342 2005                                  Adventure|Animation|Comedy     77
## 12345 2005                         Adventure|Animation|Children|Comedy     77
## 12346 2005                             Adventure|Drama|Horror|Thriller     77
## 12349 2006                                      Action|Sci-Fi|Thriller     77
## 12351 2006                                                       Drama     77
## 12353 2007                                           Documentary|Drama     77
## 12354 1995                                  Adventure|Children|Fantasy     78
## 12358 1995                                              Children|Drama     78
## 12362 1995                                            Action|Drama|War     78
## 12363 1976                                        Crime|Drama|Thriller     78
## 12365 1995                                        Adventure|Drama|IMAX     78
## 12379 1994             Adventure|Animation|Children|Drama|Musical|IMAX     78
## 12381 1993                            Action|Adventure|Sci-Fi|Thriller     78
## 12385 1992                 Adventure|Animation|Children|Comedy|Musical     78
## 12392 1996                               Comedy|Fantasy|Romance|Sci-Fi     78
## 12394 1939                          Adventure|Children|Fantasy|Musical     78
## 12395 1968                                      Adventure|Drama|Sci-Fi     78
## 12397 1992                                      Crime|Mystery|Thriller     78
## 12399 1982                                       Children|Drama|Sci-Fi     78
## 12400 1975                                    Adventure|Comedy|Fantasy     78
## 12403 1971                                 Crime|Drama|Sci-Fi|Thriller     78
## 12407 1979                                               Horror|Sci-Fi     78
## 12410 1993                                      Comedy|Fantasy|Romance     78
## 12413 1992                               Action|Horror|Sci-Fi|Thriller     78
## 12419 1986                                     Adventure|Comedy|Sci-Fi     78
## 12422 1997                                     Action|Adventure|Comedy     78
## 12425 1997                                        Action|Comedy|Sci-Fi     78
## 12427 1997                                                Action|Drama     78
## 12433 1998                                         Comedy|Drama|Sci-Fi     78
## 12444 1998                                              Comedy|Romance     78
## 12449 1998                                            Action|Drama|War     78
## 12450 1998                                             Horror|Thriller     78
## 12465 1975                                Comedy|Horror|Musical|Sci-Fi     78
## 12466 1999                                     Action|Adventure|Comedy     78
## 12476 1999                                             Horror|Thriller     78
## 12486 1976                                                Comedy|Drama     78
## 12487 1999                                               Drama|Romance     78
## 12492 2000                                              Drama|Thriller     78
## 12498 2000                                                       Drama     78
## 12499 2000                                               Action|Comedy     78
## 12502 2000                                                Drama|Sci-Fi     78
## 12506 2000                                               Comedy|Sci-Fi     78
## 12507 2000                                              Comedy|Romance     78
## 12508 2000                                                       Drama     78
## 12514 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     78
## 12524 2001                                                      Horror     78
## 12526 2001                                  Adventure|Children|Fantasy     78
## 12536 2002                                    Action|Adventure|Fantasy     78
## 12540 2002                                                      Horror     78
## 12548 2003                         Adventure|Animation|Children|Comedy     78
## 12550 2003                                     Action|Adventure|Sci-Fi     78
## 12551 2003                             Action|Adventure|Comedy|Fantasy     78
## 12567 2004                                      Adventure|Fantasy|IMAX     78
## 12568 2004                                    Comedy|Documentary|Drama     78
## 12575 2004                                     Horror|Mystery|Thriller     78
## 12576 2004                     Action|Adventure|Drama|Mystery|Thriller     78
## 12583 2005                            Action|Adventure|Sci-Fi|Thriller     78
## 12587 2005                             Adventure|Fantasy|Thriller|IMAX     78
## 12589 2006                                 Action|Sci-Fi|Thriller|IMAX     78
## 12594 2006                                   Action|Adventure|Thriller     78
## 12617 1995                 Adventure|Animation|Children|Comedy|Fantasy     79
## 12618 1995                                  Adventure|Children|Fantasy     79
## 12619 1995                                              Comedy|Romance     79
## 12620 1995                                        Adventure|Drama|IMAX     79
## 12621 1977                                     Action|Adventure|Sci-Fi     79
## 12622 1994                                                      Comedy     79
## 12624 1994                                 Action|Comedy|Crime|Fantasy     79
## 12625 1995                                              Comedy|Romance     79
## 12626 1993                            Action|Adventure|Sci-Fi|Thriller     79
## 12627 1993                          Action|Crime|Drama|Sci-Fi|Thriller     79
## 12628 1990                       Comedy|Drama|Fantasy|Romance|Thriller     79
## 12629 1992                 Adventure|Animation|Children|Comedy|Musical     79
## 12630 1989                                       Action|Crime|Thriller     79
## 12631 1996                           Action|Adventure|Mystery|Thriller     79
## 12632 1996                           Action|Adventure|Romance|Thriller     79
## 12633 1996                                          Comedy|Crime|Drama     79
## 12634 1996                            Action|Adventure|Sci-Fi|Thriller     79
## 12635 1968                                      Adventure|Drama|Sci-Fi     79
## 12636 1982                                       Children|Drama|Sci-Fi     79
## 12637 1986                                              Action|Romance     79
## 12638 1980                                     Action|Adventure|Sci-Fi     79
## 12639 1983                                     Action|Adventure|Sci-Fi     79
## 12640 1989                                            Action|Adventure     79
## 12641 1997                                     Action|Adventure|Comedy     79
## 12642 1997                                        Action|Comedy|Sci-Fi     79
## 12643 1997                                               Drama|Romance     79
## 12644 1998                              Action|Romance|Sci-Fi|Thriller     79
## 12645 1972                                      Action|Adventure|Drama     79
## 12646 1980                                            Adventure|Comedy     79
## 12647 1989                             Action|Adventure|Children|Drama     79
## 12648 1999                                      Action|Sci-Fi|Thriller     79
## 12649 1999                                     Action|Adventure|Sci-Fi     79
## 12650 1978                                     Action|Adventure|Sci-Fi     79
## 12651 1980                                               Action|Sci-Fi     79
## 12652 1999                                     Action|Adventure|Comedy     79
## 12653 1986                                                      Comedy     79
## 12654 1987                                                       Drama     79
## 12655 2000                                      Action|Adventure|Drama     79
## 12656 1990                                      Action|Sci-Fi|Thriller     79
## 12657 1979                                     Action|Adventure|Sci-Fi     79
## 12658 2000                                     Action|Adventure|Sci-Fi     79
## 12659 1999                                     Action|Adventure|Sci-Fi     79
## 12660 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     79
## 12661 2001                 Adventure|Animation|Children|Comedy|Fantasy     79
## 12662 2001                                           Adventure|Fantasy     79
## 12663 2002                            Action|Adventure|Sci-Fi|Thriller     79
## 12664 2002                                           Adventure|Fantasy     79
## 12665 2003                             Action|Adventure|Comedy|Fantasy     79
## 12666 2003                              Action|Adventure|Drama|Fantasy     79
## 12667 2005     Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX     79
## 12668 2005                                                 Crime|Drama     79
## 12669 2006                                       Action|Fantasy|Horror     79
## 12670 2006                                     Fantasy|Horror|Thriller     79
## 12671 2006                   Action|Adventure|Crime|Drama|Thriller|War     79
## 12672 1995                                  Adventure|Children|Fantasy     80
## 12675 1995                                   Action|Adventure|Thriller     80
## 12677 1995                          Action|Comedy|Crime|Drama|Thriller     80
## 12682 1995                                               Drama|Romance     80
## 12683 1995                                      Crime|Mystery|Thriller     80
## 12685 1995                                             Action|Thriller     80
## 12686 1995                                       Comedy|Horror|Romance     80
## 12687 1996                                   Action|Adventure|Thriller     80
## 12688 1996                                              Drama|Thriller     80
## 12689 1995                                               Drama|Romance     80
## 12691 1996                                                      Comedy     80
## 12693 1995                                               Drama|Romance     80
## 12695 1981                    Action|Adventure|Animation|Horror|Sci-Fi     80
## 12700 1996                                                Comedy|Crime     80
## 12705 1996                                               Drama|Romance     80
## 12711 1995                                                    Thriller     81
## 12713 1994                                                Comedy|Drama     81
## 12714 1994                                                 Crime|Drama     81
## 12715 1976                                                       Drama     81
## 12716 1993                                               Drama|Romance     81
## 12721 1952                                      Comedy|Musical|Romance     81
## 12727 1986                                                       Drama     81
## 12728 1975                                    Adventure|Comedy|Fantasy     81
## 12732 1966                                    Action|Adventure|Western     81
## 12734 1990                                                 Crime|Drama     81
## 12741 1988                                                       Drama     81
## 12743 1992                             Fantasy|Horror|Romance|Thriller     81
## 12745 1975                                               Drama|Mystery     81
## 12750 1998                                              Comedy|Romance     81
## 12761 2000                                      Action|Adventure|Drama     81
## 12768 2000                                                       Drama     81
## 12780 2001                               Drama|Mystery|Sci-Fi|Thriller     81
## 12781 1977                                                       Drama     81
## 12783 1973                                       Drama|Horror|Thriller     81
## 12786 2002                                 Comedy|Drama|Fantasy|Sci-Fi     81
## 12788 2002                                                       Drama     81
## 12792 2002                                Crime|Drama|Mystery|Thriller     81
## 12793 1971                                              Drama|Thriller     81
## 12803 2003                                                       Drama     81
## 12810 1999                                                 Documentary     81
## 12814 2003                                                       Drama     81
## 12821 2004                                               Drama|Romance     81
## 12835 2005                                                 Crime|Drama     81
## 12837 2004                                                       Drama     81
## 12838 2006                                                Comedy|Drama     81
## 12841 2006                               Drama|Fantasy|Mystery|Romance     81
## 12842 2006                                       Drama|Fantasy|Romance     81
## 12847 2007                                                 Crime|Drama     81
## 12850 2008                                        Comedy|Drama|Romance     81
## 12854 2005                                                       Drama     81
## 12857 2009                                        Comedy|Drama|Romance     81
## 12859 2008                                                       Drama     81
## 12860 2009                                Action|Adventure|Sci-Fi|IMAX     81
## 12863 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     81
## 12864 2010                                                       Drama     81
## 12866 2010                                              Drama|Thriller     81
## 12868 2010                                                     Western     81
## 12869 1995                                   Action|Adventure|Thriller     82
## 12870 1995                                       Comedy|Crime|Thriller     82
## 12877 1995                               Action|Adventure|Comedy|Crime     82
## 12878 1995                             Action|Adventure|Mystery|Sci-Fi     82
## 12879 1995                                       Action|Crime|Thriller     82
## 12880 1995                                     Action|Adventure|Sci-Fi     82
## 12884 1994                                       Action|Crime|Thriller     82
## 12885 1995                                Action|Drama|Sci-Fi|Thriller     82
## 12888 1994                                     Action|Adventure|Sci-Fi     82
## 12890 1994                                      Adventure|Drama|Sci-Fi     82
## 12892 1994                                                      Comedy     82
## 12895 1994                                 Action|Comedy|Crime|Fantasy     82
## 12896 1994                    Action|Adventure|Comedy|Romance|Thriller     82
## 12897 1993                                     Children|Comedy|Fantasy     82
## 12898 1994                                Action|Comedy|Crime|Thriller     82
## 12899 1993                                   Action|Adventure|Thriller     82
## 12900 1993                                               Comedy|Sci-Fi     82
## 12901 1993                                              Drama|Thriller     82
## 12902 1993                                                    Thriller     82
## 12905 1989                                       Action|Crime|Thriller     82
## 12909 1995                                       Comedy|Crime|Thriller     83
## 12912 1995                                                      Comedy     83
## 12913 1996                              Adventure|Comedy|Crime|Romance     83
## 12916 1995                                    Action|Drama|Romance|War     83
## 12922 1994                                        Comedy|Drama|Romance     83
## 12925 1994                                     Action|Romance|Thriller     83
## 12927 1993                            Action|Adventure|Sci-Fi|Thriller     83
## 12929 1994                                         Comedy|Crime|Horror     83
## 12934 1996                                      Comedy|Horror|Thriller     83
## 12946 1984                                      Action|Sci-Fi|Thriller     83
## 12956 1996                                                       Drama     83
## 12967 1998                              Action|Romance|Sci-Fi|Thriller     83
## 12968 1998                              Animation|Children|Fantasy|War     83
## 12969 1998                                              Comedy|Romance     83
## 12971 1987                                   Action|Comedy|Crime|Drama     83
## 12972 1979                                                      Comedy     83
## 12979 1985                                        Comedy|Crime|Mystery     83
## 12983 1999                                      Action|Sci-Fi|Thriller     83
## 12998 1988                                      Comedy|Fantasy|Romance     83
## 13000 1999                                                       Drama     83
## 13003 1982                                        Comedy|Drama|Romance     83
## 13005 1992                                                      Comedy     83
## 13021 2000                                            Action|Drama|War     83
## 13025 1991                                                      Comedy     83
## 13027 2000                                                      Comedy     83
## 13028 2000                                                       Drama     83
## 13029 2000                                                Comedy|Crime     83
## 13034 2001                                                      Comedy     83
## 13039 1988                                                      Comedy     83
## 13040 1989                                     Adventure|Comedy|Sci-Fi     83
## 13043 2001                               Comedy|Crime|Mystery|Thriller     83
## 13045 2001                             Mystery|Romance|Sci-Fi|Thriller     83
## 13051 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     83
## 13052 1955                                                Comedy|Crime     83
## 13053 1983                                                      Comedy     83
## 13055 2002                                        Comedy|Drama|Romance     83
## 13056 2002                                        Comedy|Drama|Romance     83
## 13057 2003                                Comedy|Drama|Fantasy|Romance     83
## 13058 1990                                        Comedy|Horror|Sci-Fi     83
## 13064 2004                                                      Comedy     83
## 13068 2005                                              Comedy|Romance     83
## 13069 1995                 Adventure|Animation|Children|Comedy|Fantasy     84
## 13073 1994                                    Comedy|Drama|Romance|War     84
## 13074 1991                                               Action|Sci-Fi     84
## 13077 1981                                            Action|Adventure     84
## 13079 1990                                   Action|Adventure|Thriller     84
## 13080 1998                                            Action|Drama|War     84
## 13081 1992                                        Crime|Drama|Thriller     84
## 13082 1998                                                 Crime|Drama     84
## 13084 1999                                               Drama|Romance     84
## 13087 1999                 Adventure|Animation|Children|Comedy|Fantasy     84
## 13090 2000                                   Action|Adventure|Thriller     84
## 13093 2000                                            Adventure|Comedy     84
## 13096 2000                                                Drama|Sci-Fi     84
## 13097 2000                                        Comedy|Drama|Romance     84
## 13099 2001                            Action|Adventure|Comedy|Thriller     84
## 13101 2001                                    Action|Drama|Romance|War     84
## 13102 2001                                               Action|Comedy     84
## 13106 2001                                  Adventure|Children|Fantasy     84
## 13111 2002                                     Action|Mystery|Thriller     84
## 13112 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     84
## 13113 2002                                        Action|Comedy|Sci-Fi     84
## 13114 2002                                                      Comedy     84
## 13115 2002                                      Crime|Mystery|Thriller     84
## 13117 2002                                                 Crime|Drama     84
## 13119 2003                                                      Comedy     84
## 13120 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     84
## 13121 2003                                Comedy|Drama|Fantasy|Romance     84
## 13122 2003                         Adventure|Animation|Children|Comedy     84
## 13123 2003                                                Action|Crime     84
## 13124 2003                             Action|Adventure|Comedy|Fantasy     84
## 13127 2004                                       Drama|Sci-Fi|Thriller     84
## 13128 2004                                              Comedy|Romance     84
## 13131 2004                      Action|Adventure|Drama|Sci-Fi|Thriller     84
## 13133 2004                                         Action|Comedy|Crime     84
## 13134 2004                            Action|Adventure|Sci-Fi|Thriller     84
## 13135 2004                                       Action|Crime|Thriller     84
## 13137 2004                     Action|Adventure|Drama|Mystery|Thriller     84
## 13138 2004                                                      Comedy     84
## 13140 2005                     Action|Crime|Film-Noir|Mystery|Thriller     84
## 13143 2005                                              Comedy|Romance     84
## 13145 2005                             Action|Crime|Drama|Thriller|War     84
## 13146 2005                             Adventure|Fantasy|Thriller|IMAX     84
## 13147 2006                                        Crime|Drama|Thriller     84
## 13148 2006                                      Drama|Mystery|Thriller     84
## 13150 2006                                    Action|Adventure|Fantasy     84
## 13151 2007                             Action|Adventure|Comedy|Fantasy     84
## 13152 2007                                Adventure|Drama|Fantasy|IMAX     84
## 13153 2007                                            Animation|Comedy     84
## 13155 2007                          Action|Horror|Sci-Fi|Thriller|IMAX     84
## 13158 2008                                     Action|Adventure|Sci-Fi     84
## 13160 2008                                            Action|Drama|War     84
## 13161 2009                                            Action|Drama|War     84
## 13162 2009                                Action|Adventure|Sci-Fi|IMAX     84
## 13164 2009                      Adventure|Fantasy|Mystery|Romance|IMAX     84
## 13169 2010                                               Action|Comedy     84
## 13170 2010                                          Action|Crime|Drama     84
## 13172 2012                      Action|Adventure|Drama|Sci-Fi|Thriller     84
## 13174 2011                                              Drama|Thriller     84
## 13177 2012                              Action|Adventure|Thriller|IMAX     84
## 13178 2012                                        Action|Drama|Western     84
## 13179 2013                                 Action|Sci-Fi|Thriller|IMAX     84
## 13180 2013                                Action|Adventure|Sci-Fi|IMAX     84
## 13186 1995                                              Comedy|Romance     85
## 13187 1995                                                      Comedy     85
## 13189 1995                                                      Comedy     85
## 13191 1995                                       Action|Crime|Thriller     85
## 13192 1995                                    Action|Adventure|Fantasy     85
## 13193 1994                                        Comedy|Drama|Romance     85
## 13196 1995                                          Adventure|Children     85
## 13197 1995                             Action|Adventure|Mystery|Sci-Fi     85
## 13200 1995                             Action|Adventure|Crime|Thriller     85
## 13201 1995                                      Action|Sci-Fi|Thriller     85
## 13203 1995                                                      Horror     85
## 13204 1995                                             Action|Children     85
## 13205 1995                                       Action|Crime|Thriller     85
## 13206 1995                                              Comedy|Romance     85
## 13207 1995                                      Fantasy|Horror|Mystery     85
## 13208 1995                                               Horror|Sci-Fi     85
## 13209 1995                                                      Comedy     85
## 13210 1995                                     Action|Adventure|Sci-Fi     85
## 13211 1995                                                      Comedy     85
## 13213 1995                                              Drama|Thriller     85
## 13216 1994                                                 Crime|Drama     85
## 13217 1994                                                Drama|Horror     85
## 13220 1994                                                       Drama     85
## 13221 1994                                                      Comedy     85
## 13222 1994                                                       Drama     85
## 13223 1994                                                       Drama     85
## 13225 1996                                              Drama|Thriller     85
## 13233 1995                                        Action|Comedy|Sci-Fi     85
## 13236 1995                                              Comedy|Romance     85
## 13239 1994                                      Drama|Mystery|Thriller     85
## 13240 1994                                     Children|Comedy|Fantasy     85
## 13242 1994                                              Comedy|Romance     85
## 13243 1994             Adventure|Animation|Children|Drama|Musical|IMAX     85
## 13244 1994                               Drama|Horror|Mystery|Thriller     85
## 13247 1994                                               Action|Comedy     85
## 13248 1994                                             Children|Comedy     85
## 13251 1994                                              Action|Fantasy     85
## 13253 1993                                             Comedy|Thriller     85
## 13254 1994                                Action|Comedy|Crime|Thriller     85
## 13256 1993                                   Action|Adventure|Thriller     85
## 13257 1994                                                      Comedy     85
## 13259 1993                                              Drama|Thriller     85
## 13261 1993                                           Action|Comedy|War     85
## 13262 1994                                                      Comedy     85
## 13264 1993                             Action|Adventure|Comedy|Fantasy     85
## 13266 1993                                                       Drama     85
## 13267 1993                          Action|Crime|Drama|Sci-Fi|Thriller     85
## 13268 1993                                                      Comedy     85
## 13269 1993                                                   Drama|War     85
## 13271 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi     85
## 13273 1993                          Animation|Children|Fantasy|Musical     85
## 13275 1993                                              Crime|Thriller     85
## 13276 1990                                             Children|Comedy     85
## 13277 1990                       Comedy|Drama|Fantasy|Romance|Thriller     85
## 13278 1992                 Adventure|Animation|Children|Comedy|Musical     85
## 13280 1990                                     Adventure|Drama|Western     85
## 13283 1937                    Animation|Children|Drama|Fantasy|Musical     85
## 13284 1991             Animation|Children|Fantasy|Musical|Romance|IMAX     85
## 13286 1981                    Action|Adventure|Animation|Horror|Sci-Fi     85
## 13289 1995                                 Action|Adventure|Comedy|War     85
## 13290 1988                 Adventure|Animation|Children|Comedy|Musical     85
## 13292 1995                 Adventure|Animation|Children|Comedy|Fantasy     86
## 13293 1995                                        Comedy|Drama|Romance     86
## 13297 1995                                                      Comedy     86
## 13298 1995                                       Comedy|Crime|Thriller     86
## 13299 1995                                               Drama|Romance     86
## 13305 1995                                              Children|Drama     86
## 13310 1995                                               Drama|Romance     86
## 13313 1995                                                       Drama     86
## 13316 1995                                                   Drama|War     86
## 13318 1995                                                Comedy|Drama     86
## 13321 1995                                               Drama|Romance     86
## 13322 1995                                            Action|Drama|War     86
## 13324 1992                                                       Drama     86
## 13325 1995                                                       Drama     86
## 13326 1994                                  Adventure|Children|Fantasy     86
## 13328 1995                                                      Comedy     86
## 13333 1995                                         Crime|Drama|Mystery     86
## 13334 1995                             Action|Adventure|Mystery|Sci-Fi     86
## 13335 1994                                                 Documentary     86
## 13337 1995                                      Action|Sci-Fi|Thriller     86
## 13339 1995                                              Comedy|Romance     86
## 13340 1995                                              Comedy|Romance     86
## 13342 1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller     86
## 13344 1995                                     Action|Adventure|Sci-Fi     86
## 13348 1995                                        Comedy|Drama|Romance     86
## 13350 1994                                            Adventure|Comedy     86
## 13354 1994                                                 Documentary     86
## 13357 1994                                              Comedy|Romance     86
## 13361 1994                                                       Drama     86
## 13362 1994                                                       Drama     86
## 13364 1994                                   Drama|Romance|War|Western     86
## 13367 1994                                         Drama|Horror|Sci-Fi     86
## 13368 1994                                                       Drama     86
## 13369 1994                                              Comedy|Romance     86
## 13370 1994                                       Action|Crime|Thriller     86
## 13372 1995                                Action|Drama|Sci-Fi|Thriller     86
## 13376 1994                                               Drama|Romance     86
## 13377 1994                                                      Comedy     86
## 13381 1994                              Children|Drama|Fantasy|Mystery     86
## 13382 1994                                     Action|Adventure|Sci-Fi     86
## 13385 1993                                                       Drama     86
## 13386 1994                                                Comedy|Drama     86
## 13388 1994                                                       Drama     86
## 13389 1995                                               Horror|Sci-Fi     86
## 13393 1994                                                      Comedy     86
## 13395 1994                                  Adventure|Children|Romance     86
## 13399 1994                                        Comedy|Drama|Romance     86
## 13400 1994                                              Action|Fantasy     86
## 13401 1993                                                      Comedy     86
## 13402 1993                              Drama|Mystery|Romance|Thriller     86
## 13405 1993                                               Drama|Romance     86
## 13406 1993                                              Drama|Thriller     86
## 13408 1995                                              Comedy|Romance     86
## 13409 1993                                               Drama|Romance     86
## 13412 1993                                               Drama|Musical     86
## 13413 1993                            Action|Adventure|Sci-Fi|Thriller     86
## 13414 1993                                              Drama|Thriller     86
## 13417 1993                                                Comedy|Drama     86
## 13419 1993                                                       Drama     86
## 13423 1993                                              Children|Drama     86
## 13427 1993                                        Comedy|Drama|Romance     86
## 13432 1993                                                Comedy|Drama     86
## 13434 1990                                             Children|Comedy     86
## 13435 1990                       Comedy|Drama|Fantasy|Romance|Thriller     86
## 13436 1992                 Adventure|Animation|Children|Comedy|Musical     86
## 13437 1991                                               Action|Sci-Fi     86
## 13438 1990                                     Adventure|Drama|Western     86
## 13439 1989                                       Action|Crime|Thriller     86
## 13442 1991             Animation|Children|Fantasy|Musical|Romance|IMAX     86
## 13444 1990                                              Comedy|Romance     86
## 13446 1996                                               Drama|Romance     86
## 13447 1970                                          Animation|Children     86
## 13449 1996                                              Drama|Thriller     86
## 13450 1996                                                       Drama     86
## 13451 1996                Adventure|Animation|Children|Fantasy|Musical     86
## 13454 1996                                              Comedy|Romance     86
## 13456 1996                               Drama|Fantasy|Horror|Thriller     86
## 13458 1995                                        Comedy|Drama|Romance     86
## 13459 1994                                                 Documentary     86
## 13462 1996                            Action|Adventure|Sci-Fi|Thriller     86
## 13463 1996                    Animation|Children|Drama|Musical|Romance     86
## 13464 1996                                             Comedy|Thriller     86
## 13465 1996                                          Adventure|Children     86
## 13466 1996                                                      Comedy     86
## 13467 1994                                                       Drama     86
## 13468 1996                                        Comedy|Drama|Romance     86
## 13470 1988                                       Action|Crime|Thriller     86
## 13473 1996                                               Drama|Romance     86
## 13476 1967                                                 Crime|Drama     86
## 13479 1994                                                       Drama     86
## 13482 1995                 Adventure|Animation|Children|Comedy|Fantasy     87
## 13483 1995                                              Comedy|Romance     87
## 13485 1995                                     Mystery|Sci-Fi|Thriller     87
## 13487 1995                                                       Drama     87
## 13488 1996                                                      Comedy     87
## 13489 1996                                   Action|Adventure|Thriller     87
## 13491 1995                               Action|Adventure|Comedy|Crime     87
## 13497 1996                           Action|Adventure|Mystery|Thriller     87
## 13498 1996                                                      Comedy     87
## 13500 1996                                   Action|Adventure|Thriller     87
## 13501 1996                           Action|Adventure|Romance|Thriller     87
## 13502 1996                                                Comedy|Crime     87
## 13503 1996                                          Comedy|Crime|Drama     87
## 13504 1996                            Action|Adventure|Sci-Fi|Thriller     87
## 13506 1996                                       Action|Drama|Thriller     87
## 13507 1996                                               Drama|Romance     87
## 13508 1996                                        Comedy|Drama|Romance     87
## 13509 1971                             Children|Comedy|Fantasy|Musical     87
## 13510 1983                                     Action|Adventure|Sci-Fi     87
## 13512 1996                            Adventure|Animation|Comedy|Crime     87
## 13513 1995                                  Adventure|Children|Fantasy     88
## 13515 1995                                        Comedy|Drama|Romance     88
## 13516 1995                                       Comedy|Crime|Thriller     88
## 13517 1995                                                       Drama     88
## 13519 1995                                              Comedy|Romance     88
## 13521 1995                                                       Drama     88
## 13522 1996                                   Action|Adventure|Thriller     88
## 13523 1996                                                      Comedy     88
## 13526 1995                               Action|Adventure|Comedy|Crime     88
## 13527 1995                             Action|Adventure|Mystery|Sci-Fi     88
## 13528 1995                                      Action|Romance|Western     88
## 13529 1995                                       Action|Crime|Thriller     88
## 13530 1995                                       Action|Crime|Thriller     88
## 13532 1994                                            Adventure|Comedy     88
## 13533 1994                                                Drama|Horror     88
## 13534 1994                                               Comedy|Sci-Fi     88
## 13536 1994                                                       Drama     88
## 13537 1994                                       Action|Crime|Thriller     88
## 13538 1994                                 Comedy|Crime|Drama|Thriller     88
## 13539 1994                                     Action|Adventure|Sci-Fi     88
## 13541 1993                                                       Drama     88
## 13543 1994                                                      Comedy     88
## 13544 1994                                                Comedy|Drama     88
## 13545 1994                                      Drama|Mystery|Thriller     88
## 13550 1994                                     Action|Romance|Thriller     88
## 13551 1994                    Action|Adventure|Comedy|Romance|Thriller     88
## 13552 1993                                               Comedy|Sci-Fi     88
## 13553 1993                                              Comedy|Romance     88
## 13554 1993                                              Drama|Thriller     88
## 13555 1993                                                    Thriller     88
## 13556 1993                            Action|Adventure|Sci-Fi|Thriller     88
## 13558 1993                                                Comedy|Drama     88
## 13561 1993                                                      Comedy     88
## 13563 1993                                        Comedy|Drama|Romance     88
## 13566 1993                             Action|Adventure|Comedy|Romance     88
## 13567 1993                                        Action|Drama|Western     88
## 13568 1990                                             Children|Comedy     88
## 13569 1992                 Adventure|Animation|Children|Comedy|Musical     88
## 13570 1989                                       Action|Crime|Thriller     88
## 13571 1991                                       Crime|Horror|Thriller     88
## 13573 1991             Animation|Children|Fantasy|Musical|Romance|IMAX     88
## 13575 1996                                 Comedy|Crime|Drama|Thriller     88
## 13576 1996                           Action|Adventure|Mystery|Thriller     88
## 13577 1996                                              Comedy|Romance     88
## 13578 1996                                   Action|Adventure|Thriller     88
## 13579 1996                           Action|Adventure|Romance|Thriller     88
## 13580 1995                                   Animation|Children|Comedy     88
## 13582 1996                            Action|Adventure|Sci-Fi|Thriller     88
## 13583 1996                                               Drama|Romance     88
## 13588 1964                             Children|Comedy|Fantasy|Musical     88
## 13589 1971                             Children|Comedy|Fantasy|Musical     88
## 13591 1979                                                      Comedy     88
## 13592 1982                                       Children|Drama|Sci-Fi     88
## 13594 1975                                    Adventure|Comedy|Fantasy     88
## 13595 1996                                           Drama|Romance|War     88
## 13597 1980                                     Action|Adventure|Sci-Fi     88
## 13602 1980                                                      Horror     88
## 13604 1993                                      Comedy|Fantasy|Romance     88
## 13605 1985                                     Adventure|Comedy|Sci-Fi     88
## 13608 1989                                            Action|Adventure     88
## 13610 1989                                      Children|Drama|Fantasy     88
## 13612 1978                                      Comedy|Musical|Romance     88
## 13613 1996                                        Action|Comedy|Sci-Fi     88
## 13614 1996                                               Drama|Romance     88
## 13615 1987                                                      Comedy     88
## 13616 1996                              Comedy|Horror|Mystery|Thriller     88
## 13617 1997                                                      Comedy     88
## 13619 1997                                     Action|Adventure|Comedy     88
## 13621 1997                                 Action|Crime|Drama|Thriller     88
## 13622 1997                                        Action|Comedy|Sci-Fi     88
## 13625 1985                                      Drama|Romance|Thriller     88
## 13628 1998                                              Comedy|Romance     88
## 13629 1997                                        Comedy|Drama|Romance     88
## 13630 1998                        Action|Crime|Mystery|Sci-Fi|Thriller     88
## 13631 1998                              Action|Romance|Sci-Fi|Thriller     88
## 13632 1988                                                       Drama     88
## 13633 1985                                                Comedy|Drama     88
## 13634 1989                                     Adventure|Comedy|Sci-Fi     88
## 13635 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     88
## 13636 1984                                      Comedy|Fantasy|Romance     88
## 13637 1984                                    Action|Adventure|Fantasy     88
## 13639 1992                                        Crime|Drama|Thriller     88
## 13641 1992                                                      Comedy     88
## 13642 1998                                        Comedy|Drama|Fantasy     88
## 13643 1998                                                 Crime|Drama     88
## 13644 1998                                             Action|Thriller     88
## 13645 1998                         Adventure|Animation|Children|Comedy     88
## 13650 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     88
## 13651 1999                                     Action|Adventure|Sci-Fi     88
## 13652 1978                                     Action|Adventure|Sci-Fi     88
## 13655 1999                                       Drama|Horror|Thriller     88
## 13656 1999                                      Drama|Mystery|Thriller     88
## 13657 1984                                        Action|Comedy|Sci-Fi     88
## 13659 1999                                              Action|Mystery     88
## 13660 1980                                                      Comedy     88
## 13666 1999                                    Adventure|Comedy|Fantasy     88
## 13667 1999                              Fantasy|Horror|Mystery|Romance     88
## 13670 1992                                                Comedy|Drama     88
## 13672 1991                                       Adventure|Crime|Drama     88
## 13673 1944                                       Crime|Drama|Film-Noir     88
## 13676 2000                                      Action|Adventure|Drama     88
## 13677 2000                                   Animation|Children|Comedy     88
## 13678 2000                                            Action|Drama|War     88
## 13679 2000                                              Drama|Thriller     88
## 13680 2000                                     Action|Adventure|Sci-Fi     88
## 13682 2000                                        Action|Drama|Romance     88
## 13687 2000                                            Mystery|Thriller     88
## 13689 2001                                       Drama|Musical|Romance     88
## 13690 2001                               Drama|Horror|Mystery|Thriller     88
## 13692 2001                                  Adventure|Children|Fantasy     88
## 13697 2001                                               Drama|Romance     88
## 13698 2002                         Adventure|Animation|Children|Comedy     88
## 13699 2002                                              Comedy|Romance     88
## 13700 2002                            Action|Adventure|Sci-Fi|Thriller     88
## 13702 2002                                Action|Adventure|Sci-Fi|IMAX     88
## 13704 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     88
## 13705 2002                                        Action|Comedy|Sci-Fi     88
## 13707 2002                                     Horror|Mystery|Thriller     88
## 13708 2002                                           Adventure|Fantasy     88
## 13709 2002                                  Comedy|Crime|Drama|Musical     88
## 13712 2003                                Comedy|Drama|Fantasy|Romance     88
## 13717 2003                                              Comedy|Musical     88
## 13723 2003                              Action|Adventure|Drama|Fantasy     88
## 13728 2004                                      Adventure|Fantasy|IMAX     88
## 13729 2004                                Action|Adventure|Sci-Fi|IMAX     88
## 13733 2004                                               Comedy|Horror     88
## 13734 2004                                                       Drama     88
## 13735 2005                      Adventure|Children|Comedy|Fantasy|IMAX     88
## 13736 2005                     Action|Crime|Film-Noir|Mystery|Thriller     88
## 13737 2005                                              Comedy|Romance     88
## 13738 2005                                           Action|Crime|IMAX     88
## 13739 2005                                     Action|Adventure|Sci-Fi     88
## 13740 2005                                              Comedy|Romance     88
## 13742 2005                             Adventure|Fantasy|Thriller|IMAX     88
## 13745 2006                                      Drama|Mystery|Thriller     88
## 13750 2007                                        Comedy|Drama|Romance     88
## 13752 2007                                      Adventure|Comedy|Drama     88
## 13755 2008                              Action|Adventure|Comedy|Sci-Fi     88
## 13756 2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     88
## 13758 2006                                               Drama|Mystery     88
## 13762 2009                                              Drama|Thriller     88
## 13763 2009                                      Crime|Romance|Thriller     88
## 13764 2009                               Drama|Fantasy|Sci-Fi|Thriller     88
## 13778 1995                                        Action|Comedy|Sci-Fi     89
## 13789 1954                                      Adventure|Drama|Sci-Fi     89
## 13791 1979                                               Horror|Sci-Fi     89
## 13794 1992                                       Action|Drama|Thriller     89
## 13836 1995                                               Drama|Romance     90
## 13840 1996                                              Drama|Thriller     90
## 13842 1996                                                      Comedy     90
## 13846 1996                Adventure|Animation|Children|Fantasy|Musical     90
## 13848 1996                           Action|Adventure|Romance|Thriller     90
## 13849 1996                                                       Drama     90
## 13851 1996                            Action|Adventure|Sci-Fi|Thriller     90
## 13852 1996                    Animation|Children|Drama|Musical|Romance     90
## 13855 1996                                                      Comedy     90
## 13862 1971                             Children|Comedy|Fantasy|Musical     90
## 13869 1997                                             Action|Thriller     90
## 13871 1997                              Action|Romance|Sci-Fi|Thriller     90
## 13873 1997                                                      Comedy     90
## 13874 1997                                       Action|Drama|Thriller     90
## 13883 1997                                             Action|Thriller     90
## 13885 1995                                               Comedy|Horror     91
## 13887 1995                                       Action|Crime|Thriller     91
## 13888 1995                                              Children|Drama     91
## 13894 1995                                                      Comedy     91
## 13903 1996                                                      Comedy     91
## 13919 1998                                                      Comedy     91
## 13920 1985                                                Comedy|Crime     91
## 13921 1986                                                Comedy|Crime     91
## 13922 1987                                                Comedy|Crime     91
## 13923 1988                                                Comedy|Crime     91
## 13929 1999                                                      Comedy     91
## 13930 1989                                              Comedy|Mystery     91
## 13933 2000                                                      Comedy     91
## 13935 2000                                                      Comedy     91
## 13937 2000                                               Comedy|Sci-Fi     91
## 13938 1987                                Action|Comedy|Crime|Thriller     91
## 13940 2001                                                      Comedy     91
## 13948 2003                                                      Comedy     91
## 13949 2003                                      Action|Comedy|Thriller     91
## 13950 2003                                                Comedy|Crime     91
## 13955 2004                                         Action|Comedy|Crime     91
## 13961 2006                                      Adventure|Comedy|Crime     91
## 13964 2006                                               Comedy|Horror     91
## 13966 2006                                                      Comedy     91
## 13967 2007                                              Comedy|Romance     91
## 13968 2007                                                      Comedy     91
## 13972 2007                                                      Comedy     91
## 13973 2008                                                      Comedy     91
## 13975 2008                                        Action|Comedy|Sci-Fi     91
## 13978 2008                                                      Comedy     91
## 13987 2010                                               Action|Comedy     91
## 13992 2010                                                      Comedy     91
## 13993 2010                                              Comedy|Romance     91
## 13996 2010                                                      Comedy     91
## 14000 2012                      Action|Adventure|Drama|Sci-Fi|Thriller     91
## 14009 2012                                                      Comedy     91
## 14013 2013                                        Action|Comedy|Sci-Fi     91
## 14016 2013                                                      Comedy     91
## 14018 2013                                Action|Adventure|Sci-Fi|IMAX     91
## 14029 2014                                                      Comedy     91
## 14030 2015                                         Action|Comedy|Crime     91
## 14035 1995                                  Adventure|Children|Fantasy     92
## 14036 1995                                       Action|Crime|Thriller     92
## 14037 1995                                   Action|Adventure|Thriller     92
## 14039 1995                                                      Comedy     92
## 14043 1995                                              Comedy|Romance     92
## 14044 1995                                    Action|Adventure|Fantasy     92
## 14048 1995                                                       Drama     92
## 14049 1995                                      Action|Sci-Fi|Thriller     92
## 14050 1996                                   Action|Adventure|Thriller     92
## 14054 1995                          Action|Comedy|Crime|Drama|Thriller     92
## 14055 1995                                        Adventure|Drama|IMAX     92
## 14056 1995                                    Action|Drama|Romance|War     92
## 14057 1995                               Action|Adventure|Comedy|Crime     92
## 14058 1995                             Action|Adventure|Mystery|Sci-Fi     92
## 14061 1995                                       Action|Crime|Thriller     92
## 14062 1995                                      Action|Sci-Fi|Thriller     92
## 14063 1995                                         Action|Crime|Sci-Fi     92
## 14064 1995                                                      Horror     92
## 14065 1995                                             Action|Children     92
## 14066 1995                                              Comedy|Romance     92
## 14067 1995                                      Fantasy|Horror|Mystery     92
## 14068 1995                                                       Drama     92
## 14069 1995                                               Horror|Sci-Fi     92
## 14071 1995                                     Action|Adventure|Sci-Fi     92
## 14073 1995                                        Comedy|Drama|Romance     92
## 14074 1994                                            Adventure|Comedy     92
## 14076 1995                                              Comedy|Romance     92
## 14078 1994                                              Comedy|Romance     92
## 14079 1994                                                Drama|Horror     92
## 14080 1994                                   Drama|Romance|War|Western     92
## 14081 1994                                         Drama|Horror|Sci-Fi     92
## 14082 1994                                       Action|Crime|Thriller     92
## 14083 1995                                Action|Drama|Sci-Fi|Thriller     92
## 14087 1994                                       Action|Drama|Thriller     92
## 14088 1994                                     Action|Adventure|Sci-Fi     92
## 14089 1994                                        Comedy|Drama|Fantasy     92
## 14092 1995                                             Horror|Thriller     92
## 14093 1994                                      Adventure|Drama|Sci-Fi     92
## 14094 1995                                         Action|Crime|Horror     92
## 14095 1995                                               Horror|Sci-Fi     92
## 14096 1995                                                      Comedy     92
## 14097 1995                                              Comedy|Romance     92
## 14098 1994                                                      Comedy     92
## 14099 1994                                 Action|Crime|Drama|Thriller     92
## 14100 1994                                      Drama|Mystery|Thriller     92
## 14101 1994                               Action|Crime|Fantasy|Thriller     92
## 14102 1994                                     Children|Comedy|Fantasy     92
## 14104 1994                                              Comedy|Romance     92
## 14105 1994                                  Adventure|Children|Romance     92
## 14106 1994             Adventure|Animation|Children|Drama|Musical|IMAX     92
## 14107 1994                               Drama|Horror|Mystery|Thriller     92
## 14108 1994                                 Action|Comedy|Crime|Fantasy     92
## 14110 1994                                               Action|Comedy     92
## 14111 1994                                     Action|Romance|Thriller     92
## 14113 1994                                                      Comedy     92
## 14114 1994                                Action|Comedy|Crime|Thriller     92
## 14115 1993                                      Horror|Sci-Fi|Thriller     92
## 14116 1994                                    Adventure|Comedy|Western     92
## 14117 1993                                   Action|Adventure|Thriller     92
## 14118 1993                                               Comedy|Sci-Fi     92
## 14119 1993                                              Comedy|Romance     92
## 14120 1993                                     Action|Adventure|Sci-Fi     92
## 14121 1993                                              Drama|Thriller     92
## 14122 1993                                    Adventure|Children|Drama     92
## 14124 1993                                           Action|Comedy|War     92
## 14128 1993                             Action|Adventure|Comedy|Fantasy     92
## 14130 1993                                                Comedy|Drama     92
## 14131 1993                                                       Drama     92
## 14132 1993                                               Drama|Romance     92
## 14133 1993                                                      Comedy     92
## 14135 1993                                                       Drama     92
## 14136 1994                                         Comedy|Crime|Horror     92
## 14137 1993                                        Comedy|Drama|Romance     92
## 14138 1993                                     Comedy|Romance|Thriller     92
## 14139 1993                          Animation|Children|Fantasy|Musical     92
## 14140 1993                             Action|Adventure|Comedy|Romance     92
## 14143 1990                       Comedy|Drama|Fantasy|Romance|Thriller     92
## 14144 1992                 Adventure|Animation|Children|Comedy|Musical     92
## 14147 1989                                       Action|Crime|Thriller     92
## 14149 1990                                              Comedy|Romance     92
## 14150 1995                                              Fantasy|Horror     92
## 14152 1981                    Action|Adventure|Animation|Horror|Sci-Fi     92
## 14154 1996                           Action|Adventure|Romance|Thriller     92
## 14156 1996                            Action|Adventure|Sci-Fi|Thriller     92
## 14158 1995                                        Comedy|Drama|Romance     93
## 14161 1995                                               Drama|Romance     93
## 14164 1995                                                       Drama     93
## 14166 1995                                     Action|Adventure|Sci-Fi     93
## 14168 1992                                       Drama|Fantasy|Romance     93
## 14169 1994                                   Drama|Romance|War|Western     93
## 14172 1994                                                      Comedy     93
## 14173 1994                                              Comedy|Romance     93
## 14174 1994             Adventure|Animation|Children|Drama|Musical|IMAX     93
## 14175 1994                                    Adventure|Comedy|Western     93
## 14179 1993                                               Drama|Romance     93
## 14182 1990                                             Children|Comedy     93
## 14183 1990                       Comedy|Drama|Fantasy|Romance|Thriller     93
## 14184 1992                 Adventure|Animation|Children|Comedy|Musical     93
## 14186 1989                                       Action|Crime|Thriller     93
## 14188 1990                                              Comedy|Romance     93
## 14189 1996                           Action|Adventure|Mystery|Thriller     93
## 14190 1996                                   Action|Adventure|Thriller     93
## 14193 1961                                               Drama|Romance     93
## 14196 1959                                                Comedy|Crime     93
## 14198 1964                                Comedy|Drama|Musical|Romance     93
## 14202 1971                             Children|Comedy|Fantasy|Musical     93
## 14210 1984                                      Action|Sci-Fi|Thriller     93
## 14211 1989                                                   Drama|War     93
## 14212 1989                                                       Drama     93
## 14213 1967                                        Comedy|Drama|Romance     93
## 14216 1985                                     Adventure|Comedy|Sci-Fi     93
## 14218 1989                                            Action|Adventure     93
## 14221 1978                                      Comedy|Musical|Romance     93
## 14222 1975                                               Action|Horror     93
## 14223 1996                                               Drama|Romance     93
## 14225 1997                                        Action|Comedy|Sci-Fi     93
## 14228 1998                                         Comedy|Drama|Sci-Fi     93
## 14232 1997                                        Comedy|Drama|Romance     93
## 14234 1998                                              Comedy|Romance     93
## 14236 1985                                                Comedy|Drama     93
## 14237 1989                                     Adventure|Comedy|Sci-Fi     93
## 14238 1989                   Animation|Children|Comedy|Musical|Romance     93
## 14239 1984                                      Comedy|Fantasy|Romance     93
## 14240 1984                                    Action|Adventure|Fantasy     93
## 14243 1990                                       Drama|Fantasy|Romance     93
## 14246 1998                         Adventure|Animation|Children|Comedy     93
## 14248 1984                             Action|Adventure|Comedy|Romance     93
## 14249 1986                                            Adventure|Comedy     93
## 14251 1975                                Comedy|Horror|Musical|Sci-Fi     93
## 14252 1984                                        Action|Comedy|Sci-Fi     93
## 14255 1987                                              Comedy|Romance     93
## 14258 1999                                      Drama|Mystery|Thriller     93
## 14259 1992                                                Comedy|Drama     93
## 14260 1992                                 Action|Crime|Drama|Thriller     93
## 14262 2000                                                       Drama     93
## 14263 1977                                      Adventure|Drama|Sci-Fi     93
## 14266 2000                                               Drama|Romance     93
## 14267 2000                                                       Drama     93
## 14268 2000                                      Adventure|Comedy|Crime     93
## 14270 1984                                   Action|Comedy|Crime|Drama     93
## 14272 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     93
## 14274 2001                 Adventure|Animation|Children|Comedy|Fantasy     93
## 14279 2002                                              Comedy|Romance     93
## 14280 2002                                        Comedy|Drama|Romance     93
## 14283 2003                         Adventure|Animation|Children|Comedy     93
## 14285 2003                                              Comedy|Musical     93
## 14286 2003                                        Comedy|Drama|Romance     93
## 14287 2003                                       Drama|Fantasy|Romance     93
## 14289 2004         Adventure|Animation|Children|Comedy|Musical|Romance     93
## 14290 2004                                Action|Adventure|Sci-Fi|IMAX     93
## 14295 2005                     Action|Adventure|Drama|Fantasy|Thriller     93
## 14297 2006                                    Action|Adventure|Fantasy     93
## 14299 2006                                   Action|Adventure|Thriller     93
## 14300 2007                                    Animation|Children|Drama     93
## 14304 2008                              Action|Adventure|Comedy|Sci-Fi     93
## 14305 2008                 Adventure|Animation|Children|Romance|Sci-Fi     93
## 14309 2010                                      Adventure|Fantasy|IMAX     93
## 14315 2011                                              Comedy|Romance     93
## 14317 1995                                                 Crime|Drama     94
## 14319 1995                                                      Comedy     94
## 14320 1996                                                      Comedy     94
## 14322 1976                                        Crime|Drama|Thriller     94
## 14324 1995                                          Drama|Thriller|War     94
## 14325 1995                                     Action|Adventure|Sci-Fi     94
## 14327 1977                                     Action|Adventure|Sci-Fi     94
## 14328 1995                                Action|Drama|Sci-Fi|Thriller     94
## 14330 1994                                     Action|Adventure|Sci-Fi     94
## 14332 1994                                                      Comedy     94
## 14333 1994                               Action|Crime|Fantasy|Thriller     94
## 14335 1994                                 Action|Comedy|Crime|Fantasy     94
## 14336 1993                                     Action|Adventure|Sci-Fi     94
## 14337 1993                            Action|Adventure|Sci-Fi|Thriller     94
## 14339 1993                          Animation|Children|Fantasy|Musical     94
## 14342 1996                                   Action|Adventure|Thriller     94
## 14343 1996                            Action|Adventure|Sci-Fi|Thriller     94
## 14345 1941                                               Drama|Mystery     94
## 14346 1996                                            Action|Adventure     94
## 14347 1992                                      Crime|Mystery|Thriller     94
## 14349 1989                                                       Drama     94
## 14350 1975                                                       Drama     94
## 14351 1981                                            Action|Adventure     94
## 14354 1981                                            Action|Drama|War     94
## 14355 1989                                                       Drama     94
## 14356 1974                            Crime|Film-Noir|Mystery|Thriller     94
## 14357 1993                                      Comedy|Fantasy|Romance     94
## 14359 1996                                               Drama|Romance     94
## 14360 1997                                   Action|Adventure|Thriller     94
## 14361 1997                                        Action|Comedy|Sci-Fi     94
## 14363 1997                            Crime|Film-Noir|Mystery|Thriller     94
## 14369 1997                               Action|Adventure|Drama|Sci-Fi     94
## 14370 1998                                              Comedy|Romance     94
## 14371 1997                                        Comedy|Drama|Romance     94
## 14374 1990                             Adventure|Comedy|Sci-Fi|Western     94
## 14376 1984                                    Action|Adventure|Fantasy     94
## 14382 1999                                     Action|Adventure|Sci-Fi     94
## 14383 1998                                                Action|Crime     94
## 14384 1999                                              Comedy|Romance     94
## 14385 1999                                       Drama|Horror|Thriller     94
## 14386 1999                                        Drama|Horror|Mystery     94
## 14387 1983                                                      Comedy     94
## 14390 1990                            Action|Adventure|Sci-Fi|Thriller     94
## 14394 1999                                     Adventure|Comedy|Sci-Fi     94
## 14396 1992                                                      Comedy     94
## 14397 2000                                              Drama|Thriller     94
## 14398 1984                                            Action|Drama|War     94
## 14399 1993                                                      Comedy     94
## 14400 1977                                      Adventure|Drama|Sci-Fi     94
## 14402 2000                                               Action|Sci-Fi     94
## 14404 2000                                                      Comedy     94
## 14406 2000                                       Comedy|Crime|Thriller     94
## 14407 2000                                               Drama|Romance     94
## 14416 2002                         Adventure|Animation|Children|Comedy     94
## 14419 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     94
## 14420 2002                                                 Crime|Drama     94
## 14421 2002                                      Horror|Sci-Fi|Thriller     94
## 14422 2002                                     Horror|Mystery|Thriller     94
## 14426 2002                       Action|Adventure|Crime|Drama|Thriller     94
## 14427 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     94
## 14428 2003                                Comedy|Drama|Fantasy|Romance     94
## 14430 2003                                                Action|Crime     94
## 14431 2003                             Action|Adventure|Comedy|Fantasy     94
## 14432 2002                                        Crime|Drama|Thriller     94
## 14433 2003                                        Comedy|Drama|Romance     94
## 14435 2003                                         Crime|Drama|Mystery     94
## 14436 2003                                       Action|Crime|Thriller     94
## 14437 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     94
## 14439 2004                                       Drama|Sci-Fi|Thriller     94
## 14440 2004                                        Drama|Romance|Sci-Fi     94
## 14441 2004                                       Action|Drama|Thriller     94
## 14443 2004         Adventure|Animation|Children|Comedy|Musical|Romance     94
## 14444 2004                                    Comedy|Documentary|Drama     94
## 14445 2004                                Action|Adventure|Sci-Fi|IMAX     94
## 14446 2004                            Action|Adventure|Sci-Fi|Thriller     94
## 14447 2004                                                 Crime|Drama     94
## 14448 2004                                                    Thriller     94
## 14449 2004                                        Comedy|Drama|Romance     94
## 14450 2004                                 Action|Crime|Drama|Thriller     94
## 14451 2004                                             Adventure|Drama     94
## 14452 2004                                               Comedy|Horror     94
## 14453 2004                                        Comedy|Drama|Romance     94
## 14454 2004                  Action|Adventure|Animation|Children|Comedy     94
## 14457 2005                      Adventure|Children|Comedy|Fantasy|IMAX     94
## 14461 2005                                           Action|Crime|IMAX     94
## 14462 2005                                              Comedy|Romance     94
## 14463 2005                                     Action|Adventure|Sci-Fi     94
## 14465 2005                                                 Crime|Drama     94
## 14469 2006                                                Comedy|Drama     94
## 14470 2005                                                 Crime|Drama     94
## 14471 2006                                    Action|Adventure|Fantasy     94
## 14474 2006                                                       Drama     94
## 14475 2006                                      Drama|Fantasy|Thriller     94
## 14478 2006                               Drama|Mystery|Sci-Fi|Thriller     94
## 14479 2006                                                   Drama|War     94
## 14480 2007                                    Animation|Children|Drama     94
## 14482 2007                                 Action|Sci-Fi|Thriller|IMAX     94
## 14483 2007                                            Animation|Comedy     94
## 14484 2007                                                      Comedy     94
## 14486 2007                                                 Crime|Drama     94
## 14487 2007                          Action|Horror|Sci-Fi|Thriller|IMAX     94
## 14488 2007                                        Comedy|Drama|Romance     94
## 14491 2008                                     Action|Adventure|Sci-Fi     94
## 14495 2008                                         Crime|Drama|Romance     94
## 14497 2008                                                       Drama     94
## 14498 2008                                               Drama|Romance     94
## 14500 2009                                Action|Adventure|Sci-Fi|IMAX     94
## 14503 2008                                   Action|Drama|Thriller|War     94
## 14508 2010                                      Drama|Mystery|Thriller     94
## 14509 2010                                               Action|Comedy     94
## 14513 1995                                                      Action     95
## 14522 1995                                                      Comedy     95
## 14523 1995                                               Horror|Sci-Fi     95
## 14533 1995                                             Horror|Thriller     95
## 14534 1994                                      Adventure|Drama|Sci-Fi     95
## 14535 1995                                               Horror|Sci-Fi     95
## 14538 1994                                               Action|Comedy     95
## 14544 1993                          Action|Crime|Drama|Sci-Fi|Thriller     95
## 14548 1996                               Drama|Fantasy|Horror|Thriller     95
## 14553 1997                                             Horror|Thriller     95
## 14557 1992                               Action|Horror|Sci-Fi|Thriller     95
## 14574 1992                                                      Horror     95
## 14590 1997                                     Horror|Mystery|Thriller     95
## 14592 1998                                       Drama|Horror|Thriller     95
## 14593 1997                                        Action|Horror|Sci-Fi     95
## 14595 1998                                        Action|Horror|Sci-Fi     95
## 14597 1998                              Action|Romance|Sci-Fi|Thriller     95
## 14601 1989                                                      Horror     95
## 14602 1991                                                      Horror     95
## 14604 1981                                                      Horror     95
## 14606 1981                                                      Horror     95
## 14607 1982                                                      Horror     95
## 14608 1988                                                      Horror     95
## 14609 1987                                             Horror|Thriller     95
## 14611 1986                                             Horror|Thriller     95
## 14615 1972                                      Action|Adventure|Drama     95
## 14616 1998                                             Horror|Thriller     95
## 14618 1985                                                       Drama     95
## 14620 1982                                     Action|Adventure|Sci-Fi     95
## 14623 1990                                             Horror|Thriller     95
## 14626 1993                                                Drama|Horror     95
## 14627 1983                                             Horror|Thriller     95
## 14630 1987                                       Comedy|Fantasy|Horror     95
## 14631 1968                                       Drama|Horror|Thriller     95
## 14632 1978                                               Comedy|Horror     95
## 14634 1998                                                       Drama     95
## 14641 1985                                        Comedy|Drama|Romance     95
## 14646 1986                                      Action|Adventure|Drama     95
## 14649 1999                                                       Drama     95
## 14654 1994                                                      Horror     95
## 14655 1986                                                      Horror     95
## 14667 1980                                               Action|Sci-Fi     95
## 14669 1999                                       Drama|Sci-Fi|Thriller     95
## 14673 1999                                Action|Comedy|Sci-Fi|Western     95
## 14674 1999                                                       Drama     95
## 14677 1999                                             Horror|Thriller     95
## 14680 1999                               Action|Horror|Sci-Fi|Thriller     95
## 14684 1978                                                      Horror     95
## 14691 1999                                              Comedy|Romance     95
## 14697 1999                                                       Drama     95
## 14702 1987                                                      Horror     95
## 14703 1985                                        Comedy|Horror|Sci-Fi     95
## 14704 1978                                               Horror|Sci-Fi     95
## 14706 1999                                                Comedy|Drama     95
## 14718 1992                                        Drama|Romance|Sci-Fi     95
## 14719 2000                              Comedy|Horror|Mystery|Thriller     95
## 14723 1987                                                      Comedy     95
## 14726 1984                                            Action|Drama|War     95
## 14727 1987                                            Comedy|Drama|War     95
## 14732 2000                               Crime|Horror|Mystery|Thriller     95
## 14735 2000                                   Action|Adventure|Thriller     95
## 14737 1985                                               Comedy|Horror     95
## 14739 1992                                                      Horror     95
## 14741 1991                                       Action|Crime|Thriller     95
## 14743 2000                                      Horror|Sci-Fi|Thriller     95
## 14744 1988                                                      Horror     95
## 14745 1983                                                      Horror     95
## 14747 1984                                    Action|Adventure|Fantasy     95
## 14751 1985                                                      Horror     95
## 14753 2000                                                Drama|Sci-Fi     95
## 14756 2000                                              Comedy|Romance     95
## 14762 1987                                             Horror|Thriller     95
## 14769 1984                                                      Horror     95
## 14770 2001                                                      Horror     95
## 14778 1988                                                      Comedy     95
## 14780 1988                                               Horror|Sci-Fi     95
## 14783 1989                                                      Action     95
## 14784 2001                                              Comedy|Romance     95
## 14788 1982                                               Comedy|Horror     95
## 14793 1985                                             Action|Thriller     95
## 14796 1982                                   Action|Comedy|Crime|Drama     95
## 14797 2002                                                      Comedy     95
## 14798 1993                                       Children|Comedy|Drama     95
## 14802 1990                                              Comedy|Romance     95
## 14804 1990                                              Comedy|Romance     95
## 14805 1986                                     Horror|Mystery|Thriller     95
## 14806 1993                                              Drama|Thriller     95
## 14810 2002                                              Comedy|Romance     95
## 14811 1995                                                       Drama     96
## 14813 1994                                                 Crime|Drama     96
## 14814 1993                                                   Drama|War     96
## 14816 1996                                Crime|Drama|Mystery|Thriller     96
## 14817 1996                               Drama|Fantasy|Horror|Thriller     96
## 14832 1967                                                 Crime|Drama     96
## 14837 1989                                                   Drama|War     96
## 14844 1997                                                      Comedy     96
## 14846 1951                              Crime|Drama|Film-Noir|Thriller     96
## 14848 1989                                        Comedy|Drama|Romance     96
## 14849 1998                                                       Drama     96
## 14850 1998                                                Action|Crime     96
## 14851 1999                                               Drama|Romance     96
## 14854 1974                                               Drama|Mystery     96
## 14860 2002                                               Drama|Romance     96
## 14861 1991                                               Drama|Romance     96
## 14873 1998                                              Comedy|Fantasy     96
## 14880 2006                                      Drama|Romance|Thriller     96
## 14882 2006                                      Drama|Fantasy|Thriller     96
## 14886 2007                                        Comedy|Drama|Romance     96
## 14887 1995                 Adventure|Animation|Children|Comedy|Fantasy     97
## 14890 1995                                            Action|Drama|War     97
## 14891 1994                                                      Comedy     97
## 14892 1994                                 Action|Crime|Drama|Thriller     97
## 14895 1994                                    Comedy|Drama|Romance|War     97
## 14896 1994             Adventure|Animation|Children|Drama|Musical|IMAX     97
## 14897 1993                            Action|Adventure|Sci-Fi|Thriller     97
## 14898 1993                                                   Drama|War     97
## 14900 1992                 Adventure|Animation|Children|Comedy|Musical     97
## 14901 1991                                               Action|Sci-Fi     97
## 14902 1991                                       Crime|Horror|Thriller     97
## 14903 1991             Animation|Children|Fantasy|Musical|Romance|IMAX     97
## 14904 1990                                              Comedy|Romance     97
## 14907 1972                                                 Crime|Drama     97
## 14909 1954                                            Mystery|Thriller     97
## 14910 1959                   Action|Adventure|Mystery|Romance|Thriller     97
## 14911 1942                                               Drama|Romance     97
## 14914 1988                                       Action|Crime|Thriller     97
## 14915 1967                                                 Crime|Drama     97
## 14916 1987                                       Drama|Musical|Romance     97
## 14917 1992                                      Crime|Mystery|Thriller     97
## 14919 1975                                                       Drama     97
## 14922 1981                                            Action|Adventure     97
## 14923 1986                              Action|Adventure|Horror|Sci-Fi     97
## 14926 1962                                         Adventure|Drama|War     97
## 14927 1962                                                       Drama     97
## 14928 1979                                            Action|Drama|War     97
## 14931 1990                                                 Crime|Drama     97
## 14932 1960                                                Crime|Horror     97
## 14933 1974                                                 Crime|Drama     97
## 14934 1980                                                       Drama     97
## 14935 1984                                      Action|Sci-Fi|Thriller     97
## 14937 1993                                      Comedy|Fantasy|Romance     97
## 14939 1985                                     Adventure|Comedy|Sci-Fi     97
## 14941 1989                                            Action|Adventure     97
## 14942 1975                                               Action|Horror     97
## 14943 1997                              Action|Adventure|Comedy|Sci-Fi     97
## 14944 1997                                        Action|Comedy|Sci-Fi     97
## 14945 1997                                               Drama|Romance     97
## 14947 1998                                      Adventure|Comedy|Drama     97
## 14948 1973                                              Horror|Mystery     97
## 14949 1987                                   Action|Comedy|Crime|Drama     97
## 14951 1998                                            Action|Drama|War     97
## 14955 1998                                       Comedy|Crime|Thriller     97
## 14956 1999                                      Action|Sci-Fi|Thriller     97
## 14957 1984                                        Action|Comedy|Sci-Fi     97
## 14958 1988                                Comedy|Drama|Fantasy|Romance     97
## 14959 1986                                                      Comedy     97
## 14960 1999                                 Action|Crime|Drama|Thriller     97
## 14961 1999                                        Comedy|Drama|Fantasy     97
## 14962 1987                                               Comedy|Sci-Fi     97
## 14963 1992                                                      Comedy     97
## 14964 1978                                                      Comedy     97
## 14965 1977                                      Adventure|Drama|Sci-Fi     97
## 14966 1987                                      Action|Sci-Fi|Thriller     97
## 14967 1980                                                      Comedy     97
## 14968 2000                                      Action|Adventure|Drama     97
## 14969 1988                                 Action|Comedy|Crime|Romance     97
## 14971 2000                                            Mystery|Thriller     97
## 14975 2001                                                Comedy|Drama     97
## 14977 2002                                        Comedy|Drama|Romance     97
## 14978 2002                                      Action|Sci-Fi|Thriller     97
## 14979 2002                                           Adventure|Fantasy     97
## 14983 2003                              Action|Adventure|Drama|Fantasy     97
## 14984 2004                                        Drama|Romance|Sci-Fi     97
## 14985 2004                                                      Comedy     97
## 14987 2004                                        Comedy|Drama|Romance     97
## 14988 2004                                        Comedy|Drama|Romance     97
## 14989 2004                                      Drama|Mystery|Thriller     97
## 14991 2004                         Adventure|Animation|Fantasy|Romance     97
## 14992 2005                                     Adventure|Comedy|Sci-Fi     97
## 14993 2005                             Action|Adventure|Comedy|Romance     97
## 14994 2005                                                Comedy|Drama     97
## 14995 2005                                              Comedy|Romance     97
## 14999 2006                                               Action|Comedy     97
## 15001 2006                                      Drama|Fantasy|Thriller     97
## 15002 2006                                        Crime|Drama|Thriller     97
## 15008 2008                                     Action|Crime|Drama|IMAX     97
## 15009 2008                                              Comedy|Romance     97
## 15012 2012                                 Action|Adventure|Crime|IMAX     97
## 15013 2012                                        Comedy|Drama|Romance     97
## 15014 2014                                                  Action|War     97
## 15015 1995                                                      Comedy     98
## 15016 1995                                              Comedy|Romance     98
## 15018 1995                                              Comedy|Romance     98
## 15020 1994                                              Comedy|Romance     98
## 15024 1939                                           Drama|Romance|War     98
## 15036 1988                                    Action|Adventure|Fantasy     98
## 15039 1999                                                      Comedy     98
## 15043 1999                                               Drama|Romance     98
## 15044 1999                              Fantasy|Horror|Mystery|Romance     98
## 15050 2002                                              Comedy|Romance     98
## 15051 2003                                              Comedy|Romance     98
## 15052 2003                    Action|Adventure|Comedy|Romance|Thriller     98
## 15059 2004                                  Action|Adventure|Drama|War     98
## 15068 2007                                                Comedy|Drama     98
## 15071 2009                          Adventure|Animation|Children|Drama     98
## 15073 2009                       Adventure|Children|Drama|Fantasy|IMAX     98
## 15074 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     98
## 15079 2013                                Action|Adventure|Sci-Fi|IMAX     98
## 15083 2016                                                      Comedy     98
## 15084 2016                              Comedy|Horror|Romance|Thriller     98
## 15087 1995                                  Adventure|Children|Fantasy     99
## 15088 1995                                               Drama|Romance     99
## 15089 1995                                               Drama|Romance     99
## 15091 1995                                            Mystery|Thriller     99
## 15093 1995                                               Drama|Romance     99
## 15094 1995                                            Action|Drama|War     99
## 15095 1967                                                       Drama     99
## 15096 1995                             Action|Adventure|Mystery|Sci-Fi     99
## 15097 1995                             Action|Adventure|Crime|Thriller     99
## 15098 1995                                     Action|Adventure|Sci-Fi     99
## 15099 1994                                 Comedy|Crime|Drama|Thriller     99
## 15100 1994                                     Action|Adventure|Sci-Fi     99
## 15104 1994                                 Action|Comedy|Crime|Fantasy     99
## 15106 1994                    Action|Adventure|Comedy|Romance|Thriller     99
## 15107 1993                                    Adventure|Children|Drama     99
## 15109 1995                                              Comedy|Romance     99
## 15111 1993                                              Comedy|Romance     99
## 15114 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi     99
## 15115 1992                 Adventure|Animation|Children|Comedy|Musical     99
## 15122 1996                                   Action|Adventure|Thriller     99
## 15123 1996                           Action|Adventure|Romance|Thriller     99
## 15128 1951                                             Musical|Romance     99
## 15129 1961                                               Drama|Romance     99
## 15133 1960                                        Comedy|Drama|Romance     99
## 15139 1968                                      Adventure|Drama|Sci-Fi     99
## 15146 1960                                       Children|Comedy|Drama     99
## 15147 1959                                             Children|Comedy     99
## 15148 1960                                          Adventure|Children     99
## 15149 1954                                      Adventure|Drama|Sci-Fi     99
## 15150 1950                  Animation|Children|Fantasy|Musical|Romance     99
## 15151 1963                          Animation|Children|Fantasy|Musical     99
## 15153 1941                            Animation|Children|Drama|Musical     99
## 15154 1951                Adventure|Animation|Children|Fantasy|Musical     99
## 15155 1965                                             Musical|Romance     99
## 15156 1965                                              Comedy|Musical     99
## 15159 1996                                           Drama|Romance|War     99
## 15163 1960                                                Crime|Horror     99
## 15165 1967                                        Comedy|Drama|Romance     99
## 15168 1940                          Animation|Children|Fantasy|Musical     99
## 15169 1946                                     Crime|Film-Noir|Mystery     99
## 15172 1958                                               Horror|Sci-Fi     99
## 15173 1996                                                       Drama     99
## 15174 1996                                               Drama|Romance     99
## 15175 1997                                        Action|Comedy|Sci-Fi     99
## 15176 1997                                                Action|Drama     99
## 15177 1997                                 Action|Crime|Drama|Thriller     99
## 15178 1997                            Action|Adventure|Sci-Fi|Thriller     99
## 15182 1997                                               Action|Sci-Fi     99
## 15184 1998                                                Comedy|Crime     99
## 15187 1998                                              Comedy|Romance     99
## 15189 1998                              Animation|Children|Fantasy|War     99
## 15190 1944                                        Comedy|Drama|Musical     99
## 15194 1966                                                       Drama     99
## 15196 1968                                               Drama|Musical     99
## 15198 1998                                       Action|Comedy|Romance     99
## 15199 1961                                     Children|Comedy|Fantasy     99
## 15204 1961                                Adventure|Animation|Children     99
## 15205 1991                                     Action|Adventure|Sci-Fi     99
## 15208 1993                                                   Drama|War     99
## 15209 1998                               Action|Crime|Mystery|Thriller     99
## 15210 1966                                                       Drama     99
## 15211 1967                                  Adventure|Children|Musical     99
## 15212 1963                                               Comedy|Sci-Fi     99
## 15213 1968                                       Drama|Horror|Thriller     99
## 15217 1998                                 Action|Drama|Romance|Sci-Fi     99
## 15218 1998                                        Comedy|Drama|Romance     99
## 15219 1998                                              Comedy|Romance     99
## 15221 1999                                            Comedy|Drama|War     99
## 15223 1968                                         Action|Drama|Sci-Fi     99
## 15224 1999                                                      Comedy     99
## 15225 1956                                       Drama|Musical|Romance     99
## 15228 1999                          Adventure|Animation|Children|Drama     99
## 15230 1999                   Adventure|Animation|Children|Drama|Sci-Fi     99
## 15231 1997                                               Drama|Romance     99
## 15232 1999                                                      Comedy     99
## 15236 1999                                 Action|Crime|Drama|Thriller     99
## 15237 1999                                             Adventure|Drama     99
## 15239 1999                                                       Drama     99
## 15243 1999                                                Comedy|Drama     99
## 15244 1999                                                       Drama     99
## 15245 2000                                        Crime|Drama|Thriller     99
## 15247 2000                                      Action|Adventure|Drama     99
## 15249 1998                                                 Crime|Drama     99
## 15250 2000                                                       Drama     99
## 15252 2000                                                      Comedy     99
## 15253 2000                                                      Comedy     99
## 15257 2000                                                       Drama     99
## 15258 2000                                                       Drama     99
## 15259 2000                                      Adventure|Comedy|Crime     99
## 15260 2000                                          Drama|Thriller|War     99
## 15276 1995                                       Action|Crime|Thriller    100
## 15277 1995                                              Comedy|Romance    100
## 15280 1995                                        Comedy|Drama|Romance    100
## 15281 1995                                                       Drama    100
## 15282 1996                                      Action|Adventure|Drama    100
## 15283 1996                                                      Comedy    100
## 15284 1996                                   Action|Adventure|Thriller    100
## 15285 1996                                                      Comedy    100
## 15286 1996                                                      Comedy    100
## 15288 1996                           Action|Adventure|Mystery|Thriller    100
## 15289 1996                Adventure|Animation|Children|Fantasy|Musical    100
## 15290 1996                                              Comedy|Romance    100
## 15291 1996                                   Action|Adventure|Thriller    100
## 15292 1996                           Action|Adventure|Romance|Thriller    100
## 15294 1996                            Action|Adventure|Sci-Fi|Thriller    100
## 15295 1996                                       Action|Drama|Thriller    100
## 15299 1995                          Action|Comedy|Crime|Drama|Thriller    101
## 15300 1995                                      Action|Romance|Western    101
## 15301 1995                                      Action|Sci-Fi|Thriller    101
## 15302 1995                                               Horror|Sci-Fi    101
## 15304 1994                                       Action|Drama|Thriller    101
## 15306 1994                                               Action|Comedy    101
## 15307 1993                                                    Thriller    101
## 15308 1993                                                      Comedy    101
## 15312 1996                                                Comedy|Crime    101
## 15313 1988                                       Action|Crime|Thriller    101
## 15318 1979                                               Horror|Sci-Fi    101
## 15319 1984                                      Action|Sci-Fi|Thriller    101
## 15325 1998                        Action|Crime|Mystery|Sci-Fi|Thriller    101
## 15326 1987                                   Action|Comedy|Crime|Drama    101
## 15330 1992                                        Crime|Drama|Thriller    101
## 15331 1992                                                      Comedy    101
## 15334 1990                                               Comedy|Horror    101
## 15335 1984                                        Action|Comedy|Sci-Fi    101
## 15336 1999                                                      Comedy    101
## 15339 1987                                      Action|Sci-Fi|Thriller    101
## 15360 1995                                            Documentary|IMAX    102
## 15366 1996                               Action|Comedy|Horror|Thriller    102
## 15368 1996                                        Comedy|Drama|Romance    102
## 15382 1994                                                Drama|Horror    102
## 15384 1994                                                       Drama    102
## 15390 1994                              Children|Drama|Fantasy|Mystery    102
## 15391 1994                                                 Crime|Drama    102
## 15396 1993                                               Drama|Musical    102
## 15399 1994                               Drama|Horror|Romance|Thriller    102
## 15400 1993                                     Children|Comedy|Fantasy    102
## 15404 1993                                                    Thriller    102
## 15406 1993                                             Action|Thriller    102
## 15409 1992                                       Drama|Fantasy|Romance    102
## 15410 1993                                        Crime|Drama|Thriller    102
## 15411 1993                                                       Drama    102
## 15420 1993                                              Crime|Thriller    102
## 15425 1990                                     Adventure|Drama|Western    102
## 15438 1996                            Action|Adventure|Sci-Fi|Thriller    102
## 15439 1996                                      Comedy|Horror|Thriller    102
## 15441 1996                                               Drama|Romance    102
## 15481 1975                                  Adventure|Children|Fantasy    102
## 15491 1996                                                    Thriller    102
## 15502 1986                                                   Drama|War    102
## 15503 1991                                                       Drama    102
## 15527 1992                                              Comedy|Romance    102
## 15541 1983                                     Action|Adventure|Sci-Fi    102
## 15568 1989                                                       Drama    102
## 15586 1990                                                Comedy|Drama    102
## 15587 1985                                     Adventure|Comedy|Sci-Fi    102
## 15606 1989                                      Children|Drama|Fantasy    102
## 15608 1989                                              Comedy|Romance    102
## 15609 1992                               Action|Horror|Sci-Fi|Thriller    102
## 15611 1983                                                      Horror    102
## 15614 1992                             Fantasy|Horror|Romance|Thriller    102
## 15617 1992                                             Horror|Thriller    102
## 15619 1982                                        Drama|Fantasy|Horror    102
## 15624 1996                                                       Drama    102
## 15628 1992                                                Action|Crime    102
## 15632 1983                                               Action|Horror    102
## 15633 1996                                               Drama|Romance    102
## 15645 1997                                                Drama|Sci-Fi    102
## 15646 1997                                                Comedy|Drama    102
## 15647 1990                                   Action|Adventure|Thriller    102
## 15650 1997                                     Horror|Mystery|Thriller    102
## 15656 1997                                               Drama|Romance    102
## 15666 1998                                                 Documentary    102
## 15668 1998                                      Adventure|Comedy|Drama    102
## 15669 1998                                        Comedy|Drama|Romance    102
## 15670 1998                                        Comedy|Drama|Romance    102
## 15671 1998                                              Comedy|Romance    102
## 15692 1989                                                       Drama    102
## 15702 1990                                                      Horror    102
## 15703 1987                                   Action|Comedy|Crime|Drama    102
## 15704 1989                                   Action|Comedy|Crime|Drama    102
## 15705 1984                                               Comedy|Horror    102
## 15712 1990                                Crime|Drama|Mystery|Thriller    102
## 15713 1959                                  Adventure|Children|Fantasy    102
## 15731 1982                                     Action|Adventure|Sci-Fi    102
## 15732 1998                                             Horror|Thriller    102
## 15734 1982                                       Comedy|Crime|Thriller    102
## 15735 1991                                                 Crime|Drama    102
## 15737 1983                                             Horror|Thriller    102
## 15744 1982                                           Adventure|Fantasy    102
## 15745 1984                                              Comedy|Romance    102
## 15746 1986                                        Comedy|Drama|Romance    102
## 15747 1985                                               Drama|Romance    102
## 15752 1988                                    Action|Adventure|Fantasy    102
## 15759 1980                                                       Drama    102
## 15760 1987                                        Comedy|Drama|Romance    102
## 15770 1986                                                       Drama    102
## 15773 1998                                        Comedy|Drama|Fantasy    102
## 15777 1986                                                       Drama    102
## 15779 1983                                                Comedy|Drama    102
## 15784 1976                   Adventure|Fantasy|Romance|Sci-Fi|Thriller    102
## 15788 1984                                                       Drama    102
## 15789 1984                             Action|Adventure|Comedy|Romance    102
## 15790 1985                                               Comedy|Sci-Fi    102
## 15791 1984                                                       Drama    102
## 15792 1989                                                      Comedy    102
## 15794 1986                                               Drama|Fantasy    102
## 15796 1986                                Drama|Horror|Sci-Fi|Thriller    102
## 15798 1983                                                      Horror    102
## 15802 1999                                                       Drama    102
## 15803 1999                                                      Horror    102
## 15805 1990                                                Action|Crime    102
## 15812 1999                                       Drama|Sci-Fi|Thriller    102
## 15815 1999                                                       Drama    102
## 15816 1999                                       Drama|Horror|Thriller    102
## 15819 1989                                       Comedy|Fantasy|Sci-Fi    102
## 15840 1988                                Comedy|Drama|Fantasy|Romance    102
## 15847 1984                                         Documentary|Musical    102
## 15848 1964                                    Adventure|Comedy|Musical    102
## 15851 1981                                           Adventure|Fantasy    102
## 15854 1983                                     Horror|Mystery|Thriller    102
## 15875 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    102
## 15885 1983                                                      Comedy    102
## 15886 1991                                        Comedy|Drama|Musical    102
## 15892 1988                                                Comedy|Drama    102
## 15901 1990                                          Comedy|Crime|Drama    102
## 15904 1999                                                 Crime|Drama    102
## 15908 1985                                        Crime|Drama|Thriller    102
## 15909 1999                                      Drama|Mystery|Thriller    102
## 15910 1999                                                       Drama    102
## 15921 1985                                               Drama|Mystery    102
## 15922 1992                                                      Comedy    102
## 15924 1992                                Crime|Drama|Mystery|Thriller    102
## 15928 2000                              Comedy|Horror|Mystery|Thriller    102
## 15929 2000                                             Adventure|Drama    102
## 15930 2000                                                Comedy|Crime    102
## 15932 1984                                                Comedy|Drama    102
## 15933 2000                                                Comedy|Drama    102
## 15934 2000                                                      Comedy    102
## 15935 1999                                                 Documentary    102
## 15937 1984                                                   Drama|War    102
## 15939 2000                                                      Sci-Fi    102
## 15942 1988                                        Comedy|Drama|Romance    102
## 15946 1991                                      Drama|Mystery|Thriller    102
## 15948 2000                                                       Drama    102
## 15951 1978                                                      Comedy    102
## 15957 1984                                            Action|Drama|War    102
## 15958 1987                                            Comedy|Drama|War    102
## 15965 1987                                                       Drama    102
## 15968 2000                                                    Thriller    102
## 15973 2000                                                      Comedy    102
## 15976 1989                                                Comedy|Drama    102
## 15977 1991                                               Drama|Romance    102
## 15979 1999                                                      Comedy    102
## 15990 2000                                             Children|Comedy    102
## 15991 2000                                                Comedy|Drama    102
## 15995 1983                                                Comedy|Drama    102
## 16015 1987                                               Action|Sci-Fi    102
## 16019 1985                                     Action|Adventure|Sci-Fi    102
## 16020 1987                           Film-Noir|Horror|Mystery|Thriller    102
## 16021 1984                                             Horror|Thriller    102
## 16028 1986                             Action|Adventure|Comedy|Fantasy    102
## 16035 1995                                                      Action    103
## 16036 1995                                               Horror|Sci-Fi    103
## 16038 1994                                    Action|Adventure|Fantasy    103
## 16039 1993                          Action|Crime|Drama|Sci-Fi|Thriller    103
## 16041 1991                                               Action|Sci-Fi    103
## 16042 1989                                       Action|Crime|Thriller    103
## 16046 1996                           Action|Adventure|Romance|Thriller    103
## 16049 1996                            Action|Adventure|Sci-Fi|Thriller    103
## 16051 1992                               Action|Horror|Sci-Fi|Thriller    103
## 16052 1986                                              Action|Romance    103
## 16053 1981                            Action|Adventure|Sci-Fi|Thriller    103
## 16057 1993                      Action|Adventure|Comedy|Fantasy|Horror    103
## 16059 1992                                       Comedy|Fantasy|Horror    103
## 16060 1987                                        Comedy|Horror|Sci-Fi    103
## 16062 1988                           Action|Adventure|Animation|Sci-Fi    103
## 16063 1992                               Action|Horror|Sci-Fi|Thriller    103
## 16064 1992                             Fantasy|Horror|Romance|Thriller    103
## 16065 1992                                       Action|Drama|Thriller    103
## 16066 1983                                               Action|Horror    103
## 16068 1997                                   Action|Adventure|Thriller    103
## 16069 1997                           Action|Adventure|Fantasy|Thriller    103
## 16070 1997                                        Action|Comedy|Sci-Fi    103
## 16071 1997                                                Drama|Sci-Fi    103
## 16072 1997                                                      Action    103
## 16073 1997                                      Drama|Mystery|Thriller    103
## 16074 1997                                       Drama|Sci-Fi|Thriller    103
## 16076 1997                                        Action|Horror|Sci-Fi    103
## 16077 1997                                               Drama|Romance    103
## 16078 1998                                Crime|Drama|Mystery|Thriller    103
## 16079 1984                                            Adventure|Sci-Fi    103
## 16082 1985                             Action|Adventure|Comedy|Romance    103
## 16083 1999                                               Action|Sci-Fi    103
## 16085 1999                                              Crime|Thriller    103
## 16086 1999                                Action|Comedy|Sci-Fi|Western    103
## 16088 1990                            Action|Adventure|Sci-Fi|Thriller    103
## 16090 1987                          Action|Crime|Drama|Sci-Fi|Thriller    103
## 16093 1987                                      Action|Sci-Fi|Thriller    103
## 16095 1990                                      Action|Sci-Fi|Thriller    103
## 16097 2000                                       Drama|Horror|Thriller    103
## 16098 1981                                     Fantasy|Horror|Thriller    103
## 16107 2002                                              Drama|Thriller    103
## 16108 1980                             Action|Adventure|Fantasy|Sci-Fi    103
## 16114 1995                          Action|Adventure|Animation|Fantasy    103
## 16116 1991                                               Action|Sci-Fi    103
## 16121 1985                                      Adventure|Drama|Sci-Fi    103
## 16123 1999                               Action|Drama|Romance|Thriller    103
## 16125 2004                                Action|Adventure|Sci-Fi|IMAX    103
## 16135 1980                                     Action|Adventure|Sci-Fi    104
## 16136 1997                                 Action|Crime|Drama|Thriller    104
## 16137 1999                                      Action|Sci-Fi|Thriller    104
## 16141 2001                          Action|Comedy|Crime|Drama|Thriller    104
## 16144 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    104
## 16148 2004                                  Action|Adventure|Drama|War    104
## 16149 2004                                      Action|Sci-Fi|Thriller    104
## 16152 2004                     Action|Adventure|Drama|Mystery|Thriller    104
## 16153 2003                                            Drama|Sci-Fi|War    104
## 16155 2006                                       Action|Fantasy|Horror    104
## 16160 2007                             Action|Adventure|Comedy|Fantasy    104
## 16162 2008                             Action|Adventure|Fantasy|Sci-Fi    104
## 16168 2009                              Action|Fantasy|Horror|Thriller    104
## 16171 2009                                      Horror|Sci-Fi|Thriller    104
## 16180 2010                                Action|Adventure|Sci-Fi|IMAX    104
## 16184 2011                        Action|Adventure|Sci-Fi|Thriller|War    104
## 16189 2012                                   Action|Comedy|Sci-Fi|IMAX    104
## 16191 2013                               Action|Adventure|Fantasy|IMAX    104
## 16195 2014                                       Action|Crime|Thriller    104
## 16201 2015                                  Comedy|Crime|Drama|Romance    104
## 16202 1995                                       Action|Crime|Thriller    105
## 16203 1995                                   Action|Adventure|Thriller    105
## 16204 1995                                        Comedy|Drama|Romance    105
## 16206 1995                                                      Comedy    105
## 16207 1995                                       Comedy|Crime|Thriller    105
## 16208 1995                         Crime|Drama|Horror|Mystery|Thriller    105
## 16211 1995                                                 Crime|Drama    105
## 16215 1996                                   Action|Adventure|Thriller    105
## 16216 1996                                                      Comedy    105
## 16217 1995                                               Drama|Romance    105
## 16218 1995                                            Action|Drama|War    105
## 16220 1995                                        Adventure|Drama|IMAX    105
## 16221 1995                                    Action|Drama|Romance|War    105
## 16222 1995                               Action|Adventure|Comedy|Crime    105
## 16224 1995                                       Action|Crime|Thriller    105
## 16225 1995                                        Action|Drama|Romance    105
## 16226 1995                                         Action|Crime|Sci-Fi    105
## 16227 1995                                               Horror|Sci-Fi    105
## 16229 1995                                     Action|Adventure|Sci-Fi    105
## 16230 1994                                                Drama|Horror    105
## 16231 1977                                     Action|Adventure|Sci-Fi    105
## 16232 1994                                                Comedy|Drama    105
## 16233 1994                                       Action|Crime|Thriller    105
## 16234 1994                                                 Crime|Drama    105
## 16235 1995                                Action|Drama|Sci-Fi|Thriller    105
## 16238 1994                                                       Drama    105
## 16239 1994                                                      Comedy    105
## 16240 1994                                     Action|Adventure|Sci-Fi    105
## 16241 1994                                                 Crime|Drama    105
## 16242 1995                                              Comedy|Romance    105
## 16243 1994                                                      Comedy    105
## 16244 1994                                                      Comedy    105
## 16245 1994                                 Action|Crime|Drama|Thriller    105
## 16246 1994                                    Comedy|Drama|Romance|War    105
## 16248 1994             Adventure|Animation|Children|Drama|Musical|IMAX    105
## 16249 1994                                 Action|Comedy|Crime|Fantasy    105
## 16250 1994                                    Adventure|Comedy|Western    105
## 16251 1994                                               Action|Comedy    105
## 16252 1994                                     Action|Romance|Thriller    105
## 16253 1994                    Action|Adventure|Comedy|Romance|Thriller    105
## 16254 1994                                               Drama|Romance    105
## 16256 1994                                                     Western    105
## 16257 1993                                     Children|Comedy|Fantasy    105
## 16258 1994                                Action|Comedy|Crime|Thriller    105
## 16259 1993                              Drama|Mystery|Romance|Thriller    105
## 16261 1994                                    Adventure|Comedy|Western    105
## 16262 1993                                   Action|Adventure|Thriller    105
## 16263 1993                                               Comedy|Sci-Fi    105
## 16264 1993                                              Comedy|Romance    105
## 16265 1993                                     Action|Adventure|Sci-Fi    105
## 16266 1993                                              Drama|Thriller    105
## 16267 1993                                                    Thriller    105
## 16268 1993                                               Drama|Western    105
## 16269 1994               Action|Adventure|Crime|Drama|Romance|Thriller    105
## 16270 1995                                              Comedy|Romance    105
## 16272 1993                                             Action|Thriller    105
## 16273 1993                            Action|Adventure|Sci-Fi|Thriller    105
## 16274 1993                                              Drama|Thriller    105
## 16275 1993                                              Comedy|Romance    105
## 16276 1993                                                Comedy|Drama    105
## 16277 1993                                                       Drama    105
## 16279 1992                                                Action|Drama    105
## 16281 1993                                        Comedy|Drama|Romance    105
## 16283 1993                                              Crime|Thriller    105
## 16284 1990                                             Children|Comedy    105
## 16285 1990                       Comedy|Drama|Fantasy|Romance|Thriller    105
## 16286 1991                                               Action|Sci-Fi    105
## 16287 1990                                     Adventure|Drama|Western    105
## 16290 1990                                              Comedy|Romance    105
## 16292 1996                           Action|Adventure|Mystery|Thriller    105
## 16294 1995                                 Action|Adventure|Comedy|War    105
## 16295 1996                                   Action|Adventure|Thriller    105
## 16296 1996                           Action|Adventure|Romance|Thriller    105
## 16297 1996                                                Comedy|Crime    105
## 16299 1996                            Action|Adventure|Sci-Fi|Thriller    105
## 16300 1996                                             Comedy|Thriller    105
## 16302 1996                               Comedy|Fantasy|Romance|Sci-Fi    105
## 16303 1996                                              Crime|Thriller    105
## 16304 1996                                        Comedy|Drama|Romance    105
## 16306 1996                                Crime|Drama|Romance|Thriller    105
## 16307 1942                                               Drama|Romance    105
## 16309 1996                                 Action|Crime|Drama|Thriller    105
## 16310 1993                                                      Comedy    105
## 16311 1991                                             Adventure|Drama    105
## 16314 1996                                      Comedy|Musical|Romance    105
## 16316 1988                                                Comedy|Crime    105
## 16317 1979                                                      Comedy    105
## 16318 1987                                       Drama|Musical|Romance    105
## 16322 1986                                              Action|Romance    105
## 16324 1989                            Action|Adventure|Sci-Fi|Thriller    105
## 16325 1981                            Action|Adventure|Sci-Fi|Thriller    105
## 16326 1975                                    Adventure|Comedy|Fantasy    105
## 16328 1989                                                Comedy|Drama    105
## 16330 1990                                       Crime|Drama|Film-Noir    105
## 16332 1989                                                       Drama    105
## 16334 1992                                                       Drama    105
## 16336 1980                                     Action|Adventure|Sci-Fi    105
## 16339 1986                              Action|Adventure|Horror|Sci-Fi    105
## 16342 1979                                            Action|Drama|War    105
## 16343 1983                                     Action|Adventure|Sci-Fi    105
## 16346 1988                                     Adventure|Drama|Romance    105
## 16347 1980                                       Action|Comedy|Musical    105
## 16350 1984                                                       Drama    105
## 16351 1984                                                 Crime|Drama    105
## 16353 1973                                                Comedy|Crime    105
## 16356 1989                                                       Drama    105
## 16361 1986                                             Adventure|Drama    105
## 16364 1985                                     Adventure|Comedy|Sci-Fi    105
## 16365 1986                                    Action|Adventure|Fantasy    105
## 16366 1990                                        Comedy|Drama|Romance    105
## 16368 1989                                            Action|Adventure    105
## 16369 1982                                               Drama|Musical    105
## 16371 1985                                                Comedy|Drama    105
## 16374 1992                               Action|Horror|Sci-Fi|Thriller    105
## 16375 1981                                      Comedy|Horror|Thriller    105
## 16376 1963                                             Horror|Thriller    105
## 16377 1982                                        Drama|Fantasy|Horror    105
## 16378 1996                                   Adventure|Children|Comedy    105
## 16379 1990                                   Action|Adventure|Thriller    105
## 16381 1988                                       Action|Comedy|Western    105
## 16382 1978                                      Comedy|Musical|Romance    105
## 16384 1996                                        Action|Comedy|Sci-Fi    105
## 16385 1996                                                Comedy|Drama    105
## 16386 1996                                               Drama|Romance    105
## 16387 1987                                                      Comedy    105
## 16388 1987                                                Comedy|Drama    105
## 16389 1996                              Comedy|Horror|Mystery|Thriller    105
## 16390 1997                                             Action|Thriller    105
## 16392 1997                                              Drama|Thriller    105
## 16393 1997                                   Action|Adventure|Thriller    105
## 16395 1997                                                      Comedy    105
## 16396 1997                              Action|Adventure|Comedy|Sci-Fi    105
## 16397 1997                            Action|Adventure|Sci-Fi|Thriller    105
## 16398 1997                                   Action|Adventure|Thriller    105
## 16399 1997                                 Action|Crime|Drama|Thriller    105
## 16401 1997                                                Action|Drama    105
## 16403 1997                                             Action|Thriller    105
## 16404 1990                                   Action|Adventure|Thriller    105
## 16408 1997                                                Comedy|Drama    105
## 16410 1998                                         Comedy|Drama|Sci-Fi    105
## 16411 1997                                               Drama|Romance    105
## 16412 1998                                               Drama|Romance    105
## 16416 1998                                      Action|Adventure|Drama    105
## 16417 1998                                                Comedy|Drama    105
## 16419 1998                                      Action|Sci-Fi|Thriller    105
## 16420 1998                                      Adventure|Comedy|Drama    105
## 16423 1998                              Action|Romance|Sci-Fi|Thriller    105
## 16425 1971                                       Action|Crime|Thriller    105
## 16427 1989                                                       Drama    105
## 16429 1985                                                Comedy|Drama    105
## 16431 1987                                   Action|Comedy|Crime|Drama    105
## 16432 1989                                   Action|Comedy|Crime|Drama    105
## 16433 1992                                   Action|Comedy|Crime|Drama    105
## 16434 1998                                       Action|Comedy|Romance    105
## 16435 1989                                     Adventure|Comedy|Sci-Fi    105
## 16437 1990                                Crime|Drama|Mystery|Thriller    105
## 16438 1998                                            Action|Drama|War    105
## 16439 1998                         Action|Crime|Drama|Mystery|Thriller    105
## 16440 1984                                    Action|Adventure|Fantasy    105
## 16441 1978                        Adventure|Animation|Children|Fantasy    105
## 16442 1991                                     Children|Comedy|Fantasy    105
## 16443 1998                               Action|Crime|Mystery|Thriller    105
## 16445 1998                                      Action|Horror|Thriller    105
## 16447 1987                                          Action|Crime|Drama    105
## 16450 1988                                                      Comedy    105
## 16451 1992                                        Crime|Drama|Thriller    105
## 16454 1998                 Adventure|Animation|Children|Comedy|Fantasy    105
## 16456 1983                                                Comedy|Drama    105
## 16457 1998                                             Action|Thriller    105
## 16458 1998                                           Animation|Musical    105
## 16459 1998                                                Comedy|Drama    105
## 16460 1998                                        Comedy|Drama|Romance    105
## 16461 1985                             Action|Adventure|Comedy|Romance    105
## 16462 1984                             Action|Adventure|Comedy|Romance    105
## 16463 1989                                                      Comedy    105
## 16464 1998                                            Action|Drama|War    105
## 16465 1986                                Drama|Horror|Sci-Fi|Thriller    105
## 16466 1986                                Crime|Drama|Mystery|Thriller    105
## 16467 1986                                              Comedy|Western    105
## 16469 1989                                                      Horror    105
## 16470 1968                                         Action|Drama|Sci-Fi    105
## 16471 1999                                                      Comedy    105
## 16474 1999                                      Action|Sci-Fi|Thriller    105
## 16476 1990                                                Action|Crime    105
## 16477 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    105
## 16478 1978                                     Action|Adventure|Sci-Fi    105
## 16479 1999                                              Comedy|Romance    105
## 16480 1999                                     Action|Adventure|Comedy    105
## 16481 1998                                                Action|Crime    105
## 16482 1990                                               Comedy|Horror    105
## 16483 1999                                Action|Comedy|Sci-Fi|Western    105
## 16484 1999                                       Drama|Horror|Thriller    105
## 16485 1999                                      Drama|Mystery|Thriller    105
## 16487 1989                                       Comedy|Fantasy|Sci-Fi    105
## 16488 1986                                       Comedy|Horror|Musical    105
## 16489 1999                                        Drama|Horror|Mystery    105
## 16490 1999                                              Action|Mystery    105
## 16491 1981                                             Horror|Thriller    105
## 16492 1997                              Comedy|Horror|Romance|Thriller    105
## 16493 1988                                Comedy|Drama|Fantasy|Romance    105
## 16494 1992                                           Adventure|Romance    105
## 16496 1979                                                       Drama    105
## 16497 1999                           Action|Adventure|Comedy|Drama|War    105
## 16501 1983                                               Drama|Romance    105
## 16502 1999                                 Action|Crime|Drama|Thriller    105
## 16504 1987                          Action|Crime|Drama|Sci-Fi|Thriller    105
## 16505 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    105
## 16508 1989                                                 Crime|Drama    105
## 16511 1987                                              Comedy|Romance    105
## 16512 1999                              Fantasy|Horror|Mystery|Romance    105
## 16513 1999                                   Action|Adventure|Thriller    105
## 16515 1999                                                Comedy|Drama    105
## 16516 1990                                          Comedy|Crime|Drama    105
## 16517 1990                                                       Drama    105
## 16518 1999                                                 Crime|Drama    105
## 16519 1999                                     Children|Comedy|Fantasy    105
## 16520 1969                                             Adventure|Drama    105
## 16521 1999                                      Drama|Mystery|Thriller    105
## 16522 1999                                                       Drama    105
## 16523 1973                                                 Crime|Drama    105
## 16525 1982                                        Comedy|Drama|Romance    105
## 16526 1992                                                       Drama    105
## 16527 1992                                                      Comedy    105
## 16528 1992                                                Comedy|Drama    105
## 16529 1992                                      Drama|Romance|Thriller    105
## 16530 1992                                                Comedy|Drama    105
## 16531 1992                                                       Drama    105
## 16532 2000                                             Adventure|Drama    105
## 16533 2000                                                      Comedy    105
## 16534 1999                                                 Crime|Drama    105
## 16535 1991                                      Drama|Mystery|Thriller    105
## 16536 2000                                                       Drama    105
## 16537 1991                                       Adventure|Crime|Drama    105
## 16540 1991                                               Drama|Romance    105
## 16541 1987                                            Comedy|Drama|War    105
## 16542 1993                                                      Comedy    105
## 16546 1991                                    Adventure|Comedy|Fantasy    105
## 16549 1972                                        Drama|Mystery|Sci-Fi    105
## 16550 1987                                      Action|Sci-Fi|Thriller    105
## 16551 1981                                              Crime|Thriller    105
## 16552 1980                                                      Comedy    105
## 16553 1992                                            Mystery|Thriller    105
## 16555 1983                               Action|Drama|Romance|Thriller    105
## 16557 1977                                                Drama|Horror    105
## 16561 1990                                      Horror|Sci-Fi|Thriller    105
## 16562 1990                                      Action|Sci-Fi|Thriller    105
## 16564 1981                            Action|Adventure|Sci-Fi|Thriller    105
## 16565 2000                                                Action|Crime    105
## 16567 1986                             Action|Adventure|Comedy|Fantasy    105
## 16568 2000                                       Action|Crime|Thriller    105
## 16569 2000                                            Adventure|Comedy    105
## 16570 2000                                            Action|Drama|War    105
## 16571 2000                                              Drama|Thriller    105
## 16572 1998                                                 Crime|Drama    105
## 16573 2000                                     Action|Adventure|Sci-Fi    105
## 16575 2000                                        Comedy|Drama|Romance    105
## 16576 2000                                      Horror|Sci-Fi|Thriller    105
## 16577 2000                                                      Comedy    105
## 16578 1970                                           Action|Comedy|War    105
## 16580 1988                                                      Horror    105
## 16581 2000                                       Action|Drama|Thriller    105
## 16582 2000                                                       Drama    105
## 16583 2000                                                       Drama    105
## 16584 2000                                        Action|Drama|Romance    105
## 16585 1987                                                      Comedy    105
## 16586 1987                                                       Drama    105
## 16588 2000                                      Adventure|Comedy|Crime    105
## 16590 1982                                               Drama|Romance    105
## 16592 1987                                Action|Comedy|Crime|Thriller    105
## 16593 2001                                             Horror|Thriller    105
## 16594 2001                                               Action|Comedy    105
## 16595 1991                                          Action|Crime|Drama    105
## 16598 2001                                                   Drama|War    105
## 16600 2001                                              Drama|Thriller    105
## 16603 2001                                        Comedy|Drama|Romance    105
## 16605 1983                                          Action|Crime|Drama    105
## 16606 1982                                        Comedy|Drama|Romance    105
## 16607 1991                                              Comedy|Western    105
## 16609 1982                                              Comedy|Romance    105
## 16610 2001                                            Action|Adventure    105
## 16612 2001                                                Action|Drama    105
## 16613 1988                                    Adventure|Comedy|Fantasy    105
## 16615 1988                                                       Drama    105
## 16616 1988                                               Drama|Romance    105
## 16617 1988                                                       Drama    105
## 16618 1988                                                      Comedy    105
## 16619 1989                                          Action|Crime|Drama    105
## 16620 2001                               Action|Adventure|Drama|Sci-Fi    105
## 16621 1989                                                Action|Drama    105
## 16622 1989                                Action|Comedy|Crime|Thriller    105
## 16624 1989                                                Comedy|Drama    105
## 16625 2001        Action|Animation|Comedy|Crime|Drama|Romance|Thriller    105
## 16627 2001                                        Crime|Drama|Thriller    105
## 16628 1980                                        Crime|Drama|Thriller    105
## 16629 1971                                       Action|Crime|Thriller    105
## 16630 2001                               Drama|Mystery|Sci-Fi|Thriller    105
## 16631 2001                                  Adventure|Children|Fantasy    105
## 16632 2001                                 Action|Crime|Drama|Thriller    105
## 16633 2001                                            Action|Drama|War    105
## 16634 2001                                              Crime|Thriller    105
## 16635 2001                                                Comedy|Drama    105
## 16637 2001                                               Drama|Romance    105
## 16638 1974                                                   Animation    105
## 16639 2001                                        Comedy|Drama|Mystery    105
## 16643 1980                                                 Documentary    105
## 16645 2002                                              Comedy|Romance    105
## 16646 1975                                            Action|Adventure    105
## 16647 1987                                                      Comedy    105
## 16648 1990                                              Comedy|Romance    105
## 16649 1990                                                Comedy|Crime    105
## 16650 2002                            Action|Adventure|Sci-Fi|Thriller    105
## 16653 2002                                              Drama|Thriller    105
## 16655 2002                   Adventure|Children|Comedy|Fantasy|Mystery    105
## 16656 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    105
## 16659 2002                                      Crime|Mystery|Thriller    105
## 16660 2002                                                 Documentary    105
## 16662 1981                                                   Drama|War    105
## 16663 2002                                           Adventure|Fantasy    105
## 16664 1981                                        Crime|Drama|Thriller    105
## 16665 2002                                               Drama|Romance    105
## 16666 2002                                                Comedy|Crime    105
## 16667 2002                                        Comedy|Drama|Romance    105
## 16669 2002                                                Comedy|Drama    105
## 16671 2002                                                 Crime|Drama    105
## 16673 2002                                                 Crime|Drama    105
## 16675 1982                                                      Comedy    105
## 16677 2003                                                      Comedy    105
## 16678 2002                                        Comedy|Drama|Romance    105
## 16679 1990                                        Comedy|Drama|Romance    105
## 16680 2002                                                 Crime|Drama    105
## 16681 2000                                        Comedy|Drama|Romance    105
## 16682 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    105
## 16683 2003                         Adventure|Animation|Children|Comedy    105
## 16684 2003                                                Action|Crime    105
## 16685 2002                                        Action|Horror|Sci-Fi    105
## 16686 2003                             Action|Adventure|Comedy|Fantasy    105
## 16687 2003                                             Action|Thriller    105
## 16690 1983                              Fantasy|Horror|Sci-Fi|Thriller    105
## 16691 1976                                              Drama|Thriller    105
## 16692 1991                                                 Crime|Drama    105
## 16694 2003                                         Crime|Drama|Mystery    105
## 16698 1992                                                 Crime|Drama    105
## 16699 1991                                                      Comedy    105
## 16700 1992                                             Action|Thriller    105
## 16702 1973                                               Drama|Musical    105
## 16703 1979                                                  Comedy|War    105
## 16705 2003                                        Comedy|Drama|Romance    105
## 16707 1990                                               Action|Comedy    105
## 16708 1972                                          Action|Crime|Drama    105
## 16710 1979                             Action|Adventure|Crime|Thriller    105
## 16711 1970                                         Documentary|Musical    105
## 16712 1973                                                 Crime|Drama    105
## 16713 1931                                                     Mystery    105
## 16715 2004                                               Comedy|Horror    105
## 16719 2005                                              Comedy|Romance    105
## 16721 2005                     Action|Adventure|Drama|Fantasy|Thriller    105
## 16724 2006                                                      Comedy    105
## 16725 2006                                        Crime|Drama|Thriller    105
## 16726 2007                                 Action|Comedy|Crime|Mystery    105
## 16728 1993                          Animation|Children|Fantasy|Musical    106
## 16734 1993                              Children|Comedy|Fantasy|Horror    106
## 16735 1986                                        Comedy|Drama|Romance    106
## 16737 1998                                             Horror|Thriller    106
## 16739 1999                                       Drama|Sci-Fi|Thriller    106
## 16740 1999                                        Drama|Horror|Mystery    106
## 16744 1991                                                      Comedy    106
## 16747 2002                                              Comedy|Romance    106
## 16750 2003                                             Children|Comedy    106
## 16752 2004         Adventure|Animation|Children|Comedy|Musical|Romance    106
## 16755 2004                  Action|Adventure|Animation|Children|Comedy    106
## 16756 2005                                                       Drama    106
## 16758 2006                                              Comedy|Romance    106
## 16760 2006                         Adventure|Animation|Children|Comedy    106
## 16761 2006                                Comedy|Drama|Fantasy|Romance    106
## 16766 2007                                        Comedy|Drama|Romance    106
## 16772 1994                                 Action|Crime|Drama|Thriller    107
## 16775 1999                                              Crime|Thriller    107
## 16776 1999                                Action|Comedy|Sci-Fi|Western    107
## 16777 1999                                              Comedy|Romance    107
## 16779 1999                                                    Thriller    107
## 16780 1999                                   Action|Adventure|Thriller    107
## 16781 1999                                                       Drama    107
## 16782 1999                                      Drama|Mystery|Thriller    107
## 16783 2000                                      Horror|Sci-Fi|Thriller    107
## 16784 2000                                              Drama|Thriller    107
## 16785 2000                                              Drama|Thriller    107
## 16786 2000                                               Comedy|Horror    107
## 16787 2001                                                 Crime|Drama    107
## 16788 2001                                          Action|Crime|Drama    107
## 16789 2001                                      Adventure|Drama|Sci-Fi    107
## 16790 2001                                              Comedy|Romance    107
## 16791 2001                                                      Comedy    107
## 16792 2001                                                      Comedy    107
## 16794 2002                                      Horror|Sci-Fi|Thriller    107
## 16799 2002                                        Action|Horror|Sci-Fi    107
## 16803 2015                                       Drama|Sci-Fi|Thriller    107
## 16805 1995                                              Children|Drama    108
## 16806 1995                                            Mystery|Thriller    108
## 16807 1995                                            Action|Drama|War    108
## 16808 1995                               Action|Adventure|Comedy|Crime    108
## 16809 1995                                          Drama|Thriller|War    108
## 16810 1995                                       Action|Crime|Thriller    108
## 16812 1994                                              Drama|Thriller    108
## 16813 1994                                            Adventure|Comedy    108
## 16814 1994                                                Drama|Horror    108
## 16815 1994                                       Action|Crime|Thriller    108
## 16816 1994                                 Comedy|Crime|Drama|Thriller    108
## 16818 1995                                              Comedy|Romance    108
## 16819 1994                                                      Comedy    108
## 16822 1994                                 Action|Comedy|Crime|Fantasy    108
## 16824 1994                    Action|Adventure|Comedy|Romance|Thriller    108
## 16825 1993                                   Action|Adventure|Thriller    108
## 16826 1993                                              Drama|Thriller    108
## 16831 1991                                               Action|Sci-Fi    108
## 16832 1990                                     Adventure|Drama|Western    108
## 16835 1995                                                 Crime|Drama    109
## 16839 1993                                     Action|Adventure|Sci-Fi    109
## 16852 1999                                     Action|Adventure|Comedy    109
## 16854 2000                                     Action|Adventure|Sci-Fi    109
## 16869 1995                                     Mystery|Sci-Fi|Thriller    110
## 16870 1995                                              Children|Drama    110
## 16873 1995                                            Mystery|Thriller    110
## 16874 1996                                              Drama|Thriller    110
## 16880 1995                               Action|Adventure|Comedy|Crime    110
## 16881 1995                             Action|Adventure|Mystery|Sci-Fi    110
## 16886 1995                                         Action|Crime|Sci-Fi    110
## 16900 1994                                               Drama|Romance    110
## 16902 1994                                                Drama|Horror    110
## 16906 1994                                   Drama|Romance|War|Western    110
## 16912 1995                                     Action|Thriller|Western    110
## 16915 1994                                                 Crime|Drama    110
## 16916 1995                                        Action|Comedy|Sci-Fi    110
## 16920 1994                                                Comedy|Drama    110
## 16925 1994             Adventure|Animation|Children|Drama|Musical|IMAX    110
## 16935 1993                                             Comedy|Thriller    110
## 16950 1993                          Action|Crime|Drama|Sci-Fi|Thriller    110
## 16953 1994                                         Comedy|Crime|Horror    110
## 16967 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    110
## 16972 1996                           Action|Adventure|Romance|Thriller    110
## 16978 1995                                                      Comedy    111
## 16979 1995                                              Comedy|Romance    111
## 16980 1995                                   Action|Adventure|Thriller    111
## 16982 1995                                                      Comedy    111
## 16984 1995                                                       Drama    111
## 16985 1995                                     Mystery|Sci-Fi|Thriller    111
## 16987 1995                                       Comedy|Drama|Thriller    111
## 16990 1995                                         Crime|Drama|Romance    111
## 16991 1996                                   Action|Adventure|Thriller    111
## 16992 1995                                               Drama|Romance    111
## 16994 1992                                              Comedy|Romance    111
## 16995 1996                                                      Comedy    111
## 16998 1995                                       Action|Crime|Thriller    111
## 16999 1995                                                      Comedy    111
## 17002 1994                                            Adventure|Comedy    111
## 17003 1994                                                Drama|Horror    111
## 17005 1995                                Action|Drama|Sci-Fi|Thriller    111
## 17007 1994                                                       Drama    111
## 17009 1995                                        Action|Comedy|Sci-Fi    111
## 17011 1994                                                      Comedy    111
## 17012 1994                                                Comedy|Drama    111
## 17013 1994                               Action|Crime|Fantasy|Thriller    111
## 17014 1994                                    Comedy|Drama|Romance|War    111
## 17015 1994             Adventure|Animation|Children|Drama|Musical|IMAX    111
## 17016 1994                                 Action|Comedy|Crime|Fantasy    111
## 17018 1994                                        Comedy|Drama|Romance    111
## 17019 1994                                     Action|Romance|Thriller    111
## 17022 1993                                              Drama|Thriller    111
## 17024 1993                            Action|Adventure|Sci-Fi|Thriller    111
## 17026 1993                                                       Drama    111
## 17028 1993                                        Comedy|Drama|Romance    111
## 17029 1982                                      Action|Sci-Fi|Thriller    111
## 17030 1993                                        Comedy|Drama|Romance    111
## 17031 1993                          Animation|Children|Fantasy|Musical    111
## 17032 1993                             Action|Adventure|Comedy|Romance    111
## 17033 1990                                             Children|Comedy    111
## 17034 1990                       Comedy|Drama|Fantasy|Romance|Thriller    111
## 17035 1992                 Adventure|Animation|Children|Comedy|Musical    111
## 17039 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    111
## 17040 1990                                              Comedy|Romance    111
## 17042 1996                                      Action|Crime|Drama|War    111
## 17043 1996                           Action|Adventure|Mystery|Thriller    111
## 17045 1996                                   Action|Adventure|Thriller    111
## 17047 1996                    Animation|Children|Drama|Musical|Romance    111
## 17049 1996                                               Drama|Romance    111
## 17051 1996                                                       Drama    111
## 17052 1996                                        Comedy|Drama|Romance    111
## 17058 1996                                       Action|Drama|Thriller    111
## 17060 1979                                                      Comedy    111
## 17061 1987                                       Drama|Musical|Romance    111
## 17064 1951                                                       Drama    111
## 17067 1996                                           Drama|Romance|War    111
## 17074 1973                                                Comedy|Crime    111
## 17076 1993                                      Comedy|Fantasy|Romance    111
## 17080 1989                                              Comedy|Romance    111
## 17081 1963                                             Horror|Thriller    111
## 17082 1996                                        Action|Comedy|Sci-Fi    111
## 17083 1996                                               Drama|Romance    111
## 17087 1997                              Action|Adventure|Comedy|Sci-Fi    111
## 17088 1997                                              Comedy|Romance    111
## 17089 1997                            Action|Adventure|Sci-Fi|Thriller    111
## 17091 1997                                                Drama|Sci-Fi    111
## 17092 1997                                              Comedy|Romance    111
## 17093 1997                                             Action|Thriller    111
## 17097 1997                                                Comedy|Drama    111
## 17098 1997                                       Drama|Sci-Fi|Thriller    111
## 17100 1998                                         Comedy|Drama|Sci-Fi    111
## 17103 1997                                               Drama|Romance    111
## 17104 1997                                                      Comedy    111
## 17105 1997                                                      Comedy    111
## 17107 1997                                        Comedy|Drama|Romance    111
## 17109 1997                         Comedy|Crime|Drama|Mystery|Thriller    111
## 17110 1998                                                 Crime|Drama    111
## 17111 1998                                                      Comedy    111
## 17112 1998                                        Comedy|Drama|Romance    111
## 17113 1998                         Comedy|Crime|Drama|Romance|Thriller    111
## 17114 1998                              Action|Romance|Sci-Fi|Thriller    111
## 17115 1998                                       Drama|Sci-Fi|Thriller    111
## 17116 1998                                              Comedy|Romance    111
## 17117 1952                                                       Drama    111
## 17118 1988                                                       Drama    111
## 17121 1977                                     Children|Comedy|Fantasy    111
## 17123 1986                                   Adventure|Children|Sci-Fi    111
## 17124 1998                                     Children|Comedy|Romance    111
## 17125 1989                   Animation|Children|Comedy|Musical|Romance    111
## 17127 1993                                                   Drama|War    111
## 17128 1984                                    Action|Adventure|Fantasy    111
## 17129 1998                                        Comedy|Drama|Romance    111
## 17131 1985                                       Comedy|Fantasy|Sci-Fi    111
## 17132 1998                                            Action|Adventure    111
## 17135 1992                                                Comedy|Drama    111
## 17136 1998                                        Comedy|Drama|Fantasy    111
## 17139 1986                                                Comedy|Crime    111
## 17140 1998                                                Comedy|Drama    111
## 17142 1998                                                       Drama    111
## 17143 1999                                                Comedy|Drama    111
## 17144 1986                                            Adventure|Comedy    111
## 17148 1999                                              Comedy|Romance    111
## 17152 1997                               Drama|Romance|Sci-Fi|Thriller    111
## 17155 1999                                              Crime|Thriller    111
## 17156 1990                                                Action|Crime    111
## 17157 1999                                     Action|Adventure|Sci-Fi    111
## 17159 1999                                              Comedy|Romance    111
## 17160 1999                                     Action|Adventure|Comedy    111
## 17162 1999                                              Comedy|Romance    111
## 17163 1999                                      Drama|Mystery|Thriller    111
## 17165 1999                                       Action|Comedy|Fantasy    111
## 17166 1999                                                      Comedy    111
## 17171 1975                                                     Musical    111
## 17172 1999                           Action|Adventure|Comedy|Drama|War    111
## 17175 1992                                             Children|Comedy    111
## 17177 1999                                        Comedy|Drama|Fantasy    111
## 17178 1999                                              Comedy|Romance    111
## 17184 1999                 Adventure|Animation|Children|Comedy|Fantasy    111
## 17185 1999                                                       Drama    111
## 17186 1999                                                       Drama    111
## 17187 1982                                        Comedy|Drama|Romance    111
## 17188 1992                                                Comedy|Crime    111
## 17189 1992                                                       Drama    111
## 17193 1992                                      Drama|Romance|Thriller    111
## 17194 1992                                        Comedy|Drama|Romance    111
## 17196 2000                              Comedy|Horror|Mystery|Thriller    111
## 17197 2000                                        Crime|Drama|Thriller    111
## 17198 2000                                                Comedy|Drama    111
## 17201 1991                                       Adventure|Crime|Drama    111
## 17203 1987                                            Comedy|Drama|War    111
## 17205 2000                                        Comedy|Drama|Romance    111
## 17206 1989                                                Comedy|Drama    111
## 17207 2000                                                       Drama    111
## 17208 2000                                      Action|Adventure|Drama    111
## 17209 1985                                            Adventure|Comedy    111
## 17210 1987                                               Action|Sci-Fi    111
## 17211 1991                                                      Comedy    111
## 17212 2000                                            Action|Drama|War    111
## 17215 2000                                        Comedy|Drama|Romance    111
## 17216 1993                                                    Thriller    111
## 17217 2000                                                      Comedy    111
## 17219 2000                         Comedy|Crime|Drama|Romance|Thriller    111
## 17220 2000                                                       Drama    111
## 17221 2000                                                      Comedy    111
## 17224 2000                                                       Drama    111
## 17225 2000                                                      Comedy    111
## 17226 2000                                                Drama|Sci-Fi    111
## 17229 2000                                                       Drama    111
## 17232 2001                                        Crime|Drama|Thriller    111
## 17233 1987                              Action|Adventure|Comedy|Sci-Fi    111
## 17234 1987                                              Comedy|Fantasy    111
## 17235 1987                                              Comedy|Romance    111
## 17240 2001                                        Comedy|Crime|Romance    111
## 17243 2001                                       Action|Comedy|Romance    111
## 17244 2001                                                 Documentary    111
## 17246 2001                                    Action|Drama|Romance|War    111
## 17247 1991                                              Comedy|Western    111
## 17249 2001                                          Action|Crime|Drama    111
## 17250 1991                                       Action|Crime|Thriller    111
## 17252 2001                                            Action|Adventure    111
## 17254 1986                                               Comedy|Sci-Fi    111
## 17258 2001                                     Children|Comedy|Romance    111
## 17259 2001                                            Adventure|Comedy    111
## 17260 2001                                        Comedy|Drama|Musical    111
## 17261 2001                                        Crime|Drama|Thriller    111
## 17263 2001                                              Comedy|Romance    111
## 17264 2001                                        Comedy|Crime|Romance    111
## 17266 1960                                                Comedy|Crime    111
## 17269 2001                             Mystery|Romance|Sci-Fi|Thriller    111
## 17271 1991                             Adventure|Comedy|Fantasy|Sci-Fi    111
## 17272 2001                                              Comedy|Romance    111
## 17276 2002                                                      Comedy    111
## 17277 2002                                                      Comedy    111
## 17278 1987                                                      Comedy    111
## 17281 2002                                     Action|Mystery|Thriller    111
## 17282 1990                                               Action|Comedy    111
## 17283 2002                                                      Comedy    111
## 17289 2002                                           Adventure|Fantasy    111
## 17290 2002                                        Comedy|Drama|Romance    111
## 17291 2002                                        Comedy|Drama|Romance    111
## 17293 2002                                              Comedy|Romance    111
## 17294 1990                                             Action|Thriller    111
## 17295 2002                                  Comedy|Crime|Drama|Musical    111
## 17299 2003                         Adventure|Animation|Children|Comedy    111
## 17303 2003                                     Action|Adventure|Sci-Fi    111
## 17304 1983                                              Comedy|Romance    111
## 17305 1985                                               Comedy|Horror    111
## 17307 1992                                                Comedy|Drama    111
## 17310 1991                                              Comedy|Romance    111
## 17312 2004                                              Comedy|Romance    111
## 17318 1989                                              Comedy|Romance    111
## 17321 1995                                       Action|Crime|Thriller    112
## 17322 1995                                                      Comedy    112
## 17323 1995                                     Mystery|Sci-Fi|Thriller    112
## 17326 1996                                   Action|Adventure|Thriller    112
## 17330 1996                           Action|Adventure|Mystery|Thriller    112
## 17333 1996                           Action|Adventure|Romance|Thriller    112
## 17341 1995                                        Comedy|Drama|Romance    113
## 17346 1995                                   Action|Adventure|Thriller    113
## 17369 1995                               Action|Adventure|Comedy|Crime    114
## 17371 1995                                       Action|Crime|Thriller    114
## 17374 1994                                                Drama|Horror    114
## 17375 1995                                                      Comedy    114
## 17376 1994                                       Action|Crime|Thriller    114
## 17389 1989                                       Action|Crime|Thriller    114
## 17390 1991                                       Crime|Horror|Thriller    114
## 17395 1995                                       Comedy|Drama|Thriller    115
## 17396 1995                             Action|Adventure|Mystery|Sci-Fi    115
## 17399 1994                                                      Comedy    115
## 17400 1993                                           Action|Comedy|War    115
## 17403 1993                                     Comedy|Romance|Thriller    115
## 17405 1996                                             Comedy|Thriller    115
## 17407 1992                                      Crime|Mystery|Thriller    115
## 17415 1997                                        Comedy|Crime|Romance    115
## 17416 1997                                        Comedy|Drama|Romance    115
## 17419 1998                                              Comedy|Romance    115
## 17420 1989                                   Action|Comedy|Crime|Drama    115
## 17429 2000                                   Animation|Children|Comedy    115
## 17430 2000                                                       Drama    115
## 17434 1995                               Action|Adventure|Comedy|Crime    116
## 17441 1994                                 Action|Comedy|Crime|Fantasy    116
## 17442 1993                                   Action|Adventure|Thriller    116
## 17443 1993                            Action|Adventure|Sci-Fi|Thriller    116
## 17444 1991                                       Crime|Horror|Thriller    116
## 17449 1999                                               Drama|Romance    116
## 17450 1999                           Action|Adventure|Comedy|Drama|War    116
## 17451 1999                                 Action|Crime|Drama|Thriller    116
## 17458 1995                                               Drama|Romance    117
## 17462 1993                                                   Drama|War    117
## 17465 1989                                                       Drama    117
## 17466 1992                                              Comedy|Romance    117
## 17467 1971                                        Comedy|Drama|Romance    117
## 17470 1984                                             Horror|Thriller    117
## 17473 1998                                     Action|Adventure|Sci-Fi    117
## 17475 1981                                                       Drama    117
## 17477 1988                                                       Drama    117
## 17480 1998                                               Drama|Mystery    117
## 17481 1999                                             Horror|Thriller    117
## 17483 1999                                              Drama|Thriller    117
## 17484 1991                                                Action|Drama    117
## 17486 1973                                                Comedy|Drama    117
## 17487 1976                                                Comedy|Drama    117
## 17496 2005                                                       Drama    117
## 17503 2008                                                 Crime|Drama    117
## 17504 2008                                                       Drama    117
## 17519 1994                                                 Crime|Drama    118
## 17531 1990                                              Comedy|Romance    118
## 17533 1968                                     Adventure|Comedy|Sci-Fi    118
## 17547 1935                                      Drama|Mystery|Thriller    118
## 17550 1954                                      Crime|Mystery|Thriller    118
## 17553 1981                            Action|Adventure|Sci-Fi|Thriller    118
## 17558 1983                                     Action|Adventure|Sci-Fi    118
## 17573 1944                                     Comedy|Mystery|Thriller    118
## 17579 1979                                            Adventure|Sci-Fi    118
## 17582 1986                                     Adventure|Comedy|Sci-Fi    118
## 17584 1996                              Comedy|Horror|Mystery|Thriller    118
## 17585 1997                              Action|Adventure|Comedy|Sci-Fi    118
## 17592 1997                                       Drama|Sci-Fi|Thriller    118
## 17594 1997                                               Drama|Romance    118
## 17595 1997                                        Action|Horror|Sci-Fi    118
## 17597 1998                         Adventure|Film-Noir|Sci-Fi|Thriller    118
## 17607 1990                             Adventure|Comedy|Sci-Fi|Western    118
## 17608 1984                                            Adventure|Sci-Fi    118
## 17610 1979                                             Children|Sci-Fi    118
## 17615 1984                                                Drama|Sci-Fi    118
## 17616 1983                                                    Thriller    118
## 17617 1982                          Adventure|Animation|Children|Drama    118
## 17618 1968                                       Drama|Horror|Thriller    118
## 17629 1975                                     Mystery|Sci-Fi|Thriller    118
## 17633 1998                                 Action|Drama|Romance|Sci-Fi    118
## 17635 1998                                                       Drama    118
## 17636 1986                                     Adventure|Comedy|Sci-Fi    118
## 17638 1976                                     Action|Adventure|Sci-Fi    118
## 17640 1971                                               Action|Sci-Fi    118
## 17641 1999                                      Action|Sci-Fi|Thriller    118
## 17642 1984                                        Comedy|Horror|Sci-Fi    118
## 17643 1999                                     Action|Adventure|Sci-Fi    118
## 17645 1980                                               Action|Sci-Fi    118
## 17646 1982                                               Horror|Sci-Fi    118
## 17648 1999                               Action|Horror|Sci-Fi|Thriller    118
## 17658 1987                                               Comedy|Sci-Fi    118
## 17678 2000                                                Action|Crime    118
## 17680 1981                                           Animation|Musical    118
## 17683 1978                                                      Horror    118
## 17684 1981                                                       Drama    118
## 17686 1974                                                       Drama    118
## 17687 1986                             Action|Adventure|Comedy|Fantasy    118
## 17690 1977                                                      Comedy    118
## 17695 1969                                                     Western    118
## 17696 1992                                              Drama|Thriller    118
## 17699 1975                                                      Comedy    118
## 17701 1976                                                Drama|Sci-Fi    118
## 17702 1995                 Adventure|Animation|Children|Comedy|Fantasy    119
## 17703 1995                                  Adventure|Children|Fantasy    119
## 17705 1995                                                 Crime|Drama    119
## 17707 1995                                                Drama|Sci-Fi    119
## 17709 1995                      Adventure|Drama|Fantasy|Mystery|Sci-Fi    119
## 17711 1995                                                 Crime|Drama    119
## 17715 1995                                  Adventure|Children|Fantasy    119
## 17718 1995                                 Action|Crime|Drama|Thriller    119
## 17719 1996                                   Action|Adventure|Thriller    119
## 17720 1996                              Adventure|Comedy|Crime|Romance    119
## 17723 1995                               Action|Adventure|Comedy|Crime    119
## 17726 1995                                    Action|Drama|Romance|War    119
## 17727 1995                               Action|Adventure|Comedy|Crime    119
## 17728 1995                             Action|Adventure|Mystery|Sci-Fi    119
## 17731 1995                                        Action|Drama|Romance    119
## 17732 1995                                         Action|Crime|Sci-Fi    119
## 17733 1995                                              Comedy|Romance    119
## 17734 1995                                               Horror|Sci-Fi    119
## 17735 1995                                                      Comedy    119
## 17736 1995                                     Action|Adventure|Sci-Fi    119
## 17738 1994                                             Action|Thriller    119
## 17740 1994                                                Drama|Horror    119
## 17746 1995                                Action|Drama|Sci-Fi|Thriller    119
## 17748 1994                                     Action|Adventure|Sci-Fi    119
## 17750 1994                                      Adventure|Drama|Sci-Fi    119
## 17752 1994                               Action|Crime|Fantasy|Thriller    119
## 17753 1994                                    Comedy|Drama|Romance|War    119
## 17754 1994             Adventure|Animation|Children|Drama|Musical|IMAX    119
## 17755 1994                                    Adventure|Comedy|Western    119
## 17756 1994                                               Action|Comedy    119
## 17758 1994                                     Action|Romance|Thriller    119
## 17761 1993                                               Comedy|Sci-Fi    119
## 17762 1994                                       Adventure|Documentary    119
## 17763 1993                                              Drama|Thriller    119
## 17764 1993                                                    Thriller    119
## 17767 1994                                        Crime|Drama|Thriller    119
## 17770 1993                                              Children|Drama    119
## 17775 1993                                        Action|Drama|Western    119
## 17776 1995                                                      Comedy    119
## 17788 1996                                        Action|Horror|Sci-Fi    119
## 17789 1996                           Action|Adventure|Mystery|Thriller    119
## 17790 1996                                    Action|Adventure|Fantasy    119
## 17791 1996                Adventure|Animation|Children|Fantasy|Musical    119
## 17793 1995                                 Action|Adventure|Comedy|War    119
## 17794 1996                                        Crime|Drama|Thriller    119
## 17798 1996                           Action|Adventure|Romance|Thriller    119
## 17802 1996                            Action|Adventure|Sci-Fi|Thriller    119
## 17807 1996                            Action|Adventure|Sci-Fi|Thriller    119
## 17809 1997                                                      Comedy    119
## 17810 1996                                             Sci-Fi|Thriller    119
## 17811 1996                                             Children|Comedy    119
## 17827 1968                                      Horror|Sci-Fi|Thriller    119
## 17830 1996                                 Action|Crime|Drama|Thriller    119
## 17831 1975                                  Adventure|Children|Fantasy    119
## 17832 1991                                             Adventure|Drama    119
## 17833 1964                             Children|Comedy|Fantasy|Musical    119
## 17834 1996                                 Comedy|Crime|Drama|Thriller    119
## 17837 1992                               Action|Horror|Sci-Fi|Thriller    119
## 17838 1996                                                Comedy|Drama    119
## 17839 1996                                            Action|Adventure    119
## 17840 1996                                               Drama|Romance    119
## 17843 1971                             Children|Comedy|Fantasy|Musical    119
## 17854 1996                                         Action|Comedy|Drama    119
## 17855 1989                            Action|Adventure|Sci-Fi|Thriller    119
## 17860 1990                                       Crime|Drama|Film-Noir    119
## 17861 1996                                           Drama|Romance|War    119
## 17862 1990                                                 Documentary    119
## 17877 1979                                               Horror|Sci-Fi    119
## 17887 1957                                                       Drama    119
## 17899 1993                                      Comedy|Fantasy|Romance    119
## 17913 1989                                            Action|Adventure    119
## 17921 1992                               Action|Horror|Sci-Fi|Thriller    119
## 17926 1992                                             Horror|Thriller    119
## 17928 1984                                             Horror|Thriller    119
## 17929 1976                                     Horror|Mystery|Thriller    119
## 17930 1996                            Action|Adventure|Sci-Fi|Thriller    119
## 17933 1991                                       Action|Mystery|Sci-Fi    119
## 17934 1982                            Action|Adventure|Sci-Fi|Thriller    119
## 17935 1984                                     Action|Adventure|Sci-Fi    119
## 17936 1986                                     Adventure|Comedy|Sci-Fi    119
## 17937 1992                                                Action|Crime    119
## 17938 1988                                       Action|Comedy|Western    119
## 17941 1978                                             Horror|Thriller    119
## 17943 1996                                        Action|Comedy|Sci-Fi    119
## 17948 1997                                                      Comedy    119
## 17949 1997                                   Action|Adventure|Thriller    119
## 17952 1997                                     Action|Adventure|Comedy    119
## 17953 1997                                             Action|Thriller    119
## 17955 1997                            Action|Adventure|Sci-Fi|Thriller    119
## 17956 1997                                   Action|Adventure|Thriller    119
## 17957 1996                                               Drama|Romance    119
## 17958 1997                                     Action|Romance|Thriller    119
## 17959 1997                           Action|Adventure|Fantasy|Thriller    119
## 17961 1997                                              Comedy|Romance    119
## 17962 1997                                 Action|Crime|Drama|Thriller    119
## 17964 1997                                                Drama|Sci-Fi    119
## 17965 1997                                                Action|Drama    119
## 17966 1982                                    Action|Adventure|Fantasy    119
## 17967 1997                                             Children|Comedy    119
## 17968 1997                                 Action|Crime|Drama|Thriller    119
## 17969 1997                            Action|Adventure|Sci-Fi|Thriller    119
## 17971 1997                                      Horror|Sci-Fi|Thriller    119
## 17972 1997                                            Action|Adventure    119
## 17973 1997                                             Action|Thriller    119
## 17976 1997                                                       Drama    119
## 17978 1997                                         Adventure|Drama|War    119
## 17982 1997                                                Comedy|Drama    119
## 17983 1997                              Children|Comedy|Romance|Sci-Fi    119
## 17985 1981                                                  Comedy|War    119
## 17986 1997                                                   Drama|War    119
## 17988 1997                                               Action|Sci-Fi    119
## 17989 1993                                               Drama|Romance    119
## 17990 1998                                         Comedy|Drama|Sci-Fi    119
## 17991 1997                                             Action|Thriller    119
## 17992 1997                                       Comedy|Crime|Thriller    119
## 17993 1997                                        Action|Horror|Sci-Fi    119
## 17994 1997                                                       Drama    119
## 17995 1997                                     Children|Comedy|Fantasy    119
## 17998 1997                                             Children|Comedy    119
## 17999 1997                                               Drama|Romance    119
## 18000 1998                                               Drama|Romance    119
## 18001 1997                                        Crime|Drama|Thriller    119
## 18005 1998                                Crime|Drama|Fantasy|Thriller    119
## 18006 1998                                        Action|Horror|Sci-Fi    119
## 18007 1998                                       Action|Crime|Thriller    119
## 18008 1998                                       Action|Comedy|Musical    119
## 18009 1998                                              Comedy|Romance    119
## 18010 1998                                             Sci-Fi|Thriller    119
## 18013 1998                                       Action|Crime|Thriller    119
## 18014 1997                         Comedy|Crime|Drama|Mystery|Thriller    119
## 18015 1998                                      Action|Adventure|Drama    119
## 18016 1998                                                 Crime|Drama    119
## 18019 1997                                          Comedy|Documentary    119
## 18020 1998                                     Action|Adventure|Sci-Fi    119
## 18021 1998                                       Action|Drama|Thriller    119
## 18022 1997                                Crime|Drama|Mystery|Thriller    119
## 18023 1997                           Adventure|Children|Comedy|Fantasy    119
## 18024 1998                                              Drama|Thriller    119
## 18025 1998                                               Horror|Sci-Fi    119
## 18026 1998                                         Action|Comedy|Crime    119
## 18027 1998                                       Drama|Sci-Fi|Thriller    119
## 18028 1998                                      Action|Sci-Fi|Thriller    119
## 18030 1998                                      Adventure|Comedy|Drama    119
## 18032 1998                                    Adventure|Comedy|Romance    119
## 18033 1998                                                      Comedy    119
## 18035 1998                              Action|Romance|Sci-Fi|Thriller    119
## 18037 1998                              Animation|Children|Fantasy|War    119
## 18040 1959                                               Horror|Sci-Fi    119
## 18046 1976                                                       Drama    119
## 18047 1979                                                       Drama    119
## 18055 1986                                   Adventure|Fantasy|Musical    119
## 18059 1990                                                      Horror    119
## 18061 1989                                   Action|Comedy|Crime|Drama    119
## 18062 1992                                   Action|Comedy|Crime|Drama    119
## 18063 1985                    Action|Adventure|Children|Comedy|Fantasy    119
## 18066 1989                                     Adventure|Comedy|Sci-Fi    119
## 18067 1990                             Adventure|Comedy|Sci-Fi|Western    119
## 18068 1972                                      Action|Adventure|Drama    119
## 18070 1984                                            Adventure|Sci-Fi    119
## 18072 1992                                      Children|Comedy|Sci-Fi    119
## 18073 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    119
## 18080 1955                           Animation|Children|Comedy|Romance    119
## 18083 1991                                     Action|Adventure|Sci-Fi    119
## 18085 1984                                      Comedy|Fantasy|Romance    119
## 18088 1982                                     Action|Adventure|Sci-Fi    119
## 18091 1983                                                      Comedy    119
## 18093 1984                                    Action|Adventure|Fantasy    119
## 18094 1983                                                    Thriller    119
## 18095 1993                                                Drama|Horror    119
## 18096 1991                                     Children|Comedy|Fantasy    119
## 18098 1963                                               Comedy|Sci-Fi    119
## 18099 1978                  Adventure|Animation|Children|Drama|Fantasy    119
## 18100 1982                                           Adventure|Fantasy    119
## 18101 1985                                   Adventure|Fantasy|Romance    119
## 18102 1998                                                Comedy|Drama    119
## 18104 1984                                  Adventure|Children|Fantasy    119
## 18105 1998                                      Action|Horror|Thriller    119
## 18110 1980                                                       Drama    119
## 18112 1992                                              Comedy|Fantasy    119
## 18113 1988                                      Drama|Fantasy|Thriller    119
## 18116 1998                                             Horror|Thriller    119
## 18120 1998                             Adventure|Drama|Fantasy|Romance    119
## 18121 1992                                                      Comedy    119
## 18123 1998                                                      Comedy    119
## 18124 1986                                                       Drama    119
## 18131 1998                                     Horror|Mystery|Thriller    119
## 18132 1998                                                     Romance    119
## 18133 1975                                     Mystery|Sci-Fi|Thriller    119
## 18135 1998                                             Action|Thriller    119
## 18136 1998                         Adventure|Animation|Children|Comedy    119
## 18139 1962                                               Action|Sci-Fi    119
## 18141 1985                                        Comedy|Drama|Romance    119
## 18142 1985                                        Comedy|Crime|Mystery    119
## 18143 1985                                    Action|Adventure|Fantasy    119
## 18145 1998                                        Crime|Drama|Thriller    119
## 18147 1988                               Action|Adventure|Thriller|War    119
## 18148 1984                             Action|Adventure|Comedy|Romance    119
## 18150 1985                                                Action|Drama    119
## 18151 1990                                                Action|Drama    119
## 18152 1985          Action|Adventure|Children|Fantasy|Mystery|Thriller    119
## 18153 1984                                                       Drama    119
## 18154 1986                                      Action|Adventure|Drama    119
## 18155 1989                             Action|Adventure|Children|Drama    119
## 18156 1998                                                       Crime    119
## 18158 1958                                       Horror|Mystery|Sci-Fi    119
## 18159 1986                                Drama|Horror|Sci-Fi|Thriller    119
## 18163 1986                                              Comedy|Western    119
## 18164 1999                                               Comedy|Sci-Fi    119
## 18166 1974                             Action|Adventure|Drama|Thriller    119
## 18167 1973                              Action|Sci-Fi|Thriller|Western    119
## 18169 1999                                                      Comedy    119
## 18170 1998                                       Comedy|Crime|Thriller    119
## 18172 1999                                                      Comedy    119
## 18173 1999                                          Comedy|Crime|Drama    119
## 18174 1998                                                       Drama    119
## 18175 1999                                      Action|Sci-Fi|Thriller    119
## 18176 1990                                                Action|Crime    119
## 18177 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    119
## 18178 1999                                              Comedy|Fantasy    119
## 18179 1999                                     Action|Adventure|Sci-Fi    119
## 18185 1999                                       Drama|Sci-Fi|Thriller    119
## 18187 1999                                Crime|Drama|Mystery|Thriller    119
## 18188 1999                                    Animation|Comedy|Musical    119
## 18189 1999                                Action|Comedy|Sci-Fi|Western    119
## 18190 1999                                                    Thriller    119
## 18191 1999                                       Drama|Horror|Thriller    119
## 18192 1999                                             Horror|Thriller    119
## 18194 1999                                             Horror|Thriller    119
## 18196 1986                                    Adventure|Drama|Thriller    119
## 18201 2000                                                 Crime|Drama    119
## 18202 1999                                                      Comedy    119
## 18203 1978                                                      Comedy    119
## 18205 1988                                Comedy|Drama|Fantasy|Romance    119
## 18207 1999                                    Action|Adventure|Fantasy    119
## 18208 1999                                             Children|Comedy    119
## 18211 1964                                    Adventure|Comedy|Musical    119
## 18213 1981                                           Adventure|Fantasy    119
## 18220 1973                                                     Western    119
## 18229 1987                          Action|Crime|Drama|Sci-Fi|Thriller    119
## 18234 1971                                Action|Drama|Sci-Fi|Thriller    119
## 18237 1983                                                      Comedy    119
## 18242 1975                                        Comedy|Drama|Romance    119
## 18243 1992                                                       Drama    119
## 18244 1991                                                Action|Drama    119
## 18246 1999                      Action|Fantasy|Horror|Mystery|Thriller    119
## 18248 1999                                                Comedy|Drama    119
## 18249 1999                                                Comedy|Drama    119
## 18252 1999                             Animation|Children|Musical|IMAX    119
## 18253 1999                                                       Drama    119
## 18256 1999                                     Adventure|Comedy|Sci-Fi    119
## 18263 1993                                                       Drama    119
## 18265 1992                                                      Comedy    119
## 18266 1992                                                Comedy|Drama    119
## 18267 1992                                                Comedy|Drama    119
## 18271 2000                                                      Comedy    119
## 18274 2000                                                      Sci-Fi    119
## 18275 1999                             Fantasy|Horror|Mystery|Thriller    119
## 18276 1986                                               Drama|Romance    119
## 18278 1959                                                       Drama    119
## 18279 1987                                             Children|Comedy    119
## 18282 2000                                              Drama|Thriller    119
## 18287 1990                       Action|Children|Comedy|Fantasy|Sci-Fi    119
## 18288 1984                                            Action|Drama|War    119
## 18290 1993                                                      Comedy    119
## 18291 2000                                              Drama|Thriller    119
## 18298 1991                                    Adventure|Comedy|Fantasy    119
## 18299 1972                                                      Horror    119
## 18303 2000                               Crime|Horror|Mystery|Thriller    119
## 18305 2000                                               Action|Horror    119
## 18308 1988                                 Crime|Drama|Sci-Fi|Thriller    119
## 18313 2000                              Action|Adventure|Comedy|Sci-Fi    119
## 18314 1990                                               Action|Comedy    119
## 18316 1991                                                      Comedy    119
## 18317 2000                                    Action|Adventure|Fantasy    119
## 18318 2000                         Comedy|Crime|Drama|Romance|Thriller    119
## 18319 2000                                              Crime|Thriller    119
## 18323 1948                                               Comedy|Horror    119
## 18326 2000                                       Action|Drama|Thriller    119
## 18329 2000                                               Action|Comedy    119
## 18331 2000                                      Action|Sci-Fi|Thriller    119
## 18332 2000                                              Comedy|Romance    119
## 18333 1987                         Action|Crime|Drama|Thriller|Western    119
## 18334 1987                                                 Crime|Drama    119
## 18343 1995                 Adventure|Animation|Children|Comedy|Fantasy    120
## 18344 1995                                     Mystery|Sci-Fi|Thriller    120
## 18345 1995                                                 Crime|Drama    120
## 18346 1995                                            Mystery|Thriller    120
## 18349 1995                                       Action|Crime|Thriller    120
## 18350 1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller    120
## 18351 1994                                            Adventure|Comedy    120
## 18352 1995                                Action|Drama|Sci-Fi|Thriller    120
## 18353 1994                                 Comedy|Crime|Drama|Thriller    120
## 18355 1994             Adventure|Animation|Children|Drama|Musical|IMAX    120
## 18356 1994                                     Action|Romance|Thriller    120
## 18357 1994                    Action|Adventure|Comedy|Romance|Thriller    120
## 18358 1993                                              Drama|Thriller    120
## 18359 1993                                                    Thriller    120
## 18360 1993                            Action|Adventure|Sci-Fi|Thriller    120
## 18361 1993                                                Comedy|Drama    120
## 18362 1993                                        Comedy|Drama|Romance    120
## 18363 1990                       Comedy|Drama|Fantasy|Romance|Thriller    120
## 18365 1989                                       Action|Crime|Thriller    120
## 18367 1990                                              Comedy|Romance    120
## 18368 1996                                 Comedy|Crime|Drama|Thriller    120
## 18369 1996                           Action|Adventure|Mystery|Thriller    120
## 18370 1996                                   Action|Adventure|Thriller    120
## 18371 1996                           Action|Adventure|Romance|Thriller    120
## 18372 1996                            Action|Adventure|Sci-Fi|Thriller    120
## 18373 1958                              Drama|Mystery|Romance|Thriller    120
## 18376 1982                                       Children|Drama|Sci-Fi    120
## 18377 1981                                            Action|Adventure    120
## 18378 1979                                               Horror|Sci-Fi    120
## 18382 1989                                      Children|Drama|Fantasy    120
## 18383 1989                                              Comedy|Romance    120
## 18384 1991                                                    Thriller    120
## 18387 1978                                             Horror|Thriller    120
## 18388 1983                                               Action|Horror    120
## 18389 1996                                        Action|Comedy|Sci-Fi    120
## 18390 1996                                               Drama|Romance    120
## 18391 1997                                                Comedy|Drama    120
## 18392 1997                                     Action|Adventure|Comedy    120
## 18393 1997                                   Action|Adventure|Thriller    120
## 18394 1997                                 Action|Crime|Drama|Thriller    120
## 18396 1997                              Drama|Mystery|Romance|Thriller    120
## 18397 1997                                             Action|Thriller    120
## 18400 1997                                               Drama|Romance    120
## 18401 1998                         Adventure|Film-Noir|Sci-Fi|Thriller    120
## 18402 1998                                              Comedy|Romance    120
## 18406 1982                                             Horror|Thriller    120
## 18407 1973                                              Horror|Mystery    120
## 18408 1987                                   Action|Comedy|Crime|Drama    120
## 18409 1984                                               Comedy|Horror    120
## 18410 1973                               Drama|Mystery|Sci-Fi|Thriller    120
## 18411 1972                                      Action|Adventure|Drama    120
## 18416 1998                                        Comedy|Drama|Fantasy    120
## 18417 1985                                        Comedy|Crime|Mystery    120
## 18420 1985                                               Comedy|Sci-Fi    120
## 18422 1986                                            Adventure|Comedy    120
## 18423 1986                                                       Drama    120
## 18426 1978                                     Action|Adventure|Sci-Fi    120
## 18427 1990                                               Comedy|Horror    120
## 18431 1983                                                      Comedy    120
## 18433 1999                                               Drama|Romance    120
## 18437 1999                                 Action|Crime|Drama|Thriller    120
## 18438 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    120
## 18439 1999                                        Comedy|Drama|Fantasy    120
## 18440 1983                                                      Comedy    120
## 18441 1984                                                       Drama    120
## 18443 1985                                      Crime|Romance|Thriller    120
## 18445 1992                                                      Comedy    120
## 18446 1986                                               Drama|Romance    120
## 18447 1973                                                Comedy|Drama    120
## 18449 1987                                            Comedy|Drama|War    120
## 18450 2000                                        Comedy|Drama|Romance    120
## 18453 1977                                   Action|Adventure|Thriller    120
## 18454 1974                                              Comedy|Western    120
## 18455 2000                                     Action|Adventure|Sci-Fi    120
## 18456 1987                                                      Comedy    120
## 18457 1987                                                       Drama    120
## 18458 2000                                                       Drama    120
## 18460 1987                                          Comedy|Documentary    120
## 18461 1974                                                      Comedy    120
## 18463 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    120
## 18466 2001                                              Comedy|Romance    120
## 18467 1982                                   Action|Comedy|Crime|Drama    120
## 18468 1980                                                      Comedy    120
## 18472 1977                                        Comedy|Drama|Romance    120
## 18473 2003                                                      Comedy    120
## 18475 1976                                              Drama|Thriller    120
## 18476 2003                                       Action|Crime|Thriller    120
## 18479 2005                     Action|Crime|Film-Noir|Mystery|Thriller    120
## 18480 2006                                                      Comedy    120
## 18483 1995                                   Action|Adventure|Thriller    121
## 18491 1995                                               Drama|Romance    121
## 18493 1995                               Action|Adventure|Comedy|Crime    121
## 18494 1996                                                      Comedy    121
## 18496 1995                               Action|Adventure|Comedy|Crime    121
## 18499 1995                                       Action|Crime|Thriller    121
## 18501 1995                                              Comedy|Romance    121
## 18509 1994                                                Drama|Horror    121
## 18510 1994                                               Comedy|Sci-Fi    121
## 18521 1994                                     Action|Adventure|Sci-Fi    121
## 18524 1995                                              Comedy|Romance    121
## 18526 1994                                                      Comedy    121
## 18533 1993                                               Comedy|Sci-Fi    121
## 18536 1993                                              Drama|Thriller    121
## 18546 1993                                        Comedy|Drama|Romance    121
## 18548 1993                                        Action|Drama|Western    121
## 18549 1995                                                      Comedy    121
## 18550 1990                       Comedy|Drama|Fantasy|Romance|Thriller    121
## 18557 1990                                              Comedy|Romance    121
## 18558 1981                    Action|Adventure|Animation|Horror|Sci-Fi    121
## 18561 1995                 Adventure|Animation|Children|Comedy|Fantasy    122
## 18562 1995                                   Action|Adventure|Thriller    122
## 18563 1995                                               Drama|Romance    122
## 18564 1995                                               Drama|Romance    122
## 18566 1995                                        Adventure|Drama|IMAX    122
## 18567 1995                               Action|Adventure|Comedy|Crime    122
## 18568 1995                                          Drama|Thriller|War    122
## 18569 1995                                       Action|Crime|Thriller    122
## 18570 1995                                       Action|Crime|Thriller    122
## 18571 1995                                     Action|Adventure|Sci-Fi    122
## 18572 1994                                            Adventure|Comedy    122
## 18573 1994                                                Drama|Horror    122
## 18574 1994                                                       Drama    122
## 18575 1992                                       Drama|Fantasy|Romance    122
## 18577 1995                                Action|Drama|Sci-Fi|Thriller    122
## 18578 1994                                 Comedy|Crime|Drama|Thriller    122
## 18579 1994                                                       Drama    122
## 18582 1994                                      Adventure|Drama|Sci-Fi    122
## 18583 1995                                              Comedy|Romance    122
## 18584 1994                                                      Comedy    122
## 18585 1994                                                      Comedy    122
## 18586 1994                                 Action|Crime|Drama|Thriller    122
## 18587 1994                                    Comedy|Drama|Romance|War    122
## 18588 1994                    Action|Adventure|Comedy|Romance|Thriller    122
## 18589 1993                                   Action|Adventure|Thriller    122
## 18590 1995                                              Comedy|Romance    122
## 18592 1993                                                   Drama|War    122
## 18595 1992                 Adventure|Animation|Children|Comedy|Musical    122
## 18596 1990                                     Adventure|Drama|Western    122
## 18597 1989                                       Action|Crime|Thriller    122
## 18598 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    122
## 18599 1996                                               Drama|Romance    122
## 18600 1955                                                       Drama    122
## 18605 1968                                      Horror|Sci-Fi|Thriller    123
## 18609 1985                                        Comedy|Drama|Romance    123
## 18610 1984                                                Comedy|Crime    123
## 18613 1999                                       Drama|Sci-Fi|Thriller    123
## 18614 1990                                               Comedy|Horror    123
## 18615 1999                                                       Drama    123
## 18616 1999                                                    Thriller    123
## 18617 1999                                       Drama|Horror|Thriller    123
## 18621 1999                                             Horror|Thriller    123
## 18626 2000                              Comedy|Horror|Mystery|Thriller    123
## 18628 2000                                      Action|Adventure|Drama    123
## 18630 2000                                                    Thriller    123
## 18635 1995                                  Adventure|Children|Fantasy    124
## 18637 1995                                            Mystery|Thriller    124
## 18639 1994                                   Drama|Romance|War|Western    124
## 18641 1994                                 Comedy|Crime|Drama|Thriller    124
## 18642 1994                                                 Crime|Drama    124
## 18646 1982                                      Action|Sci-Fi|Thriller    124
## 18648 1991                                       Crime|Horror|Thriller    124
## 18649 1996                                       Action|Drama|Thriller    124
## 18655 1987                                                   Drama|War    124
## 18661 1988                                                       Drama    124
## 18662 1987                                   Action|Comedy|Crime|Drama    124
## 18667 1999                                     Action|Adventure|Comedy    124
## 18672 1970                                            Action|Drama|War    124
## 18676 2000                                     Action|Adventure|Sci-Fi    124
## 18677 2000                                        Action|Drama|Romance    124
## 18678 2000                                       Comedy|Crime|Thriller    124
## 18685 2001                                               Drama|Romance    124
## 18686 2002                         Adventure|Animation|Children|Comedy    124
## 18687 2002                                     Action|Mystery|Thriller    124
## 18688 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    124
## 18689 2002                                     Horror|Mystery|Thriller    124
## 18690 1981                                       Action|Drama|Thriller    124
## 18692 2002                                                 Crime|Drama    124
## 18693 2003                               Crime|Horror|Mystery|Thriller    124
## 18696 2003                                       Action|Crime|Thriller    124
## 18697 2003                                        Comedy|Drama|Romance    124
## 18698 2002                                      Action|Adventure|Drama    124
## 18701 2004                                Action|Drama|Horror|Thriller    124
## 18702 2004                                       Action|Drama|Thriller    124
## 18706 2004                                       Action|Crime|Thriller    124
## 18707 2004                                 Action|Crime|Drama|Thriller    124
## 18708 2004                                               Comedy|Horror    124
## 18709 2004                                     Horror|Mystery|Thriller    124
## 18711 2004                                                       Drama    124
## 18713 2004                                                 Crime|Drama    124
## 18714 2005                                     Action|Adventure|Sci-Fi    124
## 18715 2005                                     Action|Adventure|Sci-Fi    124
## 18716 2005                                                       Drama    124
## 18726 1995                                     Action|Adventure|Sci-Fi    125
## 18736 1994                                 Action|Comedy|Crime|Fantasy    125
## 18738 1993                                                    Thriller    125
## 18747 1990                                              Comedy|Romance    125
## 18751 1996                            Action|Adventure|Sci-Fi|Thriller    125
## 18759 1939                                           Drama|Romance|War    125
## 18762 1965                                             Musical|Romance    125
## 18777 1980                                       Action|Comedy|Musical    125
## 18782 1989                                                   Drama|War    125
## 18796 1997                                       Drama|Sci-Fi|Thriller    125
## 18801 1997                                        Crime|Drama|Thriller    125
## 18803 1998                                              Comedy|Romance    125
## 18807 1998                              Action|Romance|Sci-Fi|Thriller    125
## 18810 1989                                     Adventure|Comedy|Sci-Fi    125
## 18811 1990                             Adventure|Comedy|Sci-Fi|Western    125
## 18814 1998                         Adventure|Animation|Children|Comedy    125
## 18820 1999                                     Action|Adventure|Sci-Fi    125
## 18822 1999                                              Comedy|Romance    125
## 18832 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    125
## 18833 1987                                               Comedy|Sci-Fi    125
## 18836 1992                                                       Drama    125
## 18842 2000                                                Action|Crime    125
## 18843 2000                                   Animation|Children|Comedy    125
## 18844 2000                                              Drama|Thriller    125
## 18846 2000                                                      Comedy    125
## 18847 2000                                                Drama|Sci-Fi    125
## 18848 1987                                                      Comedy    125
## 18849 2000                                              Comedy|Romance    125
## 18850 2000                                                       Drama    125
## 18852 2000                                                Comedy|Crime    125
## 18857 2001                                            Action|Adventure    125
## 18861 2002                                                    Thriller    125
## 18864 2002                                Action|Adventure|Sci-Fi|IMAX    125
## 18865 2002                                        Action|Comedy|Sci-Fi    125
## 18866 2002                                                      Comedy    125
## 18868 2002                                           Adventure|Fantasy    125
## 18872 2003                             Action|Adventure|Comedy|Fantasy    125
## 18873 2003                                          Comedy|Crime|Drama    125
## 18875 2003                                              Comedy|Musical    125
## 18878 2003                                         Adventure|Drama|War    125
## 18880 1983                                       Drama|Sci-Fi|Thriller    125
## 18884 2004         Adventure|Animation|Children|Comedy|Musical|Romance    125
## 18887 2004                                 Action|Crime|Drama|Thriller    125
## 18892 2005                      Adventure|Children|Comedy|Fantasy|IMAX    125
## 18895 2005                                     Action|Adventure|Sci-Fi    125
## 18896 2005                             Action|Adventure|Comedy|Romance    125
## 18903 2006                                      Drama|Mystery|Thriller    125
## 18904 2006                                    Action|Adventure|Fantasy    125
## 18907 2006                               Drama|Fantasy|Mystery|Romance    125
## 18917 2008                                 Comedy|Crime|Drama|Thriller    125
## 18924 2009                                          Comedy|Crime|Drama    125
## 18926 2009                                      Action|Sci-Fi|Thriller    125
## 18930 1995                                  Adventure|Children|Fantasy    126
## 18931 1995                                   Action|Adventure|Thriller    126
## 18932 1995                                              Children|Drama    126
## 18933 1995                                              Comedy|Romance    126
## 18934 1995                    Animation|Children|Drama|Musical|Romance    126
## 18936 1996                                   Action|Adventure|Thriller    126
## 18939 1995                             Action|Adventure|Mystery|Sci-Fi    126
## 18941 1995                                       Action|Crime|Thriller    126
## 18942 1995                                              Comedy|Romance    126
## 18943 1995                                               Drama|Romance    126
## 18944 1995                                     Action|Adventure|Sci-Fi    126
## 18947 1994                                              Comedy|Romance    126
## 18948 1994                                               Comedy|Sci-Fi    126
## 18950 1994                                     Action|Adventure|Sci-Fi    126
## 18951 1994                                        Comedy|Drama|Fantasy    126
## 18953 1994                                      Adventure|Drama|Sci-Fi    126
## 18956 1994                                      Drama|Mystery|Thriller    126
## 18958 1994                                              Comedy|Romance    126
## 18959 1994                                  Adventure|Children|Romance    126
## 18966 1994                                    Adventure|Children|Drama    126
## 18967 1993                                               Comedy|Sci-Fi    126
## 18969 1993                                              Drama|Thriller    126
## 18970 1993                                    Adventure|Children|Drama    126
## 18973 1995                                              Comedy|Romance    126
## 18980 1993                                              Children|Drama    126
## 18985 1990                                     Adventure|Drama|Western    126
## 18988 1937                    Animation|Children|Drama|Fantasy|Musical    126
## 18991 1970                                          Animation|Children    126
## 18992 1996                           Action|Adventure|Romance|Thriller    126
## 18999 1994                                      Drama|Mystery|Thriller    127
## 19004 1994                                               Drama|Romance    127
## 19005 1994                                Action|Comedy|Crime|Thriller    127
## 19007 1993                            Action|Adventure|Sci-Fi|Thriller    127
## 19016 1995                                              Comedy|Romance    128
## 19017 1995                                        Comedy|Drama|Romance    128
## 19020 1995                                               Drama|Romance    128
## 19025 1995                                  Adventure|Children|Fantasy    128
## 19029 1995                                       Comedy|Horror|Romance    128
## 19031 1976                                        Crime|Drama|Thriller    128
## 19034 1995                               Action|Adventure|Comedy|Crime    128
## 19039 1995                                              Drama|Thriller    128
## 19040 1994                                              Drama|Thriller    128
## 19041 1995                           Animation|Children|Comedy|Romance    128
## 19042 1994                                                Drama|Horror    128
## 19044 1995                   Adventure|Children|Comedy|Fantasy|Romance    128
## 19046 1994                                         Drama|Horror|Sci-Fi    128
## 19047 1994                                              Comedy|Romance    128
## 19057 1994                                 Action|Comedy|Crime|Fantasy    128
## 19066 1993                                        Action|Drama|Mystery    128
## 19069 1993                             Action|Adventure|Comedy|Romance    128
## 19070 1994                 Action|Adventure|Animation|Children|Fantasy    128
## 19080 1996                               Drama|Fantasy|Horror|Thriller    128
## 19084 1996                                              Drama|Thriller    128
## 19088 1995                                             Horror|Thriller    128
## 19099 1996           Animation|Children|Comedy|Fantasy|Musical|Romance    128
## 19102 1990                                        Action|Drama|Romance    128
## 19103 1996                                           Drama|Romance|War    128
## 19104 1987                     Action|Adventure|Comedy|Fantasy|Romance    128
## 19106 1993                      Action|Adventure|Comedy|Fantasy|Horror    128
## 19107 1993                                      Comedy|Fantasy|Romance    128
## 19108 1940                          Animation|Children|Fantasy|Musical    128
## 19109 1992                               Action|Horror|Sci-Fi|Thriller    128
## 19112 1996                                        Action|Comedy|Sci-Fi    128
## 19116 1997                                        Comedy|Drama|Romance    128
## 19120 1997                                   Action|Adventure|Thriller    128
## 19123 1997                                              Comedy|Romance    128
## 19124 1997                            Action|Adventure|Sci-Fi|Thriller    128
## 19131 1997                                             Action|Thriller    128
## 19134 1997                            Crime|Film-Noir|Mystery|Thriller    128
## 19135 1997                                     Horror|Mystery|Thriller    128
## 19136 1997                                      Drama|Mystery|Thriller    128
## 19137 1997                                                Action|Drama    128
## 19139 1997                                             Action|Thriller    128
## 19141 1997                              Comedy|Horror|Mystery|Thriller    128
## 19143 1997                                                      Comedy    128
## 19145 1998                                         Action|Comedy|Crime    128
## 19146 1998                                       Drama|Sci-Fi|Thriller    128
## 19147 1997                                      Drama|Mystery|Thriller    128
## 19152 1998                                       Action|Comedy|Romance    128
## 19154 1998                                            Action|Drama|War    128
## 19166 1991                Adventure|Animation|Children|Musical|Western    128
## 19169 1998                                             Horror|Thriller    128
## 19175 1998                                              Comedy|Romance    128
## 19176 1998                                       Crime|Horror|Thriller    128
## 19179 1999                                             Action|Thriller    128
## 19181 1999                                                      Horror    128
## 19184 1999                                              Comedy|Romance    128
## 19192 1999                                Crime|Drama|Mystery|Thriller    128
## 19194 1999                                       Drama|Horror|Thriller    128
## 19195 1999                                             Horror|Thriller    128
## 19196 1999                               Action|Horror|Sci-Fi|Thriller    128
## 19204 1999                                               Drama|Romance    128
## 19205 1999                                              Comedy|Romance    128
## 19206 1999                                                    Thriller    128
## 19211 1999                             Animation|Children|Musical|IMAX    128
## 19212 1999                                      Drama|Mystery|Thriller    128
## 19214 1999                                                       Drama    128
## 19215 2000                                             Adventure|Drama    128
## 19216 2000                                        Crime|Drama|Thriller    128
## 19217 2000                                                Comedy|Drama    128
## 19218 1993                        Adventure|Animation|Children|Fantasy    128
## 19223 2000                               Crime|Horror|Mystery|Thriller    128
## 19226 2000                                         Action|Thriller|War    128
## 19227 1999                                               Drama|Romance    128
## 19230 2000                                Adventure|Animation|Children    128
## 19231 1954                                      Comedy|Musical|Romance    128
## 19232 1992                                                      Horror    128
## 19238 2000                                               Drama|Romance    128
## 19240 2000                                                       Drama    128
## 19241 2000                                                      Horror    128
## 19242 2000                                              Comedy|Romance    128
## 19243 2000                                               Action|Comedy    128
## 19249 2000                 Adventure|Animation|Children|Comedy|Fantasy    128
## 19258 2001                                             Horror|Thriller    128
## 19262 2001                                        Comedy|Drama|Romance    128
## 19268 2001                                            Action|Adventure    128
## 19270 2001                                               Drama|Romance    128
## 19271 2001                                                      Comedy    128
## 19273 2001                                              Comedy|Romance    128
## 19276 2001                                           Drama|Romance|War    128
## 19277 2001                                                       Drama    128
## 19278 2001                              Action|Adventure|Drama|Romance    128
## 19282 2001                               Crime|Horror|Mystery|Thriller    128
## 19288 2001                                                       Drama    128
## 19292 2001                                                       Drama    128
## 19293 2001                                                Comedy|Drama    128
## 19296 2001                                            Action|Drama|War    128
## 19297 2001                                        Comedy|Drama|Mystery    128
## 19306 2002                                              Comedy|Romance    128
## 19309 2002                            Action|Adventure|Sci-Fi|Thriller    128
## 19311 2002                         Action|Crime|Drama|Mystery|Thriller    128
## 19321 2002                                              Drama|Thriller    128
## 19323 1977                                        Comedy|Drama|Romance    128
## 19325 2002                                           Adventure|Fantasy    128
## 19326 2002                                        Comedy|Drama|Romance    128
## 19327 2002                                   Action|Adventure|Thriller    128
## 19329 2002                                                 Crime|Drama    128
## 19336 1978                   Adventure|Children|Comedy|Fantasy|Musical    128
## 19337 1995                                              Comedy|Romance    129
## 19339 1996                           Action|Adventure|Romance|Thriller    129
## 19340 1991                                             Adventure|Drama    129
## 19341 1990                              Crime|Drama|Film-Noir|Thriller    129
## 19343 1978                                               Comedy|Horror    129
## 19345 2000                                               Action|Sci-Fi    129
## 19348 2000                                              Comedy|Romance    129
## 19349 2000                                                      Comedy    129
## 19350 2000                                                Comedy|Crime    129
## 19352 2000                             Action|Adventure|Comedy|Western    129
## 19353 1983                                                      Comedy    129
## 19354 2000                                                Action|Crime    129
## 19355 2000                                       Action|Crime|Thriller    129
## 19356 2000                  Action|Adventure|Animation|Children|Sci-Fi    129
## 19358 2000                                            Adventure|Comedy    129
## 19361 2000                                               Comedy|Horror    129
## 19362 2000                                     Action|Adventure|Sci-Fi    129
## 19363 1995                 Adventure|Animation|Children|Comedy|Fantasy    130
## 19364 1995                                   Action|Adventure|Thriller    130
## 19365 1995                                                      Comedy    130
## 19366 1995                                       Comedy|Crime|Thriller    130
## 19367 1995                                              Children|Drama    130
## 19369 1995                    Animation|Children|Drama|Musical|Romance    130
## 19370 1995                                      Crime|Mystery|Thriller    130
## 19371 1996                                                      Comedy    130
## 19372 1995                                            Action|Drama|War    130
## 19373 1996                                                      Comedy    130
## 19375 1995                               Action|Adventure|Comedy|Crime    130
## 19376 1995                                       Action|Crime|Thriller    130
## 19377 1995                                         Action|Crime|Sci-Fi    130
## 19378 1995                                                       Drama    130
## 19379 1995                                                      Comedy    130
## 19380 1994                                                      Comedy    130
## 19381 1994                                            Adventure|Comedy    130
## 19382 1994                                                Comedy|Drama    130
## 19385 1994                                   Drama|Romance|War|Western    130
## 19386 1994                                                Comedy|Drama    130
## 19387 1994                                       Action|Crime|Thriller    130
## 19389 1994                                                       Drama    130
## 19390 1995                                     Action|Thriller|Western    130
## 19391 1994                                       Action|Drama|Thriller    130
## 19392 1994                                     Action|Adventure|Sci-Fi    130
## 19393 1994                                                 Crime|Drama    130
## 19394 1995                                                      Comedy    130
## 19396 1995                                              Comedy|Romance    130
## 19397 1994                                 Action|Crime|Drama|Thriller    130
## 19398 1994                               Action|Crime|Fantasy|Thriller    130
## 19399 1994                                    Comedy|Drama|Romance|War    130
## 19400 1994             Adventure|Animation|Children|Drama|Musical|IMAX    130
## 19401 1994                                 Action|Comedy|Crime|Fantasy    130
## 19402 1994                                    Adventure|Comedy|Western    130
## 19403 1994                                     Action|Romance|Thriller    130
## 19404 1994                    Action|Adventure|Comedy|Romance|Thriller    130
## 19405 1993                                     Children|Comedy|Fantasy    130
## 19406 1994                                             Action|Thriller    130
## 19407 1993                                     Action|Adventure|Sci-Fi    130
## 19408 1993                                              Drama|Thriller    130
## 19410 1993                                                       Drama    130
## 19411 1993                            Action|Adventure|Sci-Fi|Thriller    130
## 19413 1993                                                Comedy|Drama    130
## 19414 1993                                                       Drama    130
## 19417 1993                                     Comedy|Romance|Thriller    130
## 19418 1993                          Animation|Children|Fantasy|Musical    130
## 19420 1991                                               Action|Sci-Fi    130
## 19422 1989                                       Action|Crime|Thriller    130
## 19423 1991                                       Crime|Horror|Thriller    130
## 19425 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    130
## 19427 1990                                              Comedy|Romance    130
## 19428 1996                                 Comedy|Crime|Drama|Thriller    130
## 19429 1981                    Action|Adventure|Animation|Horror|Sci-Fi    130
## 19430 1996                           Action|Adventure|Mystery|Thriller    130
## 19431 1996                Adventure|Animation|Children|Fantasy|Musical    130
## 19432 1968                                     Adventure|Comedy|Sci-Fi    130
## 19434 1996                           Action|Adventure|Romance|Thriller    130
## 19436 1964                                                  Comedy|War    130
## 19437 1996                            Action|Adventure|Sci-Fi|Thriller    130
## 19438 1996                                                      Comedy    130
## 19441 1959                   Action|Adventure|Mystery|Romance|Thriller    130
## 19442 1964                                Comedy|Drama|Musical|Romance    130
## 19443 1939                          Adventure|Children|Fantasy|Musical    130
## 19450 1996                                                Comedy|Drama    130
## 19452 1988                                                Comedy|Crime    130
## 19453 1979                                                      Comedy    130
## 19456 1992                                      Crime|Mystery|Thriller    130
## 19457 1982                                       Children|Drama|Sci-Fi    130
## 19458 1986                                              Action|Romance    130
## 19459 1989                            Action|Adventure|Sci-Fi|Thriller    130
## 19463 1975                                                       Drama    130
## 19467 1985                                              Fantasy|Sci-Fi    130
## 19471 1971                                 Crime|Drama|Sci-Fi|Thriller    130
## 19474 1990                                                 Crime|Drama    130
## 19476 1993                      Action|Adventure|Comedy|Fantasy|Horror    130
## 19478 1987                                                   Drama|War    130
## 19481 1984                                                       Drama    130
## 19483 1990                                                Comedy|Drama    130
## 19485 1967                                        Comedy|Drama|Romance    130
## 19488 1986                                             Adventure|Drama    130
## 19494 1986                                    Action|Adventure|Fantasy    130
## 19495 1967                                                       Drama    130
## 19502 1989                                      Children|Drama|Fantasy    130
## 19504 1989                                              Comedy|Romance    130
## 19505 1963                                             Horror|Thriller    130
## 19506 1992                             Fantasy|Horror|Romance|Thriller    130
## 19507 1996                                               Drama|Romance    130
## 19508 1990                                   Action|Adventure|Thriller    130
## 19509 1979                                            Adventure|Sci-Fi    130
## 19510 1991                                       Action|Mystery|Sci-Fi    130
## 19512 1984                                     Action|Adventure|Sci-Fi    130
## 19513 1992                                                Action|Crime    130
## 19514 1988                                       Action|Comedy|Western    130
## 19515 1978                                      Comedy|Musical|Romance    130
## 19516 1975                                               Action|Horror    130
## 19517 1996                                        Action|Comedy|Sci-Fi    130
## 19518 1996                                               Drama|Romance    130
## 19519 1992                            Action|Comedy|Crime|Drama|Sci-Fi    130
## 19522 1997                                                 Crime|Drama    130
## 19523 1997                                                      Comedy    130
## 19526 1997                            Action|Adventure|Sci-Fi|Thriller    130
## 19527 1997                           Action|Adventure|Fantasy|Thriller    130
## 19528 1997                 Adventure|Animation|Children|Comedy|Musical    130
## 19530 1990                                   Action|Adventure|Thriller    130
## 19531 1997                            Crime|Film-Noir|Mystery|Thriller    130
## 19532 1997                                      Drama|Mystery|Thriller    130
## 19533 1997                                                Comedy|Drama    130
## 19534 1985                                      Drama|Romance|Thriller    130
## 19535 1997                                               Action|Sci-Fi    130
## 19536 1998                                         Comedy|Drama|Sci-Fi    130
## 19537 1997                                               Drama|Romance    130
## 19538 1997                                               Drama|Romance    130
## 19539 1997                                   Action|Adventure|Thriller    130
## 19540 1997                                        Crime|Drama|Thriller    130
## 19542 1997                                                      Comedy    130
## 19544 1998                                              Comedy|Romance    130
## 19545 1998                                      Adventure|Comedy|Drama    130
## 19546 1998                        Action|Crime|Mystery|Sci-Fi|Thriller    130
## 19549 1988                                                       Drama    130
## 19551 1973                                              Horror|Mystery    130
## 19552 1987                                   Action|Comedy|Crime|Drama    130
## 19553 1989                                   Action|Comedy|Crime|Drama    130
## 19554 1984                                               Comedy|Horror    130
## 19556 1998                                       Action|Comedy|Romance    130
## 19557 1989                                     Adventure|Comedy|Sci-Fi    130
## 19558 1990                             Adventure|Comedy|Sci-Fi|Western    130
## 19559 1984                                            Adventure|Sci-Fi    130
## 19560 1990                                Crime|Drama|Mystery|Thriller    130
## 19562 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    130
## 19563 1967                           Animation|Children|Comedy|Musical    130
## 19564 1989                   Animation|Children|Comedy|Musical|Romance    130
## 19567 1984                                      Comedy|Fantasy|Romance    130
## 19570 1984                                    Action|Adventure|Fantasy    130
## 19571 1984                                                Drama|Sci-Fi    130
## 19572 1991                                     Children|Comedy|Fantasy    130
## 19574 1982                                           Adventure|Fantasy    130
## 19576 1989                                                      Comedy    130
## 19577 1984                                  Adventure|Children|Fantasy    130
## 19578 1988                                              Comedy|Fantasy    130
## 19580 1992                                        Crime|Drama|Thriller    130
## 19581 1990                                       Drama|Fantasy|Romance    130
## 19582 1998                 Adventure|Animation|Children|Comedy|Fantasy    130
## 19583 1992                                                      Comedy    130
## 19585 1998                         Adventure|Animation|Children|Comedy    130
## 19587 1998                                        Comedy|Drama|Romance    130
## 19589 1985                                               Comedy|Sci-Fi    130
## 19590 1979                                                Action|Drama    130
## 19591 1985                                                Action|Drama    130
## 19592 1986                                      Action|Adventure|Drama    130
## 19593 1986                                Drama|Horror|Sci-Fi|Thriller    130
## 19595 1986                                            Adventure|Comedy    130
## 19597 1989                                                      Horror    130
## 19600 1999                                     Action|Adventure|Sci-Fi    130
## 19601 1978                                     Action|Adventure|Sci-Fi    130
## 19602 1983                                     Action|Adventure|Sci-Fi    130
## 19603 1975                                Comedy|Horror|Musical|Sci-Fi    130
## 19604 1990                                               Comedy|Horror    130
## 19608 1999                   Adventure|Animation|Children|Drama|Sci-Fi    130
## 19609 1999                                              Action|Mystery    130
## 19610 1971                                                      Comedy    130
## 19611 1980                                                      Comedy    130
## 19612 1982                                                      Comedy    130
## 19613 1983                                                      Comedy    130
## 19614 1988                                Comedy|Drama|Fantasy|Romance    130
## 19615 1983                                             Children|Comedy    130
## 19616 1999                                               Drama|Romance    130
## 19618 1983                                                      Comedy    130
## 19619 1990                            Action|Adventure|Sci-Fi|Thriller    130
## 19621 1983                                               Drama|Romance    130
## 19622 1964                                   Action|Adventure|Thriller    130
## 19624 1962                                   Action|Adventure|Thriller    130
## 19625 1980                                     Adventure|Drama|Romance    130
## 19630 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    130
## 19631 1973                                   Action|Adventure|Thriller    130
## 19632 1965                                   Action|Adventure|Thriller    130
## 19633 1999                                        Comedy|Drama|Fantasy    130
## 19634 1987                                               Comedy|Sci-Fi    130
## 19636 1983                                                      Comedy    130
## 19638 1988                                      Comedy|Fantasy|Romance    130
## 19639 1950                                              Comedy|Fantasy    130
## 19640 1984                                                       Drama    130
## 19641 1992                                                       Drama    130
## 19642 1987                                              Drama|Thriller    130
## 19643 1991                                                Action|Drama    130
## 19644 1991                                Comedy|Drama|Fantasy|Romance    130
## 19646 1999                                                       Drama    130
## 19647 1999                                     Adventure|Comedy|Sci-Fi    130
## 19648 1992                                                Comedy|Crime    130
## 19649 1992                                                      Comedy    130
## 19650 1992                                 Action|Crime|Drama|Thriller    130
## 19651 1986                                               Drama|Romance    130
## 19653 1984                                            Action|Drama|War    130
## 19654 1987                                            Comedy|Drama|War    130
## 19655 2000                                        Comedy|Drama|Romance    130
## 19657 2000                                      Action|Adventure|Drama    130
## 19659 2000                                   Action|Adventure|Thriller    130
## 19660 1974                                              Comedy|Western    130
## 19663 1986                             Action|Adventure|Comedy|Fantasy    130
## 19664 2000                                              Drama|Thriller    130
## 19666 2000                                                       Drama    130
## 19667 2000                                                      Comedy    130
## 19668 2000                                                       Drama    130
## 19671 2000                                                       Drama    130
## 19676 1983                                          Action|Crime|Drama    130
## 19677 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    130
## 19678 2001                                       Action|Crime|Thriller    130
## 19680 1986                                               Comedy|Sci-Fi    130
## 19682 1989                                                      Comedy    130
## 19683 2001                               Action|Adventure|Drama|Sci-Fi    130
## 19686 2001                 Adventure|Animation|Children|Comedy|Fantasy    130
## 19688 2001                                              Crime|Thriller    130
## 19689 1984                                                Comedy|Drama    130
## 19690 1991                             Adventure|Comedy|Fantasy|Sci-Fi    130
## 19692 2001                                               Drama|Romance    130
## 19693 2001                                                       Drama    130
## 19694 2001                                                       Drama    130
## 19695 1982                                   Action|Comedy|Crime|Drama    130
## 19696 2002                                              Comedy|Romance    130
## 19699 2002                                     Action|Mystery|Thriller    130
## 19700 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    130
## 19702 1981                                       Action|Drama|Thriller    130
## 19708 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    130
## 19709 2003                         Adventure|Animation|Children|Comedy    130
## 19710 2003                                                Action|Crime    130
## 19711 1991                                              Drama|Thriller    130
## 19713 1985                                            Action|Adventure    130
## 19717 1983                                                      Comedy    130
## 19718 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    130
## 19719 2003                                         Adventure|Drama|War    130
## 19722 1968                   Adventure|Children|Comedy|Fantasy|Musical    130
## 19723 2004                             Action|Adventure|Fantasy|Horror    130
## 19727 1991                            Adventure|Comedy|Fantasy|Musical    130
## 19728 2004                                Action|Adventure|Sci-Fi|IMAX    130
## 19729 2004                            Action|Adventure|Sci-Fi|Thriller    130
## 19730 2004                                       Action|Crime|Thriller    130
## 19731 1974                                      Crime|Mystery|Thriller    130
## 19735 2005                                           Action|Crime|IMAX    130
## 19736 2005                                Action|Comedy|Crime|Thriller    130
## 19740 1994                                     Children|Comedy|Fantasy    131
## 19745 1981                                            Action|Drama|War    131
## 19753 1984                                                       Drama    131
## 19755 1999                                     Action|Adventure|Comedy    131
## 19756 1999                                Crime|Drama|Mystery|Thriller    131
## 19757 1998                                                Action|Crime    131
## 19758 1999                                    Animation|Comedy|Musical    131
## 19759 1999                                              Comedy|Romance    131
## 19762 1999                                              Action|Mystery    131
## 19765 1992                                                      Comedy    131
## 19768 2000                                               Drama|Romance    131
## 19769 2000                                                      Comedy    131
## 19772 2000                                               Action|Comedy    131
## 19773 2000                                                      Comedy    131
## 19774 2000                                     Children|Comedy|Fantasy    131
## 19775 2000                                             Children|Comedy    131
## 19777 2000                                                Comedy|Crime    131
## 19778 2000                                       Drama|Romance|Western    131
## 19781 2001                                    Action|Drama|Romance|War    131
## 19783 1995                               Action|Adventure|Comedy|Crime    132
## 19786 1994             Adventure|Animation|Children|Drama|Musical|IMAX    132
## 19787 1994                                     Action|Romance|Thriller    132
## 19788 1990                                     Adventure|Drama|Western    132
## 19789 1991                                       Crime|Horror|Thriller    132
## 19790 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    132
## 19792 1985                                     Adventure|Comedy|Sci-Fi    132
## 19794 1998                                            Action|Drama|War    132
## 19799 1999                                      Action|Sci-Fi|Thriller    132
## 19807 2000                                       Action|Crime|Thriller    132
## 19809 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    132
## 19811 2001                                     Animation|Drama|Fantasy    132
## 19834 1999                                                       Drama    132
## 19836 2006                     Animation|Drama|Mystery|Sci-Fi|Thriller    132
## 19847 2006                                        Comedy|Drama|Romance    132
## 19857 2007                                                      Comedy    132
## 19858 2008                 Adventure|Animation|Children|Romance|Sci-Fi    132
## 19864 2008                                                Comedy|Drama    132
## 19874 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX    132
## 19876 1995                                            Mystery|Thriller    133
## 19877 1995                                            Action|Drama|War    133
## 19878 1976                                        Crime|Drama|Thriller    133
## 19879 1995                                               Drama|Romance    133
## 19880 1994                                                 Crime|Drama    133
## 19882 1994                                                 Crime|Drama    133
## 19883 1994                                    Comedy|Drama|Romance|War    133
## 19884 1993                          Animation|Children|Fantasy|Musical    133
## 19885 1991                                       Crime|Horror|Thriller    133
## 19886 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    133
## 19887 1995                                   Animation|Children|Comedy    133
## 19888 1942                                               Drama|Romance    133
## 19889 1939                          Adventure|Children|Fantasy|Musical    133
## 19890 1964                             Children|Comedy|Fantasy|Musical    133
## 19891 1979                                                      Comedy    133
## 19892 1987                                       Drama|Musical|Romance    133
## 19893 1993                             Animation|Children|Comedy|Crime    133
## 19895 1975                                                       Drama    133
## 19896 1981                                            Action|Adventure    133
## 19898 1987                                                   Drama|War    133
## 19899 1971                                        Comedy|Drama|Romance    133
## 19900 1967                                        Comedy|Drama|Romance    133
## 19902 1993                                      Comedy|Fantasy|Romance    133
## 19903 1985                                     Adventure|Comedy|Sci-Fi    133
## 19904 1991                                          Comedy|Crime|Drama    133
## 19905 1989                                      Children|Drama|Fantasy    133
## 19906 1996                                               Drama|Mystery    133
## 19907 1996                                               Drama|Romance    133
## 19908 1997                              Action|Adventure|Comedy|Sci-Fi    133
## 19909 1997                                       Drama|Sci-Fi|Thriller    133
## 19911 1998                                                Comedy|Crime    133
## 19912 1997                                        Comedy|Drama|Romance    133
## 19913 1998                                      Adventure|Comedy|Drama    133
## 19914 1985                                                Comedy|Drama    133
## 19915 1985                    Action|Adventure|Children|Comedy|Fantasy    133
## 19917 1953                          Animation|Children|Fantasy|Musical    133
## 19918 1977                    Adventure|Animation|Children|Crime|Drama    133
## 19919 1959                                  Animation|Children|Musical    133
## 19920 1998                             Adventure|Drama|Fantasy|Romance    133
## 19922 1998                                                 Crime|Drama    133
## 19923 1998                                                Action|Crime    133
## 19924 1985                                                       Drama    133
## 19925 1999                                        Drama|Horror|Mystery    133
## 19926 1986                                                      Comedy    133
## 19927 1945                                               Drama|Romance    133
## 19928 1999                                 Action|Crime|Drama|Thriller    133
## 19929 2000                                                Comedy|Drama    133
## 19930 2000                                                       Drama    133
## 19931 2000                                                       Drama    133
## 19932 2000                                               Action|Comedy    133
## 19934 2001                                              Comedy|Romance    133
## 19936 2001                                           Adventure|Fantasy    133
## 19937 2002                         Adventure|Animation|Children|Comedy    133
## 19938 2002                                                 Crime|Drama    133
## 19939 2001                                              Drama|Thriller    133
## 19941 2002                                               Drama|Romance    133
## 19942 2002                                        Comedy|Drama|Romance    133
## 19943 1973                                          Comedy|Crime|Drama    133
## 19944 2003                                       Action|Crime|Thriller    133
## 19945 2003                        Crime|Drama|Mystery|Romance|Thriller    133
## 19946 1998                                               Drama|Romance    133
## 19947 1986                                               Drama|Romance    133
## 19948 2003                                       Drama|Fantasy|Romance    133
## 19949 2004                                       Drama|Sci-Fi|Thriller    133
## 19950 2003                                                Comedy|Drama    133
## 19953 2004                                    Comedy|Documentary|Drama    133
## 19954 2004                                               Drama|Romance    133
## 19955 2004                                               Drama|Romance    133
## 19957 2000                                              Comedy|Romance    133
## 19958 2004                                   Drama|Mystery|Romance|War    133
## 19959 2004                                                       Drama    133
## 19960 2004                                    Adventure|Comedy|Fantasy    133
## 19962 2005                                                Comedy|Drama    133
## 19963 2005                                               Drama|Romance    133
## 19964 2005                                               Drama|Romance    133
## 19966 2005                                       Drama|Musical|Romance    133
## 19967 2005                                                       Drama    133
## 19968 2005                                  Adventure|Children|Fantasy    133
## 19969 2005                                                   Drama|War    133
## 19970 2006                                    Action|Adventure|Fantasy    133
## 19971 2006                                      Adventure|Comedy|Drama    133
## 19972 2006                                              Drama|Thriller    133
## 19973 2006                                                       Drama    133
## 19974 2006                                                       Drama    133
## 19975 2006                                Comedy|Drama|Fantasy|Romance    133
## 19976 2006                                      Drama|Fantasy|Thriller    133
## 19977 2006                                       Drama|Musical|Romance    133
## 19979 2007                                      Action|Adventure|Drama    133
## 19981 2007                                             Animation|Drama    133
## 19982 2007                                                       Drama    133
## 19984 2007                                                Comedy|Drama    133
## 19987 2008                 Adventure|Animation|Children|Romance|Sci-Fi    133
## 19988 2008                                        Comedy|Drama|Romance    133
## 19990 2008                                                       Drama    133
## 19991 2008                                                 Crime|Drama    133
## 19992 2008                                               Drama|Mystery    133
## 19994 2008                               Drama|Fantasy|Mystery|Romance    133
## 19999 2009                                      Animation|Comedy|Drama    133
## 20000 2009                                               Drama|Romance    133
## 20001 2009                                                       Drama    133
## 20004 2010                                      Action|Adventure|Drama    133
## 20005 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX    133
## 20008 2010                                              Drama|Thriller    133
## 20010 2010                                                     Western    133
## 20011 2011                                               Drama|Romance    133
## 20012 2006                                               Drama|Romance    133
## 20013 2011                               Action|Adventure|Fantasy|IMAX    133
## 20014 2011                                      Comedy|Fantasy|Romance    133
## 20016 2011                                                       Drama    133
## 20017 2011                                                       Drama    133
## 20018 2011                                                Comedy|Drama    133
## 20019 2011                                      Children|Drama|Mystery    133
## 20020 2012                      Action|Adventure|Drama|Sci-Fi|Thriller    133
## 20021 2011                                                Comedy|Drama    133
## 20022 2011                                                Comedy|Drama    133
## 20024 2012                                Action|Adventure|Sci-Fi|IMAX    133
## 20025 2012                                               Drama|Romance    133
## 20026 2012                                              Drama|Thriller    133
## 20027 2012                                                Comedy|Drama    133
## 20029 2012                                               Drama|Romance    133
## 20031 2012                                        Action|Drama|Western    133
## 20032 2013                                Crime|Drama|Mystery|Thriller    133
## 20034 2012                                                       Drama    133
## 20037 2012                                                       Drama    133
## 20038 2013                                         Action|Comedy|Crime    133
## 20039 2013                                       Drama|Fantasy|Romance    133
## 20040 2013                                          Action|Sci-Fi|IMAX    133
## 20041 2013                                      Drama|Mystery|Thriller    133
## 20045 2013                                          Comedy|Crime|Drama    133
## 20046 2013                                                 Crime|Drama    133
## 20048 2013                                                Comedy|Drama    133
## 20050 2014                                                Comedy|Drama    133
## 20051 2014                                           Drama|Sci-Fi|IMAX    133
## 20052 2014                                                       Drama    133
## 20053 1990                                     Action|Animation|Comedy    133
## 20054 1995                 Adventure|Animation|Children|Comedy|Fantasy    134
## 20056 1995                                                      Comedy    134
## 20059 1995                                                      Comedy    134
## 20063 1995                                              Comedy|Romance    134
## 20065 1995                                            Action|Drama|War    134
## 20067 1995                          Action|Comedy|Crime|Drama|Thriller    134
## 20068 1995                               Action|Adventure|Comedy|Crime    134
## 20070 1995                                               Horror|Sci-Fi    134
## 20071 1994                                                      Comedy    134
## 20072 1994                                            Adventure|Comedy    134
## 20074 1977                                     Action|Adventure|Sci-Fi    134
## 20080 1994                                        Comedy|Drama|Fantasy    134
## 20085 1994                                                      Comedy    134
## 20088 1994             Adventure|Animation|Children|Drama|Musical|IMAX    134
## 20089 1994                                 Action|Comedy|Crime|Fantasy    134
## 20090 1994                                     Action|Romance|Thriller    134
## 20094 1993                             Action|Adventure|Comedy|Fantasy    134
## 20095 1996                                   Action|Adventure|Thriller    134
## 20097 1993                                        Comedy|Drama|Romance    134
## 20100 1993                             Action|Adventure|Comedy|Romance    134
## 20101 1990                                             Children|Comedy    134
## 20102 1990                       Comedy|Drama|Fantasy|Romance|Thriller    134
## 20103 1992                 Adventure|Animation|Children|Comedy|Musical    134
## 20107 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    134
## 20108 1990                                              Comedy|Romance    134
## 20115 1959                                                Comedy|Crime    134
## 20117 1934                                                Comedy|Crime    134
## 20118 1988                                       Action|Crime|Thriller    134
## 20123 1992                                      Drama|Romance|Thriller    134
## 20125 1986                                              Action|Romance    134
## 20136 1979                                            Action|Drama|War    134
## 20142 1987                                                   Drama|War    134
## 20143 1981                                            Action|Drama|War    134
## 20145 1989                                                   Drama|War    134
## 20146 1989                                                       Drama    134
## 20152 1987                                Action|Comedy|Fantasy|Horror    134
## 20153 1993                                      Comedy|Fantasy|Romance    134
## 20155 1986                                    Action|Adventure|Fantasy    134
## 20159 1989                                              Comedy|Romance    134
## 20166 1978                                      Comedy|Musical|Romance    134
## 20173 1997                                 Action|Crime|Drama|Thriller    134
## 20175 1997                                                Drama|Sci-Fi    134
## 20181 1997                                               Drama|Romance    134
## 20183 1998                              Action|Romance|Sci-Fi|Thriller    134
## 20191 1989                                   Action|Comedy|Crime|Drama    134
## 20194 1989                                     Adventure|Comedy|Sci-Fi    134
## 20195 1990                             Adventure|Comedy|Sci-Fi|Western    134
## 20196 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    134
## 20197 1989                                                      Comedy    134
## 20198 1984                                      Comedy|Fantasy|Romance    134
## 20205 1982                               Action|Horror|Sci-Fi|Thriller    134
## 20210 1998                         Adventure|Animation|Children|Comedy    134
## 20211 1998                                              Comedy|Romance    134
## 20216 1999                                              Comedy|Romance    134
## 20219 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    134
## 20229 1988                                Comedy|Drama|Fantasy|Romance    134
## 20242 1940                                                       Drama    134
## 20244 1999                 Adventure|Animation|Children|Comedy|Fantasy    134
## 20254 2000                                      Action|Adventure|Drama    134
## 20260 2000                                   Animation|Children|Comedy    134
## 20263 2000                                                      Comedy    134
## 20264 2000                                               Action|Comedy    134
## 20277 2001                 Adventure|Animation|Children|Comedy|Fantasy    134
## 20282 2001                                           Adventure|Fantasy    134
## 20291 2002                                           Adventure|Fantasy    134
## 20296 2003                         Adventure|Animation|Children|Comedy    134
## 20298 2003                                       Action|Crime|Thriller    134
## 20300 2003                             Action|Adventure|Comedy|Fantasy    134
## 20305 1979                                                  Comedy|War    134
## 20306 2003                              Action|Adventure|Drama|Fantasy    134
## 20308 2004                                      Comedy|Fantasy|Romance    134
## 20309 1987                              Children|Comedy|Fantasy|Sci-Fi    134
## 20315 2004                  Action|Adventure|Animation|Children|Comedy    134
## 20316 2004                               Drama|Horror|Mystery|Thriller    134
## 20318 2005                                           Action|Crime|IMAX    134
## 20331 2007                               Drama|Horror|Musical|Thriller    134
## 20333 2008                                     Action|Crime|Drama|IMAX    134
## 20337 2008                 Adventure|Animation|Children|Romance|Sci-Fi    134
## 20339 2008                                 Comedy|Drama|Musical|Sci-Fi    134
## 20340 2009                                                Comedy|Drama    134
## 20351 2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX    134
## 20356 2012                                 Action|Adventure|Crime|IMAX    134
## 20360 2012                                        Comedy|Drama|Romance    134
## 20362 2012                                         Action|Crime|Sci-Fi    134
## 20363 2004                 Action|Adventure|Comedy|Documentary|Fantasy    134
## 20365 1995                                   Action|Adventure|Thriller    135
## 20367 1995                          Action|Comedy|Crime|Drama|Thriller    135
## 20368 1995                                       Comedy|Crime|Thriller    135
## 20369 1995                                              Children|Drama    135
## 20370 1996                                                      Comedy    135
## 20371 1996                                                      Comedy    135
## 20372 1996                                                      Comedy    135
## 20374 1996                                                      Comedy    135
## 20375 1995                                                       Drama    135
## 20376 1996                                                      Comedy    135
## 20377 1996                                                    Thriller    135
## 20378 1996                           Action|Adventure|Romance|Thriller    135
## 20379 1996                                               Action|Sci-Fi    135
## 20380 1996                                                      Comedy    135
## 20381 1995                                          Adventure|Children    135
## 20382 1996                                                Comedy|Crime    135
## 20384 1996                                                      Comedy    135
## 20385 1996                            Action|Adventure|Sci-Fi|Thriller    135
## 20386 1955                                                       Drama    135
## 20392 1993                                                Comedy|Drama    136
## 20393 1990                                             Children|Comedy    136
## 20397 1942                                               Drama|Romance    136
## 20401 1983                                     Action|Adventure|Sci-Fi    136
## 20402 1993                                      Comedy|Fantasy|Romance    136
## 20404 1985                                                Comedy|Drama    136
## 20405 1977                                     Children|Comedy|Fantasy    136
## 20406 1967                                  Adventure|Children|Musical    136
## 20409 1989                             Action|Adventure|Children|Drama    136
## 20411 1988                                Comedy|Drama|Fantasy|Romance    136
## 20412 1988                                                Comedy|Drama    136
## 20414 1963                                    Adventure|Drama|Thriller    136
## 20415 1980                                                      Comedy    136
## 20418 2000                                             Children|Comedy    136
## 20421 2001                 Adventure|Animation|Children|Comedy|Fantasy    136
## 20428 2003                                                      Comedy    136
## 20430 1976                                                Comedy|Crime    136
## 20431 1993                                             Children|Comedy    136
## 20433 2004                                Action|Adventure|Sci-Fi|IMAX    136
## 20435 2005                            Action|Adventure|Children|Comedy    136
## 20440 1995                                  Adventure|Children|Fantasy    137
## 20447 1993                                              Children|Drama    137
## 20452 1937                    Animation|Children|Drama|Fantasy|Musical    137
## 20458 1939                          Adventure|Children|Fantasy|Musical    137
## 20460 1996                                          Adventure|Children    137
## 20463 1971                             Children|Comedy|Fantasy|Musical    137
## 20464 1973                                               Comedy|Sci-Fi    137
## 20468 1986                              Action|Adventure|Horror|Sci-Fi    137
## 20470 1979                                               Horror|Sci-Fi    137
## 20472 1979                                        Comedy|Drama|Romance    137
## 20476 1940                          Animation|Children|Fantasy|Musical    137
## 20479 1979                                                Comedy|Drama    137
## 20481 1996                                        Comedy|Drama|Romance    137
## 20485 1997                                        Comedy|Drama|Romance    137
## 20486 1997                           Adventure|Children|Comedy|Fantasy    137
## 20487 1982                                                      Horror    137
## 20492 1984                                            Adventure|Sci-Fi    137
## 20493 1959                                  Adventure|Children|Fantasy    137
## 20494 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    137
## 20496 1991                                     Action|Adventure|Sci-Fi    137
## 20498 1967                                  Adventure|Children|Musical    137
## 20499 1984                                  Adventure|Children|Fantasy    137
## 20500 1988                                              Comedy|Fantasy    137
## 20501 1998                                             Horror|Thriller    137
## 20503 1977                                                       Drama    137
## 20508 1980                                                      Comedy    137
## 20510 1999                                               Drama|Romance    137
## 20512 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    137
## 20514 1999                                        Drama|Romance|Sci-Fi    137
## 20517 1995                 Adventure|Animation|Children|Comedy|Fantasy    138
## 20523 1993                            Action|Adventure|Sci-Fi|Thriller    138
## 20525 1996                            Action|Adventure|Sci-Fi|Thriller    138
## 20533 1974                                                 Crime|Drama    138
## 20536 1997                                                Drama|Sci-Fi    138
## 20537 1998                                            Action|Drama|War    138
## 20538 1998                                                 Crime|Drama    138
## 20539 1999                                      Action|Sci-Fi|Thriller    138
## 20541 2000                                      Action|Adventure|Drama    138
## 20542 2000                                     Action|Adventure|Sci-Fi    138
## 20544 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    138
## 20545 2001                 Adventure|Animation|Children|Comedy|Fantasy    138
## 20546 2001                                           Adventure|Fantasy    138
## 20548 2002                            Action|Adventure|Sci-Fi|Thriller    138
## 20549 2002                         Action|Crime|Drama|Mystery|Thriller    138
## 20550 2002                                           Adventure|Fantasy    138
## 20551 2002                                           Adventure|Fantasy    138
## 20553 2002                       Action|Adventure|Crime|Drama|Thriller    138
## 20554 2003                            Action|Adventure|Sci-Fi|Thriller    138
## 20555 2003                         Adventure|Animation|Children|Comedy    138
## 20556 2003                             Action|Adventure|Comedy|Fantasy    138
## 20557 2003                              Action|Adventure|Drama|Fantasy    138
## 20559 2004         Adventure|Animation|Children|Comedy|Musical|Romance    138
## 20560 2004                                      Adventure|Fantasy|IMAX    138
## 20561 2004                                Action|Adventure|Sci-Fi|IMAX    138
## 20562 2004                  Action|Adventure|Animation|Children|Comedy    138
## 20564 2006                                      Drama|Romance|Thriller    138
## 20567 2007                                      Action|Adventure|Drama    138
## 20569 2008                                     Action|Adventure|Sci-Fi    138
## 20573 2010                                                       Drama    138
## 20575 2010                                                       Drama    138
## 20576 2011                               Action|Adventure|Fantasy|IMAX    138
## 20577 2011                                                      Comedy    138
## 20578 2011                                                       Drama    138
## 20579 2011                                        Comedy|Drama|Romance    138
## 20580 2011                                      Children|Drama|Mystery    138
## 20582 2012                                Action|Adventure|Sci-Fi|IMAX    138
## 20583 2012                                        Adventure|Drama|IMAX    138
## 20585 2013                                    Action|Drama|Horror|IMAX    138
## 20586 2013                                          Action|Sci-Fi|IMAX    138
## 20587 2013                                                       Drama    138
## 20588 2013                                                       Drama    138
## 20590 2014                                                Comedy|Drama    138
## 20592 2014                                                       Drama    138
## 20595 2015                            Action|Adventure|Sci-Fi|Thriller    138
## 20596 2015                                     Action|Adventure|Sci-Fi    138
## 20597 2015                                Action|Comedy|Fantasy|Sci-Fi    138
## 20598 1995                                            Action|Drama|War    139
## 20599 1994                                                 Crime|Drama    139
## 20604 1991                                               Action|Sci-Fi    139
## 20605 1996                                                      Comedy    139
## 20606 1996                                        Comedy|Drama|Romance    139
## 20607 1974                             Children|Comedy|Fantasy|Romance    139
## 20610 1971                                 Crime|Drama|Sci-Fi|Thriller    139
## 20613 1989                                                   Drama|War    139
## 20617 1997                                                      Comedy    139
## 20619 1997                                        Action|Comedy|Sci-Fi    139
## 20621 1997                                       Drama|Sci-Fi|Thriller    139
## 20623 1998                              Action|Romance|Sci-Fi|Thriller    139
## 20624 1983                                                Comedy|Drama    139
## 20626 1985                                                Comedy|Drama    139
## 20628 1984                                      Comedy|Fantasy|Romance    139
## 20629 1988                                              Comedy|Fantasy    139
## 20631 1992                                                      Comedy    139
## 20633 1998                                                Comedy|Drama    139
## 20634 1968                                         Action|Drama|Sci-Fi    139
## 20636 1999                                      Drama|Mystery|Thriller    139
## 20637 1980                                                      Comedy    139
## 20640 1986                                                      Comedy    139
## 20647 1979                                     Action|Adventure|Sci-Fi    139
## 20648 2000                                                Drama|Sci-Fi    139
## 20649 2001                                              Comedy|Romance    139
## 20651 2001                            Adventure|Comedy|Mystery|Romance    139
## 20652 1991                                        Comedy|Drama|Musical    139
## 20653 1965                                              Comedy|Musical    139
## 20654 1988                                               Comedy|Horror    139
## 20655 1982                                                      Comedy    139
## 20657 1983                                             Sci-Fi|Thriller    139
## 20659 2002                            Action|Adventure|Sci-Fi|Thriller    139
## 20660 1983                                                      Comedy    139
## 20667 1995                                  Adventure|Children|Fantasy    140
## 20668 1995                                                      Comedy    140
## 20669 1994                                               Comedy|Sci-Fi    140
## 20670 1995                                                      Comedy    140
## 20672 1994                                                      Comedy    140
## 20675 1993                             Action|Adventure|Comedy|Romance    140
## 20678 1987                     Action|Adventure|Comedy|Fantasy|Romance    140
## 20680 1997                                                      Comedy    140
## 20682 1998                                                 Crime|Drama    140
## 20684 1956                                       Drama|Musical|Romance    140
## 20685 1992                                                Comedy|Crime    140
## 20686 2000                                             Children|Comedy    140
## 20692 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    140
## 20693 2001                                 Adventure|Animation|Fantasy    140
## 20694 2002                                           Adventure|Fantasy    140
## 20696 2002                                        Comedy|Drama|Romance    140
## 20698 2003                                        Comedy|Drama|Romance    140
## 20701 2006                       Animation|Comedy|Drama|Romance|Sci-Fi    140
## 20702 2009                                                       Drama    140
## 20703 2010                                      Drama|Mystery|Thriller    140
## 20704 2010                                                       Drama    140
## 20705 2010      Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX    140
## 20706 2011                 Action|Adventure|Drama|Fantasy|Mystery|IMAX    140
## 20707 2012                                                       Drama    140
## 20708 2013                                        Comedy|Drama|Romance    140
## 20714 1994                                    Comedy|Drama|Romance|War    141
## 20716 1996                           Action|Adventure|Mystery|Thriller    141
## 20717 1996                                                    Thriller    141
## 20718 1983                                     Action|Adventure|Sci-Fi    141
## 20719 1997                            Action|Adventure|Sci-Fi|Thriller    141
## 20721 1998                                       Drama|Sci-Fi|Thriller    141
## 20723 1998                                            Action|Drama|War    141
## 20725 1999                                     Action|Adventure|Sci-Fi    141
## 20726 1999                                              Comedy|Romance    141
## 20727 1999                                 Action|Crime|Drama|Thriller    141
## 20729 1999                                                       Drama    141
## 20731 2000                                                      Sci-Fi    141
## 20732 2000                                              Drama|Thriller    141
## 20733 2000                                   Action|Adventure|Thriller    141
## 20735 2000                                              Drama|Thriller    141
## 20736 2000                                     Action|Adventure|Sci-Fi    141
## 20738 2000                                                       Drama    141
## 20742 2001                            Action|Adventure|Sci-Fi|Thriller    141
## 20744 1995                                        Adventure|Drama|IMAX    142
## 20745 1977                                     Action|Adventure|Sci-Fi    142
## 20746 1994                                 Comedy|Crime|Drama|Thriller    142
## 20747 1994                                                      Comedy    142
## 20748 1994                                    Comedy|Drama|Romance|War    142
## 20750 1954                                            Mystery|Thriller    142
## 20751 1960                                        Comedy|Drama|Romance    142
## 20753 1982                                       Children|Drama|Sci-Fi    142
## 20754 1975                                    Adventure|Comedy|Fantasy    142
## 20755 1980                                     Action|Adventure|Sci-Fi    142
## 20758 1979                               Drama|Horror|Mystery|Thriller    142
## 20759 1990                                              Action|Western    142
## 20761 1997                                   Action|Adventure|Thriller    142
## 20762 1982                                                      Horror    142
## 20763 1989                                     Adventure|Comedy|Sci-Fi    142
## 20764 1990                             Adventure|Comedy|Sci-Fi|Western    142
## 20765 1998                                            Action|Drama|War    142
## 20766 1987                                            Adventure|Comedy    142
## 20767 1986                                        Comedy|Drama|Romance    142
## 20768 1984                                                Comedy|Crime    142
## 20769 1977                                                       Drama    142
## 20770 1990                                               Comedy|Horror    142
## 20771 1980                                                      Comedy    142
## 20772 1986                             Adventure|Children|Comedy|Drama    142
## 20773 1979                                       Drama|Fantasy|Musical    142
## 20777 1993                                                       Drama    142
## 20779 1973                                                Comedy|Drama    142
## 20780 1978                                                      Comedy    142
## 20781 1977                                      Adventure|Drama|Sci-Fi    142
## 20782 1981                                              Comedy|Romance    142
## 20783 2000                                                       Drama    142
## 20784 1982                                                Comedy|Drama    142
## 20785 2001                               Action|Crime|Mystery|Thriller    142
## 20786 1980                                                Comedy|Crime    142
## 20787 1988                                                       Drama    142
## 20788 1989                                       Drama|Fantasy|Romance    142
## 20789 1989                                Action|Comedy|Crime|Thriller    142
## 20790 1989                                                Comedy|Crime    142
## 20791 1989                                                      Comedy    142
## 20792 1993                                            Adventure|Comedy    142
## 20793 1969                                      Comedy|Musical|Western    142
## 20794 1980                                                      Comedy    142
## 20795 2001                               Drama|Horror|Mystery|Thriller    142
## 20796 2001                                                      Horror    142
## 20797 1981                                                       Drama    142
## 20799 1971                                              Drama|Thriller    142
## 20801 1980                                                 Crime|Drama    142
## 20802 1980                                                      Comedy    142
## 20803 1980                                                       Drama    142
## 20806 1995                             Action|Adventure|Mystery|Sci-Fi    143
## 20807 1995                                         Action|Crime|Sci-Fi    143
## 20808 1994                                              Drama|Thriller    143
## 20811 1994                               Action|Crime|Fantasy|Thriller    143
## 20813 1994                                               Action|Comedy    143
## 20814 1994                                    Adventure|Comedy|Western    143
## 20815 1993                            Action|Adventure|Sci-Fi|Thriller    143
## 20816 1992                                                Action|Drama    143
## 20817 1993                                                   Drama|War    143
## 20820 1996                                              Crime|Thriller    143
## 20826 1990                              Crime|Drama|Film-Noir|Thriller    143
## 20828 1974                            Crime|Film-Noir|Mystery|Thriller    143
## 20830 1984                                                      Comedy    143
## 20833 1978                                      Comedy|Musical|Romance    143
## 20834 1996                                                      Comedy    143
## 20835 1997                                       Drama|Sci-Fi|Thriller    143
## 20839 1989                                     Adventure|Comedy|Sci-Fi    143
## 20840 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    143
## 20844 1999                                                      Comedy    143
## 20846 1999                                                       Drama    143
## 20848 1989                                                 Crime|Drama    143
## 20849 2000                                                       Drama    143
## 20851 2000                                        Crime|Drama|Thriller    143
## 20853 1983                                          Action|Crime|Drama    143
## 20855 2001                      Crime|Drama|Film-Noir|Mystery|Thriller    143
## 20857 2001                 Adventure|Animation|Children|Comedy|Fantasy    143
## 20862 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    143
## 20876 2005                                           Action|Crime|IMAX    143
## 20877 2005                                                Comedy|Drama    143
## 20880 2006                                      Action|Sci-Fi|Thriller    143
## 20882 1995                                       Comedy|Crime|Thriller    144
## 20884 1995                                              Comedy|Romance    144
## 20886 1995                                        Adventure|Drama|IMAX    144
## 20887 1995                               Action|Adventure|Comedy|Crime    144
## 20889 1995                                       Action|Crime|Thriller    144
## 20891 1994                                                Drama|Horror    144
## 20893 1994                                                       Drama    144
## 20894 1994                                       Action|Crime|Thriller    144
## 20895 1995                                Action|Drama|Sci-Fi|Thriller    144
## 20897 1994                                       Action|Drama|Thriller    144
## 20898 1994                                     Action|Adventure|Sci-Fi    144
## 20899 1994                                      Adventure|Drama|Sci-Fi    144
## 20901 1994                                                      Comedy    144
## 20903 1994                                    Comedy|Drama|Romance|War    144
## 20906 1994                    Action|Adventure|Comedy|Romance|Thriller    144
## 20907 1993                                     Children|Comedy|Fantasy    144
## 20908 1994                                Action|Comedy|Crime|Thriller    144
## 20909 1994                                    Adventure|Comedy|Western    144
## 20910 1993                                   Action|Adventure|Thriller    144
## 20914 1993                                                Comedy|Drama    144
## 20916 1993                                        Action|Drama|Western    144
## 20917 1992                 Adventure|Animation|Children|Comedy|Musical    144
## 20920 1989                                       Action|Crime|Thriller    144
## 20927 1995                                        Adventure|Drama|IMAX    145
## 20932 1995                                     Action|Adventure|Sci-Fi    145
## 20935 1994                                                Drama|Horror    145
## 20937 1994                                 Comedy|Crime|Drama|Thriller    145
## 20938 1994                                                       Drama    145
## 20941 1994                                      Adventure|Drama|Sci-Fi    145
## 20962 1995                               Action|Adventure|Comedy|Crime    146
## 20963 1995                                       Action|Crime|Thriller    146
## 20966 1994                                                      Comedy    146
## 20969 1994                                     Action|Romance|Thriller    146
## 20970 1994                    Action|Adventure|Comedy|Romance|Thriller    146
## 20971 1993                                               Comedy|Sci-Fi    146
## 20974 1996                                   Action|Adventure|Thriller    146
## 20976 1993                                                       Drama    146
## 20977 1993                                     Comedy|Romance|Thriller    146
## 20982 1996                           Action|Adventure|Romance|Thriller    146
## 20983 1996                            Action|Adventure|Sci-Fi|Thriller    146
## 20984 1982                                       Children|Drama|Sci-Fi    146
## 20990 1997                                              Comedy|Romance    146
## 20991 1997                                        Action|Comedy|Sci-Fi    146
## 20992 1997                                               Drama|Romance    146
## 20993 1998                                     Action|Adventure|Sci-Fi    146
## 20994 1998                                       Action|Comedy|Romance    146
## 20996 1992                                                      Comedy    146
## 20997 1986                                              Comedy|Western    146
## 20998 1999                                     Action|Adventure|Sci-Fi    146
## 21001 1999                                        Drama|Horror|Mystery    146
## 21003 1999                                 Action|Crime|Drama|Thriller    146
## 21004 1999                                 Action|Crime|Drama|Thriller    146
## 21005 1990                                               Drama|Mystery    146
## 21006 1992                                                Comedy|Crime    146
## 21010 2001                 Adventure|Animation|Children|Comedy|Fantasy    146
## 21012 2002                                Action|Adventure|Sci-Fi|IMAX    146
## 21014 2003                                        Comedy|Drama|Romance    146
## 21015 2003                                       Action|Crime|Thriller    146
## 21016 2004                                       Action|Drama|Thriller    146
## 21017 2004         Adventure|Animation|Children|Comedy|Musical|Romance    146
## 21019 2005                                     Action|Adventure|Sci-Fi    146
## 21020 2005                                           Action|Crime|IMAX    146
## 21023 2006                                   Action|Adventure|Thriller    146
## 21024 2007                                     Action|Fantasy|War|IMAX    146
## 21025 2007                                        Comedy|Drama|Romance    146
## 21027 2008                                     Action|Adventure|Sci-Fi    146
## 21028 1920                                   Adventure|Romance|Western    146
## 21030 1991                        Adventure|Animation|Children|Musical    146
## 21032 2009                                              Action|Romance    146
## 21035 1995                                               Drama|Romance    147
## 21037 1994                                               Drama|Romance    147
## 21042 1985                                              Fantasy|Sci-Fi    147
## 21044 1997                                     Action|Romance|Thriller    147
## 21046 1997                                                      Comedy    147
## 21052 1998                                               Drama|Mystery    147
## 21058 1979                           Adventure|Children|Comedy|Musical    147
## 21059 2000                                        Comedy|Drama|Romance    147
## 21066 2005                                              Comedy|Romance    147
## 21071 1995                      Adventure|Drama|Fantasy|Mystery|Sci-Fi    148
## 21076 1995                          Action|Comedy|Crime|Drama|Thriller    148
## 21077 1995                                      Action|Sci-Fi|Thriller    148
## 21078 1995                                       Action|Crime|Thriller    148
## 21083 1993                                              Comedy|Mystery    148
## 21084 1995                                                      Comedy    148
## 21086 1991                                               Action|Sci-Fi    148
## 21087 1990                                     Adventure|Drama|Western    148
## 21090 1996                            Action|Adventure|Sci-Fi|Thriller    148
## 21096 1950                                                      Comedy    148
## 21097 1934                                                Comedy|Crime    148
## 21100 1992                               Action|Horror|Sci-Fi|Thriller    148
## 21108 1990                               Action|Crime|Romance|Thriller    148
## 21110 1980                                                      Horror    148
## 21111 1987                                Action|Comedy|Fantasy|Horror    148
## 21117 1996                                        Action|Comedy|Sci-Fi    148
## 21121 1997                            Action|Adventure|Sci-Fi|Thriller    148
## 21123 1997                                                Drama|Sci-Fi    148
## 21128 1997                                               Action|Sci-Fi    148
## 21129 1997                                        Action|Horror|Sci-Fi    148
## 21132 1998                                             Sci-Fi|Thriller    148
## 21133 1998                        Action|Crime|Mystery|Sci-Fi|Thriller    148
## 21137 1992                                      Children|Comedy|Sci-Fi    148
## 21147 1999                                     Action|Adventure|Sci-Fi    148
## 21148 1999                                              Comedy|Romance    148
## 21151 1990                                Action|Crime|Sci-Fi|Thriller    148
## 21154 1999                                      Drama|Mystery|Thriller    148
## 21156 1992                                Crime|Drama|Mystery|Thriller    148
## 21158 1991                                      Drama|Mystery|Thriller    148
## 21167 2000                                               Action|Comedy    148
## 21169 1981                                     Fantasy|Horror|Thriller    148
## 21172 2001                                            Adventure|Comedy    148
## 21174 2001                      Crime|Drama|Film-Noir|Mystery|Thriller    148
## 21179 2001                                        Comedy|Drama|Mystery    148
## 21188 2002                                        Comedy|Drama|Romance    148
## 21189 2002                                Action|Drama|Sci-Fi|Thriller    148
## 21192 2002                                                 Crime|Drama    148
## 21197 1971                                              Mystery|Sci-Fi    148
## 21198 2003                            Action|Adventure|Sci-Fi|Thriller    148
## 21203 1995                 Adventure|Animation|Children|Comedy|Fantasy    149
## 21204 1995                                              Comedy|Romance    149
## 21205 1995                                            Mystery|Thriller    149
## 21206 1995                                      Crime|Mystery|Thriller    149
## 21207 1996                                                      Comedy    149
## 21209 1994                                                Drama|Horror    149
## 21210 1977                                     Action|Adventure|Sci-Fi    149
## 21214 1993                                                       Drama    149
## 21215 1994                                    Comedy|Drama|Romance|War    149
## 21216 1993                            Action|Adventure|Sci-Fi|Thriller    149
## 21217 1982                                      Action|Sci-Fi|Thriller    149
## 21218 1990                                             Children|Comedy    149
## 21219 1991                                       Crime|Horror|Thriller    149
## 21220 1981                    Action|Adventure|Animation|Horror|Sci-Fi    149
## 21221 1996                            Action|Adventure|Sci-Fi|Thriller    149
## 21222 1959                   Action|Adventure|Mystery|Romance|Thriller    149
## 21224 1986                                                   Drama|War    149
## 21225 1955                                                       Drama    149
## 21226 1975                                                       Drama    149
## 21227 1987                     Action|Adventure|Comedy|Fantasy|Romance    149
## 21228 1987                                                   Drama|War    149
## 21229 1977                                              Comedy|Romance    149
## 21232 1985                                     Adventure|Comedy|Sci-Fi    149
## 21233 1988                           Action|Adventure|Animation|Sci-Fi    149
## 21234 1984                                             Horror|Thriller    149
## 21238 1997                                               Action|Sci-Fi    149
## 21239 1998                                         Comedy|Drama|Sci-Fi    149
## 21241 1998                                                Comedy|Crime    149
## 21243 1978                                                      Horror    149
## 21244 1982                                             Horror|Thriller    149
## 21248 1990                                       Drama|Fantasy|Romance    149
## 21250 1998                                                       Drama    149
## 21251 1999                                              Comedy|Romance    149
## 21252 1999                                                       Drama    149
## 21253 1999                                      Action|Sci-Fi|Thriller    149
## 21256 1999                                              Comedy|Romance    149
## 21258 1980                                                      Comedy    149
## 21259 1999                                               Drama|Romance    149
## 21263 1999                                        Comedy|Drama|Fantasy    149
## 21264 1997                    Action|Adventure|Animation|Drama|Fantasy    149
## 21265 1983                                                      Comedy    149
## 21266 1999                                                 Crime|Drama    149
## 21268 2000                                              Drama|Thriller    149
## 21269 2000                               Crime|Horror|Mystery|Thriller    149
## 21271 2000                                                      Comedy    149
## 21273 2000                                                       Drama    149
## 21274 2000                                                       Drama    149
## 21275 2000                                                      Comedy    149
## 21276 1987                                                      Comedy    149
## 21278 2000                                               Drama|Romance    149
## 21279 2000                 Adventure|Animation|Children|Comedy|Fantasy    149
## 21282 1983                                          Action|Crime|Drama    149
## 21283 2001                                       Action|Comedy|Romance    149
## 21285 1989                                    Animation|Comedy|Musical    149
## 21286 2001                                                Comedy|Drama    149
## 21290 2001                 Adventure|Animation|Children|Comedy|Fantasy    149
## 21291 2001                                  Adventure|Children|Fantasy    149
## 21292 2001                                              Comedy|Romance    149
## 21293 2001                                                      Comedy    149
## 21294 2002                                                      Comedy    149
## 21296 2002                                     Horror|Mystery|Thriller    149
## 21297 2002                                      Action|Sci-Fi|Thriller    149
## 21298 1988                            Animation|Children|Drama|Fantasy    149
## 21300 2003                                     Children|Comedy|Fantasy    149
## 21303 2003                              Action|Adventure|Drama|Fantasy    149
## 21304 2004                                                      Comedy    149
## 21305 2004                                        Drama|Romance|Sci-Fi    149
## 21307 2004                                       Action|Drama|Thriller    149
## 21309 2004                                                      Comedy    149
## 21310 2004                                        Comedy|Drama|Romance    149
## 21311 2004                            Action|Adventure|Sci-Fi|Thriller    149
## 21312 2004                                        Comedy|Drama|Romance    149
## 21313 2004                                               Comedy|Horror    149
## 21314 2004                           Action|Adventure|Animation|Comedy    149
## 21316 2003                                            Mystery|Thriller    149
## 21317 2004                                                       Drama    149
## 21320 2005                             Action|Adventure|Comedy|Romance    149
## 21321 2005                            Action|Adventure|Sci-Fi|Thriller    149
## 21322 2005                                              Comedy|Romance    149
## 21324 2005                                              Comedy|Romance    149
## 21331 2006                                    Action|Adventure|Fantasy    149
## 21332 2006                                      Adventure|Comedy|Drama    149
## 21333 2006                                Comedy|Drama|Fantasy|Romance    149
## 21335 2006                                      Drama|Fantasy|Thriller    149
## 21336 2006                                        Crime|Drama|Thriller    149
## 21337 2006                               Drama|Mystery|Sci-Fi|Thriller    149
## 21339 2007                                    Animation|Children|Drama    149
## 21340 2007                                     Action|Fantasy|War|IMAX    149
## 21341 2007                         Action|Crime|Horror|Sci-Fi|Thriller    149
## 21344 2007                                                      Comedy    149
## 21345 2007                                        Action|Horror|Sci-Fi    149
## 21349 2008                                              Comedy|Romance    149
## 21351 2008                                 Action|Crime|Drama|Thriller    149
## 21352 2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX    149
## 21354 2008                              Adventure|Comedy|Drama|Romance    149
## 21355 2008                                         Crime|Drama|Romance    149
## 21356 2008                              Drama|Fantasy|Romance|Thriller    149
## 21357 2008                                                 Crime|Drama    149
## 21359 2008                        Adventure|Animation|Children|Fantasy    149
## 21362 2009                                            Action|Drama|War    149
## 21363 2009                          Adventure|Animation|Children|Drama    149
## 21364 2009                                        Comedy|Drama|Romance    149
## 21365 2009                                     Mystery|Sci-Fi|Thriller    149
## 21366 2009                                        Action|Comedy|Horror    149
## 21367 2009                                      Animation|Comedy|Drama    149
## 21368 2009                                Action|Adventure|Sci-Fi|IMAX    149
## 21369 2010                                      Drama|Mystery|Thriller    149
## 21370 2010                   Adventure|Animation|Children|Fantasy|IMAX    149
## 21371 2010                                               Action|Comedy    149
## 21373 2010                             Animation|Children|Comedy|Crime    149
## 21377 2010                                              Comedy|Romance    149
## 21378 2010                                        Drama|Romance|Sci-Fi    149
## 21381 2010                                                       Drama    149
## 21388 2011                                                       Drama    149
## 21389 2012                                Action|Adventure|Sci-Fi|IMAX    149
## 21390 2011                                                Comedy|Drama    149
## 21393 2011                                      Children|Drama|Mystery    149
## 21396 2011              Action|Adventure|Comedy|Crime|Mystery|Thriller    149
## 21399 2012                                        Comedy|Drama|Romance    149
## 21403 2012                                      Adventure|Fantasy|IMAX    149
## 21404 2012                                        Action|Drama|Western    149
## 21406 2013                                    Action|Drama|Horror|IMAX    149
## 21410 2013                                                       Drama    149
## 21419 2014                                                       Drama    149
## 21420 2014                                     Action|Adventure|Sci-Fi    149
## 21421 2014                                       Action|Mystery|Sci-Fi    149
## 21422 2014                              Action|Mystery|Sci-Fi|Thriller    149
## 21428 2014                                  Animation|Children|Fantasy    149
## 21429 2014                                                 Documentary    149
## 21431 2015                            Action|Adventure|Sci-Fi|Thriller    149
## 21432 2015                                                 Documentary    149
## 21434 1995                 Adventure|Animation|Children|Comedy|Fantasy    150
## 21435 1995                                  Adventure|Children|Fantasy    150
## 21436 1995                                                      Comedy    150
## 21438 1995                                                      Comedy    150
## 21439 1995                                       Comedy|Crime|Thriller    150
## 21440 1995                                       Action|Crime|Thriller    150
## 21442 1995                                                       Drama    150
## 21443 1995                                              Comedy|Romance    150
## 21444 1995                                    Action|Adventure|Fantasy    150
## 21445 1995                                       Comedy|Drama|Thriller    150
## 21447 1995                                  Adventure|Children|Fantasy    150
## 21448 1995                                                      Comedy    150
## 21449 1996                               Action|Comedy|Horror|Thriller    150
## 21450 1995                                                      Action    150
## 21451 1996                                   Action|Adventure|Thriller    150
## 21455 1995                          Action|Comedy|Crime|Drama|Thriller    150
## 21456 1995                               Action|Adventure|Comedy|Crime    150
## 21457 1995                                       Action|Crime|Thriller    150
## 21458 1995                             Action|Adventure|Crime|Thriller    150
## 21459 1995                                      Action|Sci-Fi|Thriller    150
## 21460 1995                                                      Comedy    150
## 21461 1995                                              Comedy|Romance    150
## 21462 1995                                       Action|Crime|Thriller    150
## 21463 1995                                               Horror|Sci-Fi    150
## 21464 1995                                     Action|Adventure|Sci-Fi    150
## 21466 1994                                             Action|Thriller    150
## 21467 1994                                            Adventure|Comedy    150
## 21468 1994                                               Comedy|Sci-Fi    150
## 21470 1994                                       Action|Crime|Thriller    150
## 21471 1995                                Action|Drama|Sci-Fi|Thriller    150
## 21475 1995                                        Action|Comedy|Sci-Fi    150
## 21476 1995                                                      Comedy    150
## 21477 1995                                              Comedy|Romance    150
## 21478 1994                                                      Comedy    150
## 21479 1994                                                      Comedy    150
## 21482 1994             Adventure|Animation|Children|Drama|Musical|IMAX    150
## 21483 1994                                 Action|Comedy|Crime|Fantasy    150
## 21485 1994                                     Action|Romance|Thriller    150
## 21487 1994                                    Adventure|Comedy|Western    150
## 21488 1993                                               Comedy|Sci-Fi    150
## 21489 1993                                     Action|Adventure|Sci-Fi    150
## 21491 1993                            Action|Adventure|Sci-Fi|Thriller    150
## 21492 1993                                                Comedy|Drama    150
## 21493 1993                                                       Drama    150
## 21494 1993                                                      Comedy    150
## 21495 1993                                        Comedy|Drama|Romance    150
## 21496 1982                                      Action|Sci-Fi|Thriller    150
## 21497 1993                                                Action|Crime    150
## 21498 1994                                     Action|Mystery|Thriller    150
## 21499 1990                                             Children|Comedy    150
## 21500 1992                 Adventure|Animation|Children|Comedy|Musical    150
## 21501 1991                                               Action|Sci-Fi    150
## 21502 1990                                     Adventure|Drama|Western    150
## 21503 1989                                       Action|Crime|Thriller    150
## 21504 1996                           Action|Adventure|Mystery|Thriller    150
## 21505 1996                                   Action|Adventure|Thriller    150
## 21508 1996                                             Comedy|Thriller    150
## 21509 1996                                                      Comedy    150
## 21510 1996                                       Action|Drama|Thriller    150
## 21511 1996                               Comedy|Fantasy|Romance|Sci-Fi    150
## 21512 1996                                      Comedy|Horror|Thriller    150
## 21514 1996                                            Action|Adventure    150
## 21515 1996                                      Comedy|Fantasy|Musical    150
## 21516 1996                                              Crime|Thriller    150
## 21517 1996                                   Action|Adventure|Thriller    150
## 21518 1996                                        Comedy|Drama|Romance    150
## 21519 1972                                                 Crime|Drama    150
## 21521 1996                                             Children|Comedy    150
## 21522 1993                                                      Comedy    150
## 21525 1996                                       Action|Drama|Thriller    150
## 21526 1996                                                    Thriller    150
## 21527 1996           Animation|Children|Comedy|Fantasy|Musical|Romance    150
## 21528 1971                             Children|Comedy|Fantasy|Musical    150
## 21529 1982                                       Children|Drama|Sci-Fi    150
## 21530 1991                                              Comedy|Fantasy    150
## 21534 1984                                      Action|Sci-Fi|Thriller    150
## 21535 1989                                                       Drama    150
## 21537 1993                                      Comedy|Fantasy|Romance    150
## 21541 1990                                   Action|Adventure|Thriller    150
## 21542 1979                                            Adventure|Sci-Fi    150
## 21543 1989                                               Action|Sci-Fi    150
## 21544 1982                            Action|Adventure|Sci-Fi|Thriller    150
## 21545 1984                                     Action|Adventure|Sci-Fi    150
## 21546 1986                                     Adventure|Comedy|Sci-Fi    150
## 21547 1992                                                Action|Crime    150
## 21548 1996                                        Action|Comedy|Sci-Fi    150
## 21549 1996                                               Drama|Romance    150
## 21551 1996                            Adventure|Animation|Comedy|Crime    150
## 21552 1996                              Comedy|Horror|Mystery|Thriller    150
## 21553 1996                                Comedy|Drama|Fantasy|Romance    150
## 21554 1996                            Action|Adventure|Comedy|Thriller    150
## 21555 1997                                                      Comedy    150
## 21556 1997                                        Comedy|Crime|Romance    150
## 21557 1997                                       Action|Drama|Thriller    150
## 21558 1997                                     Action|Adventure|Comedy    150
## 21559 1997                                             Action|Thriller    150
## 21561 1997                            Action|Adventure|Sci-Fi|Thriller    150
## 21562 1997                                   Action|Adventure|Thriller    150
## 21564 1997                                        Action|Comedy|Sci-Fi    150
## 21566 1997                                             Children|Comedy    150
## 21568 1997                              Drama|Mystery|Romance|Thriller    150
## 21569 1997                                             Action|Thriller    150
## 21571 1997                                         Action|Thriller|War    150
## 21572 1997                            Crime|Film-Noir|Mystery|Thriller    150
## 21575 1997                                                Comedy|Drama    150
## 21576 1997                                     Horror|Mystery|Thriller    150
## 21578 1997                                       Drama|Sci-Fi|Thriller    150
## 21579 1997                                                       Drama    150
## 21580 1997                                                       Drama    150
## 21581 1997                                               Action|Sci-Fi    150
## 21582 1998                                         Comedy|Drama|Sci-Fi    150
## 21586 1998                                                Comedy|Crime    150
## 21587 1998                                                      Comedy    150
## 21589 1998                                       Action|Crime|Thriller    150
## 21591 1997                                        Comedy|Drama|Romance    150
## 21592 1998                                       Action|Crime|Thriller    150
## 21593 1998                                     Action|Adventure|Sci-Fi    150
## 21594 1998                                       Action|Drama|Thriller    150
## 21596 1998                                                    Thriller    150
## 21597 1998                                    Adventure|Comedy|Romance    150
## 21598 1998                                        Comedy|Drama|Romance    150
## 21599 1998                        Action|Crime|Mystery|Sci-Fi|Thriller    150
## 21601 1998                                Action|Comedy|Crime|Thriller    150
## 21602 1998                                              Comedy|Romance    150
## 21604 1988                                                       Drama    150
## 21605 1986                                   Adventure|Fantasy|Musical    150
## 21606 1987                                   Action|Comedy|Crime|Drama    150
## 21607 1989                                   Action|Comedy|Crime|Drama    150
## 21608 1992                                   Action|Comedy|Crime|Drama    150
## 21609 1990                                               Comedy|Horror    150
## 21610 1985                    Action|Adventure|Children|Comedy|Fantasy    150
## 21614 1994                                             Children|Comedy    150
## 21615 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    150
## 21616 1998                         Action|Crime|Drama|Mystery|Thriller    150
## 21617 1992                                             Children|Comedy    150
## 21618 1983                                                       Drama    150
## 21621 1992                                              Comedy|Fantasy    150
## 21622 1998                                Action|Comedy|Crime|Thriller    150
## 21623 1998                 Adventure|Animation|Children|Comedy|Fantasy    150
## 21624 1998                                        Comedy|Drama|Fantasy    150
## 21625 1998                                             Action|Thriller    150
## 21627 1998                                     Horror|Mystery|Thriller    150
## 21629 1998                         Adventure|Animation|Children|Comedy    150
## 21630 1985                                   Action|Adventure|Thriller    150
## 21631 1998                                        Comedy|Drama|Romance    150
## 21632 1984                                                       Drama    150
## 21633 1986                                      Action|Adventure|Drama    150
## 21634 1989                             Action|Adventure|Children|Drama    150
## 21635 1998                                              Comedy|Romance    150
## 21636 1999                                              Comedy|Romance    150
## 21637 1999                                             Action|Thriller    150
## 21638 1999                                              Comedy|Romance    150
## 21639 1999                                                Comedy|Crime    150
## 21640 1999                                      Drama|Mystery|Thriller    150
## 21641 1999                                                       Drama    150
## 21642 1999                                                      Comedy    150
## 21644 1999                                              Comedy|Romance    150
## 21645 1999                                                Comedy|Crime    150
## 21646 1999                                              Crime|Thriller    150
## 21648 1999                                     Action|Adventure|Sci-Fi    150
## 21649 1978                                     Action|Adventure|Sci-Fi    150
## 21650 1999                                     Action|Adventure|Comedy    150
## 21651 1999                                                      Comedy    150
## 21652 1999                                Action|Comedy|Sci-Fi|Western    150
## 21653 1999                                              Comedy|Romance    150
## 21654 1999                                                    Thriller    150
## 21655 1984                                        Action|Comedy|Sci-Fi    150
## 21656 1999                               Action|Horror|Sci-Fi|Thriller    150
## 21658 1999                                              Action|Mystery    150
## 21659 1999                                                      Comedy    150
## 21660 1988                                Comedy|Drama|Fantasy|Romance    150
## 21661 1999                                               Drama|Romance    150
## 21663 1990                            Action|Adventure|Sci-Fi|Thriller    150
## 21665 1964                                   Action|Adventure|Thriller    150
## 21666 1963                                   Action|Adventure|Thriller    150
## 21667 1962                                   Action|Adventure|Thriller    150
## 21668 1992                                             Children|Comedy    150
## 21669 1999                                 Action|Crime|Drama|Thriller    150
## 21670 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    150
## 21671 1981                                   Action|Adventure|Thriller    150
## 21672 1989                                   Action|Adventure|Thriller    150
## 21673 1973                                   Action|Adventure|Thriller    150
## 21674 1965                                   Action|Adventure|Thriller    150
## 21675 1999                                        Comedy|Drama|Fantasy    150
## 21676 1999                                                    Thriller    150
## 21677 1983                                                      Comedy    150
## 21678 1999                                    Adventure|Comedy|Fantasy    150
## 21680 1999                                                      Comedy    150
## 21683 1993                                               Action|Comedy    150
## 21684 1992                                                      Comedy    150
## 21685 1993                                                      Comedy    150
## 21687 1992                                        Comedy|Drama|Romance    150
## 21688 2000                                                Comedy|Crime    150
## 21689 2000                                             Action|Thriller    150
## 21690 2000                                                       Drama    150
## 21692 1993                                              Comedy|Fantasy    150
## 21693 1995                                                Comedy|Drama    150
## 21694 1999                                                       Drama    150
## 21695 2000                                              Drama|Thriller    150
## 21696 2000                                                       Drama    150
## 21697 2000                                        Comedy|Drama|Romance    150
## 21700 2000                                   Action|Adventure|Thriller    150
## 21701 1977                                   Action|Adventure|Thriller    150
## 21702 1979                            Action|Adventure|Sci-Fi|Thriller    150
## 21703 1974                                   Action|Adventure|Thriller    150
## 21704 1987                                               Action|Sci-Fi    150
## 21705 2000                                            Action|Drama|War    150
## 21707 2000                                        Drama|Horror|Mystery    150
## 21708 2000                                                      Comedy    150
## 21709 2000                                                      Comedy    150
## 21710 2000                                       Drama|Horror|Thriller    150
## 21714 1960                                     Action|Adventure|Sci-Fi    150
## 21715 2000                                                Comedy|Drama    150
## 21716 2000                                               Action|Comedy    150
## 21717 1971                                   Action|Adventure|Thriller    150
## 21718 2000                                                Drama|Sci-Fi    150
## 21719 2000                                                       Drama    150
## 21720 2000                                              Comedy|Romance    150
## 21721 2000                                                    Thriller    150
## 21722 2000                                        Comedy|Drama|Romance    150
## 21723 2000                                                Comedy|Crime    150
## 21724 2000                                      Adventure|Comedy|Crime    150
## 21725 1991                                                      Comedy    150
## 21726 2001                                              Comedy|Romance    150
## 21727 2001                                      Comedy|Fantasy|Romance    150
## 21728 1984                                                      Comedy    150
## 21729 2001                                                   Drama|War    150
## 21731 2000                                            Mystery|Thriller    150
## 21732 2001                                        Comedy|Crime|Romance    150
## 21733 2001                                              Comedy|Romance    150
## 21734 2001                               Action|Crime|Mystery|Thriller    150
## 21735 2001                                             Action|Thriller    150
## 21736 1991                                              Comedy|Western    150
## 21737 2001                                               Comedy|Sci-Fi    150
## 21739 1991                                       Action|Crime|Thriller    150
## 21740 2001                                       Action|Crime|Thriller    150
## 21741 2001                                                Action|Drama    150
## 21743 1986                                               Comedy|Sci-Fi    150
## 21744 1989                                     Adventure|Comedy|Sci-Fi    150
## 21745 1989                                                       Drama    150
## 21746 2001                            Action|Adventure|Sci-Fi|Thriller    150
## 21747 2001                                               Action|Comedy    150
## 21749 2001                                           Drama|Romance|War    150
## 21750 2001                                            Adventure|Comedy    150
## 21751 2001                                        Comedy|Drama|Musical    150
## 21752 2001                                                    Thriller    150
## 21754 2001                                                      Action    150
## 21756 2001                                  Adventure|Children|Fantasy    150
## 21757 2001                                 Action|Crime|Drama|Thriller    150
## 21758 1990                                    Adventure|Drama|Thriller    150
## 21760 1991                             Adventure|Comedy|Fantasy|Sci-Fi    150
## 21762 2001                                            Action|Drama|War    150
## 21763 2002                                                      Comedy    150
## 21764 2001                                               Drama|Romance    150
## 21765 2002                                             Action|Thriller    150
## 21766 2002                                     Action|Adventure|Sci-Fi    150
## 21767 2002                               Action|Horror|Sci-Fi|Thriller    150
## 21768 2002                                                    Thriller    150
## 21769 2002                                                      Comedy    150
## 21770 2002                                              Crime|Thriller    150
## 21771 2002                            Action|Adventure|Sci-Fi|Thriller    150
## 21772 2002                                        Comedy|Drama|Romance    150
## 21773 2002                                Action|Adventure|Sci-Fi|IMAX    150
## 21776 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    150
## 21777 2002                                              Comedy|Romance    150
## 21778 2002                                        Action|Comedy|Sci-Fi    150
## 21779 2002                                      Horror|Sci-Fi|Thriller    150
## 21780 2002                                                Action|Crime    150
## 21781 2002                                           Adventure|Fantasy    150
## 21784 2002                                                 Crime|Drama    150
## 21785 2003                                             Action|Thriller    150
## 21787 2003                                Drama|Horror|Sci-Fi|Thriller    150
## 21788 2003                                Action|Drama|Sci-Fi|Thriller    150
## 21789 2003                                                      Comedy    150
## 21791 2003                                     Action|Adventure|Sci-Fi    150
## 21792 2003                                              Crime|Thriller    150
## 21793 2003                               Crime|Horror|Mystery|Thriller    150
## 21794 2003                            Action|Adventure|Sci-Fi|Thriller    150
## 21796 2003                                Comedy|Drama|Fantasy|Romance    150
## 21798 2003                                       Action|Crime|Thriller    150
## 21800 2003                                     Action|Adventure|Sci-Fi    150
## 21802 2003                                       Action|Fantasy|Sci-Fi    150
## 21803 2003                                          Comedy|Crime|Drama    150
## 21805 2003                                     Action|Adventure|Comedy    150
## 21807 2003                                     Children|Comedy|Fantasy    150
## 21808 1991                                                      Comedy    150
## 21809 1991                                              Comedy|Romance    150
## 21811 2004                                              Comedy|Romance    150
## 21814 2004                                Action|Comedy|Crime|Thriller    150
## 21816 2004                                Action|Drama|Horror|Thriller    150
## 21817 2004                                         Action|Comedy|Crime    150
## 21819 1967                            Action|Adventure|Sci-Fi|Thriller    150
## 21820 1983                                   Action|Adventure|Thriller    150
## 21821 1983                                   Action|Adventure|Thriller    150
## 21823 2004                                      Adventure|Fantasy|IMAX    150
## 21825 1990                                            Action|Drama|War    150
## 21827 1987                                              Comedy|Romance    150
## 21830 2004                                               Comedy|Horror    150
## 21832 2004                      Action|Adventure|Comedy|Crime|Thriller    150
## 21834 2001                               Drama|Horror|Mystery|Thriller    150
## 21835 2004                                        Comedy|Drama|Romance    150
## 21836 2005                                              Drama|Thriller    150
## 21838 2005                            Action|Adventure|Sci-Fi|Thriller    150
## 21849 1995                                                      Comedy    151
## 21852 1995                                              Children|Drama    151
## 21853 1995                                              Comedy|Romance    151
## 21855 1995                                      Crime|Mystery|Thriller    151
## 21856 1996                                   Action|Adventure|Thriller    151
## 21859 1995                               Action|Adventure|Comedy|Crime    151
## 21860 1995                             Action|Adventure|Mystery|Sci-Fi    151
## 21863 1995                                         Action|Crime|Sci-Fi    151
## 21864 1995                                       Action|Crime|Thriller    151
## 21866 1994                                              Drama|Thriller    151
## 21868 1994                                                Drama|Horror    151
## 21869 1994                                   Drama|Romance|War|Western    151
## 21873 1994                                                       Drama    151
## 21874 1994                                       Action|Drama|Thriller    151
## 21876 1994                                        Comedy|Drama|Fantasy    151
## 21878 1995                                              Comedy|Romance    151
## 21879 1994                                                      Comedy    151
## 21885 1994                                 Action|Comedy|Crime|Fantasy    151
## 21888 1993                                     Children|Comedy|Fantasy    151
## 21889 1994                                Action|Comedy|Crime|Thriller    151
## 21890 1994                                    Adventure|Comedy|Western    151
## 21893 1993                                              Comedy|Romance    151
## 21900 1993                                               Drama|Romance    151
## 21902 1993                                        Comedy|Drama|Romance    151
## 21903 1993                                        Action|Drama|Western    151
## 21905 1992                 Adventure|Animation|Children|Comedy|Musical    151
## 21907 1990                                     Adventure|Drama|Western    151
## 21908 1989                                       Action|Crime|Thriller    151
## 21909 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    151
## 21910 1990                                              Comedy|Romance    151
## 21911 1995                 Adventure|Animation|Children|Comedy|Fantasy    152
## 21913 1995                                   Action|Adventure|Thriller    152
## 21914 1995                                       Comedy|Crime|Thriller    152
## 21915 1995                                               Drama|Romance    152
## 21919 1996                                   Action|Adventure|Thriller    152
## 21920 1995                                            Action|Drama|War    152
## 21921 1976                                        Crime|Drama|Thriller    152
## 21922 1996                                                      Comedy    152
## 21923 1995                                        Adventure|Drama|IMAX    152
## 21925 1995                                       Action|Crime|Thriller    152
## 21926 1995                                     Action|Adventure|Sci-Fi    152
## 21927 1994                                            Adventure|Comedy    152
## 21928 1994                                                Drama|Horror    152
## 21930 1994                                       Action|Crime|Thriller    152
## 21935 1994                                 Action|Crime|Drama|Thriller    152
## 21936 1994                                    Comedy|Drama|Romance|War    152
## 21937 1994                                              Comedy|Romance    152
## 21939 1994                                     Action|Romance|Thriller    152
## 21940 1994                    Action|Adventure|Comedy|Romance|Thriller    152
## 21941 1993                                   Action|Adventure|Thriller    152
## 21942 1993                                              Drama|Thriller    152
## 21944 1993                            Action|Adventure|Sci-Fi|Thriller    152
## 21945 1993                                                Comedy|Drama    152
## 21947 1990                                             Children|Comedy    152
## 21948 1990                       Comedy|Drama|Fantasy|Romance|Thriller    152
## 21949 1990                                     Adventure|Drama|Western    152
## 21951 1990                                              Comedy|Romance    152
## 21953 1996                                   Action|Adventure|Thriller    152
## 21954 1996                           Action|Adventure|Romance|Thriller    152
## 21955 1964                                                  Comedy|War    152
## 21956 1996                                          Comedy|Crime|Drama    152
## 21959 1954                                      Adventure|Drama|Sci-Fi    152
## 21960 1988                                       Action|Crime|Thriller    152
## 21961 1992                                      Crime|Mystery|Thriller    152
## 21962 1986                                                   Drama|War    152
## 21963 1982                                       Children|Drama|Sci-Fi    152
## 21966 1975                                                       Drama    152
## 21968 1981                                            Action|Adventure    152
## 21970 1971                                 Crime|Drama|Sci-Fi|Thriller    152
## 21973 1987                                                   Drama|War    152
## 21974 1984                                      Action|Sci-Fi|Thriller    152
## 21975 1978                                                   Drama|War    152
## 21977 1985                                     Adventure|Comedy|Sci-Fi    152
## 21978 1970                                                   Drama|War    152
## 21979 1986                                               Drama|Romance    152
## 21980 1997                                                Comedy|Drama    152
## 21981 1997                                        Comedy|Crime|Romance    152
## 21982 1997                                     Action|Adventure|Comedy    152
## 21983 1997                              Action|Adventure|Comedy|Sci-Fi    152
## 21986 1997                                                       Drama    152
## 21988 1998                                               Drama|Romance    152
## 21989 1998                                         Comedy|Drama|Sci-Fi    152
## 21990 1997                                               Drama|Romance    152
## 21991 1997                                               Drama|Romance    152
## 21994 1988                                                       Drama    152
## 21996 1997                                    Comedy|Drama|Romance|War    152
## 21997 1998                                        Comedy|Drama|Romance    152
## 21998 1998                                                Comedy|Drama    152
## 22001 1999                                     Action|Adventure|Comedy    152
## 22002 1999                                              Comedy|Romance    152
## 22003 1999                                        Drama|Horror|Mystery    152
## 22005 1967                                            Action|Drama|War    152
## 22008 1999                                                       Drama    152
## 22009 1992                                      Drama|Romance|Thriller    152
## 22011 2000                                        Comedy|Drama|Romance    152
## 22013 2000                                      Horror|Sci-Fi|Thriller    152
## 22014 2000                                                       Drama    152
## 22016 2000                                                       Drama    152
## 22018 1987                                                      Comedy    152
## 22019 2000                                       Comedy|Crime|Thriller    152
## 22021 2001                                                   Drama|War    152
## 22023 2001                                                 Crime|Drama    152
## 22024 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    152
## 22025 2001                               Drama|Horror|Mystery|Thriller    152
## 22026 2001                      Crime|Drama|Film-Noir|Mystery|Thriller    152
## 22028 2001                 Adventure|Animation|Children|Comedy|Fantasy    152
## 22030 2001                                              Crime|Thriller    152
## 22033 2001                                               Drama|Romance    152
## 22034 2001                                            Action|Drama|War    152
## 22035 2001                                        Comedy|Drama|Mystery    152
## 22036 1970                                            Comedy|Drama|War    152
## 22037 2002                            Action|Adventure|Sci-Fi|Thriller    152
## 22043 2002                                                 Crime|Drama    152
## 22044 2000                                         Action|Comedy|Crime    152
## 22047 2003                             Action|Adventure|Comedy|Fantasy    152
## 22050 2003                                        Comedy|Drama|Romance    152
## 22051 2003                        Crime|Drama|Mystery|Romance|Thriller    152
## 22052 2000                                Action|Drama|Horror|Thriller    152
## 22055 2004                                       Drama|Sci-Fi|Thriller    152
## 22059 1999                                               Action|Comedy    152
## 22061 2004                                               Drama|Romance    152
## 22062 2004                                Action|Adventure|Sci-Fi|IMAX    152
## 22065 2004                  Action|Adventure|Animation|Children|Comedy    152
## 22066 1988                     Action|Adventure|Drama|Mystery|Thriller    152
## 22068 2004                                                       Drama    152
## 22069 2004                                                   Drama|War    152
## 22072 2004                                                 Crime|Drama    152
## 22076 2005                                                 Documentary    152
## 22077 2005                                              Drama|Thriller    152
## 22078 2005                             Action|Crime|Drama|Thriller|War    152
## 22079 2005                               Comedy|Crime|Mystery|Thriller    152
## 22081 2005                                       Drama|Musical|Romance    152
## 22082 2005                                  Adventure|Children|Fantasy    152
## 22083 2005                                 Action|Crime|Drama|Thriller    152
## 22084 2006                                 Action|Sci-Fi|Thriller|IMAX    152
## 22085 2006                                                Comedy|Drama    152
## 22089 2006                                              Drama|Thriller    152
## 22090 2005                                                Comedy|Drama    152
## 22091 2006                      Action|Adventure|Drama|Sci-Fi|Thriller    152
## 22095 2007                                    Animation|Children|Drama    152
## 22102 2007                                               Drama|Western    152
## 22103 2008                                 Comedy|Crime|Drama|Thriller    152
## 22106 2008                                 Action|Crime|Drama|Thriller    152
## 22107 2008                       Action|Animation|Children|Comedy|IMAX    152
## 22110 2009                                Crime|Drama|Mystery|Thriller    152
## 22111 2009                                            Action|Drama|War    152
## 22116 2009                                     Mystery|Sci-Fi|Thriller    152
## 22119 2010                                      Drama|Mystery|Thriller    152
## 22120 2010                   Adventure|Animation|Children|Fantasy|IMAX    152
## 22121 2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX    152
## 22123 2010                                                       Drama    152
## 22125 2010                                                       Drama    152
## 22132 1995                                            Action|Drama|War    153
## 22135 1995                                        Comedy|Drama|Romance    153
## 22139 1993                                                      Comedy    153
## 22140 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    153
## 22153 1997                            Crime|Film-Noir|Mystery|Thriller    153
## 22165 1999                                             Horror|Thriller    153
## 22167 1992                                        Drama|Romance|Sci-Fi    153
## 22168 2000                                          Animation|Children    153
## 22169 2000                                        Comedy|Drama|Romance    153
## 22171 2001                            Action|Adventure|Comedy|Thriller    153
## 22177 1991                                           Adventure|Romance    153
## 22182 1995                                                      Comedy    154
## 22183 1995                                              Comedy|Romance    154
## 22186 1995                                                       Drama    154
## 22188 1996                                       Drama|Horror|Thriller    154
## 22191 1996                                                      Comedy    154
## 22196 1996                                              Comedy|Romance    154
## 22197 1996                                          Adventure|Children    154
## 22200 1996                    Animation|Children|Drama|Musical|Romance    154
## 22206 1995                                     Mystery|Sci-Fi|Thriller    155
## 22210 1993                            Action|Adventure|Sci-Fi|Thriller    155
## 22215 1964                                                  Comedy|War    155
## 22216 1996                            Action|Adventure|Sci-Fi|Thriller    155
## 22222 1989                            Action|Adventure|Sci-Fi|Thriller    155
## 22225 1991                                        Comedy|Drama|Romance    155
## 22230 1985                                              Fantasy|Sci-Fi    155
## 22235 1984                                      Action|Sci-Fi|Thriller    155
## 22236 1992                            Action|Comedy|Crime|Drama|Sci-Fi    155
## 22237 1997                              Action|Adventure|Comedy|Sci-Fi    155
## 22238 1997                                 Action|Crime|Drama|Thriller    155
## 22240 1997                                               Drama|Romance    155
## 22241 1981                                                       Drama    155
## 22242 1984                                               Comedy|Sci-Fi    155
## 22243 1989                                     Adventure|Comedy|Sci-Fi    155
## 22244 1990                             Adventure|Comedy|Sci-Fi|Western    155
## 22247 1985                                                     Western    155
## 22249 1976                                     Action|Adventure|Sci-Fi    155
## 22250 1968                                         Action|Drama|Sci-Fi    155
## 22253 1990                                               Comedy|Horror    155
## 22254 1985                                                       Drama    155
## 22256 1990                            Action|Adventure|Sci-Fi|Thriller    155
## 22259 1993                             Action|Adventure|Comedy|Fantasy    156
## 22261 1995                                                      Comedy    156
## 22269 1997                                   Action|Adventure|Thriller    156
## 22273 1999                                                      Comedy    156
## 22279 2000                                                Action|Crime    156
## 22301 2010                       Action|Adventure|Sci-Fi|Thriller|IMAX    156
## 22302 1995                 Adventure|Animation|Children|Comedy|Fantasy    157
## 22303 1995                                  Adventure|Children|Fantasy    157
## 22304 1995                                   Action|Adventure|Thriller    157
## 22305 1995                                               Comedy|Horror    157
## 22307 1995                                              Children|Drama    157
## 22308 1995                                            Mystery|Thriller    157
## 22310 1995                             Action|Adventure|Mystery|Sci-Fi    157
## 22311 1995                                       Action|Crime|Thriller    157
## 22312 1995                                     Action|Adventure|Sci-Fi    157
## 22314 1977                                     Action|Adventure|Sci-Fi    157
## 22315 1995                                                      Comedy    157
## 22318 1994                                     Action|Adventure|Sci-Fi    157
## 22319 1994                                                      Comedy    157
## 22320 1994                                 Action|Comedy|Crime|Fantasy    157
## 22321 1994                                               Action|Comedy    157
## 22322 1994                                     Action|Romance|Thriller    157
## 22323 1993                                           Action|Comedy|War    157
## 22324 1993                            Action|Adventure|Sci-Fi|Thriller    157
## 22325 1993                             Action|Adventure|Comedy|Fantasy    157
## 22326 1993                                                   Drama|War    157
## 22327 1982                                      Action|Sci-Fi|Thriller    157
## 22329 1990                                             Children|Comedy    157
## 22331 1996                           Action|Adventure|Mystery|Thriller    157
## 22332 1996                                   Action|Adventure|Thriller    157
## 22333 1996                           Action|Adventure|Romance|Thriller    157
## 22336 1996                            Action|Adventure|Sci-Fi|Thriller    157
## 22337 1968                                      Adventure|Drama|Sci-Fi    157
## 22338 1988                                       Action|Crime|Thriller    157
## 22339 1982                                       Children|Drama|Sci-Fi    157
## 22340 1989                            Action|Adventure|Sci-Fi|Thriller    157
## 22341 1980                                     Action|Adventure|Sci-Fi    157
## 22342 1981                                            Action|Adventure    157
## 22346 1983                                     Action|Adventure|Sci-Fi    157
## 22351 1987                                Action|Comedy|Fantasy|Horror    157
## 22352 1993                                      Comedy|Fantasy|Romance    157
## 22355 1989                                            Action|Adventure    157
## 22356 1992                               Action|Horror|Sci-Fi|Thriller    157
## 22357 1975                                               Action|Horror    157
## 22358 1996                                        Action|Comedy|Sci-Fi    157
## 22359 1997                                     Action|Adventure|Comedy    157
## 22360 1997                              Action|Adventure|Comedy|Sci-Fi    157
## 22361 1997                            Action|Adventure|Sci-Fi|Thriller    157
## 22362 1997                                 Action|Crime|Drama|Thriller    157
## 22363 1997                                        Action|Comedy|Sci-Fi    157
## 22364 1997                                      Horror|Sci-Fi|Thriller    157
## 22366 1997                                               Action|Sci-Fi    157
## 22368 1997                                        Action|Horror|Sci-Fi    157
## 22369 1997                                               Drama|Romance    157
## 22371 1998                                              Comedy|Romance    157
## 22372 1988                                                       Drama    157
## 22373 1988                                             Horror|Thriller    157
## 22374 1984                                               Comedy|Horror    157
## 22375 1990                             Adventure|Comedy|Sci-Fi|Western    157
## 22376 1997                                               Drama|Romance    157
## 22377 1998                                            Action|Drama|War    157
## 22378 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    157
## 22379 1984                                    Action|Adventure|Fantasy    157
## 22380 1990                                  Adventure|Children|Fantasy    157
## 22381 1998                                      Action|Horror|Thriller    157
## 22384 1998                         Adventure|Animation|Children|Comedy    157
## 22385 1954                                         Drama|Horror|Sci-Fi    157
## 22386 1988                                                Comedy|Crime    157
## 22387 1989                                                Comedy|Crime    157
## 22388 1986                                      Action|Adventure|Drama    157
## 22390 1986                                            Adventure|Comedy    157
## 22391 1999                                                Comedy|Crime    157
## 22393 1999                                     Action|Adventure|Sci-Fi    157
## 22394 1999                                     Action|Adventure|Comedy    157
## 22396 1999                                              Comedy|Romance    157
## 22397 1999                                       Drama|Horror|Thriller    157
## 22398 1984                                        Action|Comedy|Sci-Fi    157
## 22402 1999                           Action|Adventure|Comedy|Drama|War    157
## 22404 1987                          Action|Crime|Drama|Sci-Fi|Thriller    157
## 22406 1993                                                Action|Drama    157
## 22407 1999                      Action|Fantasy|Horror|Mystery|Thriller    157
## 22408 1992                                                       Drama    157
## 22409 1984                                            Action|Drama|War    157
## 22410 1987                                      Action|Sci-Fi|Thriller    157
## 22412 2000                                   Action|Adventure|Thriller    157
## 22413 2000                                     Action|Adventure|Sci-Fi    157
## 22414 1987                                                      Horror    157
## 22415 2000                                               Action|Comedy    157
## 22417 2000                                                       Drama    157
## 22418 2000                                                Drama|Horror    157
## 22419 1987                                Action|Comedy|Crime|Thriller    157
## 22421 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    157
## 22422 2001                                    Action|Drama|Romance|War    157
## 22423 2001                                            Action|Adventure    157
## 22424 2001                                      Adventure|Drama|Sci-Fi    157
## 22426 1986                                               Comedy|Sci-Fi    157
## 22427 2001                                                      Comedy    157
## 22429 2001                 Adventure|Animation|Children|Comedy|Fantasy    157
## 22430 2001                           Drama|Fantasy|Horror|Thriller|War    157
## 22433 2001                                           Adventure|Fantasy    157
## 22434 2001                                            Action|Drama|War    157
## 22436 2002                                      Action|Horror|Thriller    157
## 22437 2002                            Action|Adventure|Sci-Fi|Thriller    157
## 22438 2002                                Action|Adventure|Sci-Fi|IMAX    157
## 22439 2002                                     Action|Mystery|Thriller    157
## 22440 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    157
## 22442 2002                                     Horror|Mystery|Thriller    157
## 22443 1988                                         Animation|Drama|War    157
## 22444 2002                                      Action|Sci-Fi|Thriller    157
## 22445 2002                                           Adventure|Fantasy    157
## 22447 2002                                        Comedy|Drama|Romance    157
## 22449 2003                            Action|Adventure|Sci-Fi|Thriller    157
## 22450 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    157
## 22451 2003                                Comedy|Drama|Fantasy|Romance    157
## 22452 2003                         Adventure|Animation|Children|Comedy    157
## 22455 2003                                     Action|Adventure|Sci-Fi    157
## 22456 2003                             Action|Adventure|Comedy|Fantasy    157
## 22457 2003                                              Comedy|Musical    157
## 22458 2003                                       Action|Crime|Thriller    157
## 22459 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    157
## 22462 2003                              Action|Adventure|Drama|Fantasy    157
## 22466 2004                                       Action|Drama|Thriller    157
## 22467 2004                             Action|Adventure|Fantasy|Horror    157
## 22468 2002                                        Crime|Drama|Thriller    157
## 22472 2004         Adventure|Animation|Children|Comedy|Musical|Romance    157
## 22473 2004                      Action|Adventure|Drama|Sci-Fi|Thriller    157
## 22475 2004                                Action|Adventure|Sci-Fi|IMAX    157
## 22476 2004                            Action|Adventure|Sci-Fi|Thriller    157
## 22477 2004                                       Action|Crime|Thriller    157
## 22478 2004                               Action|Horror|Sci-Fi|Thriller    157
## 22479 2004                                               Comedy|Horror    157
## 22482 2004                  Action|Adventure|Animation|Children|Comedy    157
## 22483 2004                                Action|Comedy|Crime|Thriller    157
## 22484 2004                              Action|Fantasy|Horror|Thriller    157
## 22485 1985                                Action|Comedy|Crime|Thriller    157
## 22489 2004                                        Crime|Drama|Thriller    157
## 22490 2003                           Comedy|Crime|Drama|Horror|Mystery    157
## 22491 2005                      Adventure|Children|Comedy|Fantasy|IMAX    157
## 22494 2004                                               Action|Comedy    157
## 22495 1993                                         Action|Drama|Sci-Fi    157
## 22498 2005                                     Adventure|Comedy|Sci-Fi    157
## 22499 2005                                     Action|Adventure|Sci-Fi    157
## 22501 2005                            Action|Adventure|Sci-Fi|Thriller    157
## 22502 2005                                     Action|Adventure|Sci-Fi    157
## 22503 2005                                     Action|Adventure|Sci-Fi    157
## 22504 2005                                              Comedy|Romance    157
## 22509 2006                                      Action|Sci-Fi|Thriller    157
## 22510 2006                                    Action|Adventure|Fantasy    157
## 22513 2006                                      Comedy|Horror|Thriller    157
## 22514 2006                                Comedy|Drama|Fantasy|Romance    157
## 22515 2006                                                      Comedy    157
## 22519 2006                                   Action|Adventure|Thriller    157
## 22520 2007                                 Action|Comedy|Crime|Mystery    157
## 22521 2007                                     Action|Fantasy|War|IMAX    157
## 22522 2007                             Adventure|Drama|Sci-Fi|Thriller    157
## 22526 2007                                     Action|Adventure|Sci-Fi    157
## 22527 2006                                      Comedy|Horror|Thriller    157
## 22528 2007                      Action|Adventure|Crime|Horror|Thriller    157
## 22529 2007                                 Action|Sci-Fi|Thriller|IMAX    157
## 22530 2007                                       Action|Crime|Thriller    157
## 22531 2007                                                      Comedy    157
## 22532 2006                                          Action|Crime|Drama    157
## 22533 2007                                 Action|Crime|Drama|Thriller    157
## 22534 2007                                        Crime|Drama|Thriller    157
## 22536 2007                          Action|Horror|Sci-Fi|Thriller|IMAX    157
## 22539 2006                       Animation|Comedy|Drama|Romance|Sci-Fi    157
## 22541 2008                                       Action|Crime|Thriller    157
## 22542 2007                                             Documentary|War    157
## 22544 2008                                     Action|Adventure|Sci-Fi    157
## 22547 2008                 Adventure|Animation|Children|Romance|Sci-Fi    157
## 22548 2008                       Action|Adventure|Comedy|Crime|Fantasy    157
## 22550 2008                           Action|Adventure|Animation|Sci-Fi    157
## 22552 2008                                 Action|Crime|Drama|Thriller    157
## 22556 2009                                  Animation|Fantasy|Thriller    157
## 22557 2008                                                Action|Drama    157
## 22564 2008                                   Action|Drama|Thriller|War    157
## 22566 2009                                               Comedy|Sci-Fi    157
## 22568 2009                                                Drama|Horror    157
## 22569 2009                                        Action|Comedy|Horror    157
## 22571 2009                                Action|Drama|Sci-Fi|Thriller    157
## 22572 2009                                Action|Adventure|Sci-Fi|IMAX    157
## 22574 2010                                      Drama|Mystery|Thriller    157
## 22575 2010                                      Adventure|Fantasy|IMAX    157
## 22578 2010                       Action|Adventure|Sci-Fi|Thriller|IMAX    157
## 22582 2010                                                      Comedy    157
## 22585 2010                                                 Horror|IMAX    157
## 22586 2010                               Action|Adventure|Fantasy|IMAX    157
## 22589 2011                   Action|Comedy|Crime|Fantasy|Thriller|IMAX    157
## 22593 2011                        Action|Drama|Mystery|Sci-Fi|Thriller    157
## 22594 2011                                Action|Fantasy|Thriller|IMAX    157
## 22595 2011                           Action|Adventure|Mystery|Thriller    157
## 22596 2011                                                Drama|Sci-Fi    157
## 22599 2010                                       Action|Crime|Thriller    157
## 22601 2011                 Action|Adventure|Drama|Fantasy|Mystery|IMAX    157
## 22603 2011                        Action|Adventure|Sci-Fi|Thriller|War    157
## 22605 2011                                Action|Drama|Sci-Fi|Thriller    157
## 22606 2012                                Action|Adventure|Sci-Fi|IMAX    157
## 22610 2011                                                      Horror    157
## 22617 2012                                      Action|Adventure|Drama    157
## 22618 2012                                   Action|Horror|Sci-Fi|IMAX    157
## 22619 2012                                Action|Adventure|Sci-Fi|IMAX    157
## 22626 2013                                 Action|Sci-Fi|Thriller|IMAX    157
## 22629 1995                                        Action|Comedy|Sci-Fi    158
## 22630 1993                                              Drama|Thriller    158
## 22631 1978                                             Horror|Thriller    158
## 22634 1990                                               Comedy|Horror    158
## 22635 1985                                   Action|Adventure|Thriller    158
## 22637 1971                                               Action|Sci-Fi    158
## 22638 1987                                     Action|Adventure|Sci-Fi    158
## 22639 1992                                        Action|Comedy|Horror    158
## 22640 1991                                      Drama|Mystery|Thriller    158
## 22643 2007                                       Action|Crime|Thriller    158
## 22645 2008                 Adventure|Animation|Children|Romance|Sci-Fi    158
## 22646 2008                                        Comedy|Drama|Romance    158
## 22647 2008                                          Comedy|Crime|Drama    158
## 22649 1995                                   Action|Adventure|Thriller    159
## 22651 1995                                              Children|Drama    159
## 22652 1995                                            Mystery|Thriller    159
## 22654 1995                                                       Drama    159
## 22655 1995                                                Comedy|Drama    159
## 22656 1995                                      Action|Sci-Fi|Thriller    159
## 22659 1995                                        Adventure|Drama|IMAX    159
## 22660 1995                                       Action|Crime|Thriller    159
## 22661 1995                                              Comedy|Romance    159
## 22662 1994                                            Adventure|Comedy    159
## 22663 1994                                                Drama|Horror    159
## 22668 1994                                      Adventure|Drama|Sci-Fi    159
## 22669 1994                                                      Comedy    159
## 22670 1994                                 Action|Crime|Drama|Thriller    159
## 22672 1994             Adventure|Animation|Children|Drama|Musical|IMAX    159
## 22673 1994                                 Action|Comedy|Crime|Fantasy    159
## 22674 1994                                     Action|Romance|Thriller    159
## 22675 1994                    Action|Adventure|Comedy|Romance|Thriller    159
## 22676 1993                                   Action|Adventure|Thriller    159
## 22677 1993                                                    Thriller    159
## 22679 1993                                                       Drama    159
## 22680 1993                                              Comedy|Romance    159
## 22681 1993                                                Comedy|Drama    159
## 22683 1993                                        Comedy|Drama|Romance    159
## 22685 1990                       Comedy|Drama|Fantasy|Romance|Thriller    159
## 22686 1991                                               Action|Sci-Fi    159
## 22687 1989                                       Action|Crime|Thriller    159
## 22689 1990                                              Comedy|Romance    159
## 22691 1996                                   Action|Adventure|Thriller    159
## 22692 1995                                   Animation|Children|Comedy    159
## 22693 1996                            Action|Adventure|Sci-Fi|Thriller    159
## 22694 1996                                      Comedy|Horror|Thriller    159
## 22704 1979                                                      Comedy    159
## 22705 1982                                       Children|Drama|Sci-Fi    159
## 22726 1997                                        Action|Comedy|Sci-Fi    159
## 22727 1997                                                Action|Drama    159
## 22729 1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance    159
## 22730 1998                                                      Comedy    159
## 22731 1969                                                       Drama    159
## 22732 1979                                                       Drama    159
## 22734 1980                                     Horror|Mystery|Thriller    159
## 22738 1992                                                      Comedy    159
## 22742 1999                                Crime|Drama|Mystery|Thriller    159
## 22743 1999                                        Drama|Horror|Mystery    159
## 22745 1999                                 Action|Crime|Drama|Thriller    159
## 22746 1997                    Action|Adventure|Animation|Drama|Fantasy    159
## 22748 1926                                                  Comedy|War    159
## 22750 1984                                     Adventure|Comedy|Sci-Fi    159
## 22751 1948                                                       Drama    159
## 22753 1988                                Action|Comedy|Crime|Thriller    159
## 22754 1978                                                       Drama    159
## 22756 1987                                               Action|Sci-Fi    159
## 22758 1986                                       Action|Crime|Thriller    159
## 22760 2000                                            Mystery|Thriller    159
## 22761 2000                                              Drama|Thriller    159
## 22762 2001                                       Drama|Musical|Romance    159
## 22764 2001                      Crime|Drama|Film-Noir|Mystery|Thriller    159
## 22768 2001                                               Drama|Romance    159
## 22772 1988                            Animation|Children|Drama|Fantasy    159
## 22773 2002                       Action|Adventure|Crime|Drama|Thriller    159
## 22775 2003                                        Comedy|Drama|Romance    159
## 22776 1985                                                       Drama    159
## 22777 1983                                                      Comedy    159
## 22780 2003                                  Action|Adventure|Drama|War    159
## 22784 2004                                             Adventure|Drama    159
## 22785 2004                                                       Drama    159
## 22786 1973                                              Comedy|Western    159
## 22788 2004                                        Crime|Drama|Thriller    159
## 22790 2004                                    Adventure|Comedy|Fantasy    159
## 22791 2004                                               Action|Comedy    159
## 22792 2005                             Action|Crime|Drama|Thriller|War    159
## 22794 2006                                      Drama|Fantasy|Thriller    159
## 22795 2006                                        Crime|Drama|Thriller    159
## 22796 2007                                 Action|Comedy|Crime|Mystery    159
## 22797 1995                                              Children|Drama    160
## 22808 1993                                                   Drama|War    160
## 22810 1990                                             Children|Comedy    160
## 22812 1991                                       Crime|Horror|Thriller    160
## 22815 1972                                                 Crime|Drama    160
## 22816 1988                                                Comedy|Crime    160
## 22822 1990                                                 Crime|Drama    160
## 22826 1985                                     Adventure|Comedy|Sci-Fi    160
## 22832 1987                                                Comedy|Drama    160
## 22833 1996                                Comedy|Drama|Fantasy|Romance    160
## 22834 1997                                                      Comedy    160
## 22836 1997                                              Comedy|Romance    160
## 22837 1997                            Crime|Film-Noir|Mystery|Thriller    160
## 22842 1998                                               Drama|Romance    160
## 22853 1988                                                      Comedy    160
## 22857 1986                                                      Comedy    160
## 22860 1986                                                Comedy|Drama    160
## 22863 1984                                        Action|Comedy|Sci-Fi    160
## 22867 1980                                                      Comedy    160
## 22868 1999                                               Drama|Romance    160
## 22869 1993                                       Drama|Mystery|Romance    160
## 22873 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    160
## 22877 1999                                     Children|Comedy|Fantasy    160
## 22885 1978                                                      Comedy    160
## 22887 1987                                            Comedy|Drama|War    160
## 22888 1993                                                      Comedy    160
## 22889 1981                                              Comedy|Romance    160
## 22892 1982                                                      Comedy    160
## 22893 1985                                                      Comedy    160
## 22901 1995                                       Comedy|Crime|Thriller    161
## 22902 1995                                               Drama|Romance    161
## 22903 1995                                                       Drama    161
## 22904 1995                                     Mystery|Sci-Fi|Thriller    161
## 22906 1995                                              Comedy|Romance    161
## 22907 1995                                    Action|Adventure|Fantasy    161
## 22909 1995                    Animation|Children|Drama|Musical|Romance    161
## 22913 1995                          Action|Comedy|Crime|Drama|Thriller    161
## 22915 1995                               Action|Adventure|Comedy|Crime    161
## 22917 1995                             Action|Adventure|Mystery|Sci-Fi    161
## 22920 1995                                       Action|Crime|Thriller    161
## 22922 1995                                         Action|Crime|Sci-Fi    161
## 22923 1995                                             Action|Children    161
## 22925 1995                                                      Action    161
## 22926 1995                                        Comedy|Drama|Romance    161
## 22928 1994                                             Action|Thriller    161
## 22929 1994                                            Adventure|Comedy    161
## 22930 1995                                       Action|Comedy|Romance    161
## 22931 1995                                              Comedy|Romance    161
## 22933 1994                                               Comedy|Sci-Fi    161
## 22934 1994                                                       Drama    161
## 22936 1994                                                       Drama    161
## 22938 1994                                 Action|Crime|Drama|Thriller    161
## 22939 1994                                 Comedy|Crime|Drama|Thriller    161
## 22941 1994                                       Action|Drama|Thriller    161
## 22942 1994                                     Action|Adventure|Sci-Fi    161
## 22943 1994                                        Comedy|Drama|Fantasy    161
## 22945 1994                                      Adventure|Drama|Sci-Fi    161
## 22946 1993                                                       Drama    161
## 22947 1995                                              Comedy|Romance    161
## 22949 1994                                 Action|Crime|Drama|Thriller    161
## 22953 1994             Adventure|Animation|Children|Drama|Musical|IMAX    161
## 22954 1994                                 Action|Comedy|Crime|Fantasy    161
## 22956 1994                                               Action|Comedy    161
## 22960 1994                                Action|Comedy|Crime|Thriller    161
## 22961 1993                                   Action|Adventure|Thriller    161
## 22963 1993                                     Action|Adventure|Sci-Fi    161
## 22968 1993                             Action|Adventure|Comedy|Fantasy    161
## 22972 1993                                               Drama|Romance    161
## 22973 1993                                        Comedy|Drama|Romance    161
## 22975 1995                                                      Comedy    161
## 22976 1990                                             Children|Comedy    161
## 22978 1992                 Adventure|Animation|Children|Comedy|Musical    161
## 22980 1990                                     Adventure|Drama|Western    161
## 22981 1989                                       Action|Crime|Thriller    161
## 22983 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    161
## 22984 1990                                              Comedy|Romance    161
## 22985 1996                                 Comedy|Crime|Drama|Thriller    161
## 22986 1996                           Action|Adventure|Mystery|Thriller    161
## 22987 1995                                              Comedy|Romance    162
## 22989 1995                                       Action|Crime|Thriller    162
## 22990 1995                                              Comedy|Romance    162
## 22992 1995                                                 Crime|Drama    162
## 22995 1996                                              Comedy|Romance    162
## 22996 1996                                              Drama|Thriller    162
## 22997 1996                                              Comedy|Romance    162
## 23001 1996                                   Action|Adventure|Thriller    162
## 23002 1996                                               Drama|Romance    162
## 23004 1996                                                      Comedy    162
## 23005 1996                           Action|Adventure|Mystery|Thriller    162
## 23006 1996                                                       Drama    162
## 23007 1996                                        Crime|Drama|Thriller    162
## 23008 1996                                              Comedy|Romance    162
## 23009 1996                                                      Comedy    162
## 23010 1996                           Action|Adventure|Romance|Thriller    162
## 23011 1996                            Action|Adventure|Sci-Fi|Thriller    162
## 23012 1996                               Comedy|Fantasy|Romance|Sci-Fi    162
## 23013 1996                                              Drama|Thriller    162
## 23014 1996                                        Comedy|Drama|Romance    162
## 23015 1996                                        Comedy|Drama|Romance    162
## 23017 1995                 Adventure|Animation|Children|Comedy|Fantasy    163
## 23018 1995                                                      Comedy    163
## 23021 1995                               Action|Adventure|Comedy|Crime    163
## 23023 1994                                 Comedy|Crime|Drama|Thriller    163
## 23025 1994                                                      Comedy    163
## 23027 1994                                 Action|Comedy|Crime|Fantasy    163
## 23029 1993                            Action|Adventure|Sci-Fi|Thriller    163
## 23031 1990                                             Children|Comedy    163
## 23032 1992                 Adventure|Animation|Children|Comedy|Musical    163
## 23033 1991                                               Action|Sci-Fi    163
## 23034 1989                                       Action|Crime|Thriller    163
## 23036 1996                           Action|Adventure|Mystery|Thriller    163
## 23037 1996                                                      Comedy    163
## 23038 1996                            Action|Adventure|Sci-Fi|Thriller    163
## 23040 1992                                      Crime|Mystery|Thriller    163
## 23044 1990                                   Action|Adventure|Thriller    163
## 23046 1997                                               Drama|Romance    163
## 23048 1998                                       Drama|Fantasy|Romance    163
## 23049 1998                                      Action|Sci-Fi|Thriller    163
## 23050 1982                                             Horror|Thriller    163
## 23053 1997                                    Comedy|Drama|Romance|War    163
## 23054 1988                               Action|Adventure|Thriller|War    163
## 23055 1990                                                Action|Drama    163
## 23057 1999                                      Action|Sci-Fi|Thriller    163
## 23060 1990                       Action|Children|Comedy|Fantasy|Sci-Fi    163
## 23061 2000                                      Action|Adventure|Drama    163
## 23062 2000                                Adventure|Animation|Children    163
## 23063 2000                                                Action|Crime    163
## 23064 2000                                     Action|Adventure|Sci-Fi    163
## 23065 2001                                                      Comedy    163
## 23067 2001                                           Adventure|Fantasy    163
## 23068 2002                            Action|Adventure|Sci-Fi|Thriller    163
## 23069 2003                                             Action|Thriller    163
## 23071 2003                              Action|Adventure|Drama|Fantasy    163
## 23072 2004                                Action|Adventure|Sci-Fi|IMAX    163
## 23073 2005                                     Action|Adventure|Sci-Fi    163
## 23074 2007                                      Action|Adventure|Drama    163
## 23075 2007                          Action|Horror|Sci-Fi|Thriller|IMAX    163
## 23078 2000                                                   Drama|War    163
## 23079 2009                                Action|Drama|Sci-Fi|Thriller    163
## 23081 2010                                           Drama|Romance|War    163
## 23082 2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX    163
## 23083 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX    163
## 23084 2010                                              Drama|Thriller    163
## 23085 2011                                                      Comedy    163
## 23087 2011                                                Comedy|Drama    163
## 23091 2012                                      Adventure|Fantasy|IMAX    163
## 23092 2013                                    Action|Drama|Horror|IMAX    163
## 23094 2013                                         Action|Comedy|Crime    163
## 23098 1995                 Adventure|Animation|Children|Comedy|Fantasy    164
## 23101 1995                                            Action|Drama|War    164
## 23104 1994                                            Adventure|Comedy    164
## 23105 1977                                     Action|Adventure|Sci-Fi    164
## 23108 1994                                        Comedy|Drama|Fantasy    164
## 23112 1993                            Action|Adventure|Sci-Fi|Thriller    164
## 23114 1996                                          Adventure|Children    164
## 23115 1996                               Comedy|Fantasy|Romance|Sci-Fi    164
## 23116 1954                                            Mystery|Thriller    164
## 23123 1975                                    Adventure|Comedy|Fantasy    164
## 23128 1983                                     Action|Adventure|Sci-Fi    164
## 23129 1984                                      Action|Sci-Fi|Thriller    164
## 23133 1997                                        Action|Comedy|Sci-Fi    164
## 23134 1997                  Adventure|Animation|Children|Drama|Musical    164
## 23136 1997                                   Action|Adventure|Thriller    164
## 23137 1998                                                Comedy|Crime    164
## 23138 1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance    164
## 23139 1998                                              Comedy|Romance    164
## 23147 1999                 Adventure|Animation|Children|Comedy|Fantasy    164
## 23148 1992                                                      Comedy    164
## 23149 2000                                   Animation|Children|Comedy    164
## 23153 2001                                              Comedy|Romance    164
## 23157 2001                                           Adventure|Fantasy    164
## 23158 2002                            Action|Adventure|Sci-Fi|Thriller    164
## 23160 2002                                                       Drama    164
## 23161 2002                                           Adventure|Fantasy    164
## 23164 2003                                Comedy|Drama|Fantasy|Romance    164
## 23165 2003                         Adventure|Animation|Children|Comedy    164
## 23166 2002                                        Action|Horror|Sci-Fi    164
## 23167 2003                              Action|Adventure|Drama|Fantasy    164
## 23168 2004         Adventure|Animation|Children|Comedy|Musical|Romance    164
## 23171 2004                                Action|Adventure|Sci-Fi|IMAX    164
## 23172 2004                                       Action|Crime|Thriller    164
## 23174 2004                  Action|Adventure|Animation|Children|Comedy    164
## 23177 2005                            Action|Adventure|Sci-Fi|Thriller    164
## 23178 2005                                                       Drama    164
## 23180 1995                 Adventure|Animation|Children|Comedy|Fantasy    165
## 23181 1995                                  Adventure|Children|Fantasy    165
## 23182 1995                                              Comedy|Romance    165
## 23183 1995                                   Action|Adventure|Thriller    165
## 23184 1995                                                      Comedy    165
## 23185 1995                                       Comedy|Crime|Thriller    165
## 23186 1995                         Crime|Drama|Horror|Mystery|Thriller    165
## 23187 1995                                                       Drama    165
## 23189 1995                                            Mystery|Thriller    165
## 23190 1995                                      Crime|Mystery|Thriller    165
## 23191 1995                                                       Drama    165
## 23193 1995                                         Crime|Drama|Romance    165
## 23197 1995                               Action|Adventure|Comedy|Crime    165
## 23198 1995                          Action|Comedy|Crime|Drama|Thriller    165
## 23199 1995                                          Adventure|Children    165
## 23202 1995                                         Action|Crime|Sci-Fi    165
## 23203 1995                                             Action|Children    165
## 23204 1995                                       Action|Crime|Thriller    165
## 23205 1995                                               Horror|Sci-Fi    165
## 23206 1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller    165
## 23207 1995                                                      Comedy    165
## 23208 1994                                              Drama|Thriller    165
## 23210 1994                                                 Documentary    165
## 23211 1994                                              Comedy|Romance    165
## 23212 1995                                              Drama|Thriller    165
## 23213 1995                                Action|Drama|Sci-Fi|Thriller    165
## 23215 1994                                 Comedy|Crime|Drama|Thriller    165
## 23216 1994                                        Comedy|Drama|Fantasy    165
## 23219 1995                                      Action|Sci-Fi|Thriller    165
## 23220 1995                                              Comedy|Romance    165
## 23222 1994                                      Drama|Mystery|Thriller    165
## 23223 1994                                    Comedy|Drama|Romance|War    165
## 23224 1994             Adventure|Animation|Children|Drama|Musical|IMAX    165
## 23225 1994                                 Action|Comedy|Crime|Fantasy    165
## 23226 1994                                               Action|Comedy    165
## 23227 1994                                     Action|Romance|Thriller    165
## 23229 1994                                    Action|Adventure|Fantasy    165
## 23230 1994                                                      Comedy    165
## 23231 1994                                                       Drama    165
## 23232 1993                                                       Drama    165
## 23233 1994                                    Adventure|Comedy|Western    165
## 23234 1993                                   Action|Adventure|Thriller    165
## 23235 1993                                     Action|Adventure|Sci-Fi    165
## 23236 1993                                                    Thriller    165
## 23238 1994                                                      Comedy    165
## 23239 1993                            Action|Adventure|Sci-Fi|Thriller    165
## 23240 1993                             Action|Adventure|Comedy|Fantasy    165
## 23241 1993                                                Comedy|Drama    165
## 23242 1994                                     Action|Children|Romance    165
## 23244 1994                                                      Comedy    165
## 23246 1993                                                       Drama    165
## 23248 1993                                                       Drama    165
## 23249 1993                                                       Drama    165
## 23250 1993                                        Comedy|Drama|Romance    165
## 23252 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    165
## 23254 1990                       Comedy|Drama|Fantasy|Romance|Thriller    165
## 23258 1991                                       Crime|Horror|Thriller    165
## 23259 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    165
## 23260 1940                          Animation|Children|Fantasy|Musical    165
## 23261 1996                                 Comedy|Crime|Drama|Thriller    165
## 23262 1996                           Action|Adventure|Mystery|Thriller    165
## 23263 1996                                    Action|Adventure|Fantasy    165
## 23264 1996                                               Comedy|Sci-Fi    165
## 23265 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi    165
## 23266 1996                                   Action|Adventure|Thriller    165
## 23267 1996                           Action|Adventure|Romance|Thriller    165
## 23268 1995                                            Animation|Sci-Fi    165
## 23270 1996                                             Comedy|Thriller    165
## 23271 1996                                               Drama|Romance    165
## 23273 1996                                     Children|Comedy|Fantasy    165
## 23274 1996                                              Crime|Thriller    165
## 23275 1996                                                      Comedy    165
## 23276 1996                                Crime|Drama|Romance|Thriller    165
## 23277 1939                          Adventure|Children|Fantasy|Musical    165
## 23279 1950                  Animation|Children|Fantasy|Musical|Romance    165
## 23280 1991                                             Adventure|Drama    165
## 23281 1951                Adventure|Animation|Children|Fantasy|Musical    165
## 23282 1988                                       Action|Crime|Thriller    165
## 23283 1996                                       Action|Drama|Thriller    165
## 23285 1996                                                    Thriller    165
## 23287 1992                                      Crime|Mystery|Thriller    165
## 23290 1986                              Action|Adventure|Horror|Sci-Fi    165
## 23291 1979                                            Action|Drama|War    165
## 23292 1993                      Action|Adventure|Comedy|Fantasy|Horror    165
## 23293 1987                                                   Drama|War    165
## 23294 1984                                      Action|Sci-Fi|Thriller    165
## 23295 1985                                              Comedy|Romance    165
## 23296 1980                                                      Horror    165
## 23297 1986                                             Adventure|Drama    165
## 23299 1985                                     Adventure|Comedy|Sci-Fi    165
## 23300 1989                                            Action|Adventure    165
## 23301 1989                                              Comedy|Romance    165
## 23302 1992                               Action|Horror|Sci-Fi|Thriller    165
## 23303 1963                                             Horror|Thriller    165
## 23305 1990                                   Action|Adventure|Thriller    165
## 23307 1978                                      Comedy|Musical|Romance    165
## 23308 1996                                        Action|Comedy|Sci-Fi    165
## 23311 1996                                             Comedy|Thriller    165
## 23312 1997                                                       Crime    165
## 23314 1997                                                      Comedy    165
## 23316 1997                                     Action|Adventure|Comedy    165
## 23318 1997                                                      Comedy    165
## 23319 1997                            Action|Adventure|Sci-Fi|Thriller    165
## 23320 1997                                   Action|Adventure|Thriller    165
## 23321 1997                           Action|Adventure|Fantasy|Thriller    165
## 23322 1997                                 Action|Crime|Drama|Thriller    165
## 23323 1997                                        Action|Comedy|Sci-Fi    165
## 23324 1997                              Drama|Mystery|Romance|Thriller    165
## 23325 1997                                                      Action    165
## 23326 1997                                      Drama|Mystery|Thriller    165
## 23327 1997                                              Comedy|Romance    165
## 23329 1997                                      Drama|Mystery|Thriller    165
## 23330 1997                                      Crime|Mystery|Thriller    165
## 23331 1997                                    Action|Adventure|Fantasy    165
## 23332 1998                                         Comedy|Drama|Sci-Fi    165
## 23334 1997                                               Drama|Romance    165
## 23335 1997                                        Crime|Drama|Thriller    165
## 23336 1998                                      Action|Children|Comedy    165
## 23337 1997                                                      Comedy    165
## 23339 1998                                              Comedy|Romance    165
## 23340 1997                                        Comedy|Drama|Romance    165
## 23341 1998                                Crime|Drama|Mystery|Thriller    165
## 23342 1998                                                       Drama    165
## 23343 1998                                                      Comedy    165
## 23344 1998                                       Drama|Sci-Fi|Thriller    165
## 23345 1998                                      Action|Sci-Fi|Thriller    165
## 23346 1998                                                      Comedy    165
## 23348 1998                                       Drama|Sci-Fi|Thriller    165
## 23349 1998                                              Comedy|Romance    165
## 23350 1987                                             Horror|Thriller    165
## 23351 1989                                                      Horror    165
## 23352 1973                                              Horror|Mystery    165
## 23353 1984                                               Comedy|Horror    165
## 23354 1985                    Action|Adventure|Children|Comedy|Fantasy    165
## 23355 1990                             Adventure|Comedy|Sci-Fi|Western    165
## 23356 1942                                    Animation|Children|Drama    165
## 23357 1997                                               Drama|Romance    165
## 23359 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    165
## 23360 1967                           Animation|Children|Comedy|Musical    165
## 23361 1989                   Animation|Children|Comedy|Musical|Romance    165
## 23362 1953                          Animation|Children|Fantasy|Musical    165
## 23363 1984                                    Action|Adventure|Fantasy    165
## 23364 1985                                       Comedy|Fantasy|Sci-Fi    165
## 23365 1988                                              Comedy|Fantasy    165
## 23366 1998                                                       Drama    165
## 23368 1989                                        Comedy|Drama|Romance    165
## 23369 1992                                              Comedy|Fantasy    165
## 23370 1998                                       Action|Crime|Thriller    165
## 23371 1992                                                      Comedy    165
## 23372 1998                                        Comedy|Drama|Fantasy    165
## 23374 1998                                     Horror|Mystery|Thriller    165
## 23376 1998                                                Comedy|Drama    165
## 23379 1989                             Action|Adventure|Children|Drama    165
## 23380 1998                                              Comedy|Romance    165
## 23381 1987                                   Adventure|Children|Comedy    165
## 23382 1986                                Drama|Horror|Sci-Fi|Thriller    165
## 23383 1994                                                      Horror    165
## 23384 1999                                             Action|Thriller    165
## 23385 1999                                                Comedy|Crime    165
## 23389 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    165
## 23390 1999                                     Action|Adventure|Sci-Fi    165
## 23391 1953                                         Action|Drama|Sci-Fi    165
## 23392 1999                                     Action|Adventure|Comedy    165
## 23394 1998                                                Action|Crime    165
## 23395 1990                                               Comedy|Horror    165
## 23397 1999                                              Comedy|Romance    165
## 23398 1999                                       Drama|Horror|Thriller    165
## 23399 1984                                        Action|Comedy|Sci-Fi    165
## 23400 1986                                       Comedy|Horror|Musical    165
## 23402 1980                                                      Comedy    165
## 23404 1991                                                      Comedy    165
## 23405 1983                                             Children|Comedy    165
## 23406 1999                                     Horror|Mystery|Thriller    165
## 23407 1999                                                Comedy|Drama    165
## 23408 1999                                               Drama|Romance    165
## 23409 1999                                 Action|Crime|Drama|Thriller    165
## 23410 1999                           Action|Adventure|Comedy|Drama|War    165
## 23411 1990                            Action|Adventure|Sci-Fi|Thriller    165
## 23413 1992                                             Children|Comedy    165
## 23415 1999                                                       Drama    165
## 23417 1999                                        Comedy|Drama|Fantasy    165
## 23418 1997                    Action|Adventure|Animation|Drama|Fantasy    165
## 23421 1995                                              Comedy|Romance    165
## 23422 1999                                    Adventure|Comedy|Fantasy    165
## 23423 1999                              Fantasy|Horror|Mystery|Romance    165
## 23424 1987                                              Drama|Thriller    165
## 23426 1999                                                       Drama    165
## 23427 1999                                                       Drama    165
## 23428 1992                                                      Comedy    165
## 23429 1992                                                Comedy|Drama    165
## 23430 1992                                      Drama|Romance|Thriller    165
## 23431 1992                                                       Drama    165
## 23432 2000                                      Horror|Sci-Fi|Thriller    165
## 23433 1999                                                 Crime|Drama    165
## 23434 1961                                                       Drama    165
## 23435 2000                                                      Sci-Fi    165
## 23437 1990                       Action|Children|Comedy|Fantasy|Sci-Fi    165
## 23439 1993                    Action|Adventure|Children|Comedy|Fantasy    165
## 23440 1977                                      Adventure|Drama|Sci-Fi    165
## 23441 2000                                        Comedy|Drama|Romance    165
## 23442 2000                                              Drama|Thriller    165
## 23443 2000                               Crime|Horror|Mystery|Thriller    165
## 23445 2000                                         Action|Thriller|War    165
## 23446 2000                                      Action|Adventure|Drama    165
## 23447 2000                                               Action|Sci-Fi    165
## 23448 2000                                                      Comedy    165
## 23449 2000                                   Action|Adventure|Thriller    165
## 23451 2000                                   Animation|Children|Comedy    165
## 23452 2000                                            Adventure|Comedy    165
## 23453 1993                                 Action|Crime|Drama|Thriller    165
## 23454 1990                                                      Comedy    165
## 23455 1991                                        Comedy|Drama|Romance    165
## 23456 2000                                               Comedy|Horror    165
## 23458 1999                                                       Drama    165
## 23459 2000                                       Drama|Horror|Thriller    165
## 23460 1991                                                      Comedy    165
## 23461 2000                                                       Drama    165
## 23462 2000                                                       Drama    165
## 23463 2000                                                       Drama    165
## 23465 2000                                                      Comedy    165
## 23466 2000                                                       Drama    165
## 23467 2000                               Crime|Horror|Mystery|Thriller    165
## 23468 2000                                               Action|Comedy    165
## 23470 2000                                       Comedy|Crime|Thriller    165
## 23471 2000                                                       Drama    165
## 23472 2000                                                       Drama    165
## 23473 2000                                                Comedy|Crime    165
## 23474 2000                                        Crime|Drama|Thriller    165
## 23475 2001                                               Drama|Romance    165
## 23476 1988                                               Action|Comedy    165
## 23477 1981                                     Fantasy|Horror|Thriller    165
## 23479 1997                                                 Documentary    165
## 23480 2000                                            Mystery|Thriller    165
## 23482 2001                                                      Comedy    165
## 23483 1983                                          Action|Crime|Drama    165
## 23485 2001                                       Action|Crime|Thriller    165
## 23486 2001                                      Adventure|Drama|Sci-Fi    165
## 23487 2001                          Adventure|Animation|Fantasy|Sci-Fi    165
## 23488 1988                                               Comedy|Horror    165
## 23491 1989                                                       Drama    165
## 23492 1989                                                      Comedy    165
## 23494 2001                                                      Comedy    165
## 23495 2001                               Drama|Horror|Mystery|Thriller    165
## 23496 2001                                                      Comedy    165
## 23497 2001                                            Adventure|Comedy    165
## 23498 1994                                      Action|Children|Comedy    165
## 23499 1995                                             Action|Children    165
## 23500 2001                                                       Drama    165
## 23501 2001                                       Drama|Musical|Romance    165
## 23502 2001                                              Comedy|Romance    165
## 23503 2001                               Drama|Mystery|Sci-Fi|Thriller    165
## 23504 2001                 Adventure|Animation|Children|Comedy|Fantasy    165
## 23505 2001                                              Crime|Thriller    165
## 23506 2001                                                       Drama    165
## 23507 2001                                               Drama|Romance    165
## 23508 1994                                                      Comedy    165
## 23509 2002                                                      Comedy    165
## 23510 2002                                               Action|Sci-Fi    165
## 23511 2001                                                Comedy|Crime    165
## 23512 1993                                       Children|Comedy|Drama    165
## 23513 2002                                      Comedy|Musical|Romance    165
## 23514 2002                                            Action|Drama|War    165
## 23515 1979                                                      Horror    165
## 23516 2002                                         Action|Comedy|Crime    165
## 23517 2001                                        Crime|Drama|Thriller    165
## 23518 2002                                      Horror|Sci-Fi|Thriller    165
## 23519 2002                                        Crime|Drama|Thriller    165
## 23521 2002                                Action|Adventure|Sci-Fi|IMAX    165
## 23522 2002                                              Drama|Thriller    165
## 23523 2002                                     Action|Mystery|Thriller    165
## 23524 2002                                                      Comedy    165
## 23525 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    165
## 23526 2002                         Adventure|Animation|Children|Comedy    165
## 23527 2002                                                 Crime|Drama    165
## 23528 2002                                              Comedy|Mystery    165
## 23530 2002                                       Action|Crime|Thriller    165
## 23531 2002                                                       Drama    165
## 23532 2002                                       Crime|Horror|Thriller    165
## 23533 2001                                              Drama|Thriller    165
## 23534 1972                                       Crime|Horror|Thriller    165
## 23535 2002                                                Comedy|Drama    165
## 23537 2002                                             Action|Thriller    165
## 23538 2001                                                       Drama    165
## 23539 2002                                               Drama|Romance    165
## 23540 2001                          Action|Comedy|Crime|Drama|Thriller    165
## 23541 2002                                      Crime|Mystery|Thriller    165
## 23543 2002                                     Horror|Mystery|Thriller    165
## 23545 2002                             Action|Adventure|Crime|Thriller    165
## 23546 2002                                             Horror|Thriller    165
## 23547 2002                                                 Crime|Drama    165
## 23548 2002                                        Comedy|Drama|Romance    165
## 23549 2002                                      Action|Sci-Fi|Thriller    165
## 23550 2002                                                Comedy|Drama    165
## 23553 1993                                              Drama|Thriller    165
## 23554 2002                                                 Crime|Drama    165
## 23555 2002                       Action|Adventure|Crime|Drama|Thriller    165
## 23556 2003                                          Action|Crime|Drama    165
## 23558 2003                                                Action|Crime    165
## 23560 1993                                                      Comedy    165
## 23561 2002                                        Comedy|Drama|Romance    165
## 23562 1998                                     Horror|Mystery|Thriller    165
## 23563 2003                                          Comedy|Documentary    165
## 23565 2003                            Action|Adventure|Sci-Fi|Thriller    165
## 23566 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    165
## 23567 2003                                                Action|Crime    165
## 23568 1997                                             Children|Comedy    165
## 23569 2003                                                      Comedy    165
## 23570 2002                                        Action|Horror|Sci-Fi    165
## 23571 2003                                        Comedy|Crime|Romance    165
## 23572 2003                                                Comedy|Drama    165
## 23575 1994                                                      Comedy    165
## 23576 2003                                                Comedy|Drama    165
## 23577 2003                                         Crime|Drama|Mystery    165
## 23578 2003                                               Action|Horror    165
## 23580 2002                                                    Thriller    165
## 23581 2003                                     Children|Comedy|Fantasy    165
## 23583 2003                                         Adventure|Drama|War    165
## 23584 2003                        Crime|Drama|Mystery|Romance|Thriller    165
## 23585 2000                                Action|Drama|Horror|Thriller    165
## 23586 2002                                      Action|Adventure|Drama    165
## 23587 1993                                               Comedy|Horror    165
## 23588 2003                                        Comedy|Drama|Romance    165
## 23589 2002                                               Drama|Romance    165
## 23591 2003                                                 Crime|Drama    165
## 23592 1994                                                      Comedy    165
## 23593 2004                                       Drama|Sci-Fi|Thriller    165
## 23594 2004                                                       Drama    165
## 23595 2004                                                Comedy|Drama    165
## 23596 1999                                                 Documentary    165
## 23599 1978                                         Action|Drama|Horror    165
## 23602 2004                                  Action|Adventure|Drama|War    165
## 23604 1975                                                      Action    165
## 23605 1999                                                 Documentary    165
## 23606 1990                                                      Horror    165
## 23608 2004                                                      Comedy    165
## 23609 2004                                                Comedy|Drama    165
## 23610 2003                                                       Drama    165
## 23611 2004                                   Animation|Children|Comedy    165
## 23612 2004                                                      Comedy    165
## 23613 2004                                        Comedy|Drama|Romance    165
## 23614 2004                                               Drama|Romance    165
## 23615 2004                                    Adventure|Children|Drama    165
## 23617 2004                                                      Comedy    165
## 23619 2004                                       Action|Crime|Thriller    165
## 23620 2004                                               Drama|Romance    165
## 23621 1991                                                      Comedy    165
## 23622 2004                                                    Thriller    165
## 23623 2004                                      Drama|Mystery|Thriller    165
## 23626 2004                                            Adventure|Comedy    165
## 23627 2004                               Action|Horror|Sci-Fi|Thriller    165
## 23628 2003                                      Action|Adventure|Drama    165
## 23629 2004                                              Drama|Thriller    165
## 23630 2004                                      Drama|Romance|Thriller    165
## 23631 1995                                                      Horror    165
## 23632 2004                         Action|Crime|Drama|Mystery|Thriller    165
## 23633 2004                               Action|Horror|Sci-Fi|Thriller    165
## 23634 2004                                                Comedy|Drama    165
## 23635 2004                                     Action|Adventure|Sci-Fi    165
## 23638 2004                                   Animation|Children|Comedy    165
## 23639 2004                                       Action|Drama|Thriller    165
## 23640 2004                                                      Comedy    165
## 23641 2004                                                     Romance    165
## 23642 2004                                          Comedy|Crime|Drama    165
## 23644 2004                                     Horror|Mystery|Thriller    165
## 23646 2004                                                       Drama    165
## 23647 2004                  Action|Adventure|Animation|Children|Comedy    165
## 23648 2004                         Adventure|Animation|Children|Comedy    165
## 23649 2004                                Action|Comedy|Crime|Thriller    165
## 23651 2004                                             Documentary|War    165
## 23652 1999                       Drama|Horror|Mystery|Romance|Thriller    165
## 23653 2001                                     Horror|Mystery|Thriller    165
## 23655 2004                                        Comedy|Drama|Romance    165
## 23656 2003                                              Drama|Thriller    165
## 23657 2004                                              Drama|Thriller    165
## 23658 2004                                            Action|Drama|War    165
## 23659 2004                                                   Drama|War    165
## 23660 2004                                                       Drama    165
## 23661 2005                                Action|Adventure|Crime|Drama    165
## 23662 2004                                                Comedy|Drama    165
## 23663 2005                              Action|Fantasy|Horror|Thriller    165
## 23664 2003                                                      Comedy    165
## 23666 2005                                           Action|Crime|IMAX    165
## 23669 1995                                      Action|Romance|Western    166
## 23674 1993                                               Comedy|Sci-Fi    166
## 23675 1993                            Action|Adventure|Sci-Fi|Thriller    166
## 23678 1996                                 Comedy|Crime|Drama|Thriller    166
## 23679 1996                                    Action|Adventure|Fantasy    166
## 23680 1996                                                      Comedy    166
## 23681 1942                                               Drama|Romance    166
## 23686 1997                                               Action|Sci-Fi    166
## 23688 1998                                                Comedy|Crime    166
## 23689 1998                              Action|Romance|Sci-Fi|Thriller    166
## 23696 1953                                                Action|Drama    166
## 23700 2000                                   Animation|Children|Comedy    166
## 23704 2001                                            Action|Adventure    166
## 23706 2001                                              Crime|Thriller    166
## 23713 2003                                                Action|Crime    166
## 23714 2003                                                      Comedy    166
## 23716 2003                                       Action|Crime|Thriller    166
## 23719 2003                    Action|Adventure|Comedy|Romance|Thriller    166
## 23721 2003                                        Comedy|Drama|Romance    166
## 23722 2003                                 Action|Comedy|Crime|Fantasy    166
## 23727 1983                                     Action|Adventure|Sci-Fi    167
## 23735 1988                                              Comedy|Fantasy    167
## 23737 1962                                               Action|Sci-Fi    167
## 23741 1999                                      Action|Sci-Fi|Thriller    167
## 23742 1978                                     Action|Adventure|Sci-Fi    167
## 23743 1990                                               Comedy|Horror    167
## 23744 1987                          Action|Crime|Drama|Sci-Fi|Thriller    167
## 23748 1995                                        Comedy|Drama|Romance    168
## 23749 1995                          Action|Comedy|Crime|Drama|Thriller    168
## 23751 1995                                     Mystery|Sci-Fi|Thriller    168
## 23754 1995                                       Comedy|Horror|Romance    168
## 23755 1995                                            Action|Drama|War    168
## 23757 1992                                              Comedy|Romance    168
## 23758 1995                          Action|Comedy|Crime|Drama|Thriller    168
## 23760 1995                                    Action|Drama|Romance|War    168
## 23761 1995                               Action|Adventure|Comedy|Crime    168
## 23762 1995                                      Action|Romance|Western    168
## 23763 1995                            Crime|Film-Noir|Mystery|Thriller    168
## 23764 1995                                       Action|Crime|Thriller    168
## 23765 1995                                         Action|Crime|Sci-Fi    168
## 23766 1995                                                       Drama    168
## 23767 1995                                               Horror|Sci-Fi    168
## 23768 1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller    168
## 23769 1995                                                      Action    168
## 23770 1995                                              Drama|Thriller    168
## 23771 1994                                              Drama|Thriller    168
## 23772 1994                                             Action|Thriller    168
## 23773 1994                                                      Comedy    168
## 23775 1995                                              Comedy|Romance    168
## 23776 1994                                              Comedy|Romance    168
## 23777 1995                                                      Comedy    168
## 23778 1995                                        Crime|Drama|Thriller    168
## 23781 1994                                              Comedy|Romance    168
## 23782 1994                                       Action|Crime|Thriller    168
## 23783 1995                                Action|Drama|Sci-Fi|Thriller    168
## 23788 1994                                      Adventure|Drama|Sci-Fi    168
## 23789 1995                                                      Comedy    168
## 23791 1994                                              Comedy|Romance    168
## 23792 1995                                                       Drama    168
## 23794 1994                                                Comedy|Drama    168
## 23796 1994                                              Comedy|Romance    168
## 23797 1994                    Action|Adventure|Comedy|Romance|Thriller    168
## 23798 1995                                          Action|Crime|Drama    168
## 23799 1994                                                 Crime|Drama    168
## 23800 1993                                     Children|Comedy|Fantasy    168
## 23802 1993                                                      Comedy    168
## 23803 1994                                Action|Comedy|Crime|Thriller    168
## 23804 1993                                      Horror|Sci-Fi|Thriller    168
## 23805 1993                              Drama|Mystery|Romance|Thriller    168
## 23806 1993                                                       Drama    168
## 23807 1994                                    Adventure|Comedy|Western    168
## 23808 1993                                   Action|Adventure|Thriller    168
## 23810 1993                                     Action|Adventure|Sci-Fi    168
## 23811 1993                                                      Comedy    168
## 23812 1994                                                Comedy|Drama    168
## 23813 1993                                              Drama|Thriller    168
## 23816 1993                             Action|Adventure|Comedy|Fantasy    168
## 23817 1993                                                      Comedy    168
## 23819 1993                                                Comedy|Drama    168
## 23820 1994                                                      Comedy    168
## 23821 1993                                                       Drama    168
## 23822 1993                                               Drama|Romance    168
## 23823 1993                                                       Drama    168
## 23824 1994                                                      Comedy    168
## 23826 1994                                                Comedy|Drama    168
## 23827 1993                          Action|Crime|Drama|Sci-Fi|Thriller    168
## 23828 1993                                                       Drama    168
## 23829 1993                                                       Drama    168
## 23830 1993                                                       Drama    168
## 23831 1993                                                    Thriller    168
## 23833 1993                                        Action|Drama|Western    168
## 23835 1994                                                Comedy|Drama    168
## 23836 1990                       Comedy|Drama|Fantasy|Romance|Thriller    168
## 23839 1989                                       Action|Crime|Thriller    168
## 23841 1990                                              Comedy|Romance    168
## 23843 1996                                                Comedy|Drama    168
## 23844 1996                           Action|Adventure|Mystery|Thriller    168
## 23849 1994                                             Children|Comedy    168
## 23851 1965                                             Musical|Romance    168
## 23856 1992                                      Crime|Mystery|Thriller    168
## 23858 1986                                              Action|Romance    168
## 23864 1995                                  Adventure|Children|Fantasy    169
## 23865 1995                                              Children|Drama    169
## 23866 1995                                                      Comedy    169
## 23867 1994                                     Action|Children|Romance    169
## 23870 1996                                        Comedy|Drama|Romance    169
## 23871 1964                                Comedy|Drama|Musical|Romance    169
## 23872 1994                                             Children|Comedy    169
## 23874 1985                                     Adventure|Comedy|Sci-Fi    169
## 23876 1975                                     Mystery|Sci-Fi|Thriller    169
## 23877 1989                             Action|Adventure|Children|Drama    169
## 23882 1997                                              Comedy|Romance    169
## 23883 1999                 Adventure|Animation|Children|Comedy|Fantasy    169
## 23884 2000                                               Drama|Musical    169
## 23885 1984                                                       Drama    169
## 23888 2001                                              Comedy|Romance    169
## 23891 2001                                  Adventure|Children|Fantasy    169
## 23894 2001                                               Drama|Romance    169
## 23897 2002                                           Adventure|Fantasy    169
## 23906 2003                                                Comedy|Drama    169
## 23907 2002                                               Drama|Romance    169
## 23911 2004                                      Comedy|Fantasy|Romance    169
## 23914 2004                                      Adventure|Fantasy|IMAX    169
## 23915 2004                                     Comedy|Fantasy|Thriller    169
## 23917 2004                                              Comedy|Romance    169
## 23920 2004                                              Comedy|Romance    169
## 23923 2003                                                       Drama    169
## 23924 1968                                             Children|Comedy    169
## 23925 2004                                        Comedy|Drama|Romance    169
## 23932 2005                                      Comedy|Fantasy|Romance    169
## 23934 2005                             Adventure|Fantasy|Thriller|IMAX    169
## 23936 2006                                                      Comedy    169
## 23941 2006                                      Adventure|Comedy|Drama    169
## 23948 2006                                      Action|Sci-Fi|Thriller    169
## 23952 2007                                              Drama|Thriller    169
## 23955 2006                                       Drama|Musical|Romance    169
## 23957 2007                                Adventure|Drama|Fantasy|IMAX    169
## 23969 2008                 Adventure|Animation|Children|Romance|Sci-Fi    169
## 23974 2007                          Adventure|Animation|Comedy|Fantasy    169
## 23975 2008                               Drama|Fantasy|Mystery|Romance    169
## 23976 1995                      Adventure|Drama|Fantasy|Mystery|Sci-Fi    170
## 23977 1993                                                       Drama    170
## 23978 1970                                          Animation|Children    170
## 23979 1996                            Action|Adventure|Sci-Fi|Thriller    170
## 23980 1991                                                       Drama    170
## 23981 1984                                      Action|Sci-Fi|Thriller    170
## 23982 1985                                     Adventure|Comedy|Sci-Fi    170
## 23983 1970                                                   Drama|War    170
## 23984 1984                                                   Drama|War    170
## 23986 1997                              Action|Adventure|Comedy|Sci-Fi    170
## 23987 1998                                         Comedy|Drama|Sci-Fi    170
## 23989 1989                                                       Drama    170
## 23990 1988                                               Drama|Romance    170
## 23991 1967                           Animation|Children|Comedy|Musical    170
## 23992 1984                                              Comedy|Romance    170
## 23993 1998                         Adventure|Animation|Children|Comedy    170
## 23994 1999                                       Action|Comedy|Fantasy    170
## 23995 1999                                 Action|Crime|Drama|Thriller    170
## 23996 1991                                                Action|Drama    170
## 23997 1999                                                Comedy|Drama    170
## 23998 2000                                              Drama|Thriller    170
## 23999 1979                                     Action|Adventure|Sci-Fi    170
## 24000 1981                            Action|Adventure|Sci-Fi|Thriller    170
## 24001 2002                                           Adventure|Fantasy    170
## 24013 1991                                                       Drama    171
## 24014 1990                                       Crime|Drama|Film-Noir    171
## 24022 1997                                                      Comedy    171
## 24023 1998                                Crime|Drama|Mystery|Thriller    171
## 24032 1999                                                      Comedy    171
## 24034 1999                                     Action|Adventure|Comedy    171
## 24036 1999                                Crime|Drama|Mystery|Thriller    171
## 24041 1999                                       Drama|Horror|Thriller    171
## 24042 1984                                        Action|Comedy|Sci-Fi    171
## 24047 1999                                 Action|Crime|Drama|Thriller    171
## 24048 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    171
## 24049 1983                                                      Comedy    171
## 24051 1995                                     Mystery|Sci-Fi|Thriller    172
## 24052 1995                                              Children|Drama    172
## 24055 1996                                                      Comedy    172
## 24060 1994                                    Comedy|Drama|Romance|War    172
## 24061 1994             Adventure|Animation|Children|Drama|Musical|IMAX    172
## 24062 1994                                     Action|Romance|Thriller    172
## 24064 1993                            Action|Adventure|Sci-Fi|Thriller    172
## 24067 1993                                        Comedy|Drama|Romance    172
## 24069 1992                 Adventure|Animation|Children|Comedy|Musical    172
## 24070 1990                                     Adventure|Drama|Western    172
## 24071 1989                                       Action|Crime|Thriller    172
## 24080 1996                           Adventure|Children|Comedy|Musical    173
## 24086 1996                                    Action|Adventure|Fantasy    173
## 24088 1996                                              Comedy|Romance    173
## 24092 1996                                                Comedy|Crime    173
## 24100 1996                                             Crime|Film-Noir    173
## 24101 1996                                              Drama|Thriller    173
## 24106 1997                                                      Comedy    173
## 24110 1997                           Action|Adventure|Fantasy|Thriller    173
## 24113 1997                            Action|Adventure|Sci-Fi|Thriller    173
## 24115 1995                                      Action|Romance|Western    174
## 24117 1995                                      Action|Sci-Fi|Thriller    174
## 24118 1995                                              Comedy|Romance    174
## 24119 1994                                                 Documentary    174
## 24120 1994                                                      Comedy    174
## 24121 1994                                               Action|Comedy    174
## 24122 1993                                     Comedy|Romance|Thriller    174
## 24124 1992                                      Drama|Romance|Thriller    174
## 24125 1974                            Crime|Film-Noir|Mystery|Thriller    174
## 24129 1992                                                      Comedy    174
## 24130 1990                                               Comedy|Horror    174
## 24131 2000                                   Animation|Children|Comedy    174
## 24133 1970                                            Comedy|Drama|War    174
## 24134 2003                                     Action|Adventure|Sci-Fi    174
## 24137 1995                    Animation|Children|Drama|Musical|Romance    175
## 24145 1994                                              Comedy|Romance    175
## 24147 1994                                                Comedy|Drama    175
## 24150 1992                 Adventure|Animation|Children|Comedy|Musical    175
## 24152 1996                                      Action|Crime|Drama|War    175
## 24153 1996                    Animation|Children|Drama|Musical|Romance    175
## 24166 1993                                      Comedy|Fantasy|Romance    175
## 24167 1985                                     Adventure|Comedy|Sci-Fi    175
## 24169 1922                                                      Horror    175
## 24171 1997                              Action|Romance|Sci-Fi|Thriller    175
## 24172 1997                                               Drama|Musical    175
## 24175 1997                           Action|Adventure|Fantasy|Thriller    175
## 24181 1997                                               Drama|Romance    175
## 24186 1998                                            Action|Drama|War    175
## 24192 1994        Adventure|Animation|Children|Fantasy|Musical|Romance    175
## 24196 1990                                       Drama|Fantasy|Romance    175
## 24199 1998                                              Comedy|Romance    175
## 24202 1999                                     Action|Adventure|Sci-Fi    175
## 24205 1999                                                      Comedy    175
## 24207 1992                                             Children|Comedy    175
## 24213 2000                                                Comedy|Drama    175
## 24214 1968                                               Drama|Romance    175
## 24217 2000                                                      Comedy    175
## 24218 2000                                               Action|Comedy    175
## 24219 2000                                        Action|Drama|Romance    175
## 24221 2000                                              Comedy|Romance    175
## 24222 2000                                                Comedy|Crime    175
## 24226 2001                                        Comedy|Drama|Romance    175
## 24240 2002                                Action|Adventure|Sci-Fi|IMAX    175
## 24245 2002                                     Horror|Mystery|Thriller    175
## 24254 2002                                              Comedy|Romance    175
## 24256 2002                                  Comedy|Crime|Drama|Musical    175
## 24257 2003                                              Comedy|Romance    175
## 24258 2003                                                Action|Crime    175
## 24260 1995                 Adventure|Animation|Children|Comedy|Fantasy    176
## 24261 1995                                  Adventure|Children|Fantasy    176
## 24262 1995                                                      Comedy    176
## 24263 1995                                              Children|Drama    176
## 24264 1995                                              Comedy|Romance    176
## 24265 1995                    Animation|Children|Drama|Musical|Romance    176
## 24266 1994                                                Drama|Horror    176
## 24269 1993                                                       Drama    176
## 24270 1994                                                      Comedy    176
## 24271 1994             Adventure|Animation|Children|Drama|Musical|IMAX    176
## 24272 1993                            Action|Adventure|Sci-Fi|Thriller    176
## 24273 1982                                      Action|Sci-Fi|Thriller    176
## 24274 1993                          Animation|Children|Fantasy|Musical    176
## 24275 1992                 Adventure|Animation|Children|Comedy|Musical    176
## 24278 1940                          Animation|Children|Fantasy|Musical    176
## 24279 1996                           Action|Adventure|Mystery|Thriller    176
## 24280 1988                 Adventure|Animation|Children|Comedy|Musical    176
## 24281 1996                    Animation|Children|Drama|Musical|Romance    176
## 24282 1950                  Animation|Children|Fantasy|Musical|Romance    176
## 24284 1965                                             Musical|Romance    176
## 24286 1981                                            Action|Adventure    176
## 24288 1979                                        Drama|Mystery|Sci-Fi    176
## 24289 1989                                                       Drama    176
## 24290 1986                                             Adventure|Drama    176
## 24291 1989                                            Action|Adventure    176
## 24292 1978                                      Comedy|Musical|Romance    176
## 24293 1982                                      Comedy|Musical|Romance    176
## 24294 1996                                        Action|Comedy|Sci-Fi    176
## 24295 1997                                                      Comedy    176
## 24296 1997                                     Action|Adventure|Comedy    176
## 24298 1997                 Adventure|Animation|Children|Comedy|Musical    176
## 24299 1997                                        Action|Comedy|Sci-Fi    176
## 24300 1998                                         Comedy|Drama|Sci-Fi    176
## 24301 1997                                               Drama|Romance    176
## 24302 1997                                                      Comedy    176
## 24303 1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance    176
## 24304 1998                                       Drama|Sci-Fi|Thriller    176
## 24305 1998                                              Comedy|Romance    176
## 24306 1961                                       Drama|Musical|Romance    176
## 24307 1942                                    Animation|Children|Drama    176
## 24308 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    176
## 24309 1967                           Animation|Children|Comedy|Musical    176
## 24310 1955                           Animation|Children|Comedy|Romance    176
## 24311 1989                   Animation|Children|Comedy|Musical|Romance    176
## 24312 1953                          Animation|Children|Fantasy|Musical    176
## 24313 1959                                  Animation|Children|Musical    176
## 24314 1984                                    Action|Adventure|Fantasy    176
## 24316 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    176
## 24318 1999                                              Comedy|Romance    176
## 24319 1999                                     Action|Adventure|Comedy    176
## 24320 1999                                    Animation|Comedy|Musical    176
## 24321 1999                                Action|Comedy|Sci-Fi|Western    176
## 24322 1999                                              Comedy|Romance    176
## 24323 1984                                        Action|Comedy|Sci-Fi    176
## 24324 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    176
## 24325 1999                                        Comedy|Drama|Fantasy    176
## 24327 1973                 Adventure|Animation|Children|Comedy|Musical    176
## 24328 1998                 Adventure|Animation|Children|Fantasy|Sci-Fi    176
## 24330 2000                                                       Drama    176
## 24331 2000                                            Adventure|Comedy    176
## 24332 2000                                               Comedy|Horror    176
## 24333 2000                                        Comedy|Drama|Romance    176
## 24334 2000                                                      Comedy    176
## 24335 2000                                     Children|Comedy|Fantasy    176
## 24337 2000                             Action|Adventure|Comedy|Fantasy    176
## 24338 2001                                        Comedy|Drama|Romance    176
## 24339 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    176
## 24341 2001                                    Action|Drama|Romance|War    176
## 24342 2001                                            Action|Adventure    176
## 24343 2000                                Crime|Drama|Mystery|Thriller    176
## 24344 2001                          Adventure|Animation|Fantasy|Sci-Fi    176
## 24345 2001                                              Comedy|Romance    176
## 24346 2001                                     Children|Comedy|Romance    176
## 24347 2001                               Drama|Horror|Mystery|Thriller    176
## 24348 2001                                                      Comedy    176
## 24349 2001                                  Adventure|Children|Fantasy    176
## 24351 2001                                              Comedy|Romance    176
## 24353 2002                             Action|Adventure|Drama|Thriller    176
## 24354 2001                                            Animation|Sci-Fi    176
## 24355 2002                                              Fantasy|Horror    176
## 24356 2002                         Adventure|Animation|Children|Comedy    176
## 24357 2002                            Action|Adventure|Sci-Fi|Thriller    176
## 24359 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    176
## 24360 2002                                      Horror|Sci-Fi|Thriller    176
## 24362 1988                                         Animation|Drama|War    176
## 24363 2002                                           Adventure|Fantasy    176
## 24364 2002                                      Action|Sci-Fi|Thriller    176
## 24367 2002                                                 Crime|Drama    176
## 24369 2001                            Action|Animation|Sci-Fi|Thriller    176
## 24370 2003                                                      Comedy    176
## 24372 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    176
## 24373 2003                                                Action|Crime    176
## 24375 2003                                       Action|Fantasy|Sci-Fi    176
## 24376 2003                                       Action|Fantasy|Horror    176
## 24377 1993                                             Children|Comedy    176
## 24378 2003                                       Action|Crime|Thriller    176
## 24379 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    176
## 24380 2000                                Action|Drama|Horror|Thriller    176
## 24386 2004                                       Action|Drama|Thriller    176
## 24387 2004                                  Action|Adventure|Drama|War    176
## 24388 1998                                            Adventure|Sci-Fi    176
## 24389 2004         Adventure|Animation|Children|Comedy|Musical|Romance    176
## 24390 2004                                      Adventure|Fantasy|IMAX    176
## 24391 2004                                                 Documentary    176
## 24392 2004                                     Horror|Mystery|Thriller    176
## 24393 2004                                        Comedy|Drama|Romance    176
## 24394 2004                                                       Drama    176
## 24395 2004                     Action|Adventure|Drama|Mystery|Thriller    176
## 24396 2004                                               Drama|Romance    176
## 24398 1989                  Adventure|Animation|Children|Drama|Fantasy    176
## 24400 2003                               Action|Animation|Drama|Sci-Fi    176
## 24401 2004                                       Action|Crime|Thriller    176
## 24403 2003                                                 Documentary    176
## 24404 2005                      Adventure|Children|Comedy|Fantasy|IMAX    176
## 24405 2004                                       Drama|Musical|Romance    176
## 24408 2005                                     Adventure|Comedy|Sci-Fi    176
## 24409 2005                                     Action|Adventure|Sci-Fi    176
## 24410 2005                                           Action|Crime|IMAX    176
## 24411 2005                              Comedy|Fantasy|Horror|Thriller    176
## 24412 2005                             Action|Crime|Drama|Thriller|War    176
## 24414 2005                               Comedy|Crime|Mystery|Thriller    176
## 24415 2002                                                Comedy|Drama    176
## 24416 2005                             Adventure|Fantasy|Thriller|IMAX    176
## 24417 2005                                  Adventure|Children|Fantasy    176
## 24418 2005                                               Drama|Romance    176
## 24419 2006                                 Action|Comedy|Crime|Western    176
## 24420 2006                                 Action|Sci-Fi|Thriller|IMAX    176
## 24423 2006                  Action|Animation|Film-Noir|Sci-Fi|Thriller    176
## 24424 2006                                      Drama|Mystery|Thriller    176
## 24425 2006                                                Comedy|Drama    176
## 24426 2006                                    Action|Adventure|Fantasy    176
## 24427 2006                                               Drama|Romance    176
## 24428 2006                                                 Documentary    176
## 24434 2006                                        Crime|Drama|Thriller    176
## 24435 2006                                    Action|Adventure|Fantasy    176
## 24437 2007                                     Action|Fantasy|War|IMAX    176
## 24438 2007                                               Drama|Musical    176
## 24439 2007                             Action|Adventure|Comedy|Fantasy    176
## 24440 2007                                           Documentary|Drama    176
## 24441 2007                            Adventure|Comedy|Fantasy|Romance    176
## 24442 2007                                         Action|Comedy|Crime    176
## 24443 2006                    Action|Adventure|Animation|Crime|Fantasy    176
## 24444 2007                                 Action|Crime|Drama|Thriller    176
## 24445 2007                                                 Crime|Drama    176
## 24446 2007 Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance    176
## 24447 2007                                  Adventure|Children|Fantasy    176
## 24448 2007                                        Comedy|Drama|Romance    176
## 24450 2008                                              Comedy|Romance    176
## 24451 2008                                     Action|Crime|Drama|IMAX    176
## 24452 2008                                              Comedy|Romance    176
## 24453 2008                              Action|Adventure|Comedy|Sci-Fi    176
## 24455 2008                                      Comedy|Musical|Romance    176
## 24456 2008                                                Action|Crime    176
## 24458 2007                                                      Action    176
## 24459 2008                                 Adventure|Drama|War|Western    176
## 24460 2008                              Drama|Fantasy|Romance|Thriller    176
## 24461 2009                                              Drama|Thriller    176
## 24462 2009                                        Comedy|Drama|Romance    176
## 24463 1992                                 Adventure|Animation|Fantasy    176
## 24464 2008                                      Action|Adventure|Drama    176
## 24465 2009                                                Comedy|Drama    176
## 24467 2009                              Action|Adventure|Comedy|Horror    176
## 24468 2009                                        Crime|Drama|Thriller    176
## 24469 2009                                        Comedy|Drama|Romance    176
## 24472 2009                  Animation|Children|Fantasy|Musical|Romance    176
## 24473 2009                               Action|Crime|Mystery|Thriller    176
## 24474 2010                                              Comedy|Romance    176
## 24476 2009                                            Action|Drama|War    176
## 24478 2010                                             Action|Thriller    176
## 24480 2010                                                       Drama    176
## 24481 2010                                              Comedy|Romance    176
## 24484 2010      Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX    176
## 24485 2010                                        Comedy|Drama|Romance    176
## 24486 2010                                              Drama|Thriller    176
## 24487 2010                                                       Drama    176
## 24488 2010                                                      Action    176
## 24489 2011                           Action|Adventure|Mystery|Thriller    176
## 24490 2011                               Action|Horror|Sci-Fi|Thriller    176
## 24493 2010                                                 Documentary    176
## 24494 2012                                Action|Adventure|Sci-Fi|IMAX    176
## 24495 2011                                              Drama|Thriller    176
## 24496 2011                                                       Drama    176
## 24497 2011                                       Crime|Sci-Fi|Thriller    176
## 24499 2012                      Action|Adventure|Drama|Sci-Fi|Thriller    176
## 24500 2012                                 Action|Adventure|Crime|IMAX    176
## 24502 2012                                        Action|Comedy|Sci-Fi    176
## 24503 2012                                          Comedy|Horror|IMAX    176
## 24504 2008                                    Action|Adventure|Fantasy    176
## 24505 2012                                   Action|Horror|Sci-Fi|IMAX    176
## 24506 2012                                      Action|Sci-Fi|Thriller    176
## 24507 2012                              Action|Adventure|Thriller|IMAX    176
## 24508 2012                                               Action|Sci-Fi    176
## 24509 2012                                              Drama|Thriller    176
## 24511 2012                                   Action|Adventure|Thriller    176
## 24512 2012                                                 Documentary    176
## 24513 2013                                Action|Adventure|Sci-Fi|IMAX    176
## 24514 2013                                    Action|Drama|Sci-Fi|IMAX    176
## 24515 2013                                          Action|Sci-Fi|IMAX    176
## 24522 1995                                       Action|Crime|Thriller    177
## 24526 1996                                      Action|Sci-Fi|Thriller    177
## 24528 1995                                      Action|Sci-Fi|Thriller    177
## 24531 1996                           Adventure|Children|Comedy|Musical    177
## 24534 1995                             Action|Adventure|Mystery|Sci-Fi    177
## 24541 1995                                         Action|Crime|Sci-Fi    177
## 24543 1995                                               Horror|Sci-Fi    177
## 24547 1994                                              Drama|Thriller    177
## 24549 1995                                                    Thriller    177
## 24550 1994                                               Comedy|Sci-Fi    177
## 24551 1995                   Adventure|Children|Comedy|Fantasy|Romance    177
## 24552 1994                                       Action|Crime|Thriller    177
## 24557 1995                                        Action|Comedy|Sci-Fi    177
## 24567 1994                                      Action|Sci-Fi|Thriller    177
## 24568 1994                                              Action|Fantasy    177
## 24569 1995                                             Horror|Thriller    177
## 24572 1993                                      Horror|Sci-Fi|Thriller    177
## 24574 1993                                     Action|Adventure|Sci-Fi    177
## 24581 1996                                   Action|Adventure|Thriller    177
## 24583 1994                                         Action|Drama|Sci-Fi    177
## 24585 1993                          Action|Crime|Drama|Sci-Fi|Thriller    177
## 24586 1993                                                    Thriller    177
## 24588 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    177
## 24589 1994                                   Action|Adventure|Thriller    177
## 24597 1996                                        Action|Horror|Sci-Fi    177
## 24604 1996                                      Action|Sci-Fi|Thriller    177
## 24610 1996                                             Action|Thriller    177
## 24611 1996                            Action|Adventure|Sci-Fi|Thriller    177
## 24613 1996                                             Sci-Fi|Thriller    177
## 24614 1996                                              Drama|Thriller    177
## 24615 1995                                             Horror|Thriller    177
## 24616 1996                                              Drama|Thriller    177
## 24618 1992                               Action|Horror|Sci-Fi|Thriller    177
## 24620 1997                                                    Thriller    177
## 24626 1981                            Action|Adventure|Sci-Fi|Thriller    177
## 24642 1991                                      Adventure|Drama|Sci-Fi    177
## 24643 1992                               Action|Horror|Sci-Fi|Thriller    177
## 24644 1991                                                    Thriller    177
## 24648 1989                                               Action|Sci-Fi    177
## 24655 1997                                Crime|Drama|Mystery|Thriller    177
## 24656 1997                                             Action|Thriller    177
## 24658 1997                                            Mystery|Thriller    177
## 24660 1997                                       Action|Drama|Thriller    177
## 24661 1997                                   Action|Adventure|Thriller    177
## 24663 1997                                             Action|Thriller    177
## 24670 1997                                      Horror|Sci-Fi|Thriller    177
## 24671 1997                            Action|Adventure|Sci-Fi|Thriller    177
## 24674 1997                                      Horror|Sci-Fi|Thriller    177
## 24684 1997                                        Crime|Drama|Thriller    177
## 24689 1997                                              Crime|Thriller    177
## 24690 1997                                             Action|Thriller    177
## 24691 1997                                        Action|Horror|Sci-Fi    177
## 24695 1998                         Adventure|Film-Noir|Sci-Fi|Thriller    177
## 24696 1997                           Adventure|Children|Fantasy|Sci-Fi    177
## 24700 1998                                             Sci-Fi|Thriller    177
## 24707 1998                                      Action|Sci-Fi|Thriller    177
## 24709 1998                              Action|Romance|Sci-Fi|Thriller    177
## 24717 1961                                     Children|Comedy|Fantasy    177
## 24722 1992                                      Children|Comedy|Sci-Fi    177
## 24723 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    177
## 24724 1985                                  Adventure|Children|Fantasy    177
## 24726 1998                                             Horror|Thriller    177
## 24728 1990                                             Horror|Thriller    177
## 24738 1984                                                      Sci-Fi    177
## 24741 1995                                            Action|Drama|War    178
## 24744 1994                                 Action|Crime|Drama|Thriller    178
## 24747 1994                                    Comedy|Drama|Romance|War    178
## 24749 1993                          Animation|Children|Fantasy|Musical    178
## 24750 1993                                              Crime|Thriller    178
## 24752 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    178
## 24754 1964                                                  Comedy|War    178
## 24757 1952                                      Comedy|Musical|Romance    178
## 24758 1939                          Adventure|Children|Fantasy|Musical    178
## 24760 1940                                              Comedy|Romance    178
## 24761 1964                             Children|Comedy|Fantasy|Musical    178
## 24762 1988                                       Action|Crime|Thriller    178
## 24765 1982                                       Children|Drama|Sci-Fi    178
## 24767 1975                                                       Drama    178
## 24769 1987                     Action|Adventure|Comedy|Fantasy|Romance    178
## 24773 1990                                                 Crime|Drama    178
## 24777 1989                                                       Drama    178
## 24778 1967                                        Comedy|Drama|Romance    178
## 24779 1980                                                      Horror    178
## 24783 1992                                               Drama|Western    178
## 24784 1944                                     Comedy|Mystery|Thriller    178
## 24788 1989                                      Children|Drama|Fantasy    178
## 24789 1922                                                      Horror    178
## 24790 1975                                               Action|Horror    178
## 24793 1997                                               Drama|Romance    178
## 24794 1998                                     Crime|Drama|Romance|War    178
## 24797 1987                                   Action|Comedy|Crime|Drama    178
## 24800 1959                                  Animation|Children|Musical    178
## 24801 1992                                        Crime|Drama|Thriller    178
## 24803 1999                                      Action|Sci-Fi|Thriller    178
## 24804 1984                                        Action|Comedy|Sci-Fi    178
## 24805 1983                                             Children|Comedy    178
## 24811 1942                                              Comedy|Musical    178
## 24812 1948                                                       Drama    178
## 24813 1969                                             Adventure|Drama    178
## 24814 1982                                        Comedy|Drama|Romance    178
## 24815 2000                                 Action|Crime|Drama|Thriller    178
## 24816 2000                                                       Drama    178
## 24817 1977                                      Adventure|Drama|Sci-Fi    178
## 24818 1980                                                      Comedy    178
## 24819 2000                                      Action|Adventure|Drama    178
## 24820 1925                                    Adventure|Comedy|Romance    178
## 24822 2000                                                       Drama    178
## 24823 2000                                        Crime|Drama|Thriller    178
## 24824 1983                                          Action|Crime|Drama    178
## 24825 2001                               Drama|Mystery|Sci-Fi|Thriller    178
## 24827 2002                                                Comedy|Drama    178
## 24828 2002                                                 Documentary    178
## 24829 1983                                       Drama|Sci-Fi|Thriller    178
## 24830 2000                                Action|Drama|Horror|Thriller    178
## 24832 1956                                             Adventure|Drama    178
## 24833 2004                                                      Comedy    178
## 24834 2004                                               Comedy|Horror    178
## 24835 2004                                                       Drama    178
## 24836 2003                                            Mystery|Thriller    178
## 24837 2004                                                       Drama    178
## 24839 2005                                     Action|Adventure|Sci-Fi    178
## 24841 2006                                                      Comedy    178
## 24842 2006                                      Adventure|Comedy|Drama    178
## 24845 2007                                     Action|Fantasy|War|IMAX    178
## 24846 1966                            Animation|Comedy|Fantasy|Musical    178
## 24848 2007                                             Animation|Drama    178
## 24849 2007                                        Comedy|Drama|Romance    178
## 24850 2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX    178
## 24851 2008                                         Action|Comedy|Crime    178
## 24853 2008                                                      Comedy    178
## 24854 2008                                                Comedy|Drama    178
## 24856 2010                                      Drama|Mystery|Thriller    178
## 24858 2010                                          Comedy|Documentary    178
## 24859 2010                                                Comedy|Drama    178
## 24860 2010                                              Drama|Thriller    178
## 24861 2010                                              Drama|Thriller    178
## 24862 2011                                              Drama|Thriller    178
## 24864 2012                                                Comedy|Drama    178
## 24865 2012                                        Action|Drama|Western    178
## 24866 2013                                Action|Adventure|Sci-Fi|IMAX    178
## 24867 2013                                          Comedy|Crime|Drama    178
## 24869 2014                                                      Sci-Fi    178
## 24872 1985                                     Adventure|Comedy|Sci-Fi    179
## 24873 1998                                         Comedy|Drama|Sci-Fi    179
## 24874 2000                                                      Comedy    179
## 24876 2001                                        Comedy|Drama|Romance    179
## 24877 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    179
## 24878 2001                                              Comedy|Romance    179
## 24883 2004                                        Drama|Romance|Sci-Fi    179
## 24886 2004                                                      Comedy    179
## 24887 2004                            Action|Adventure|Sci-Fi|Thriller    179
## 24888 2004                                       Action|Crime|Thriller    179
## 24893 2006                                Comedy|Drama|Fantasy|Romance    179
## 24894 2006                                   Action|Adventure|Thriller    179
## 24897 2007                                        Comedy|Drama|Romance    179
## 24899 2009                                                Comedy|Drama    179
## 24907 2012                                 Action|Adventure|Crime|IMAX    179
## 24909 1994                                                      Comedy    180
## 24912 1995                                                      Comedy    180
## 24920 1972                                      Action|Adventure|Drama    180
## 24921 1986                                        Comedy|Drama|Romance    180
## 24922 1986                                                       Drama    180
## 24924 1999                                                Comedy|Crime    180
## 24925 1999                                                       Drama    180
## 24927 1990                                               Comedy|Horror    180
## 24928 1999                                    Animation|Comedy|Musical    180
## 24929 1999                                       Drama|Horror|Thriller    180
## 24934 1993                                               Comedy|Sci-Fi    181
## 24940 1997                                   Action|Adventure|Thriller    181
## 24942 1997                                      Drama|Mystery|Thriller    181
## 24944 1984                                               Comedy|Horror    181
## 24961 1995                                        Comedy|Drama|Romance    182
## 24965 1995                                                      Action    182
## 24967 1995                                Adventure|Animation|Children    182
## 24968 1995                                               Drama|Romance    182
## 24969 1995                                       Comedy|Crime|Thriller    182
## 24970 1995                                               Drama|Romance    182
## 24972 1995                                                 Crime|Drama    182
## 24973 1995                    Animation|Children|Drama|Musical|Romance    182
## 24975 1996                                              Drama|Thriller    182
## 24977 1996                                              Drama|Thriller    182
## 24978 1996                                   Action|Adventure|Thriller    182
## 24981 1994                                  Adventure|Children|Fantasy    182
## 24983 1995                                                      Comedy    182
## 24986 1995                                       Action|Crime|Thriller    182
## 24988 1995                                    Adventure|Children|Drama    182
## 24989 1995                                                      Comedy    182
## 24991 1995                                              Comedy|Romance    182
## 24996 1995                                        Comedy|Drama|Romance    182
## 24998 1994                                            Adventure|Comedy    182
## 24999 1995                                       Action|Comedy|Romance    182
## 25000 1995                                              Comedy|Romance    182
## 25004 1995                                              Children|Drama    182
## 25005 1992                                       Drama|Fantasy|Romance    182
## 25006 1994                                   Drama|Romance|War|Western    182
## 25008 1995                                                       Drama    182
## 25011 1994                                                       Drama    182
## 25013 1994                                                       Drama    182
## 25015 1994                                     Action|Adventure|Sci-Fi    182
## 25017 1993                                                       Drama    182
## 25019 1994                                                      Comedy    182
## 25020 1995                                                    Children    182
## 25021 1994                                                      Comedy    182
## 25025 1994                                     Children|Comedy|Fantasy    182
## 25027 1994                                              Comedy|Romance    182
## 25028 1994                                               Action|Comedy    182
## 25033 1994                                               Action|Comedy    182
## 25036 1994                                               Drama|Romance    182
## 25038 1993                                     Children|Comedy|Fantasy    182
## 25042 1993                                    Adventure|Children|Drama    182
## 25045 1993                             Action|Adventure|Comedy|Fantasy    182
## 25046 1993                                                      Comedy    182
## 25049 1994                                     Action|Children|Romance    182
## 25050 1993                                                       Drama    182
## 25052 1993                                                       Drama    182
## 25055 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    182
## 25056 1993                                        Action|Drama|Western    182
## 25057 1994                                                Comedy|Drama    182
## 25061 1991                                       Crime|Horror|Thriller    182
## 25065 1996                                          Adventure|Children    182
## 25069 1994                                               Drama|Romance    182
## 25071 1996                                        Crime|Drama|Thriller    182
## 25078 1996                                             Children|Comedy    182
## 25080 1996                                                      Comedy    182
## 25082 1996                                                       Drama    182
## 25088 1971                             Children|Comedy|Fantasy|Musical    182
## 25089 1967                                                 Crime|Drama    182
## 25095 1977                                     Action|Adventure|Sci-Fi    183
## 25108 1980                                     Action|Adventure|Sci-Fi    183
## 25111 1967                                        Comedy|Drama|Romance    183
## 25113 1997                            Crime|Film-Noir|Mystery|Thriller    183
## 25116 1969                                                       Drama    183
## 25125 2000                                                      Comedy    183
## 25126 2000                                   Animation|Children|Comedy    183
## 25127 2000                                                      Comedy    183
## 25128 2000                                                Drama|Sci-Fi    183
## 25130 2000                                      Adventure|Comedy|Crime    183
## 25132 1995                                          Drama|Thriller|War    184
## 25134 1995                                              Comedy|Romance    184
## 25136 1994                                            Adventure|Comedy    184
## 25137 1994                                                 Documentary    184
## 25138 1994                                               Comedy|Sci-Fi    184
## 25145 1994                                                       Drama    184
## 25148 1994                                    Comedy|Drama|Romance|War    184
## 25151 1994                                                Comedy|Drama    184
## 25153 1994                    Action|Adventure|Comedy|Romance|Thriller    184
## 25154 1994                                                      Comedy    184
## 25155 1993                                             Comedy|Thriller    184
## 25157 1993                                   Action|Adventure|Thriller    184
## 25159 1993                                              Drama|Thriller    184
## 25163 1993                            Action|Adventure|Sci-Fi|Thriller    184
## 25164 1993                             Action|Adventure|Comedy|Fantasy    184
## 25166 1993                                                       Drama    184
## 25169 1990                                             Children|Comedy    184
## 25174 1990                                              Comedy|Romance    184
## 25180 1995                    Animation|Children|Drama|Musical|Romance    185
## 25183 1995                                        Adventure|Drama|IMAX    185
## 25184 1995                                      Action|Sci-Fi|Thriller    185
## 25186 1995                           Animation|Children|Comedy|Romance    185
## 25187 1994                                               Comedy|Sci-Fi    185
## 25188 1977                                     Action|Adventure|Sci-Fi    185
## 25189 1994                                 Comedy|Crime|Drama|Thriller    185
## 25196 1994             Adventure|Animation|Children|Drama|Musical|IMAX    185
## 25198 1993                                                       Drama    185
## 25199 1993                                              Comedy|Romance    185
## 25207 1937                    Animation|Children|Drama|Fantasy|Musical    185
## 25209 1940                          Animation|Children|Fantasy|Musical    185
## 25213 1988                 Adventure|Animation|Children|Comedy|Musical    185
## 25220 1996                    Animation|Children|Drama|Musical|Romance    185
## 25221 1996                               Comedy|Fantasy|Romance|Sci-Fi    185
## 25222 1959                                                Comedy|Crime    185
## 25224 1939                          Adventure|Children|Fantasy|Musical    185
## 25225 1968                                      Adventure|Drama|Sci-Fi    185
## 25227 1950                  Animation|Children|Fantasy|Musical|Romance    185
## 25228 1963                          Animation|Children|Fantasy|Musical    185
## 25229 1964                             Children|Comedy|Fantasy|Musical    185
## 25230 1941                            Animation|Children|Drama|Musical    185
## 25231 1951                Adventure|Animation|Children|Fantasy|Musical    185
## 25232 1981                                    Animation|Children|Drama    185
## 25234 1992                               Action|Horror|Sci-Fi|Thriller    185
## 25239 1951                                                       Drama    185
## 25245 1980                                     Action|Adventure|Sci-Fi    185
## 25249 1983                                     Action|Adventure|Sci-Fi    185
## 25252 1980                                       Action|Comedy|Musical    185
## 25257 1993                                      Comedy|Fantasy|Romance    185
## 25261 1940                          Animation|Children|Fantasy|Musical    185
## 25262 1984                                                      Comedy    185
## 25264 1989                                              Comedy|Romance    185
## 25265 1992                               Action|Horror|Sci-Fi|Thriller    185
## 25272 1997                            Action|Adventure|Sci-Fi|Thriller    185
## 25273 1997                 Adventure|Animation|Children|Comedy|Musical    185
## 25275 1997                                                Drama|Sci-Fi    185
## 25276 1997                                      Horror|Sci-Fi|Thriller    185
## 25278 1997                  Adventure|Animation|Children|Drama|Musical    185
## 25279 1997                                        Action|Horror|Sci-Fi    185
## 25280 1997                                     Children|Comedy|Fantasy    185
## 25282 1997                                                      Comedy    185
## 25283 1998                         Adventure|Film-Noir|Sci-Fi|Thriller    185
## 25284 1997                                        Comedy|Drama|Romance    185
## 25289 1998                                       Drama|Sci-Fi|Thriller    185
## 25291 1986                                   Adventure|Fantasy|Musical    185
## 25294 1942                                    Animation|Children|Drama    185
## 25295 1984                                            Adventure|Sci-Fi    185
## 25296 1998                                            Action|Drama|War    185
## 25297 1985                        Adventure|Animation|Children|Fantasy    185
## 25298 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    185
## 25299 1967                           Animation|Children|Comedy|Musical    185
## 25300 1955                           Animation|Children|Comedy|Romance    185
## 25301 1989                   Animation|Children|Comedy|Musical|Romance    185
## 25302 1961                                Adventure|Animation|Children    185
## 25303 1953                          Animation|Children|Fantasy|Musical    185
## 25306 1978                                             Children|Sci-Fi    185
## 25307 1991                                     Action|Adventure|Sci-Fi    185
## 25308 1959                                  Animation|Children|Musical    185
## 25309 1982                                     Action|Adventure|Sci-Fi    185
## 25310 1998                                                      Comedy    185
## 25311 1973                                          Animation|Children    185
## 25312 1982                          Adventure|Animation|Children|Drama    185
## 25313 1986                         Adventure|Animation|Children|Comedy    185
## 25314 1991                Adventure|Animation|Children|Musical|Western    185
## 25316 1988                                    Action|Adventure|Fantasy    185
## 25318 1998                 Adventure|Animation|Children|Comedy|Fantasy    185
## 25321 1998                                                      Comedy    185
## 25323 1986                                     Adventure|Comedy|Sci-Fi    185
## 25325 1956                                       Drama|Musical|Romance    185
## 25327 1999                                                      Comedy    185
## 25328 1999                                              Comedy|Fantasy    185
## 25329 1999                                     Action|Adventure|Sci-Fi    185
## 25334 1984                                        Action|Comedy|Sci-Fi    185
## 25335 1960                                               Comedy|Horror    185
## 25338 1983                                             Children|Comedy    185
## 25341 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    185
## 25346 1998                 Adventure|Animation|Children|Fantasy|Sci-Fi    185
## 25347 1940                                                       Drama    185
## 25350 1999                                     Adventure|Comedy|Sci-Fi    185
## 25351 1992                                                Comedy|Drama    185
## 25353 1990                       Action|Children|Comedy|Fantasy|Sci-Fi    185
## 25356 1985                                   Adventure|Fantasy|Romance    185
## 25357 1991                                    Adventure|Comedy|Fantasy    185
## 25358 1972                                               Drama|Musical    185
## 25359 1955                                      Comedy|Musical|Romance    185
## 25362 2000                                       Drama|Horror|Thriller    185
## 25363 2000                                               Drama|Musical    185
## 25365 2000                 Adventure|Animation|Children|Comedy|Fantasy    185
## 25366 1987                              Action|Adventure|Comedy|Sci-Fi    185
## 25367 1983                             Action|Adventure|Fantasy|Sci-Fi    185
## 25369 1991                                              Comedy|Western    185
## 25370 2001                        Adventure|Animation|Children|Fantasy    185
## 25373 1989                                                       Drama    185
## 25377 1980                                     Action|Adventure|Sci-Fi    185
## 25379 1992                           Animation|Children|Comedy|Musical    185
## 25380 1995                                                       Drama    186
## 25382 1996                                   Action|Adventure|Thriller    186
## 25384 1992                                       Action|Drama|Thriller    186
## 25387 1963                                               Comedy|Sci-Fi    186
## 25390 1999                                              Crime|Thriller    186
## 25391 1964                                    Adventure|Comedy|Musical    186
## 25395 2000                                                      Comedy    186
## 25397 2000                                        Action|Drama|Romance    186
## 25400 2001                               Action|Crime|Mystery|Thriller    186
## 25402 2001                                              Comedy|Romance    186
## 25408 2003                             Action|Adventure|Comedy|Fantasy    186
## 25412 2004                                        Drama|Romance|Sci-Fi    186
## 25416 2006                                Comedy|Drama|Fantasy|Romance    186
## 25417 2008                                     Action|Crime|Drama|IMAX    186
## 25418 2008                 Adventure|Animation|Children|Romance|Sci-Fi    186
## 25423 1995                                  Adventure|Children|Fantasy    187
## 25432 1995                                     Action|Adventure|Sci-Fi    187
## 25434 1994                                            Adventure|Comedy    187
## 25435 1995                           Animation|Children|Comedy|Romance    187
## 25436 1994                                                Comedy|Drama    187
## 25437 1994                                                 Crime|Drama    187
## 25441 1994                                      Adventure|Drama|Sci-Fi    187
## 25443 1994                                                      Comedy    187
## 25445 1994                                  Adventure|Children|Romance    187
## 25447 1994                                 Action|Comedy|Crime|Fantasy    187
## 25448 1994                                        Comedy|Drama|Romance    187
## 25450 1993                              Drama|Mystery|Romance|Thriller    187
## 25451 1993                                                      Comedy    187
## 25452 1993                                                       Drama    187
## 25454 1993                            Action|Adventure|Sci-Fi|Thriller    187
## 25455 1993                                                Comedy|Drama    187
## 25459 1994                                             Children|Comedy    187
## 25460 1990                                             Children|Comedy    187
## 25465 1940                          Animation|Children|Fantasy|Musical    187
## 25467 1996                                          Adventure|Children    187
## 25469 1996                Adventure|Animation|Children|Fantasy|Musical    187
## 25470 1996                                                      Comedy    187
## 25473 1996                    Animation|Children|Drama|Musical|Romance    187
## 25475 1996                                     Children|Comedy|Fantasy    187
## 25478 1946                              Children|Drama|Fantasy|Romance    187
## 25480 1996                                                       Drama    187
## 25481 1993                                    Adventure|Children|Drama    187
## 25485 1951                Adventure|Animation|Children|Fantasy|Musical    187
## 25486 1996                                       Action|Drama|Thriller    187
## 25487 1996                                               Drama|Romance    187
## 25492 1982                                       Children|Drama|Sci-Fi    187
## 25494 1987                     Action|Adventure|Comedy|Fantasy|Romance    187
## 25495 1957                                                       Drama    187
## 25496 1979                                            Action|Drama|War    187
## 25500 1996                            Action|Adventure|Sci-Fi|Thriller    187
## 25502 1991                                       Action|Mystery|Sci-Fi    187
## 25503 1978                                      Comedy|Musical|Romance    187
## 25504 1996                              Comedy|Horror|Mystery|Thriller    187
## 25505 1997                                                      Comedy    187
## 25506 1996                                               Drama|Romance    187
## 25508 1997                                     Action|Adventure|Comedy    187
## 25511 1997                                       Drama|Sci-Fi|Thriller    187
## 25512 1997                                                       Drama    187
## 25516 1997                              Comedy|Horror|Mystery|Thriller    187
## 25523 1998                                        Comedy|Drama|Romance    187
## 25525 1998                              Action|Romance|Sci-Fi|Thriller    187
## 25526 1998                                              Comedy|Romance    187
## 25527 1976                                                       Drama    187
## 25530 1987                                   Action|Comedy|Crime|Drama    187
## 25532 1942                                    Animation|Children|Drama    187
## 25534 1967                           Animation|Children|Comedy|Musical    187
## 25535 1955                           Animation|Children|Comedy|Romance    187
## 25538 1992                                            Children|Musical    187
## 25540 1959                                  Animation|Children|Musical    187
## 25543 1963                                               Comedy|Sci-Fi    187
## 25544 1985                                               Drama|Romance    187
## 25546 1998                                                       Drama    187
## 25547 1993                                               Drama|Romance    187
## 25556 1999                                      Action|Sci-Fi|Thriller    187
## 25561 1999                                     Action|Adventure|Sci-Fi    187
## 25562 1999                                     Action|Adventure|Comedy    187
## 25564 1999                                       Drama|Horror|Thriller    187
## 25568 1993                        Crime|Drama|Mystery|Romance|Thriller    187
## 25571 1999                                        Comedy|Drama|Fantasy    187
## 25572 1999                                                    Thriller    187
## 25573 1987                                              Drama|Thriller    187
## 25574 1991                                Comedy|Drama|Fantasy|Romance    187
## 25583 2000                              Comedy|Horror|Mystery|Thriller    187
## 25588 2000                               Crime|Horror|Mystery|Thriller    187
## 25589 1999                                               Drama|Romance    187
## 25590 1985                                            Adventure|Comedy    187
## 25591 1986                                               Drama|Romance    187
## 25592 2000                                     Action|Adventure|Sci-Fi    187
## 25596 2001                                       Drama|Musical|Romance    187
## 25598 1991                               Comedy|Drama|Mystery|Thriller    187
## 25601 2001                                                      Comedy    187
## 25602 2001                                     Children|Comedy|Romance    187
## 25607 2001                                           Adventure|Fantasy    187
## 25609 1970                                            Comedy|Drama|War    187
## 25613 2002                                     Action|Mystery|Thriller    187
## 25614 2002                   Adventure|Children|Comedy|Fantasy|Mystery    187
## 25616 2002                                        Action|Comedy|Sci-Fi    187
## 25617 2002                                                      Comedy    187
## 25623 2002                                           Adventure|Fantasy    187
## 25625 2002                                  Comedy|Crime|Drama|Musical    187
## 25626 2003                                             Horror|Thriller    187
## 25631 1998                                     Horror|Mystery|Thriller    187
## 25633 2003                            Action|Adventure|Sci-Fi|Thriller    187
## 25634 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    187
## 25637 2003                                        Comedy|Drama|Romance    187
## 25638 2002                                        Action|Horror|Sci-Fi    187
## 25639 1990                                        Comedy|Horror|Sci-Fi    187
## 25640 2003                                        Comedy|Drama|Romance    187
## 25641 1942                                           Adventure|Fantasy    187
## 25642 2003                                       Action|Crime|Thriller    187
## 25643 2003                                                       Drama    187
## 25644 2003                                                 Documentary    187
## 25645 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    187
## 25647 2003                                             Horror|Thriller    187
## 25648 1920                                        Crime|Fantasy|Horror    187
## 25649 2000                                               Drama|Romance    187
## 25650 1990                                            Children|Fantasy    187
## 25651 2003                                       Drama|Fantasy|Romance    187
## 25652 2003                              Action|Adventure|Drama|Fantasy    187
## 25656 2004                                            Adventure|Comedy    187
## 25658 2004                                       Action|Drama|Thriller    187
## 25661 2000                                              Comedy|Romance    187
## 25663 1999                                                 Documentary    187
## 25665 2004                                      Adventure|Fantasy|IMAX    187
## 25666 2004                                         Action|Comedy|Crime    187
## 25668 2004                                Action|Adventure|Sci-Fi|IMAX    187
## 25671 1964                                                       Drama    187
## 25673 2004                           Action|Adventure|Animation|Comedy    187
## 25674 2004                                     Horror|Mystery|Thriller    187
## 25675 2004                  Action|Adventure|Animation|Children|Comedy    187
## 25676 2004                                                       Drama    187
## 25678 1964                                             Horror|Thriller    187
## 25679 1965                                   Animation|Children|Comedy    187
## 25681 1988                     Action|Adventure|Drama|Mystery|Thriller    187
## 25682 1998                                               Drama|Romance    187
## 25683 2003                         Comedy|Crime|Drama|Mystery|Thriller    187
## 25684 2004                           Adventure|Children|Comedy|Fantasy    187
## 25685 2006                     Animation|Drama|Mystery|Sci-Fi|Thriller    187
## 25692 2005                               Drama|Horror|Mystery|Thriller    187
## 25694 2005                                             Horror|Thriller    187
## 25695 2005                                               Drama|Romance    187
## 25696 2005                             Adventure|Fantasy|Thriller|IMAX    187
## 25698 2005                                  Adventure|Children|Fantasy    187
## 25700 1979                                                 Crime|Drama    187
## 25701 2006                                              Comedy|Romance    187
## 25704 2005                               Crime|Drama|Film-Noir|Mystery    187
## 25706 2006                                                 Documentary    187
## 25708 2006                                                       Drama    187
## 25716 2007                                              Comedy|Romance    187
## 25717 2007                         Action|Crime|Horror|Sci-Fi|Thriller    187
## 25720 2007                      Action|Adventure|Crime|Horror|Thriller    187
## 25721 2007                                Adventure|Drama|Fantasy|IMAX    187
## 25722 2007                                              Comedy|Romance    187
## 25723 2007                                            Animation|Comedy    187
## 25725 2007                                                Comedy|Drama    187
## 25726 2007                                              Drama|Thriller    187
## 25731 2008                                            Adventure|Comedy    187
## 25734 2008                                       Drama|Sci-Fi|Thriller    187
## 25736 1966                                   Animation|Children|Comedy    187
## 25738 2008                                               Drama|Romance    187
## 25739 2008                              Action|Comedy|Fantasy|Thriller    187
## 25743 2008                                                      Comedy    187
## 25748 1995                         Crime|Drama|Horror|Mystery|Thriller    188
## 25752 1995                                              Comedy|Romance    188
## 25753 1995                                            Mystery|Thriller    188
## 25754 1995                    Animation|Children|Drama|Musical|Romance    188
## 25756 1995                                                       Drama    188
## 25757 1995                                       Comedy|Horror|Romance    188
## 25761 1995                               Action|Adventure|Comedy|Crime    188
## 25762 1995                                          Adventure|Children    188
## 25763 1995                             Action|Adventure|Mystery|Sci-Fi    188
## 25764 1995                                       Action|Crime|Thriller    188
## 25765 1995                                         Action|Crime|Sci-Fi    188
## 25766 1995                                               Horror|Sci-Fi    188
## 25767 1995                                     Action|Adventure|Sci-Fi    188
## 25769 1994                                            Adventure|Comedy    188
## 25770 1994                                                Drama|Horror    188
## 25771 1995                                              Children|Drama    188
## 25772 1994                                                       Drama    188
## 25775 1995                                Action|Drama|Sci-Fi|Thriller    188
## 25778 1994                                     Action|Adventure|Sci-Fi    188
## 25779 1994                                        Comedy|Drama|Fantasy    188
## 25781 1994                                      Adventure|Drama|Sci-Fi    188
## 25782 1995                                              Comedy|Romance    188
## 25785 1994                                      Drama|Mystery|Thriller    188
## 25788 1994                                  Adventure|Children|Romance    188
## 25790 1994                                 Action|Comedy|Crime|Fantasy    188
## 25792 1994                                             Children|Comedy    188
## 25793 1994                                     Action|Romance|Thriller    188
## 25795 1993                                     Children|Comedy|Fantasy    188
## 25796 1994                                Action|Comedy|Crime|Thriller    188
## 25797 1993                                               Comedy|Sci-Fi    188
## 25798 1993                                              Drama|Thriller    188
## 25799 1993                                                    Thriller    188
## 25805 1993                                               Drama|Romance    188
## 25806 1993                          Action|Crime|Drama|Sci-Fi|Thriller    188
## 25808 1993                                        Comedy|Drama|Romance    188
## 25810 1993                          Animation|Children|Fantasy|Musical    188
## 25811 1994                                             Children|Comedy    188
## 25817 1989                                       Action|Crime|Thriller    188
## 25823 1996                           Action|Adventure|Mystery|Thriller    188
## 25824 1996                                    Action|Adventure|Fantasy    188
## 25826 1996                                               Comedy|Sci-Fi    188
## 25829 1996                            Action|Adventure|Sci-Fi|Thriller    188
## 25830 1996                                             Children|Comedy    188
## 25832 1996                                                Comedy|Crime    188
## 25833 1975                                  Adventure|Children|Fantasy    188
## 25835 1961                                     Children|Comedy|Romance    188
## 25836 1960                                          Adventure|Children    188
## 25837 1954                                      Adventure|Drama|Sci-Fi    188
## 25839 1968                                  Animation|Children|Musical    188
## 25840 1945                                  Animation|Children|Musical    188
## 25841 1963                          Animation|Children|Fantasy|Musical    188
## 25844 1977                        Adventure|Animation|Children|Musical    188
## 25845 1981                                    Animation|Children|Drama    188
## 25846 1995                          Action|Comedy|Crime|Drama|Thriller    189
## 25847 1995                           Animation|Children|Comedy|Romance    189
## 25848 1994                                                Drama|Horror    189
## 25851 1994                                               Action|Comedy    189
## 25852 1993                                   Action|Adventure|Thriller    189
## 25856 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi    189
## 25857 1996                           Action|Adventure|Romance|Thriller    189
## 25858 1996                                               Action|Sci-Fi    189
## 25859 1996                            Action|Adventure|Sci-Fi|Thriller    189
## 25861 1996                                                       Drama    189
## 25862 1941                                           Film-Noir|Mystery    189
## 25863 1968                                      Horror|Sci-Fi|Thriller    189
## 25864 1964                             Children|Comedy|Fantasy|Musical    189
## 25870 1988                                     Adventure|Drama|Romance    189
## 25874 1986                                               Drama|Romance    189
## 25875 1996                                               Drama|Mystery    189
## 25876 1996                                                       Drama    189
## 25877 1982                            Action|Adventure|Sci-Fi|Thriller    189
## 25879 1997                                                      Comedy    189
## 25880 1997                                                      Horror    189
## 25883 1998                                                Comedy|Crime    189
## 25884 1998                                                      Comedy    189
## 25885 1985                                               Drama|Romance    189
## 25886 1987                                   Action|Comedy|Crime|Drama    189
## 25888 1986                                     Adventure|Drama|Fantasy    189
## 25890 1993                                               Drama|Romance    189
## 25891 1980                                                Comedy|Drama    189
## 25892 1992                                                      Comedy    189
## 25893 1998                               Drama|Fantasy|Mystery|Romance    189
## 25895 1998                                                       Drama    189
## 25896 1998                                                       Drama    189
## 25897 1998                                                     Romance    189
## 25898 1998                         Adventure|Animation|Children|Comedy    189
## 25899 1985                                        Comedy|Drama|Romance    189
## 25900 1998                                       Children|Comedy|Drama    189
## 25901 1998                                               Horror|Sci-Fi    189
## 25902 1998                                                       Drama    189
## 25903 1999                                             Action|Thriller    189
## 25905 1970                                               Action|Sci-Fi    189
## 25906 1973                                               Action|Sci-Fi    189
## 25907 1972                                               Action|Sci-Fi    189
## 25908 1971                                               Action|Sci-Fi    189
## 25909 1999                                                       Drama    189
## 25910 1999                                                Action|Crime    189
## 25912 1999                                                      Comedy    189
## 25914 1999                                              Comedy|Romance    189
## 25915 1999                                          Comedy|Crime|Drama    189
## 25916 1999                                                      Comedy    189
## 25917 1999                                              Crime|Thriller    189
## 25918 1982                                               Horror|Sci-Fi    189
## 25919 1999                                       Drama|Sci-Fi|Thriller    189
## 25920 1999                                              Drama|Thriller    189
## 25922 1998                                               Drama|Mystery    189
## 25923 1999                                Crime|Drama|Mystery|Thriller    189
## 25926 1999                                    Animation|Comedy|Musical    189
## 25927 1999                                Action|Comedy|Sci-Fi|Western    189
## 25928 1999                                                       Drama    189
## 25930 1999                                                    Thriller    189
## 25933 1999                                             Horror|Thriller    189
## 25934 1984                                        Action|Comedy|Sci-Fi    189
## 25935 1999                                             Horror|Thriller    189
## 25936 1999                            Action|Adventure|Children|Comedy    189
## 25937 1999                               Action|Horror|Sci-Fi|Thriller    189
## 25938 1999                                              Comedy|Romance    189
## 25940 1999                                                      Comedy    189
## 25942 1999                                              Action|Mystery    189
## 25943 1999                                                      Comedy    189
## 25944 1999                                                       Drama    189
## 25945 1999                                                      Comedy    189
## 25946 1999                                              Comedy|Romance    189
## 25947 1999                                             Comedy|Thriller    189
## 25948 1999                                    Action|Adventure|Fantasy    189
## 25949 1999                                      Horror|Sci-Fi|Thriller    189
## 25950 1999                                              Drama|Thriller    189
## 25953 1999                                                Comedy|Drama    189
## 25954 1999                                 Action|Crime|Drama|Thriller    189
## 25955 1999                                                       Drama    189
## 25956 1999                                              Comedy|Romance    189
## 25957 1999                                 Action|Crime|Drama|Thriller    189
## 25959 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    189
## 25960 1999                                             Horror|Thriller    189
## 25962 1999                                                       Drama    189
## 25963 1999                                              Comedy|Romance    189
## 25964 1999                                                    Thriller    189
## 25965 1982                                                      Horror    189
## 25967 1999                      Action|Fantasy|Horror|Mystery|Thriller    189
## 25968 1999                                                      Comedy    189
## 25969 1999                                                 Crime|Drama    189
## 25971 1999                                     Adventure|Comedy|Sci-Fi    189
## 25973 2000                                                      Comedy    189
## 25974 1999                                                       Drama    189
## 25976 1999                                                       Drama    189
## 25979 1999                                                    Thriller    189
## 25981 1992                                                Comedy|Drama    189
## 25982 2000                              Comedy|Horror|Mystery|Thriller    189
## 25983 2000                                             Adventure|Drama    189
## 25984 2000                                        Crime|Drama|Thriller    189
## 25985 2000                                                Comedy|Drama    189
## 25986 2000                                             Action|Thriller    189
## 25987 2000                                               Comedy|Sci-Fi    189
## 25988 1999                             Fantasy|Horror|Mystery|Thriller    189
## 25989 2000                                                       Drama    189
## 25990 2000                                              Drama|Thriller    189
## 25991 1978                                            Mystery|Thriller    189
## 25992 1987                                            Comedy|Drama|War    189
## 25993 2000                               Action|Crime|Romance|Thriller    189
## 25995 2000                                              Drama|Thriller    189
## 25996 2000                                             Children|Comedy    189
## 25998 2000                                   Action|Adventure|Thriller    189
## 26000 2000                                                Action|Crime    189
## 26001 2000                                   Animation|Children|Comedy    189
## 26004 1986                                       Action|Crime|Thriller    189
## 26005 1991                                       Action|Crime|Thriller    189
## 26006 1990                                         Crime|Drama|Romance    189
## 26007 1984                                                  Action|War    189
## 26008 1973                                    Action|Adventure|Fantasy    189
## 26009 2000                                     Action|Adventure|Sci-Fi    189
## 26011 1992                                               Action|Sci-Fi    189
## 26012 1977                                           Adventure|Fantasy    189
## 26013 1991                                                      Comedy    189
## 26014 1992                                              Drama|Thriller    189
## 26015 1970                                           Action|Comedy|War    189
## 26016 1990                                               Action|Comedy    189
## 26017 1989                                                       Drama    189
## 26019 2000                                          Comedy|Documentary    189
## 26021 1991                                                      Comedy    189
## 26031 1998                 Adventure|Animation|Children|Comedy|Fantasy    190
## 26034 1998                                                       Drama    190
## 26036 1998                                           Animation|Musical    190
## 26039 1998                                                       Drama    190
## 26045 1999                                                      Comedy    190
## 26047 1999                                      Action|Sci-Fi|Thriller    190
## 26050 1999                                              Comedy|Romance    190
## 26052 1999                                     Action|Adventure|Comedy    190
## 26059 1999                                              Comedy|Romance    190
## 26060 1986                                    Adventure|Drama|Thriller    190
## 26063 1999                                                      Comedy    190
## 26065 1999                                                Comedy|Drama    190
## 26066 1999                                 Action|Crime|Drama|Thriller    190
## 26072 1999                                                Comedy|Drama    190
## 26074 1999                                           Drama|Romance|War    190
## 26078 2000                                        Crime|Drama|Thriller    190
## 26081 2000                                                       Drama    190
## 26082 1995                                   Action|Adventure|Thriller    191
## 26083 1995                                              Children|Drama    191
## 26084 1995                                            Mystery|Thriller    191
## 26085 1995                                            Action|Drama|War    191
## 26087 1995                               Action|Adventure|Comedy|Crime    191
## 26089 1995                                       Action|Crime|Thriller    191
## 26090 1995                                       Action|Crime|Thriller    191
## 26091 1995                                     Action|Adventure|Sci-Fi    191
## 26092 1994                                            Adventure|Comedy    191
## 26093 1995                                Action|Drama|Sci-Fi|Thriller    191
## 26098 1994                                                      Comedy    191
## 26099 1994                                 Action|Crime|Drama|Thriller    191
## 26101 1994                    Action|Adventure|Comedy|Romance|Thriller    191
## 26102 1993                                   Action|Adventure|Thriller    191
## 26103 1993                                              Drama|Thriller    191
## 26105 1993                            Action|Adventure|Sci-Fi|Thriller    191
## 26106 1992                 Adventure|Animation|Children|Comedy|Musical    191
## 26108 1989                                       Action|Crime|Thriller    191
## 26110 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    191
## 26112 1995                                                      Comedy    192
## 26114 1995                                              Comedy|Romance    192
## 26115 1995                                    Action|Adventure|Fantasy    192
## 26116 1995                                            Mystery|Thriller    192
## 26117 1995                    Animation|Children|Drama|Musical|Romance    192
## 26119 1995                                          Adventure|Children    192
## 26120 1995                             Action|Adventure|Mystery|Sci-Fi    192
## 26121 1995                                             Action|Children    192
## 26122 1995                                       Action|Crime|Thriller    192
## 26123 1995                                     Action|Adventure|Sci-Fi    192
## 26126 1994                                                       Drama    192
## 26129 1994                                     Action|Adventure|Sci-Fi    192
## 26133 1994                                      Drama|Mystery|Thriller    192
## 26134 1994                                     Children|Comedy|Fantasy    192
## 26138 1994                                 Action|Comedy|Crime|Fantasy    192
## 26139 1994                                               Action|Comedy    192
## 26140 1994                                             Children|Comedy    192
## 26141 1994                                     Action|Romance|Thriller    192
## 26142 1994                    Action|Adventure|Comedy|Romance|Thriller    192
## 26144 1993                                   Action|Adventure|Thriller    192
## 26145 1993                                     Action|Adventure|Sci-Fi    192
## 26146 1993                                              Drama|Thriller    192
## 26147 1993                                    Adventure|Children|Drama    192
## 26149 1993                                             Action|Thriller    192
## 26154 1993                                        Comedy|Drama|Romance    192
## 26155 1993                          Animation|Children|Fantasy|Musical    192
## 26160 1989                                       Action|Crime|Thriller    192
## 26161 1991                                       Crime|Horror|Thriller    192
## 26164 1990                                              Comedy|Romance    192
## 26165 1996                           Action|Adventure|Romance|Thriller    192
## 26171 1994                                 Comedy|Crime|Drama|Thriller    193
## 26185 1980                                     Action|Adventure|Sci-Fi    193
## 26186 1987                     Action|Adventure|Comedy|Fantasy|Romance    193
## 26187 1957                                                       Drama    193
## 26194 1974                            Crime|Film-Noir|Mystery|Thriller    193
## 26197 1987                                                      Comedy    193
## 26206 1992                                          Comedy|Crime|Drama    193
## 26222 1999                 Adventure|Animation|Children|Comedy|Fantasy    193
## 26226 1982                                        Comedy|Drama|Romance    193
## 26228 1982                                                Comedy|Drama    193
## 26232 1995                                                      Comedy    194
## 26234 1995                                    Action|Adventure|Fantasy    194
## 26235 1996                                   Action|Adventure|Thriller    194
## 26238 1995                                    Action|Drama|Romance|War    194
## 26239 1995                                          Adventure|Children    194
## 26240 1995                             Action|Adventure|Mystery|Sci-Fi    194
## 26242 1995                                      Action|Sci-Fi|Thriller    194
## 26243 1995                                         Action|Crime|Sci-Fi    194
## 26244 1995                                               Horror|Sci-Fi    194
## 26246 1995                                     Action|Adventure|Sci-Fi    194
## 26248 1994                                            Adventure|Comedy    194
## 26249 1994                                                Drama|Horror    194
## 26250 1995                                Action|Drama|Sci-Fi|Thriller    194
## 26251 1994                                 Comedy|Crime|Drama|Thriller    194
## 26253 1994                                        Comedy|Drama|Fantasy    194
## 26256 1994                                                      Comedy    194
## 26258 1994                               Action|Crime|Fantasy|Thriller    194
## 26262 1994                                    Adventure|Comedy|Western    194
## 26263 1994                                     Action|Romance|Thriller    194
## 26265 1994                                Action|Comedy|Crime|Thriller    194
## 26266 1994                                    Adventure|Comedy|Western    194
## 26268 1993                                     Action|Adventure|Sci-Fi    194
## 26269 1993                                              Drama|Thriller    194
## 26270 1993                                                    Thriller    194
## 26271 1993                            Action|Adventure|Sci-Fi|Thriller    194
## 26272 1993                                                Comedy|Drama    194
## 26274 1993                          Animation|Children|Fantasy|Musical    194
## 26275 1990                       Comedy|Drama|Fantasy|Romance|Thriller    194
## 26279 1990                                              Comedy|Romance    194
## 26283 1995                                               Drama|Romance    195
## 26285 1995                                              Comedy|Romance    195
## 26286 1995                                          Action|Crime|Drama    195
## 26287 1995                                  Adventure|Children|Fantasy    195
## 26288 1996                                   Action|Adventure|Thriller    195
## 26289 1996                                                      Comedy    195
## 26290 1995                                            Action|Drama|War    195
## 26291 1976                                        Crime|Drama|Thriller    195
## 26292 1995                               Action|Adventure|Comedy|Crime    195
## 26293 1995                                        Adventure|Drama|IMAX    195
## 26295 1995                                       Action|Crime|Thriller    195
## 26296 1995                                               Horror|Sci-Fi    195
## 26297 1995                                     Action|Adventure|Sci-Fi    195
## 26299 1994                                                 Documentary    195
## 26300 1995                   Adventure|Children|Comedy|Fantasy|Romance    195
## 26302 1994                                        Comedy|Drama|Romance    195
## 26303 1994                                       Action|Crime|Thriller    195
## 26304 1994                                 Comedy|Crime|Drama|Thriller    195
## 26305 1995                                     Action|Thriller|Western    195
## 26306 1994                                                 Crime|Drama    195
## 26307 1995                                         Action|Crime|Horror    195
## 26308 1994                                 Action|Crime|Drama|Thriller    195
## 26309 1994                                    Comedy|Drama|Romance|War    195
## 26310 1994                                    Adventure|Comedy|Western    195
## 26311 1994                                     Action|Romance|Thriller    195
## 26312 1994                                      Action|Sci-Fi|Thriller    195
## 26313 1994                    Action|Adventure|Comedy|Romance|Thriller    195
## 26314 1994                                              Action|Fantasy    195
## 26315 1994                                Action|Comedy|Crime|Thriller    195
## 26316 1993                                      Horror|Sci-Fi|Thriller    195
## 26317 1994                                       Adventure|Documentary    195
## 26319 1994                                                      Comedy    195
## 26321 1993                             Action|Adventure|Comedy|Fantasy    195
## 26323 1993                                              Children|Drama    195
## 26324 1982                                      Action|Sci-Fi|Thriller    195
## 26325 1990                       Comedy|Drama|Fantasy|Romance|Thriller    195
## 26326 1991                                               Action|Sci-Fi    195
## 26329 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    195
## 26330 1990                                              Comedy|Romance    195
## 26334 1996                               Drama|Fantasy|Horror|Thriller    195
## 26335 1996                           Action|Adventure|Romance|Thriller    195
## 26336 1996                               Comedy|Fantasy|Romance|Sci-Fi    195
## 26338 1940                                        Comedy|Drama|Romance    195
## 26339 1952                                      Comedy|Musical|Romance    195
## 26340 1951                                             Musical|Romance    195
## 26342 1959                   Action|Adventure|Mystery|Romance|Thriller    195
## 26343 1960                                        Comedy|Drama|Romance    195
## 26347 1954                                              Comedy|Romance    195
## 26348 1953                                        Comedy|Drama|Romance    195
## 26351 1982                                                      Comedy    195
## 26357 1947                                       Drama|Fantasy|Romance    195
## 26358 1937                                                       Drama    195
## 26359 1935                                      Comedy|Musical|Romance    195
## 26360 1940                                              Comedy|Romance    195
## 26361 1956                                            Adventure|Comedy    195
## 26364 1946                                                 Crime|Drama    195
## 26366 1958                                                       Drama    195
## 26368 1957                                              Children|Drama    195
## 26370 1965                                             Musical|Romance    195
## 26371 1988                                       Action|Crime|Thriller    195
## 26372 1971                             Children|Comedy|Fantasy|Musical    195
## 26374 1979                                                      Comedy    195
## 26375 1982                                      Comedy|Musical|Romance    195
## 26378 1986                                                   Drama|War    195
## 26380 1982                                                       Drama    195
## 26381 1982                                       Children|Drama|Sci-Fi    195
## 26382 1986                                              Action|Romance    195
## 26383 1955                                                       Drama    195
## 26385 1975                                                Comedy|Crime    195
## 26386 1981                            Action|Adventure|Sci-Fi|Thriller    195
## 26387 1975                                    Adventure|Comedy|Fantasy    195
## 26389 1988                                                 Documentary    195
## 26392 1987                     Action|Adventure|Comedy|Fantasy|Romance    195
## 26393 1981                                            Action|Adventure    195
## 26395 1966                                    Action|Adventure|Western    195
## 26399 1990                                                 Crime|Drama    195
## 26406 1952                                               Drama|Romance    195
## 26407 1980                                                       Drama    195
## 26409 1983                                                       Drama    195
## 26412 1971                                        Comedy|Drama|Romance    195
## 26413 1984                                      Action|Sci-Fi|Thriller    195
## 26414 1989                                                   Drama|War    195
## 26421 1933                                          Comedy|Musical|War    195
## 26422 1986                                             Adventure|Drama    195
## 26423 1931                                    Crime|Film-Noir|Thriller    195
## 26425 1978                                                   Drama|War    195
## 26426 1993                                      Comedy|Fantasy|Romance    195
## 26427 1962                                          Crime|Thriller|War    195
## 26429 1985                                     Adventure|Comedy|Sci-Fi    195
## 26431 1986                                    Action|Adventure|Fantasy    195
## 26438 1989                                            Action|Adventure    195
## 26439 1979                                                Comedy|Drama    195
## 26441 1989                                      Children|Drama|Fantasy    195
## 26443 1989                                              Comedy|Romance    195
## 26444 1992                               Action|Horror|Sci-Fi|Thriller    195
## 26446 1990                                   Action|Adventure|Thriller    195
## 26447 1991                                       Action|Mystery|Sci-Fi    195
## 26448 1982                            Action|Adventure|Sci-Fi|Thriller    195
## 26449 1984                                     Action|Adventure|Sci-Fi    195
## 26451 1978                                      Comedy|Musical|Romance    195
## 26453 1996                                        Action|Comedy|Sci-Fi    195
## 26454 1996                                               Drama|Romance    195
## 26456 1987                                                Comedy|Drama    195
## 26458 1997                                   Action|Adventure|Thriller    195
## 26459 1997                                            Children|Fantasy    195
## 26460 1997                                                Action|Drama    195
## 26461 1997                                             Action|Thriller    195
## 26463 1997                                                Comedy|Drama    195
## 26464 1997                                        Action|Horror|Sci-Fi    195
## 26465 1997                                     Children|Comedy|Fantasy    195
## 26466 1997                                                      Comedy    195
## 26469 1998                                     Action|Adventure|Sci-Fi    195
## 26470 1998                                      Adventure|Comedy|Drama    195
## 26471 1998                                Action|Comedy|Crime|Thriller    195
## 26473 1932                                               Drama|Romance    195
## 26474 1941                                       Drama|Musical|Romance    195
## 26476 1953                                           Drama|Romance|War    195
## 26477 1955                                               Drama|Romance    195
## 26478 1961                                       Drama|Musical|Romance    195
## 26479 1967                                               Drama|Mystery    195
## 26481 1971                                       Action|Crime|Thriller    195
## 26482 1976                                                       Drama    195
## 26483 1979                                                       Drama    195
## 26484 1981                                                       Drama    195
## 26487 1989                                                       Drama    195
## 26488 1971                                               Drama|Mystery    195
## 26489 1984                                               Comedy|Sci-Fi    195
## 26490 1987                                   Action|Comedy|Crime|Drama    195
## 26491 1989                                   Action|Comedy|Crime|Drama    195
## 26492 1992                                   Action|Comedy|Crime|Drama    195
## 26493 1990                                               Comedy|Horror    195
## 26494 1972                                      Action|Adventure|Drama    195
## 26497 1984                                            Adventure|Sci-Fi    195
## 26498 1990                                Crime|Drama|Mystery|Thriller    195
## 26501 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    195
## 26503 1965                                           Drama|Romance|War    195
## 26504 1983                                       Drama|Romance|Western    195
## 26505 1981                                                   Drama|War    195
## 26506 1985                                          Adventure|Children    195
## 26507 1992                                            Children|Musical    195
## 26508 1980                                    Adventure|Comedy|Musical    195
## 26509 1991                                     Action|Adventure|Sci-Fi    195
## 26510 1984                                      Comedy|Fantasy|Romance    195
## 26512 1982                                     Action|Adventure|Sci-Fi    195
## 26513 1979                                                      Comedy    195
## 26514 1982                                       Comedy|Crime|Thriller    195
## 26515 1983                                                      Comedy    195
## 26516 1991                                                 Crime|Drama    195
## 26517 1984                                    Action|Adventure|Fantasy    195
## 26518 1991                                     Children|Comedy|Fantasy    195
## 26519 1966                                                       Drama    195
## 26520 1985                                       Comedy|Fantasy|Sci-Fi    195
## 26521 1967                                  Adventure|Children|Musical    195
## 26522 1982                          Adventure|Animation|Children|Drama    195
## 26523 1984                                              Comedy|Romance    195
## 26524 1980                                            Adventure|Comedy    195
## 26525 1988                                              Comedy|Fantasy    195
## 26528 1988                                    Action|Adventure|Fantasy    195
## 26529 1987                                          Action|Crime|Drama    195
## 26530 1944                                                   Drama|War    195
## 26532 1987                                        Comedy|Drama|Romance    195
## 26533 1992                                        Crime|Drama|Thriller    195
## 26534 1982                               Action|Horror|Sci-Fi|Thriller    195
## 26535 1990                                       Drama|Fantasy|Romance    195
## 26537 1992                                                      Comedy    195
## 26538 1986                                                       Drama    195
## 26539 1980                                                       Drama    195
## 26540 1998                                      Comedy|Horror|Thriller    195
## 26542 1998                                             Action|Thriller    195
## 26544 1998                                                      Comedy    195
## 26546 1976                   Adventure|Fantasy|Romance|Sci-Fi|Thriller    195
## 26547 1985                                   Action|Adventure|Thriller    195
## 26549 1985                                   Action|Adventure|Thriller    195
## 26550 1988                               Action|Adventure|Thriller|War    195
## 26551 1985                             Action|Adventure|Comedy|Romance    195
## 26552 1984                             Action|Adventure|Comedy|Romance    195
## 26553 1985                                               Comedy|Sci-Fi    195
## 26554 1982                                                Action|Drama    195
## 26555 1985                                                Action|Drama    195
## 26556 1990                                                Action|Drama    195
## 26557 1985          Action|Adventure|Children|Fantasy|Mystery|Thriller    195
## 26558 1989                                                      Comedy    195
## 26559 1986                                               Drama|Fantasy    195
## 26560 1986                              Action|Comedy|Romance|Thriller    195
## 26561 1986                                                  Action|War    195
## 26562 1999                                                Comedy|Crime    195
## 26563 1974                             Action|Adventure|Drama|Thriller    195
## 26564 1973                              Action|Sci-Fi|Thriller|Western    195
## 26565 1976                                     Action|Adventure|Sci-Fi    195
## 26567 1970                                               Action|Sci-Fi    195
## 26568 1972                                               Action|Sci-Fi    195
## 26569 1971                                               Action|Sci-Fi    195
## 26570 1999                                               Action|Sci-Fi    195
## 26571 1999                                                Action|Crime    195
## 26572 1999                                                      Comedy    195
## 26573 1990                                                Action|Crime    195
## 26574 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    195
## 26575 1999                                     Action|Adventure|Sci-Fi    195
## 26576 1978                                     Action|Adventure|Sci-Fi    195
## 26577 1980                                               Action|Sci-Fi    195
## 26578 1975                                Comedy|Horror|Musical|Sci-Fi    195
## 26580 1999                                    Animation|Comedy|Musical    195
## 26581 1999                                Action|Comedy|Sci-Fi|Western    195
## 26582 1999                                              Comedy|Romance    195
## 26583 1999                                       Drama|Horror|Thriller    195
## 26584 1999                                             Horror|Thriller    195
## 26585 1999                               Action|Horror|Sci-Fi|Thriller    195
## 26586 1960                                    Action|Drama|Romance|War    195
## 26587 1985                                                       Drama    195
## 26588 1986                                       Comedy|Horror|Musical    195
## 26589 1987                                                Comedy|Drama    195
## 26590 1999                                              Action|Mystery    195
## 26591 1978                                                      Comedy    195
## 26592 1971                                                      Comedy    195
## 26594 1988                                Comedy|Drama|Fantasy|Romance    195
## 26595 1983                                             Children|Comedy    195
## 26596 1999                                    Action|Adventure|Fantasy    195
## 26597 1968                  Adventure|Animation|Comedy|Fantasy|Musical    195
## 26599 1964                                    Adventure|Comedy|Musical    195
## 26600 1967                                                      Comedy    195
## 26603 1983                                                      Comedy    195
## 26604 1990                            Action|Adventure|Sci-Fi|Thriller    195
## 26606 1986                                                      Comedy    195
## 26607 1981                                               Drama|Romance    195
## 26608 1958                                         Musical|Romance|War    195
## 26610 1965                                              Comedy|Musical    195
## 26611 1964                                   Action|Adventure|Thriller    195
## 26612 1964                                              Action|Western    195
## 26613 1981                             Adventure|Comedy|Fantasy|Sci-Fi    195
## 26614 1979                                       Drama|Fantasy|Musical    195
## 26615 1987                          Action|Crime|Drama|Sci-Fi|Thriller    195
## 26616 1990                                Action|Crime|Sci-Fi|Thriller    195
## 26618 1980                                                       Drama    195
## 26619 1981                                   Action|Adventure|Thriller    195
## 26620 1999                                             Horror|Thriller    195
## 26621 1969                                                       Drama    195
## 26626 1983                                                      Comedy    195
## 26627 1999                                    Adventure|Comedy|Fantasy    195
## 26628 1942                                              Comedy|Musical    195
## 26631 1987                                              Comedy|Romance    195
## 26632 1963                                                      Comedy    195
## 26634 1999                              Fantasy|Horror|Mystery|Romance    195
## 26637 1984                                                       Drama    195
## 26638 1975                                        Comedy|Drama|Romance    195
## 26639 1992                                                       Drama    195
## 26641 1991                                                Action|Drama    195
## 26642 1940                                       Drama|Romance|Western    195
## 26643 1979                                                       Drama    195
## 26644 1999                                                 Crime|Drama    195
## 26645 1971                                                       Drama    195
## 26646 1985                                        Crime|Drama|Thriller    195
## 26648 1999                                                       Drama    195
## 26649 1973                                               Drama|Romance    195
## 26650 1953                                                   Drama|War    195
## 26651 1988                               Action|Crime|Romance|Thriller    195
## 26653 1970                                                       Drama    195
## 26654 1982                                        Comedy|Drama|Romance    195
## 26655 1977                                              Comedy|Romance    195
## 26656 1992                                                      Comedy    195
## 26657 1992                                                Comedy|Drama    195
## 26659 1992                                      Drama|Romance|Thriller    195
## 26660 1992                                                       Drama    195
## 26661 1931                                        Comedy|Drama|Romance    195
## 26664 1961                                                       Drama    195
## 26665 1979                                                Comedy|Drama    195
## 26666 1986                                               Drama|Romance    195
## 26667 1988                                        Comedy|Drama|Romance    195
## 26668 1975                                                 Crime|Drama    195
## 26669 1973                                                Comedy|Drama    195
## 26671 1984                                     Children|Comedy|Musical    195
## 26673 1951                                  Action|Adventure|Drama|War    195
## 26675 1989                                                       Drama    195
## 26676 1968                                                       Crime    195
## 26677 1985                                                Action|Drama    195
## 26679 1984                                            Action|Drama|War    195
## 26680 1987                                            Comedy|Drama|War    195
## 26681 1967                                                       Drama    195
## 26682 1963                                    Adventure|Drama|Thriller    195
## 26686 2000                                        Comedy|Drama|Romance    195
## 26687 1969                                     Adventure|Drama|Western    195
## 26688 1978                                                       Drama    195
## 26690 1968                                                      Comedy    195
## 26691 1958                                      Comedy|Fantasy|Romance    195
## 26692 1978                                            Action|Drama|War    195
## 26693 1989                                                Comedy|Drama    195
## 26694 1987                                      Action|Sci-Fi|Thriller    195
## 26695 1981                                              Crime|Thriller    195
## 26696 1982                                                Comedy|Drama    195
## 26697 1962                                       Drama|Horror|Thriller    195
## 26698 1955                                      Comedy|Musical|Romance    195
## 26699 1980                                                      Comedy    195
## 26700 2000                                         Action|Thriller|War    195
## 26702 1983                                                Comedy|Drama    195
## 26703 1985                                            Adventure|Comedy    195
## 26705 1979                            Action|Adventure|Sci-Fi|Thriller    195
## 26706 1974                                   Action|Adventure|Thriller    195
## 26707 1944                                            Action|Drama|War    195
## 26709 1968                                               Drama|Romance    195
## 26711 1990                                      Action|Sci-Fi|Thriller    195
## 26712 1987                                               Action|Sci-Fi    195
## 26713 1984                              Adventure|Drama|Romance|Sci-Fi    195
## 26714 1988                                 Crime|Drama|Sci-Fi|Thriller    195
## 26715 1979                                     Action|Adventure|Sci-Fi    195
## 26716 1990                                       Action|Comedy|Romance    195
## 26717 2000                                                Action|Crime    195
## 26718 1973                                                       Drama    195
## 26719 1973                                                 Crime|Drama    195
## 26720 1986                             Action|Adventure|Comedy|Fantasy    195
## 26721 1925                                                   Drama|War    195
## 26722 2000                                       Action|Crime|Thriller    195
## 26723 2000                                   Animation|Children|Comedy    195
## 26724 2000                 Adventure|Animation|Children|Comedy|Fantasy    195
## 26725 2000                                              Drama|Thriller    195
## 26726 1977                                                      Comedy    195
## 26727 1986                                       Action|Crime|Thriller    195
## 26728 1980                                                   Drama|War    195
## 26729 1970                                           Action|Comedy|War    195
## 26730 1990                                               Action|Comedy    195
## 26731 2000                                       Drama|Horror|Thriller    195
## 26734 1965                                              Comedy|Western    195
## 26735 2000                                    Action|Adventure|Fantasy    195
## 26736 2000                         Comedy|Crime|Drama|Romance|Thriller    195
## 26738 1940                                                      Comedy    195
## 26739 2000                                       Action|Drama|Thriller    195
## 26740 2000                                              Drama|Thriller    195
## 26742 2000                                                       Drama    195
## 26743 1994                                               Action|Comedy    195
## 26744 2000                                                Comedy|Drama    195
## 26745 2000                                               Action|Comedy    195
## 26746 2000                                               Drama|Romance    195
## 26747 2000                                                      Comedy    195
## 26749 1971                                   Action|Adventure|Thriller    195
## 26750 2000                                      Action|Sci-Fi|Thriller    195
## 26751 2000                                               Drama|Romance    195
## 26752 2000                                     Children|Comedy|Fantasy    195
## 26753 2000                                                Drama|Sci-Fi    195
## 26754 2000                                                       Drama    195
## 26755 2000                                            Action|Adventure    195
## 26757 2000                 Adventure|Animation|Children|Comedy|Fantasy    195
## 26758 2000                                              Comedy|Romance    195
## 26759 2000                                                       Drama    195
## 26760 2000                                                       Drama    195
## 26761 2000                                        Comedy|Drama|Romance    195
## 26762 2000                                                Comedy|Crime    195
## 26763 2000                                                      Horror    195
## 26765 1982                                               Drama|Romance    195
## 26766 1970                                            Comedy|Drama|War    195
## 26771 1996                                            Action|Adventure    196
## 26772 1953                                        Comedy|Drama|Romance    196
## 26776 1998                                                      Comedy    196
## 26779 1992                                             Children|Comedy    196
## 26780 1984                                  Adventure|Children|Fantasy    196
## 26784 1999                                      Drama|Mystery|Thriller    196
## 26785 1986                                       Comedy|Horror|Musical    196
## 26790 1999                                                       Drama    196
## 26791 1999                                              Comedy|Romance    196
## 26794 1999                                        Crime|Drama|Thriller    196
## 26800 1999                                    Adventure|Comedy|Fantasy    196
## 26801 1987                                              Comedy|Romance    196
## 26804 1999                      Action|Fantasy|Horror|Mystery|Thriller    196
## 26809 2000                                             Adventure|Drama    196
## 26812 2000                                                      Comedy    196
## 26813 2000                                                      Sci-Fi    196
## 26817 2000                                          Animation|Children    196
## 26818 2000                                                    Thriller    196
## 26826 2000                                                Comedy|Drama    196
## 26828 2000                                         Action|Thriller|War    196
## 26829 1992                                            Mystery|Thriller    196
## 26831 1993                                               Horror|Sci-Fi    196
## 26833 2000                                                       Drama    196
## 26835 2000                                               Action|Sci-Fi    196
## 26837 1992                                              Comedy|Romance    196
## 26838 2000                                                Comedy|Crime    196
## 26839 1997                                                Comedy|Drama    196
## 26848 1992                                                      Comedy    196
## 26850 1965                               Action|Drama|Thriller|Western    196
## 26855 1982                                                      Comedy    196
## 26856 1983                                                      Comedy    196
## 26857 1985                                                      Comedy    196
## 26858 1990                                      Action|Sci-Fi|Thriller    196
## 26864 1987                           Film-Noir|Horror|Mystery|Thriller    196
## 26866 1995                                     Mystery|Sci-Fi|Thriller    197
## 26868 1995                                              Comedy|Romance    197
## 26869 1994                                     Action|Adventure|Sci-Fi    197
## 26871 1994                                    Comedy|Drama|Romance|War    197
## 26872 1994                                 Action|Comedy|Crime|Fantasy    197
## 26880 1968                                     Adventure|Comedy|Sci-Fi    197
## 26885 1954                                      Adventure|Drama|Sci-Fi    197
## 26886 1992                               Action|Horror|Sci-Fi|Thriller    197
## 26889 1993                      Action|Adventure|Comedy|Fantasy|Horror    197
## 26901 1998                         Adventure|Film-Noir|Sci-Fi|Thriller    197
## 26911 1988                                              Comedy|Fantasy    197
## 26912 1984                                                      Sci-Fi    197
## 26913 1976                                     Action|Adventure|Sci-Fi    197
## 26917 1983                                     Action|Adventure|Sci-Fi    197
## 26921 1981                             Adventure|Comedy|Fantasy|Sci-Fi    197
## 26922 1993                                              Comedy|Fantasy    197
## 26926 1979                                     Action|Adventure|Sci-Fi    197
## 26927 1981                            Action|Adventure|Sci-Fi|Thriller    197
## 26930 1996                                 Comedy|Crime|Drama|Thriller    198
## 26934 1996                                                Comedy|Drama    198
## 26936 1992                                      Crime|Mystery|Thriller    198
## 26938 1989                                                       Drama    198
## 26939 1981                                            Action|Adventure    198
## 26951 1992                                               Drama|Western    198
## 26952 1986                                      Comedy|Drama|Film-Noir    198
## 26954 1996                            Adventure|Animation|Comedy|Crime    198
## 26955 1996                                                      Comedy    198
## 26957 1997                                                      Comedy    198
## 26958 1997                                                Comedy|Drama    198
## 26963 1999                                                      Comedy    198
## 26965 1999                                             Adventure|Drama    198
## 26966 1989                                          Comedy|Crime|Drama    198
## 26968 1999                                              Drama|Thriller    198
## 26969 1999                                                 Crime|Drama    198
## 26971 1999                                      Drama|Mystery|Thriller    198
## 26974 1992                                                       Drama    198
## 26975 1992                               Action|Crime|Thriller|Western    198
## 26981 2000                                                      Comedy    198
## 26982 1984                                                Comedy|Drama    198
## 26984 2000                                        Action|Drama|Romance    198
## 26985 2000                                                       Drama    198
## 26990 2001                                                Comedy|Drama    198
## 26991 2000                                                       Drama    198
## 26993 2001                                                   Drama|War    198
## 26997 2002                                                Comedy|Drama    198
## 26998 2002                                               Drama|Romance    198
## 27001 2002                                           Adventure|Fantasy    198
## 27002 2002                                                   Drama|War    198
## 27003 2003                                              Comedy|Musical    198
## 27005 1995                                   Action|Adventure|Thriller    199
## 27008 1995                                       Action|Crime|Thriller    199
## 27010 1995                                     Mystery|Sci-Fi|Thriller    199
## 27017 1995                                              Comedy|Romance    199
## 27018 1995                                     Action|Adventure|Sci-Fi    199
## 27025 1994                                       Comedy|Drama|Thriller    199
## 27027 1994                    Action|Adventure|Comedy|Romance|Thriller    199
## 27028 1994                                              Action|Fantasy    199
## 27030 1993                            Action|Adventure|Sci-Fi|Thriller    199
## 27033 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    199
## 27037 1996                                 Comedy|Crime|Drama|Thriller    199
## 27038 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi    199
## 27041 1996                            Action|Adventure|Sci-Fi|Thriller    199
## 27042 1972                                                 Crime|Drama    199
## 27043 1968                                      Adventure|Drama|Sci-Fi    199
## 27048 1996                                              Drama|Thriller    199
## 27050 1981                                            Action|Adventure    199
## 27053 1990                                                 Crime|Drama    199
## 27059 1987                                Action|Comedy|Fantasy|Horror    199
## 27062 1988                           Action|Adventure|Animation|Sci-Fi    199
## 27064 1996                            Action|Adventure|Sci-Fi|Thriller    199
## 27065 1996                                               Drama|Musical    199
## 27067 1997                            Action|Adventure|Sci-Fi|Thriller    199
## 27069 1997                                                Drama|Sci-Fi    199
## 27072 1997                                         Action|Thriller|War    199
## 27077 1997                                        Action|Horror|Sci-Fi    199
## 27079 1997                                   Action|Adventure|Thriller    199
## 27080 1998                                                Comedy|Crime    199
## 27082 1998                                      Action|Sci-Fi|Thriller    199
## 27083 1998                              Action|Romance|Sci-Fi|Thriller    199
## 27084 1978                                                      Horror    199
## 27091 1997                              Horror|Mystery|Sci-Fi|Thriller    199
## 27093 1998                                                 Crime|Drama    199
## 27096 1985                                                Action|Drama    199
## 27101 1998                                      Crime|Mystery|Thriller    199
## 27102 1999                                     Action|Adventure|Sci-Fi    199
## 27104 1999                                Action|Comedy|Sci-Fi|Western    199
## 27105 1984                                        Action|Comedy|Sci-Fi    199
## 27108 1999                                               Comedy|Sci-Fi    199
## 27118 1987                                        Action|Horror|Sci-Fi    199
## 27120 1999                                                      Comedy    199
## 27122 2000                                     Action|Adventure|Sci-Fi    199
## 27124 1971                                   Action|Adventure|Thriller    199
## 27125 2000                                      Action|Sci-Fi|Thriller    199
## 27127 1981                                     Fantasy|Horror|Thriller    199
## 27128 2001                                               Action|Comedy    199
## 27130 2001                                      Adventure|Drama|Sci-Fi    199
## 27132 1988                                      Action|Sci-Fi|Thriller    199
## 27133 2001                               Drama|Horror|Mystery|Thriller    199
## 27134 2001                                      Horror|Sci-Fi|Thriller    199
## 27135 2001                               Drama|Mystery|Sci-Fi|Thriller    199
## 27136 2001                                      Action|Sci-Fi|Thriller    199
## 27140 2002                                Action|Drama|Sci-Fi|Thriller    199
## 27142 2002                                     Action|Adventure|Sci-Fi    199
## 27143 2002                               Action|Horror|Sci-Fi|Thriller    199
## 27144 2002                            Action|Adventure|Sci-Fi|Thriller    199
## 27147 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    199
## 27149 2002                                      Action|Sci-Fi|Thriller    199
## 27150 2002                                           Adventure|Fantasy    199
## 27151 2002                                                 Crime|Drama    199
## 27152 2002                                                   Drama|War    199
## 27157 2003                            Action|Adventure|Sci-Fi|Thriller    199
## 27158 1986          Action|Adventure|Animation|Children|Fantasy|Sci-Fi    199
## 27160 2003                                                Action|Crime    199
## 27161 2002                                        Action|Horror|Sci-Fi    199
## 27162 2003                                     Action|Adventure|Sci-Fi    199
## 27163 1985                                      Horror|Sci-Fi|Thriller    199
## 27165 1968                                              Comedy|Western    199
## 27166 2003                                         Crime|Drama|Mystery    199
## 27167 2003                                       Action|Crime|Thriller    199
## 27169 1991                                               Action|Sci-Fi    199
## 27172 1984                    Adventure|Animation|Drama|Fantasy|Sci-Fi    199
## 27173 2003                              Action|Adventure|Drama|Fantasy    199
## 27175 2000                                      Comedy|Horror|Thriller    199
## 27176 2004                                Action|Drama|Horror|Thriller    199
## 27177 1978                                         Action|Drama|Horror    199
## 27178 2004                                       Action|Drama|Thriller    199
## 27180 1998                                            Adventure|Sci-Fi    199
## 27181 1999                                            Adventure|Sci-Fi    199
## 27182 2003                                              Fantasy|Sci-Fi    199
## 27185 2004                                      Action|Sci-Fi|Thriller    199
## 27186 1956                          Action|Adventure|Drama|Romance|War    199
## 27187 1999                                           Documentary|Drama    199
## 27188 2004                                Action|Adventure|Sci-Fi|IMAX    199
## 27190 2004                            Action|Adventure|Sci-Fi|Thriller    199
## 27191 1954                                                   Adventure    199
## 27193 2002                                               Comedy|Horror    199
## 27194 2004                               Action|Horror|Sci-Fi|Thriller    199
## 27195 2004                               Action|Horror|Sci-Fi|Thriller    199
## 27197 2004                                      Drama|Mystery|Thriller    199
## 27202 1998                                Crime|Drama|Mystery|Thriller    199
## 27204 2003                               Action|Animation|Drama|Sci-Fi    199
## 27213 2003                                             Adventure|Drama    199
## 27216 2005                                              Comedy|Romance    199
## 27217 2005                                      Action|Sci-Fi|Thriller    199
## 27218 2005                                     Action|Adventure|Sci-Fi    199
## 27219 2004                   Action|Adventure|Animation|Fantasy|Sci-Fi    199
## 27221 2005                             Adventure|Drama|Horror|Thriller    199
## 27222 2005                                                Comedy|Crime    199
## 27223 2006                                              Crime|Thriller    199
## 27225 2006                                        Crime|Drama|Thriller    199
## 27227 2005                               Crime|Drama|Film-Noir|Mystery    199
## 27230 2006                                Comedy|Drama|Fantasy|Romance    199
## 27233 2006                      Action|Adventure|Drama|Sci-Fi|Thriller    199
## 27239 2007                                     Action|Fantasy|War|IMAX    199
## 27240 2007                         Action|Crime|Horror|Sci-Fi|Thriller    199
## 27241 2007                             Adventure|Drama|Sci-Fi|Thriller    199
## 27243 2007                                      Horror|Sci-Fi|Thriller    199
## 27245 2008                                Crime|Drama|Mystery|Thriller    199
## 27246 2007                      Action|Adventure|Crime|Horror|Thriller    199
## 27247 2007                                       Drama|Horror|Thriller    199
## 27248 2007                                                      Comedy    199
## 27249 2007                             Action|Adventure|Crime|Thriller    199
## 27252 2007                         Action|Drama|Horror|Sci-Fi|Thriller    199
## 27255 2007                                        Crime|Drama|Thriller    199
## 27256 2007                               Action|Horror|Sci-Fi|Thriller    199
## 27258 2007                                         Crime|Drama|Western    199
## 27259 2007                                       Crime|Horror|Thriller    199
## 27260 2007                                        Crime|Drama|Thriller    199
## 27265 2007                          Action|Horror|Sci-Fi|Thriller|IMAX    199
## 27266 2007                                                Comedy|Drama    199
## 27268 2007                                        Action|Horror|Sci-Fi    199
## 27269 2008                              Action|Mystery|Sci-Fi|Thriller    199
## 27272 2008                                                Comedy|Drama    199
## 27275 2007                                               Drama|Romance    199
## 27277 2008                                     Action|Adventure|Sci-Fi    199
## 27279 2007                                         Documentary|Musical    199
## 27280 2008                                                       Drama    199
## 27281 2008                                               Action|Sci-Fi    199
## 27282 2008                 Adventure|Animation|Children|Romance|Sci-Fi    199
## 27283 2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX    199
## 27284 2008                                                      Comedy    199
## 27285 2008                                                       Drama    199
## 27286 2008                                 Action|Adventure|Comedy|War    199
## 27287 2008                            Action|Adventure|Sci-Fi|Thriller    199
## 27288 2008                                          Comedy|Crime|Drama    199
## 27289 2008                                                 Crime|Drama    199
## 27292 2008                                       Crime|Horror|Thriller    199
## 27293 2008                                              Comedy|Musical    199
## 27294 2008                               Drama|Fantasy|Mystery|Romance    199
## 27296 2009                              Action|Fantasy|Horror|Thriller    199
## 27297 2008                                             Horror|Thriller    199
## 27298 2009                                                Comedy|Drama    199
## 27299 2008                                         Documentary|Musical    199
## 27300 2009                             Action|Adventure|Fantasy|Sci-Fi    199
## 27303 2009                                        Crime|Drama|Thriller    199
## 27304 2009                                                       Drama    199
## 27305 2009                                         Action|Comedy|Crime    199
## 27306 2009                               Drama|Mystery|Sci-Fi|Thriller    199
## 27307 2009                                      Action|Sci-Fi|Thriller    199
## 27309 2009                            Action|Adventure|Sci-Fi|Thriller    199
## 27310 2009                                               Drama|Musical    199
## 27311 2009                                                Comedy|Crime    199
## 27312 2009                              Action|Adventure|Comedy|Sci-Fi    199
## 27313 2009                                Action|Adventure|Sci-Fi|IMAX    199
## 27314 2009                      Adventure|Fantasy|Mystery|Romance|IMAX    199
## 27317 2009                                         Action|Comedy|Drama    199
## 27319 2009                               Crime|Horror|Mystery|Thriller    199
## 27320 2009                                Action|Adventure|Sci-Fi|IMAX    199
## 27322 2008                                             Horror|Thriller    199
## 27323 2010                                Action|Drama|Horror|Thriller    199
## 27324 2010                                      Action|Adventure|Drama    199
## 27325 2010                              Action|Fantasy|Horror|Thriller    199
## 27326 2010                                             Horror|Thriller    199
## 27328 2010                                         Action|Comedy|Crime    199
## 27329 2010                                      Drama|Mystery|Thriller    199
## 27330 2010                         Action|Drama|Horror|Sci-Fi|Thriller    199
## 27331 2009                                        Crime|Drama|Thriller    199
## 27332 2009                                 Comedy|Crime|Drama|Thriller    199
## 27334 2009                                          Comedy|Crime|Drama    199
## 27336 2010                                        Comedy|Drama|Romance    199
## 27338 2010                                                      Comedy    199
## 27339 2010                                              Drama|Thriller    199
## 27342 2010                                      Action|Sci-Fi|Thriller    199
## 27344 2010                                                      Comedy    199
## 27346 2010                                   Action|Adventure|Thriller    199
## 27347 2010                         Action|Adventure|Drama|Thriller|War    199
## 27348 2010                          Action|Horror|Sci-Fi|Thriller|IMAX    199
## 27350 2010                                        Crime|Drama|Thriller    199
## 27352 2010                                               Action|Comedy    199
## 27353 2010                                     Horror|Mystery|Thriller    199
## 27355 2010                                Crime|Drama|Romance|Thriller    199
## 27358 2010                                                     Western    199
## 27359 2010                                Action|Adventure|Sci-Fi|IMAX    199
## 27360 2010                                    Adventure|Comedy|Fantasy    199
## 27362 2011                   Action|Comedy|Crime|Fantasy|Thriller|IMAX    199
## 27366 2011                                              Comedy|Romance    199
## 27367 2011                                       Drama|Horror|Thriller    199
## 27368 2011                                      Drama|Mystery|Thriller    199
## 27369 2011                                                      Comedy    199
## 27370 2011                                     Romance|Sci-Fi|Thriller    199
## 27371 2011                                       Action|Drama|Thriller    199
## 27372 2011                                                      Comedy    199
## 27373 2011                                             Adventure|Drama    199
## 27374 2011                                           Action|Sci-Fi|War    199
## 27375 2010                                              Fantasy|Horror    199
## 27379 2009                                          Comedy|Documentary    199
## 27385 2011                                                      Comedy    199
## 27387 2011                                        Comedy|Drama|Romance    199
## 27388 2011                                              Comedy|Romance    199
## 27389 2011                                Action|Drama|Sci-Fi|Thriller    199
## 27390 2011                                                      Comedy    199
## 27391 2011                                         Action|Comedy|Crime    199
## 27394 2011                                    Drama|Film-Noir|Thriller    199
## 27395 2011                              Horror|Mystery|Sci-Fi|Thriller    199
## 27396 2011                                       Crime|Sci-Fi|Thriller    199
## 27399 2011              Action|Adventure|Comedy|Crime|Mystery|Thriller    199
## 27400 2011                              Action|Adventure|Thriller|IMAX    199
## 27401 2011                                                Comedy|Drama    199
## 27403 2012                                      Action|Sci-Fi|Thriller    199
## 27405 2012                                        Comedy|Drama|Romance    199
## 27416 2013                                      Drama|Mystery|Thriller    199
## 27419 2013                                          Children|Drama|War    199
## 27422 2013          Adventure|Animation|Comedy|Fantasy|Musical|Romance    199
## 27423 2013                                                 Crime|Drama    199
## 27424 2013                                                Comedy|Drama    199
## 27425 2014                                                      Comedy    199
## 27426 1995                 Adventure|Animation|Children|Comedy|Fantasy    200
## 27427 1995                                  Adventure|Children|Fantasy    200
## 27429 1995                                            Action|Drama|War    200
## 27432 1995                                       Action|Crime|Thriller    200
## 27436 1994                                  Adventure|Children|Romance    200
## 27437 1994             Adventure|Animation|Children|Drama|Musical|IMAX    200
## 27438 1994                                 Action|Comedy|Crime|Fantasy    200
## 27439 1994                                     Action|Romance|Thriller    200
## 27441 1993                                    Adventure|Children|Drama    200
## 27442 1993                            Action|Adventure|Sci-Fi|Thriller    200
## 27445 1990                                             Children|Comedy    200
## 27446 1992                 Adventure|Animation|Children|Comedy|Musical    200
## 27448 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    200
## 27450 1996                           Action|Adventure|Mystery|Thriller    200
## 27451 1996                            Action|Adventure|Sci-Fi|Thriller    200
## 27453 1979                                                      Comedy    200
## 27454 1987                                       Drama|Musical|Romance    200
## 27456 1982                                       Children|Drama|Sci-Fi    200
## 27457 1985                                              Fantasy|Sci-Fi    200
## 27463 1996                                   Adventure|Children|Comedy    200
## 27464 1978                                      Comedy|Musical|Romance    200
## 27465 1997                              Action|Adventure|Comedy|Sci-Fi    200
## 27466 1997                            Action|Adventure|Sci-Fi|Thriller    200
## 27468 1997                                                Drama|Sci-Fi    200
## 27469 1990                                   Action|Adventure|Thriller    200
## 27470 1997                                         Adventure|Drama|War    200
## 27474 1997                                     Children|Comedy|Fantasy    200
## 27475 1997                                               Drama|Romance    200
## 27476 1998                                      Action|Adventure|Drama    200
## 27477 1998                              Action|Romance|Sci-Fi|Thriller    200
## 27484 1984                                                Comedy|Crime    200
## 27485 1982                             Action|Adventure|Drama|Thriller    200
## 27486 1984                                                       Drama    200
## 27487 1998                                            Action|Drama|War    200
## 27493 1999                                              Comedy|Romance    200
## 27494 1999                          Adventure|Animation|Children|Drama    200
## 27495 1999                                              Comedy|Romance    200
## 27496 1999                                              Comedy|Romance    200
## 27497 1999                                        Drama|Horror|Mystery    200
## 27498 1992                                             Children|Comedy    200
## 27501 1999                                                 Crime|Drama    200
## 27503 2000                                              Drama|Thriller    200
## 27505 2000                                   Action|Adventure|Thriller    200
## 27506 1974                                   Action|Adventure|Thriller    200
## 27507 2000                                                Action|Crime    200
## 27508 2000                                               Comedy|Horror    200
## 27509 2000                                        Comedy|Drama|Romance    200
## 27510 2000                              Action|Adventure|Comedy|Sci-Fi    200
## 27511 2000                 Adventure|Animation|Children|Comedy|Fantasy    200
## 27512 2000                                              Comedy|Romance    200
## 27513 2000                                                       Drama    200
## 27514 2000                                                Comedy|Crime    200
## 27515 2001                                        Crime|Drama|Thriller    200
## 27519 2001                                       Action|Comedy|Romance    200
## 27521 2001                                       Drama|Musical|Romance    200
## 27522 2001                                    Action|Drama|Romance|War    200
## 27523 2001                                          Action|Crime|Drama    200
## 27524 2001                                       Action|Crime|Thriller    200
## 27525 2001                                      Adventure|Drama|Sci-Fi    200
## 27526 2001                                              Comedy|Romance    200
## 27527 1988                                              Comedy|Romance    200
## 27528 1988                        Adventure|Animation|Children|Fantasy    200
## 27529 2001                            Action|Adventure|Sci-Fi|Thriller    200
## 27530 1989                                        Crime|Drama|Thriller    200
## 27533 2001                                 Action|Crime|Drama|Thriller    200
## 27541 2002                                                Action|Crime    200
## 27543 2002                                     Horror|Mystery|Thriller    200
## 27544 2002                                              Crime|Thriller    200
## 27545 2002                                   Action|Adventure|Thriller    200
## 27546 2002                                                 Crime|Drama    200
## 27548 2003                                             Action|Thriller    200
## 27550 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    200
## 27556 2003                                      Action|Comedy|Thriller    200
## 27557 2003                                Adventure|Animation|Children    200
## 27558 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    200
## 27559 2003                                               Drama|Romance    200
## 27561 2003                                      Action|Sci-Fi|Thriller    200
## 27562 2004                                              Comedy|Romance    200
## 27563 2004                                        Drama|Romance|Sci-Fi    200
## 27565 2004                      Action|Adventure|Drama|Sci-Fi|Thriller    200
## 27567 2004                                                      Comedy    200
## 27568 2004                                        Comedy|Drama|Romance    200
## 27569 1998                                               Action|Comedy    200
## 27570 2004                                                 Documentary    200
## 27571 2004                            Action|Adventure|Sci-Fi|Thriller    200
## 27574 2004                                     Horror|Mystery|Thriller    200
## 27575 2004                                                       Drama    200
## 27576 2004                  Action|Adventure|Animation|Children|Comedy    200
## 27577 2004                                Action|Comedy|Crime|Thriller    200
## 27578 1990                                              Comedy|Fantasy    200
## 27579 1998                Adventure|Animation|Children|Musical|Romance    200
## 27580 2000                                               Action|Comedy    200
## 27581 2002                                       Horror|Mystery|Sci-Fi    200
## 27582 2005                                              Drama|Thriller    200
## 27583 2004                                                       Drama    200
## 27584 2005                                              Comedy|Romance    200
## 27585 2005                     Action|Crime|Film-Noir|Mystery|Thriller    200
## 27587 2005                                              Comedy|Romance    200
## 27588 2005                             Action|Adventure|Comedy|Romance    200
## 27589 2005                                      Comedy|Fantasy|Romance    200
## 27590 1999                           Adventure|Children|Comedy|Fantasy    200
## 27591 2005                                      Comedy|Fantasy|Romance    200
## 27593 2005                                            Action|Drama|War    200
## 27594 2005                       Action|Adventure|Comedy|Drama|Romance    200
## 27595 2006                         Adventure|Animation|Children|Comedy    200
## 27596 2006                                   Action|Adventure|Thriller    200
## 27598 2006                                      Drama|Mystery|Thriller    200
## 27599 2006                                   Animation|Children|Comedy    200
## 27600 2006                                                Comedy|Drama    200
## 27601 2006                                      Comedy|Fantasy|Romance    200
## 27604 2006                                        Crime|Drama|Thriller    200
## 27605 2006                      Action|Adventure|Drama|Sci-Fi|Thriller    200
## 27607 2006                                   Action|Adventure|Thriller    200
## 27610 2007                                              Comedy|Romance    200
## 27611 2007                         Action|Crime|Horror|Sci-Fi|Thriller    200
## 27613 2007                             Action|Adventure|Comedy|Fantasy    200
## 27615 2007                                 Action|Sci-Fi|Thriller|IMAX    200
## 27616 2007                                            Animation|Comedy    200
## 27624 2008                                   Action|Drama|Thriller|War    200
## 27625 2008                                 Comedy|Crime|Drama|Thriller    200
## 27626 2008                                        Comedy|Drama|Romance    200
## 27627 2008                                       Action|Drama|Thriller    200
## 27630 2008                                 Action|Crime|Drama|Thriller    200
## 27632 2008                       Action|Adventure|Comedy|Crime|Fantasy    200
## 27633 2008                                                Action|Crime    200
## 27634 2008                                         Crime|Drama|Romance    200
## 27635 2008                                   Action|Adventure|Thriller    200
## 27637 2008                                                      Comedy    200
## 27638 2009                                 Action|Crime|Drama|Thriller    200
## 27641 2009                                                Comedy|Crime    200
## 27644 2010                                                      Comedy    200
## 27645 2010                   Adventure|Animation|Children|Fantasy|IMAX    200
## 27646 2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX    200
## 27647 2010                             Animation|Children|Comedy|Crime    200
## 27648 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX    200
## 27649 2010                                             Action|Thriller    200
## 27651 2010                                               Action|Comedy    200
## 27653 2008                         Adventure|Animation|Children|Sci-Fi    200
## 27654 2011                         Adventure|Animation|Children|Comedy    200
## 27656 2011                                         Crime|Drama|Mystery    200
## 27658 2011                     Adventure|Animation|Comedy|Fantasy|IMAX    200
## 27664 2012                                   Animation|Children|Comedy    200
## 27665 2012                                        Adventure|Drama|IMAX    200
## 27666 2013                                  Adventure|Animation|Comedy    200
## 27667 2013                                      Crime|Mystery|Thriller    200
## 27669 2013                                Action|Comedy|Crime|Thriller    200
## 27670 2013                                       Drama|Fantasy|Romance    200
## 27671 2013          Adventure|Animation|Comedy|Fantasy|Musical|Romance    200
## 27672 2013                                          Comedy|Crime|Drama    200
## 27674 2013                                        Drama|Romance|Sci-Fi    200
## 27678 1995                                          (no genres listed)    200
## 27686 1996                                                      Comedy    201
## 27691 1995                                              Comedy|Romance    201
## 27692 1994                                                Comedy|Drama    201
## 27705 1996                                   Action|Adventure|Thriller    201
## 27730 1989                   Animation|Children|Comedy|Musical|Romance    201
## 27735 1984                             Action|Adventure|Comedy|Romance    201
## 27736 1984                                                       Drama    201
## 27739 1999                                              Comedy|Romance    201
## 27740 1990                                               Comedy|Horror    201
## 27742 1999                                        Drama|Horror|Mystery    201
## 27760 2001                                                    Thriller    201
## 27769 2003                                                      Comedy    201
## 27774 2004                                                      Comedy    201
## 27779 2004                                        Action|Crime|Fantasy    201
## 27786 2004                                      Drama|Romance|Thriller    201
## 27791 2004                                             Adventure|Drama    201
## 27800 2004                                                       Drama    201
## 27804 1993                                                      Comedy    202
## 27805 1993                                     Action|Adventure|Sci-Fi    202
## 27816 1979                               Drama|Horror|Mystery|Thriller    202
## 27822 1997                                        Action|Horror|Sci-Fi    202
## 27826 1977                                                      Horror    202
## 27830 1961                                     Children|Comedy|Fantasy    202
## 27831 1984                                             Horror|Thriller    202
## 27832 1991                                     Children|Comedy|Fantasy    202
## 27833 1998                                 Action|Drama|Romance|Sci-Fi    202
## 27840 1999                                     Action|Adventure|Sci-Fi    202
## 27841 1999                                     Action|Adventure|Comedy    202
## 27844 1987                                     Action|Adventure|Comedy    202
## 27848 1999                                              Comedy|Romance    202
## 27851 1985                                            Adventure|Sci-Fi    202
## 27852 1988                                    Adventure|Children|Drama    202
## 27856 1988                                                  Action|War    202
## 27857 1954                                     Adventure|Horror|Sci-Fi    202
## 27860 1992                                              Comedy|Romance    202
## 27862 1981                                               Action|Comedy    202
## 27864 1987                                            Action|Adventure    202
## 27866 1955                                               Comedy|Horror    202
## 27867 1982                                    Action|Adventure|Fantasy    202
## 27871 1977                                                      Comedy    202
## 27873 1984                                                      Comedy    202
## 27874 2002                                   Action|Adventure|Thriller    202
## 27875 1981                                                   Drama|War    202
## 27877 1995                                       Action|Crime|Thriller    203
## 27885 1950                                                      Comedy    203
## 27886 1996                                            Action|Adventure    203
## 27890 1958                                    Crime|Film-Noir|Thriller    203
## 27892 1946                                     Crime|Film-Noir|Mystery    203
## 27893 1997                                     Action|Romance|Thriller    203
## 27896 1961                                Adventure|Animation|Children    203
## 27898 1982                                                Action|Drama    203
## 27900 1999                                                    Thriller    203
## 27901 2000                                        Crime|Drama|Thriller    203
## 27907 2001                                               Drama|Romance    203
## 27910 2005                                                 Crime|Drama    203
## 27912 2005                                          Film-Noir|Thriller    203
## 27915 1994                                        Comedy|Drama|Romance    204
## 27916 1995                               Action|Adventure|Comedy|Crime    204
## 27917 1995                                    Action|Drama|Romance|War    204
## 27918 1994                                    Adventure|Comedy|Western    204
## 27920 1954                                      Crime|Mystery|Thriller    204
## 27921 1990                                                 Crime|Drama    204
## 27923 1973                                                Comedy|Crime    204
## 27924 1989                                                       Drama    204
## 27927 1990                                   Action|Adventure|Thriller    204
## 27928 1982                            Action|Adventure|Sci-Fi|Thriller    204
## 27929 1996                              Comedy|Horror|Mystery|Thriller    204
## 27933 1990                                       Drama|Fantasy|Romance    204
## 27936 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    204
## 27937 1988                                                      Action    204
## 27938 2001                                     Children|Comedy|Romance    204
## 27940 2004                                       Action|Drama|Thriller    204
## 27943 1974                                               Drama|Romance    204
## 27946 1995                                   Action|Adventure|Thriller    205
## 27949 1995                                            Action|Drama|War    205
## 27950 1977                                     Action|Adventure|Sci-Fi    205
## 27951 1994                                    Comedy|Drama|Romance|War    205
## 27953 1991                                               Action|Sci-Fi    205
## 27954 1991                                       Crime|Horror|Thriller    205
## 27955 1996                                  Adventure|Animation|Comedy    205
## 27957 1995                                   Animation|Children|Comedy    205
## 27959 1939                          Adventure|Children|Fantasy|Musical    205
## 27960 1988                                       Action|Crime|Thriller    205
## 27961 1993                             Animation|Children|Comedy|Crime    205
## 27962 1980                                     Action|Adventure|Sci-Fi    205
## 27964 1981                                            Action|Adventure    205
## 27965 1983                                     Action|Adventure|Sci-Fi    205
## 27966 1979                                               Horror|Sci-Fi    205
## 27967 1974                                                 Crime|Drama    205
## 27968 1989                  Adventure|Animation|Children|Comedy|Sci-Fi    205
## 27971 1989                                            Action|Adventure    205
## 27973 1999                                      Action|Sci-Fi|Thriller    205
## 27976 1964                                   Action|Adventure|Thriller    205
## 27977 1999                                 Action|Crime|Drama|Thriller    205
## 27981 2002                                     Action|Mystery|Thriller    205
## 27983 2002                                           Adventure|Fantasy    205
## 27985 2003                            Action|Adventure|Sci-Fi|Thriller    205
## 27988 2003                              Action|Adventure|Drama|Fantasy    205
## 27989 2004                                      Adventure|Fantasy|IMAX    205
## 27990 2004                                 Action|Crime|Drama|Thriller    205
## 27993 1992                  Adventure|Animation|Comedy|Fantasy|Romance    205
## 27995 2005                               Drama|Horror|Mystery|Thriller    205
## 27996 2005                      Adventure|Children|Comedy|Fantasy|IMAX    205
## 27997 2005                                Action|Adventure|Crime|Drama    205
## 27999 2005                                              Comedy|Romance    205
## 28001 2005     Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX    205
## 28002 2005                                      Adventure|Comedy|Crime    205
## 28004 2005                         Adventure|Animation|Children|Comedy    205
## 28007 2005                                              Comedy|Romance    205
## 28008 2005                            Action|Adventure|Children|Comedy    205
## 28009 2005                                              Comedy|Romance    205
## 28010 2005                                       Action|Crime|Thriller    205
## 28011 2005                                               Action|Sci-Fi    205
## 28015 2005                                             Horror|Thriller    205
## 28016 2005                                                      Comedy    205
## 28017 2005                                            Action|Drama|War    205
## 28018 2005           Action|Adventure|Animation|Children|Comedy|Sci-Fi    205
## 28022 2005                                                Comedy|Crime    205
## 28023 2005                                                      Horror    205
## 28024 2006                              Action|Fantasy|Sci-Fi|Thriller    205
## 28025 2006                         Adventure|Animation|Children|Comedy    205
## 28027 2006                                   Action|Adventure|Thriller    205
## 28029 2006                                        Comedy|Drama|Romance    205
## 28031 2006                                       Drama|Fantasy|Romance    205
## 28032 2006                      Adventure|Comedy|Drama|Fantasy|Romance    205
## 28033 2006                                                Comedy|Drama    205
## 28035 2006                                       Drama|Fantasy|Mystery    205
## 28037 2006                               Action|Comedy|Horror|Thriller    205
## 28038 2006                                               Action|Comedy    205
## 28039 2006                                          Comedy|Documentary    205
## 28040 2006                                                      Comedy    205
## 28041 2006                                      Drama|Fantasy|Thriller    205
## 28042 2006                                        Crime|Drama|Thriller    205
## 28044 2006                                       Crime|Horror|Thriller    205
## 28045 2006                                            Animation|Comedy    205
## 28046 2006                                   Action|Adventure|Thriller    205
## 28051 2007                                      Drama|Mystery|Thriller    205
## 28054 2007                                              Comedy|Romance    205
## 28056 2007                       Action|Adventure|Sci-Fi|Thriller|IMAX    205
## 28057 2007                                        Comedy|Drama|Romance    205
## 28058 2007                 Adventure|Animation|Children|Comedy|Fantasy    205
## 28059 2007                                     Action|Adventure|Sci-Fi    205
## 28061 2007                                              Comedy|Fantasy    205
## 28062 2007                                              Comedy|Romance    205
## 28065 2007                                       Action|Crime|Thriller    205
## 28069 2007                               Action|Horror|Sci-Fi|Thriller    205
## 28070 2007                                             Horror|Thriller    205
## 28071 2007                                       Crime|Horror|Thriller    205
## 28072 2007                                            Animation|Comedy    205
## 28077 2007                                        Comedy|Drama|Romance    205
## 28080 2008                              Action|Mystery|Sci-Fi|Thriller    205
## 28082 2008                             Action|Adventure|Fantasy|Sci-Fi    205
## 28084 2008                                       Action|Drama|Thriller    205
## 28085 2008                                  Adventure|Romance|Thriller    205
## 28086 2008                         Adventure|Animation|Children|Comedy    205
## 28087 2008                                     Action|Crime|Drama|IMAX    205
## 28091 2008                              Action|Adventure|Comedy|Sci-Fi    205
## 28093 2008                                                      Comedy    205
## 28094 2008                                       Drama|Sci-Fi|Thriller    205
## 28095 2008                                               Action|Sci-Fi    205
## 28096 2008                 Adventure|Animation|Children|Romance|Sci-Fi    205
## 28097 2008                       Action|Adventure|Comedy|Crime|Fantasy    205
## 28098 2008                                               Action|Comedy    205
## 28099 2008                                      Comedy|Musical|Romance    205
## 28100 2008                                 Action|Adventure|Comedy|War    205
## 28101 2008                                          Comedy|Crime|Drama    205
## 28102 2008                                  Action|Crime|Thriller|IMAX    205
## 28103 2008             Action|Adventure|Animation|Children|Comedy|IMAX    205
## 28104 2008                                   Action|Adventure|Thriller    205
## 28106 2008                              Drama|Fantasy|Romance|Thriller    205
## 28110 2009                                            Action|Drama|War    205
## 28113 2009                                             Horror|Thriller    205
## 28114 2009                                        Action|Comedy|Horror    205
## 28115 2009                                Action|Drama|Sci-Fi|Thriller    205
## 28116 2009                                Action|Adventure|Sci-Fi|IMAX    205
## 28117 2009                               Action|Crime|Mystery|Thriller    205
## 28119 2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX    205
## 28120 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX    205
## 28122 2010                                    Adventure|Drama|Thriller    205
## 28125 2011                        Action|Adventure|Sci-Fi|Thriller|War    205
## 28128 2012                                 Action|Adventure|Crime|IMAX    205
## 28132 2012                              Action|Adventure|Thriller|IMAX    205
## 28134 2013                                 Action|Sci-Fi|Thriller|IMAX    205
## 28136 2014                                     Action|Adventure|Sci-Fi    205
## 28137 2014                                       Action|Crime|Thriller    205
## 28143 2015                      Action|Adventure|Drama|Sci-Fi|Thriller    205
## 28144 2014                         Adventure|Animation|Children|Comedy    205
## 28147 2015                              Children|Drama|Fantasy|Romance    205
## 28148 2015                                                      Comedy    205
## 28149 2015                                Action|Comedy|Fantasy|Sci-Fi    205
## 28150 2015                         Adventure|Animation|Children|Comedy    205
## 28151 1989                                       Action|Crime|Thriller    206
## 28152 1988                                       Action|Crime|Thriller    206
## 28153 1982                                      Comedy|Musical|Romance    206
## 28156 1989                                                Comedy|Drama    206
## 28160 1986                              Action|Adventure|Horror|Sci-Fi    206
## 28163 1989                                                       Drama    206
## 28164 1980                                                      Horror    206
## 28166 1980                                               Drama|Romance    206
## 28168 1985                                                      Comedy    206
## 28170 1989                                      Children|Drama|Fantasy    206
## 28171 1989                                              Comedy|Romance    206
## 28172 1981                                      Comedy|Horror|Thriller    206
## 28173 1984                                     Action|Adventure|Sci-Fi    206
## 28174 1986                                     Adventure|Comedy|Sci-Fi    206
## 28175 1982                                    Action|Adventure|Fantasy    206
## 28177 1998                                       Drama|Sci-Fi|Thriller    206
## 28178 1998                                                    Thriller    206
## 28181 1989                                                       Drama    206
## 28183 1982                                             Horror|Thriller    206
## 28184 1984                                               Comedy|Horror    206
## 28185 1985                    Action|Adventure|Children|Comedy|Fantasy    206
## 28186 1989                                     Adventure|Comedy|Sci-Fi    206
## 28187 1984                                            Adventure|Sci-Fi    206
## 28188 1985                        Adventure|Animation|Children|Fantasy    206
## 28189 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    206
## 28190 1995                                                Drama|Sci-Fi    207
## 28191 1995                                    Action|Adventure|Fantasy    207
## 28193 1994                                               Comedy|Sci-Fi    207
## 28195 1995                                                      Comedy    207
## 28196 1993                                                 Crime|Drama    207
## 28198 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi    207
## 28199 1997                                               Drama|Romance    207
## 28200 1952                                      Comedy|Musical|Romance    207
## 28201 1961                                               Drama|Romance    207
## 28202 1959                                                Comedy|Crime    207
## 28203 1964                                Comedy|Drama|Musical|Romance    207
## 28204 1996                                                Comedy|Drama    207
## 28205 1996                                                Comedy|Drama    207
## 28207 1986                                    Action|Adventure|Fantasy    207
## 28208 1959                                      Action|Adventure|Drama    207
## 28211 1996                                   Adventure|Children|Comedy    207
## 28212 1979                                            Adventure|Sci-Fi    207
## 28213 1996                            Adventure|Animation|Comedy|Crime    207
## 28214 1997                              Drama|Mystery|Romance|Thriller    207
## 28215 1998                         Action|Crime|Drama|Mystery|Thriller    207
## 28216 1961                                Adventure|Animation|Children    207
## 28217 1998                                                       Drama    207
## 28218 1999                                              Comedy|Romance    207
## 28219 1981                             Adventure|Comedy|Fantasy|Sci-Fi    207
## 28220 1999                                              Drama|Thriller    207
## 28221 1992                                 Action|Crime|Drama|Thriller    207
## 28222 2000                                             Children|Comedy    207
## 28223 1986                                               Drama|Musical    207
## 28226 1991                                              Comedy|Romance    207
## 28227 1998                                                     Musical    207
## 28228 2008                                  Adventure|Romance|Thriller    207
## 28229 1969                                       Adventure|War|Western    207
## 28230 2009                                                Comedy|Drama    207
## 28232 2009                                        Comedy|Drama|Romance    207
## 28233 1934                                                     Western    207
## 28234 2009                                                       Drama    207
## 28235 2009                            Action|Animation|Children|Sci-Fi    207
## 28240 1968                                      Adventure|Drama|Sci-Fi    208
## 28244 1979                                        Drama|Mystery|Sci-Fi    208
## 28247 1975                                               Action|Horror    208
## 28250 1998                                                      Comedy    208
## 28254 1982                                        Comedy|Drama|Romance    208
## 28256 2000                                                    Thriller    208
## 28259 2001                                              Comedy|Romance    208
## 28261 2001                                                    Thriller    208
## 28263 2003                                                Comedy|Crime    208
## 28273 2012                                        Comedy|Drama|Romance    208
## 28275 2013                                       Drama|Fantasy|Romance    208
## 28285 1995                                      Action|Sci-Fi|Thriller    209
## 28286 1995                                               Horror|Sci-Fi    209
## 28287 1993                                               Comedy|Sci-Fi    209
## 28288 1993                                           Action|Comedy|War    209
## 28290 1993                                     Comedy|Romance|Thriller    209
## 28291 1993                             Action|Adventure|Comedy|Romance    209
## 28292 1993                                              Crime|Thriller    209
## 28293 1996                                               Drama|Romance    209
## 28295 1973                                                Comedy|Crime    209
## 28296 1974                                              Comedy|Fantasy    209
## 28297 1986                                     Adventure|Comedy|Sci-Fi    209
## 28299 1989                                   Action|Comedy|Crime|Drama    209
## 28300 1998                                                Comedy|Drama    209
## 28301 1984                             Action|Adventure|Comedy|Romance    209
## 28302 1975                                Comedy|Horror|Musical|Sci-Fi    209
## 28303 1990                                               Comedy|Horror    209
## 28304 1995                                                 Crime|Drama    210
## 28305 1995                                              Children|Drama    210
## 28306 1994                                        Comedy|Drama|Fantasy    210
## 28307 1994                                      Drama|Mystery|Thriller    210
## 28308 1994             Adventure|Animation|Children|Drama|Musical|IMAX    210
## 28309 1994                                             Action|Thriller    210
## 28310 1994                                    Adventure|Comedy|Western    210
## 28311 1993                                               Comedy|Sci-Fi    210
## 28312 1993                                     Action|Adventure|Sci-Fi    210
## 28314 1993                                        Comedy|Drama|Romance    210
## 28315 1996                                 Comedy|Crime|Drama|Thriller    210
## 28317 1996                                        Comedy|Drama|Romance    210
## 28318 1975                                    Adventure|Comedy|Fantasy    210
## 28319 1981                                            Action|Adventure    210
## 28320 1986                                             Adventure|Drama    210
## 28321 1989                                            Action|Adventure    210
## 28322 1989                                              Comedy|Romance    210
## 28323 1990                                   Action|Adventure|Thriller    210
## 28324 1987                                                      Comedy    210
## 28325 1996                              Comedy|Horror|Mystery|Thriller    210
## 28326 1985                                                Comedy|Drama    210
## 28327 1991                                      Comedy|Horror|Thriller    210
## 28328 1984                                    Action|Adventure|Fantasy    210
## 28329 1990                                       Drama|Fantasy|Romance    210
## 28330 1998                         Adventure|Animation|Children|Comedy    210
## 28331 1974                                                      Horror    210
## 28332 1990                                      Comedy|Horror|Thriller    210
## 28333 1994                                                      Horror    210
## 28343 1996                                        Comedy|Drama|Romance    211
## 28380 1996                                                      Comedy    211
## 28381 1996                                        Action|Comedy|Sci-Fi    211
## 28384 1996                              Comedy|Horror|Mystery|Thriller    211
## 28387 1997                                        Action|Comedy|Sci-Fi    211
## 28391 1995                 Adventure|Animation|Children|Comedy|Fantasy    212
## 28392 1995                                  Adventure|Children|Fantasy    212
## 28393 1995                                                      Comedy    212
## 28394 1995                                   Action|Adventure|Thriller    212
## 28396 1995                                               Drama|Romance    212
## 28397 1995                                                      Comedy    212
## 28399 1995                                     Mystery|Sci-Fi|Thriller    212
## 28400 1995                                              Children|Drama    212
## 28402 1995                                              Comedy|Romance    212
## 28403 1995                                    Action|Adventure|Fantasy    212
## 28404 1995                                            Mystery|Thriller    212
## 28405 1995                    Animation|Children|Drama|Musical|Romance    212
## 28406 1995                                      Crime|Mystery|Thriller    212
## 28407 1996                                   Action|Adventure|Thriller    212
## 28408 1996                                                      Comedy    212
## 28410 1995                          Action|Comedy|Crime|Drama|Thriller    212
## 28411 1995                                                       Drama    212
## 28413 1995                                    Action|Drama|Romance|War    212
## 28414 1995                               Action|Adventure|Comedy|Crime    212
## 28415 1995                                          Adventure|Children    212
## 28416 1995                                      Action|Romance|Western    212
## 28417 1995                                       Action|Crime|Thriller    212
## 28418 1995                                        Action|Drama|Romance    212
## 28419 1995                                      Action|Sci-Fi|Thriller    212
## 28420 1995                                         Action|Crime|Sci-Fi    212
## 28421 1995                                              Comedy|Romance    212
## 28422 1995                                       Action|Crime|Thriller    212
## 28423 1995                                              Comedy|Romance    212
## 28424 1995                                     Action|Adventure|Sci-Fi    212
## 28425 1995                                                      Comedy    212
## 28427 1995                                        Comedy|Drama|Romance    212
## 28428 1994                                            Adventure|Comedy    212
## 28432 1994                                                       Drama    212
## 28434 1995                                Action|Drama|Sci-Fi|Thriller    212
## 28436 1994                                                       Drama    212
## 28437 1994                                       Action|Drama|Thriller    212
## 28438 1994                                        Comedy|Drama|Fantasy    212
## 28440 1995                                                      Comedy    212
## 28441 1993                                                       Drama    212
## 28442 1995                                              Comedy|Romance    212
## 28443 1994                                                      Comedy    212
## 28444 1994                                                      Comedy    212
## 28445 1994                                                Comedy|Drama    212
## 28446 1994                                      Drama|Mystery|Thriller    212
## 28448 1994                                              Comedy|Romance    212
## 28450 1994                                 Action|Comedy|Crime|Fantasy    212
## 28451 1994                                    Adventure|Comedy|Western    212
## 28452 1994                                               Action|Comedy    212
## 28453 1994                                        Comedy|Drama|Romance    212
## 28454 1994                                             Children|Comedy    212
## 28456 1994                                                      Comedy    212
## 28457 1994                                Action|Comedy|Crime|Thriller    212
## 28458 1993                                               Comedy|Sci-Fi    212
## 28459 1993                                              Comedy|Romance    212
## 28460 1993                                                      Comedy    212
## 28461 1993                                     Action|Adventure|Sci-Fi    212
## 28462 1993                                    Adventure|Children|Drama    212
## 28463 1993                                                    Thriller    212
## 28464 1993                                             Action|Thriller    212
## 28465 1993                            Action|Adventure|Sci-Fi|Thriller    212
## 28466 1993                                                       Drama    212
## 28467 1993                                              Comedy|Romance    212
## 28468 1993                                                Comedy|Drama    212
## 28473 1993                                        Comedy|Drama|Romance    212
## 28474 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    212
## 28476 1993                             Action|Adventure|Comedy|Romance    212
## 28477 1993                                              Crime|Thriller    212
## 28478 1990                                             Children|Comedy    212
## 28479 1990                       Comedy|Drama|Fantasy|Romance|Thriller    212
## 28480 1992                 Adventure|Animation|Children|Comedy|Musical    212
## 28481 1991                                               Action|Sci-Fi    212
## 28482 1990                                     Adventure|Drama|Western    212
## 28483 1989                                       Action|Crime|Thriller    212
## 28485 1937                    Animation|Children|Drama|Fantasy|Musical    212
## 28486 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    212
## 28487 1940                          Animation|Children|Fantasy|Musical    212
## 28488 1990                                              Comedy|Romance    212
## 28489 1996                                               Drama|Romance    212
## 28490 1996                           Action|Adventure|Mystery|Thriller    212
## 28491 1996                                                       Drama    212
## 28492 1996                                    Action|Adventure|Fantasy    212
## 28493 1996                Adventure|Animation|Children|Fantasy|Musical    212
## 28494 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi    212
## 28495 1996                           Action|Adventure|Romance|Thriller    212
## 28496 1964                                                  Comedy|War    212
## 28497 1996                                                Comedy|Crime    212
## 28499 1996                            Action|Adventure|Sci-Fi|Thriller    212
## 28500 1996                    Animation|Children|Drama|Musical|Romance    212
## 28501 1996                                             Comedy|Thriller    212
## 28502 1996                                              Drama|Thriller    212
## 28503 1996                                                      Comedy    212
## 28504 1996                                     Children|Comedy|Fantasy    212
## 28507 1952                                      Comedy|Musical|Romance    212
## 28508 1961                                               Drama|Romance    212
## 28509 1958                              Drama|Mystery|Romance|Thriller    212
## 28511 1964                                Comedy|Drama|Musical|Romance    212
## 28512 1953                                        Comedy|Drama|Romance    212
## 28513 1939                          Adventure|Children|Fantasy|Musical    212
## 28514 1939                                           Drama|Romance|War    212
## 28515 1941                                               Drama|Mystery    212
## 28516 1950                                                      Comedy    212
## 28517 1938                                    Action|Adventure|Romance    212
## 28520 1996                                          Adventure|Children    212
## 28521 1996                                                       Drama    212
## 28522 1957                                              Children|Drama    212
## 28523 1961                                     Children|Comedy|Romance    212
## 28524 1950                  Animation|Children|Fantasy|Musical|Romance    212
## 28525 1963                          Animation|Children|Fantasy|Musical    212
## 28527 1964                             Children|Comedy|Fantasy|Musical    212
## 28528 1951                Adventure|Animation|Children|Fantasy|Musical    212
## 28530 1988                                       Action|Crime|Thriller    212
## 28532 1996                                               Drama|Romance    212
## 28535 1979                                                      Comedy    212
## 28536 1987                                       Drama|Musical|Romance    212
## 28538 1986                                                   Drama|War    212
## 28539 1992                                      Crime|Mystery|Thriller    212
## 28540 1986                                              Action|Romance    212
## 28542 1951                                                       Drama    212
## 28543 1975                                    Adventure|Comedy|Fantasy    212
## 28544 1993                             Animation|Children|Comedy|Crime    212
## 28545 1957                                                   Drama|War    212
## 28547 1975                                                       Drama    212
## 28549 1981                                            Action|Adventure    212
## 28550 1986                              Action|Adventure|Horror|Sci-Fi    212
## 28551 1966                                    Action|Adventure|Western    212
## 28552 1957                                                       Drama    212
## 28553 1962                                         Adventure|Drama|War    212
## 28554 1971                                 Crime|Drama|Sci-Fi|Thriller    212
## 28556 1979                                            Action|Drama|War    212
## 28557 1993                      Action|Adventure|Comedy|Fantasy|Horror    212
## 28558 1980                                       Action|Comedy|Musical    212
## 28561 1984                                                       Drama    212
## 28564 1984                                      Action|Sci-Fi|Thriller    212
## 28567 1967                                        Comedy|Drama|Romance    212
## 28568 1957                                         Adventure|Drama|War    212
## 28569 1980                                                      Horror    212
## 28570 1986                                             Adventure|Drama    212
## 28571 1987                                Action|Comedy|Fantasy|Horror    212
## 28572 1963                                  Action|Adventure|Drama|War    212
## 28573 1993                                      Comedy|Fantasy|Romance    212
## 28574 1992                                               Drama|Western    212
## 28575 1985                                     Adventure|Comedy|Sci-Fi    212
## 28580 1959                                      Action|Adventure|Drama    212
## 28581 1987                                               Drama|Romance    212
## 28582 1989                                            Action|Adventure    212
## 28584 1989                                      Children|Drama|Fantasy    212
## 28586 1989                                              Comedy|Romance    212
## 28587 1976                               Drama|Fantasy|Horror|Thriller    212
## 28588 1990                                   Action|Adventure|Thriller    212
## 28589 1992                                                Action|Crime    212
## 28591 1975                                               Action|Horror    212
## 28592 1996                                        Action|Comedy|Sci-Fi    212
## 28594 1996                              Comedy|Horror|Mystery|Thriller    212
## 28595 1992                                  Action|Romance|War|Western    212
## 28599 1997                                                 Crime|Drama    212
## 28600 1997                                                      Comedy    212
## 28601 1997                                        Comedy|Crime|Romance    212
## 28602 1997                                     Action|Adventure|Comedy    212
## 28603 1997                            Action|Adventure|Sci-Fi|Thriller    212
## 28604 1997                           Action|Adventure|Fantasy|Thriller    212
## 28605 1997                 Adventure|Animation|Children|Comedy|Musical    212
## 28606 1997                                              Comedy|Romance    212
## 28607 1997                                 Action|Crime|Drama|Thriller    212
## 28608 1997                                        Action|Comedy|Sci-Fi    212
## 28609 1997                                                Drama|Sci-Fi    212
## 28610 1997                                                Action|Drama    212
## 28611 1997                              Drama|Mystery|Romance|Thriller    212
## 28612 1997                                             Action|Thriller    212
## 28613 1990                                   Action|Adventure|Thriller    212
## 28614 1997                                         Adventure|Drama|War    212
## 28616 1997                                     Horror|Mystery|Thriller    212
## 28618 1997                                                       Drama    212
## 28619 1985                                      Drama|Romance|Thriller    212
## 28622 1997                              Comedy|Horror|Mystery|Thriller    212
## 28623 1997                                               Drama|Romance    212
## 28624 1997                                   Action|Adventure|Thriller    212
## 28625 1998                                                Comedy|Crime    212
## 28626 1998                                              Comedy|Romance    212
## 28627 1997                                        Comedy|Drama|Romance    212
## 28630 1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance    212
## 28631 1998                              Action|Romance|Sci-Fi|Thriller    212
## 28632 1998                                Action|Comedy|Crime|Thriller    212
## 28633 1998                                              Comedy|Romance    212
## 28634 1930                                            Action|Drama|War    212
## 28635 1935                                             Adventure|Drama    212
## 28637 1966                                                       Drama    212
## 28638 1968                                               Drama|Musical    212
## 28639 1976                                                       Drama    212
## 28640 1979                                                       Drama    212
## 28641 1985                                               Drama|Romance    212
## 28642 1987                                                       Drama    212
## 28644 1989                                                       Drama    212
## 28646 1987                                   Action|Comedy|Crime|Drama    212
## 28647 1989                                   Action|Comedy|Crime|Drama    212
## 28648 1992                                   Action|Comedy|Crime|Drama    212
## 28649 1984                                               Comedy|Horror    212
## 28650 1985                    Action|Adventure|Children|Comedy|Fantasy    212
## 28652 1989                                     Adventure|Comedy|Sci-Fi    212
## 28653 1990                             Adventure|Comedy|Sci-Fi|Western    212
## 28654 1988                                               Drama|Romance    212
## 28655 1990                                Crime|Drama|Mystery|Thriller    212
## 28657 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    212
## 28658 1955                           Animation|Children|Comedy|Romance    212
## 28659 1989                   Animation|Children|Comedy|Musical|Romance    212
## 28660 1992                                     Children|Comedy|Musical    212
## 28661 1961                                Adventure|Animation|Children    212
## 28663 1959                                  Animation|Children|Musical    212
## 28664 1984                                      Comedy|Fantasy|Romance    212
## 28665 1982                                     Action|Adventure|Sci-Fi    212
## 28666 1983                                                       Drama    212
## 28667 1984                                    Action|Adventure|Fantasy    212
## 28668 1984                                                Drama|Sci-Fi    212
## 28669 1983                                                    Thriller    212
## 28671 1987                                            Adventure|Comedy    212
## 28672 1985                                       Comedy|Fantasy|Sci-Fi    212
## 28673 1973                                          Animation|Children    212
## 28674 1982                          Adventure|Animation|Children|Drama    212
## 28675 1984                                              Comedy|Romance    212
## 28676 1986                                        Comedy|Drama|Romance    212
## 28677 1984                                  Adventure|Children|Fantasy    212
## 28678 1998                                      Action|Horror|Thriller    212
## 28679 1988                                              Comedy|Fantasy    212
## 28680 1988                                    Action|Adventure|Fantasy    212
## 28682 1998                                                       Drama    212
## 28684 1998                                Action|Comedy|Crime|Thriller    212
## 28685 1998                                       Action|Crime|Thriller    212
## 28686 1990                                       Drama|Fantasy|Romance    212
## 28687 1998                 Adventure|Animation|Children|Comedy|Fantasy    212
## 28688 1998                                                      Comedy    212
## 28689 1992                                                      Comedy    212
## 28690 1998                                                       Drama    212
## 28694 1998                                                       Drama    212
## 28695 1983                                                Comedy|Drama    212
## 28696 1998                         Adventure|Animation|Children|Comedy    212
## 28697 1998                                                      Comedy    212
## 28698 1989                                                Comedy|Crime    212
## 28699 1998                                           Animation|Musical    212
## 28700 1998                                        Comedy|Drama|Romance    212
## 28701 1947                                                Comedy|Drama    212
## 28702 1984                             Action|Adventure|Comedy|Romance    212
## 28703 1985                               Comedy|Crime|Mystery|Thriller    212
## 28704 1984                                                       Drama    212
## 28705 1986                                      Action|Adventure|Drama    212
## 28706 1998                                              Comedy|Romance    212
## 28708 1998                                               Horror|Sci-Fi    212
## 28710 1986                                Drama|Horror|Sci-Fi|Thriller    212
## 28711 1986                                            Adventure|Comedy    212
## 28712 1999                                              Comedy|Romance    212
## 28713 1999                                             Action|Thriller    212
## 28714 1999                                                       Drama    212
## 28715 1999                                                Comedy|Crime    212
## 28716 1968                                         Action|Drama|Sci-Fi    212
## 28717 1999                                                      Comedy    212
## 28718 1999                                                       Drama    212
## 28723 1999                                              Comedy|Romance    212
## 28724 1999                                                      Comedy    212
## 28725 1999                                              Crime|Thriller    212
## 28726 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    212
## 28727 1999                                     Action|Adventure|Sci-Fi    212
## 28728 1978                                     Action|Adventure|Sci-Fi    212
## 28729 1980                                               Action|Sci-Fi    212
## 28730 1983                                     Action|Adventure|Sci-Fi    212
## 28731 1975                                Comedy|Horror|Musical|Sci-Fi    212
## 28732 1999                                              Comedy|Romance    212
## 28733 1999                                     Action|Adventure|Comedy    212
## 28735 1999                                Crime|Drama|Mystery|Thriller    212
## 28737 1999                                                      Comedy    212
## 28738 1990                                               Comedy|Horror    212
## 28739 1999                                Action|Comedy|Sci-Fi|Western    212
## 28740 1999                                              Comedy|Romance    212
## 28741 1999                                       Drama|Horror|Thriller    212
## 28742 1984                                        Action|Comedy|Sci-Fi    212
## 28743 1989                                       Comedy|Fantasy|Sci-Fi    212
## 28744 1999                                             Horror|Thriller    212
## 28745 1999                                       Action|Comedy|Fantasy    212
## 28746 1999                                              Comedy|Romance    212
## 28747 1960                                    Action|Drama|Romance|War    212
## 28748 1999                   Adventure|Animation|Children|Drama|Sci-Fi    212
## 28749 1999                                        Drama|Horror|Mystery    212
## 28750 1980                                                      Comedy    212
## 28751 1988                                Comedy|Drama|Fantasy|Romance    212
## 28752 1983                                             Children|Comedy    212
## 28753 1992                                               Action|Sci-Fi    212
## 28756 1999                                 Action|Crime|Drama|Thriller    212
## 28757 1999                           Action|Adventure|Comedy|Drama|War    212
## 28759 1983                                                      Comedy    212
## 28761 1967                                            Action|Drama|War    212
## 28762 1992                                             Children|Comedy    212
## 28764 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    212
## 28765 1999                                             Horror|Thriller    212
## 28767 1999                                                    Thriller    212
## 28768 1999                                              Drama|Thriller    212
## 28769 1987                                               Comedy|Sci-Fi    212
## 28770 1973                 Adventure|Animation|Children|Comedy|Musical    212
## 28772 1999                                                   Drama|War    212
## 28773 1987                                              Comedy|Romance    212
## 28776 1999                                   Action|Adventure|Thriller    212
## 28777 1988                                      Comedy|Fantasy|Romance    212
## 28778 1987                                              Drama|Thriller    212
## 28779 1988                                Action|Comedy|Crime|Thriller    212
## 28780 1991                                Comedy|Drama|Fantasy|Romance    212
## 28781 1999                 Adventure|Animation|Children|Comedy|Fantasy    212
## 28783 1999                                                 Crime|Drama    212
## 28785 1999                                               Drama|Romance    212
## 28786 1969                                             Adventure|Drama    212
## 28787 1999                                     Adventure|Comedy|Sci-Fi    212
## 28788 1999                                      Drama|Mystery|Thriller    212
## 28792 1992                                                      Comedy    212
## 28793 1992                                                       Drama    212
## 28794 1992                                                Comedy|Crime    212
## 28796 1992                                                      Comedy    212
## 28797 1992                                                Comedy|Drama    212
## 28798 1992                                 Action|Crime|Drama|Thriller    212
## 28799 1992                                      Drama|Romance|Thriller    212
## 28800 1992                                                Comedy|Drama    212
## 28801 1992                                        Drama|Romance|Sci-Fi    212
## 28802 2000                              Comedy|Horror|Mystery|Thriller    212
## 28804 2000                                      Horror|Sci-Fi|Thriller    212
## 28805 2000                                                Comedy|Crime    212
## 28806 2000                                                      Sci-Fi    212
## 28807 1988                                        Comedy|Drama|Romance    212
## 28808 1975                                                 Crime|Drama    212
## 28809 1991                                      Drama|Mystery|Thriller    212
## 28810 2000                                                       Drama    212
## 28811 1991                                       Adventure|Crime|Drama    212
## 28812 1978                                                      Comedy    212
## 28813 1987                                            Comedy|Drama|War    212
## 28814 2000                               Action|Crime|Romance|Thriller    212
## 28818 1989                                                Comedy|Drama    212
## 28820 1955                                      Comedy|Musical|Romance    212
## 28821 1980                                                      Comedy    212
## 28825 2000                                                      Comedy    212
## 28826 2000                                   Action|Adventure|Thriller    212
## 28827 2000                             Action|Adventure|Comedy|Western    212
## 28828 1974                                              Comedy|Western    212
## 28829 2000                                                Action|Crime    212
## 28830 2000                  Action|Adventure|Animation|Children|Sci-Fi    212
## 28831 2000                                   Animation|Children|Comedy    212
## 28832 2000                                            Adventure|Comedy    212
## 28833 2000                                            Action|Drama|War    212
## 28834 2000                                               Comedy|Horror    212
## 28837 1991                                                      Comedy    212
## 28838 1988                                 Action|Comedy|Crime|Romance    212
## 28839 1991                                                      Comedy    212
## 28840 2000                                                      Comedy    212
## 28841 2000                                                 Crime|Drama    212
## 28843 2000                                                       Drama    212
## 28844 1943                                     Horror|Musical|Thriller    212
## 28845 2000                                                      Comedy    212
## 28846 2000                                                       Drama    212
## 28848 2000                                               Action|Comedy    212
## 28849 2000                                     Children|Comedy|Fantasy    212
## 28850 2000                                        Action|Drama|Romance    212
## 28851 1987                                                      Comedy    212
## 28854 2000                                               Comedy|Sci-Fi    212
## 28856 2000                                              Comedy|Romance    212
## 28858 2000                                                       Drama    212
## 28859 2000                                                Comedy|Crime    212
## 28860 2000                                      Adventure|Comedy|Crime    212
## 28862 1982                                               Drama|Romance    212
## 28863 1993                                                   Drama|War    212
## 28864 2001                                              Comedy|Romance    212
## 28865 1987                                          Animation|Children    212
## 28866 1987                                  Action|Adventure|Drama|War    212
## 28868 2001                                               Action|Comedy    212
## 28869 1990                                        Action|Adventure|War    212
## 28870 1978                                               Crime|Mystery    212
## 28871 2001                                                   Drama|War    212
## 28875 1983                                          Action|Crime|Drama    212
## 28876 2001                            Action|Adventure|Comedy|Thriller    212
## 28881 1991                                              Comedy|Western    212
## 28882 1988                                                       Drama    212
## 28883 2001                                          Action|Crime|Drama    212
## 28884 2001                                            Action|Adventure    212
## 28887 2001                                               Drama|Romance    212
## 28888 2001                                                      Comedy    212
## 28889 1968                                                       Drama    212
## 28890 2001                                              Comedy|Romance    212
## 28892 1988                                                      Comedy    212
## 28893 1989                                     Adventure|Comedy|Sci-Fi    212
## 28894 1989                                                       Drama    212
## 28895 2001                            Action|Adventure|Sci-Fi|Thriller    212
## 28896 2001                                                Comedy|Drama    212
## 28897 2001                               Action|Adventure|Drama|Sci-Fi    212
## 28898 2001                                               Action|Comedy    212
## 28899 2001                                                      Comedy    212
## 28901 2001                                            Adventure|Comedy    212
## 28902 2001                                      Horror|Sci-Fi|Thriller    212
## 28903 2001                                        Crime|Drama|Thriller    212
## 28904 2001                                                      Comedy    212
## 28905 2001                                              Comedy|Romance    212
## 28906 1971                                       Action|Crime|Thriller    212
## 28911 2001                                      Action|Sci-Fi|Thriller    212
## 28912 2001                                  Adventure|Children|Fantasy    212
## 28913 2001                                 Action|Crime|Drama|Thriller    212
## 28915 2001                                              Comedy|Romance    212
## 28920 2001                                        Comedy|Drama|Mystery    212
## 28921 2001                                                       Drama    212
## 28922 2001                                               Drama|Romance    212
## 28923 2001                                     Action|Mystery|Thriller    212
## 28924 2002                                               Action|Comedy    212
## 28925 1993                                                Action|Drama    212
## 28928 2001                                                Comedy|Drama    212
## 28929 2002                                            Action|Drama|War    212
## 28931 2002                               Action|Horror|Sci-Fi|Thriller    212
## 28932 2002                                      Action|Horror|Thriller    212
## 28933 2002                                                    Thriller    212
## 28934 2002                                              Comedy|Romance    212
## 28935 2002                                              Comedy|Romance    212
## 28936 1987                                                      Comedy    212
## 28937 2001                                            Romance|Thriller    212
## 28939 1994                                                   Adventure    212
## 28941 2002                                Action|Adventure|Sci-Fi|IMAX    212
## 28942 2002                         Action|Crime|Drama|Mystery|Thriller    212
## 28943 2002                        Adventure|Animation|Children|Western    212
## 28944 2002                                              Drama|Thriller    212
## 28946 2002                                                       Drama    212
## 28947 2002                         Adventure|Animation|Children|Sci-Fi    212
## 28949 2002                                        Action|Comedy|Sci-Fi    212
## 28950 2002                             Action|Adventure|Drama|Thriller    212
## 28951 2002                                                      Comedy    212
## 28952 2002                                      Horror|Sci-Fi|Thriller    212
## 28953 2002                                       Action|Crime|Thriller    212
## 28954 2002                                                Action|Crime    212
## 28955 2002                                               Adventure|War    212
## 28957 1983                                                      Comedy    212
## 28958 2002                                                 Documentary    212
## 28959 2002                                     Horror|Mystery|Thriller    212
## 28960 1981                                                   Drama|War    212
## 28961 2002                                                       Drama    212
## 28962 2002                                           Adventure|Fantasy    212
## 28963 2002                                   Action|Adventure|Thriller    212
## 28964 2002                                          Drama|Thriller|War    212
## 28966 2002                                Comedy|Drama|Musical|Romance    212
## 28967 2002                                                Comedy|Drama    212
## 28968 2002                                                       Drama    212
## 28970 2002                                                 Crime|Drama    212
## 28971 2002                                                 Crime|Drama    212
## 28972 2002                                               Drama|Romance    212
## 28973 2002                                               Drama|Romance    212
## 28975 2003                                             Action|Thriller    212
##       rating  timestamp
## 1        2.5 1260759144
## 2        3.0 1260759179
## 3        3.0 1260759182
## 4        2.0 1260759185
## 6        2.0 1260759151
## 7        2.0 1260759187
## 8        2.0 1260759148
## 9        3.5 1260759125
## 10       2.0 1260759131
## 11       2.5 1260759135
## 12       1.0 1260759203
## 15       3.0 1260759194
## 16       2.0 1260759198
## 17       2.0 1260759108
## 18       2.5 1260759113
## 19       1.0 1260759200
## 20       3.0 1260759117
## 26       3.0  835356031
## 27       3.0  835355749
## 29       3.0  835356016
## 32       3.0  835355493
## 33       3.0  835355441
## 34       3.0  835355710
## 35       3.0  835355511
## 36       3.0  835355664
## 37       3.0  835355511
## 39       1.0  835355749
## 40       3.0  835355552
## 41       3.0  835355664
## 42       3.0  835355896
## 47       3.0  835355767
## 49       3.0  835355492
## 51       3.0  835355532
## 53       2.0  835355551
## 54       1.0  835355918
## 55       3.0  835355492
## 58       3.0  835355628
## 59       3.0  835355749
## 60       3.0  835355604
## 61       3.0  835355619
## 62       2.0  835355932
## 63       3.0  835355968
## 64       3.0  835356094
## 65       3.0  835355710
## 66       3.0  835356165
## 67       2.0  835356246
## 68       3.0  835355532
## 70       3.0  835355511
## 72       2.0  835355828
## 74       3.0  835355918
## 75       3.0  835355880
## 82       3.0  835355767
## 83       3.0  835356109
## 85       3.0  835355860
## 87       3.0  835355790
## 88       3.0  835355779
## 89       3.0  835355441
## 93       3.0  835355511
## 94       3.0  835355932
## 97       3.0 1298861675
## 99       3.5 1298861637
## 100      3.0 1298861761
## 103      2.5 1298861589
## 105      2.5 1298923242
## 106      3.0 1298862528
## 107      3.0 1298922100
## 108      3.0 1298923247
## 109      3.0 1298921840
## 110      2.0 1298923260
## 111      3.5 1298932787
## 113      3.0 1298861687
## 115      3.0 1298921795
## 117      3.0 1298861605
## 119      3.5 1298922089
## 124      3.0 1298861789
## 125      3.0 1298862710
## 126      3.5 1298861796
## 127      3.0 1298924017
## 128      3.5 1298922057
## 132      3.0 1298861968
## 135      3.0 1298923266
## 136      3.5 1298862672
## 137      3.0 1298922080
## 138      2.5 1298921787
## 139      3.0 1298922065
## 140      3.5 1298861650
## 141      3.0 1298932766
## 142      3.5 1298862555
## 143      3.5 1298932740
## 146      3.0 1298922071
## 153      3.0  949811346
## 154      3.0  949920047
## 158      3.0  949810618
## 164      3.0  949810534
## 165      3.0  949919883
## 166      3.0  949895772
## 168      1.0  949920135
## 176      3.0  949810534
## 236      3.0  949920004
## 238      3.0  949918904
## 239      3.0  949810688
## 244      3.0  949811230
## 248      1.0  949895864
## 251      2.0  949895956
## 255      3.0  949949538
## 259      3.0  949895907
## 260      2.0  949918970
## 269      3.0  949896114
## 284      3.0  949896309
## 294      3.0  949896070
## 297      3.0  949896309
## 308      1.0  949895993
## 311      3.0  949918671
## 317      1.0  949896521
## 323      3.0  949811230
## 324      3.0  949918875
## 327      2.0  949896309
## 328      1.0  949896309
## 332      3.0  949896015
## 335      3.0  949896543
## 345      2.0  949778946
## 349      3.0  949919845
## 351      2.0  949982238
## 357      3.5 1163373762
## 359      3.5 1163373636
## 367      3.5 1163373551
## 370      3.5 1163374993
## 371      2.5 1163373651
## 372      3.5 1163373135
## 376      3.0 1163374173
## 377      2.5 1163374239
## 381      3.5 1163374165
## 383      3.5 1163374562
## 391      3.5 1163374593
## 392      1.5 1163373188
## 396      3.5 1163374184
## 398      3.5 1163374290
## 402      3.5 1163373743
## 403      3.5 1163374947
## 404      3.5 1163374278
## 405      3.5 1163374127
## 406      3.5 1163374263
## 407      3.5 1163374408
## 409      3.5 1163373148
## 411      3.5 1163374198
## 414      3.5 1163373696
## 416      3.5 1163374103
## 417      3.5 1163374354
## 419      3.5 1163375131
## 420      3.0 1163373548
## 422      3.5 1163374995
## 426      3.5 1163374206
## 428      3.0 1163373688
## 430      3.5 1163374491
## 434      2.5 1163373238
## 438      3.5 1163374118
## 443      3.5 1163374177
## 453      2.0 1108134263
## 454      2.0 1109258228
## 463      2.0 1109258181
## 464      2.0 1109258179
## 465      2.0 1109258281
## 466      2.0 1109258194
## 467      0.5 1108134334
## 468      3.0 1108134344
## 469      3.0 1108134289
## 473      3.5 1108134291
## 474      3.0 1109258245
## 476      1.0 1109258202
## 477      2.0 1108134271
## 479      3.0 1109258257
## 481      3.0 1109258199
## 482      1.0 1108134337
## 484      3.5 1109258250
## 485      1.5 1109258190
## 486      1.5 1109258217
## 487      1.5 1109258226
## 489      3.0 1108134534
## 492      3.5 1108134526
## 494      3.0 1108134531
## 496      3.0  851866703
## 497      3.0  851869035
## 498      3.0  851867289
## 499      3.0  851868750
## 502      3.0  851866744
## 507      2.0  851868704
## 508      3.0  851868705
## 510      3.0  851868188
## 511      2.0  851869161
## 513      3.0  851868524
## 514      3.0  851867345
## 515      3.0  851867621
## 516      3.0  851867941
## 517      3.0  851868188
## 518      3.0  851867436
## 519      3.0  851868020
## 520      3.0  851867790
## 521      3.0  851869291
## 524      3.0  851867669
## 526      3.0  851867688
## 530      3.0  851869140
## 532      3.0  851868863
## 534      3.0  851868044
## 535      3.0  851868074
## 537      3.0  851866744
## 539      2.0  851866784
## 540      1.0  851866704
## 541      1.0  851866763
## 543      3.0  851866703
## 544      2.0  851866744
## 546      3.0  851869102
## 547      3.0  851866744
## 550      3.0  851868308
## 551      3.0  851867553
## 552      3.0  851869103
## 556      3.0  851867289
## 565      3.0  851867436
## 567      3.0  851867436
## 570      3.0  851867320
## 571      3.0  851868471
## 573      3.0  851867401
## 574      3.0  851866935
## 575      3.0  851869160
## 576      3.0  851869102
## 577      2.0  851869230
## 579      3.0  851869140
## 580      3.0  851869062
## 581      3.0  851867688
## 583      1.0  851869140
## 585      2.5 1154389572
## 589      3.5 1154464829
## 590      2.0 1154389420
## 595      3.5 1154389356
## 596      2.0 1154400357
## 602      3.5 1154389432
## 604      3.5 1154464841
## 612      3.0 1154465230
## 615      3.5 1154400465
## 616      0.5 1154474527
## 618      3.0 1154400324
## 620      3.0 1154389408
## 621      3.5 1154464990
## 625      3.0 1154400308
## 627      3.5 1154389528
## 630      3.0 1154389460
## 631      3.0 1154465222
## 636      3.5 1154389340
## 637      3.5 1154400351
## 640      3.5 1154464944
## 642      2.5 1154389541
## 644      3.5 1154400340
## 645      3.5 1154473419
## 646      3.0 1154400360
## 652      3.5 1154400198
## 656      3.5 1154400245
## 660      2.5 1154400334
## 661      3.5 1154464808
## 662      3.5 1154400398
## 665      3.5 1154464819
## 666      3.5 1154389449
## 668      3.5 1154389552
## 673      3.0 1154465385
## 675      3.5 1154400444
## 677      3.0 1154400191
## 680      3.0 1154400253
## 681      3.5 1154400294
## 685      2.5 1154400471
## 688      3.0 1154465548
## 689      3.5 1154465243
## 693      3.5 1154400423
## 694      3.5 1154473088
## 695      3.5 1154473264
## 696      2.0 1154473042
## 697      3.5 1154473022
## 698      3.0 1154473014
## 699      3.0 1154473017
## 702      3.0  938628655
## 704      3.0  938628897
## 712      2.0  938628337
## 714      3.0  938629470
## 717      3.0  938628655
## 718      2.0  938628777
## 723      3.0  938629470
## 729      3.0  938629053
## 730      3.0  938628777
## 733      2.0  938629250
## 737      2.0  938629681
## 738      3.0  938629681
## 740      2.0  938629341
## 742      3.0  938628843
## 748      3.0  942766603
## 750      3.0  942767328
## 752      3.0  942767258
## 753      3.0  942766420
## 754      2.0  942767328
## 761      3.0  942767328
## 766      3.0  942766725
## 767      3.0  942766845
## 769      3.0  942766679
## 772      2.0  942766845
## 774      3.0  942766472
## 777      2.0  942767328
## 781      3.0  942766251
## 782      3.0  942766213
## 784      3.0  942766164
## 786      2.0  942766213
## 788      2.0  942766251
## 789      3.0  942766059
## 792      1.0 1391656827
## 794      3.0 1391657297
## 797      3.5 1391656845
## 802      3.0 1391657062
## 803      3.5 1391657376
## 805      3.0 1391658583
## 806      3.0 1391657112
## 807      3.0 1391658601
## 813      3.5 1391657720
## 817      3.0 1391658137
## 819      3.5 1391658218
## 829      3.0  968045587
## 830      1.0  968045407
## 831      3.0  968045438
## 832      2.0  968045353
## 833      1.0  968045732
## 835      3.0  968045764
## 836      1.0  968045500
## 837      2.0  968045561
## 838      3.0  968045500
## 839      1.0  955407153
## 842      2.0  968045354
## 844      1.0  955407153
## 845      1.0  968045475
## 847      2.0  968045438
## 848      3.0  968045529
## 849      2.0  955407153
## 850      2.0  968045475
## 852      1.0  968045475
## 853      2.0  968045764
## 855      2.0  968045732
## 856      1.0  968045379
## 857      3.0  968045649
## 858      2.0  968045354
## 860      1.0  968045732
## 863      3.0  968045619
## 864      2.0  968045680
## 865      2.0  968045619
## 866      1.0  968045232
## 868      3.0  968045232
## 870      1.0  968045198
## 871      3.0  968045198
## 872      3.0  968045172
## 874      2.0  968045142
## 875      2.0  968045106
## 877      2.0  968045074
## 878      1.0  968045074
## 879      3.0  968045015
## 881      3.0  968045015
## 883      2.0  968044981
## 884      2.0  968044981
## 885      3.0  968044981
## 887      3.0  968044949
## 888      2.0  968044949
## 891      2.5 1331380914
## 894      3.5 1331380895
## 898      3.0 1331380025
## 899      3.5 1331379485
## 902      3.0 1331380851
## 905      3.5 1331380871
## 906      3.0 1331379520
## 908      2.5 1331380845
## 909      3.0 1331379386
## 912      3.0 1331380888
## 913      3.5 1331379777
## 915      3.0 1331380765
## 916      3.0 1331380731
## 917      3.0 1331379494
## 918      3.0 1331380761
## 919      3.0 1331380738
## 921      3.5 1331379342
## 922      3.5 1331379599
## 923      3.0 1331379574
## 926      2.5 1331379589
## 927      3.5 1331379530
## 929      3.5 1331380834
## 935      3.5 1331380782
## 942      3.0 1331379985
## 943      1.0  976243997
## 945      3.0  976243912
## 946      3.0  976244179
## 947      2.0  976244179
## 948      3.0  976244471
## 949      3.0  976243933
## 950      2.0  976244131
## 951      3.0  976244313
## 952      2.0  976244367
## 953      3.0  976244524
## 954      2.0  976244287
## 956      2.0  976244564
## 958      3.0  976243997
## 959      3.0  976244423
## 961      3.0  976244107
## 963      2.0  997938310
## 964      2.0 1134521380
## 967      3.0 1093028290
## 968      2.5 1093028381
## 969      2.5 1166586286
## 970      3.5 1093070150
## 971      3.0  997939404
## 972      1.0 1093028409
## 974      2.5 1093070415
## 975      3.0 1033345172
## 977      3.0  997938310
## 978      1.0 1033345287
## 979      2.5 1093028334
## 980      3.0 1122576665
## 983      2.5 1093070271
## 984      2.0 1093028336
## 985      0.5 1093070467
## 987      3.0 1166587063
## 988      1.5 1093028331
## 990      1.0 1093070113
## 991      2.0 1166586594
## 992      3.0 1040205792
## 994      2.5 1093070156
## 996      3.5 1245362506
## 997      3.5 1134521543
## 999      3.0  997939380
## 1000     1.0 1128274517
## 1001     2.0 1052896975
## 1002     0.5 1093028411
## 1003     3.0 1093028319
## 1005     2.0 1166586021
## 1007     3.0 1093028183
## 1008     2.5 1166586376
## 1009     1.0 1093070329
## 1012     3.0 1166586276
## 1013     2.0 1052896916
## 1014     1.0 1193435347
## 1015     2.0 1093070170
## 1016     1.5 1134521967
## 1017     1.5 1193435482
## 1018     2.0 1033345241
## 1020     1.0 1349622582
## 1022     1.0 1134521432
## 1023     1.0 1033345068
## 1024     3.5 1093028308
## 1028     3.5 1166586251
## 1030     2.0  997938567
## 1031     2.0 1093070318
## 1032     2.0 1093028328
## 1034     1.0 1058250479
## 1035     2.0 1093028372
## 1036     1.0 1093028298
## 1043     3.0 1052896866
## 1044     1.0 1093028399
## 1045     2.0  997938727
## 1046     2.5 1120209787
## 1047     1.5 1093028255
## 1048     2.0  997938391
## 1049     2.5 1122576622
## 1050     3.0 1058250589
## 1051     2.0 1093028220
## 1052     3.0  997939193
## 1053     3.0 1093070088
## 1054     0.5 1122576667
## 1055     1.0 1058250631
## 1056     3.5 1058250490
## 1058     2.0 1374637824
## 1059     3.5 1122576670
## 1060     2.0 1443385370
## 1061     3.0 1465793100
## 1062     3.5 1054449871
## 1065     3.5 1166586661
## 1066     1.0 1465955324
## 1068     3.0 1093028320
## 1069     1.0 1093070102
## 1070     2.5 1058250627
## 1072     1.0 1193435522
## 1073     3.0 1093028323
## 1075     2.5 1134521456
## 1076     3.0 1166586067
## 1077     3.0 1093028384
## 1078     3.0  997939193
## 1079     3.0 1166586748
## 1080     1.0  997938905
## 1081     0.5 1093070332
## 1083     3.0 1035258747
## 1084     1.5 1093028394
## 1085     2.0 1093028389
## 1086     3.5 1443384915
## 1087     2.5 1166586387
## 1089     3.0 1033345148
## 1090     2.0 1093028325
## 1091     1.5 1240203835
## 1093     3.0 1093070381
## 1095     2.0  997939055
## 1097     3.5 1361078504
## 1098     3.0 1166586512
## 1099     3.0 1141391972
## 1100     2.0 1093028377
## 1101     1.0 1093028322
## 1102     0.5 1093028161
## 1104     3.0 1093028142
## 1107     2.5 1245021392
## 1108     2.5 1093028267
## 1110     3.0 1052896916
## 1111     2.5 1093070326
## 1112     1.5 1134521628
## 1114     2.0 1035258608
## 1115     3.0  997939348
## 1116     3.0 1052896916
## 1117     2.0 1052896867
## 1118     3.0 1093028406
## 1119     3.0 1033345122
## 1120     2.0 1166586237
## 1121     3.5 1093028260
## 1122     1.0 1093028237
## 1123     3.0  997938288
## 1124     2.5 1166586565
## 1126     2.0 1093070454
## 1128     2.5 1093028151
## 1129     2.5 1093070207
## 1130     3.0 1033344834
## 1131     0.5 1093028395
## 1132     1.5 1134521382
## 1133     3.0 1136904835
## 1135     1.0 1128274713
## 1137     3.5 1134522085
## 1138     1.0 1166586002
## 1139     2.0 1166586995
## 1148     2.5 1122576681
## 1152     1.5 1058250501
## 1153     1.0 1128274460
## 1154     3.0  997938737
## 1155     3.5 1093070090
## 1156     1.0 1040205624
## 1159     3.0 1044219825
## 1160     1.0 1058250466
## 1161     3.0  997938800
## 1163     2.0 1166586619
## 1164     2.0 1034544304
## 1167     2.5 1348976598
## 1168     1.5 1166586136
## 1170     3.0  997938603
## 1172     3.0  997938787
## 1173     2.0 1122576683
## 1175     2.5 1193436089
## 1176     2.0 1166586415
## 1180     2.5 1458506296
## 1181     3.0 1093070163
## 1182     1.0 1055439464
## 1184     2.5 1345397949
## 1185     2.5 1128274586
## 1186     3.5 1386368101
## 1187     3.0  997938288
## 1189     3.0 1193435335
## 1191     3.0  997938771
## 1193     2.0 1443384910
## 1195     3.5 1361078481
## 1198     1.0 1040205753
## 1200     1.0 1093070386
## 1202     3.5 1345398232
## 1204     2.0  997939111
## 1206     3.0 1044347743
## 1210     1.5 1058250487
## 1211     3.0 1166586696
## 1212     3.0  997938749
## 1214     1.5 1054271469
## 1215     2.0 1055439440
## 1217     3.0  997938203
## 1218     1.0 1093070109
## 1224     3.0 1044347881
## 1226     3.0  997938727
## 1228     3.5 1166586368
## 1229     3.0  997938451
## 1230     2.0 1033345172
## 1232     1.0 1093070174
## 1234     3.0  997938509
## 1235     3.0  997938500
## 1237     3.0  997938749
## 1239     3.5 1345398347
## 1241     3.0  997938917
## 1242     3.0  997938981
## 1243     1.5 1134521651
## 1245     3.0  997938162
## 1250     3.5 1054450246
## 1251     2.5 1054450208
## 1252     3.0  997938941
## 1253     1.0 1063565335
## 1254     3.0 1416120074
## 1255     3.0 1345397986
## 1256     2.0 1033345087
## 1259     3.0 1035258608
## 1263     3.0 1093070459
## 1264     2.0 1054450251
## 1265     3.0 1040205753
## 1267     3.0 1134521497
## 1268     2.0  997938219
## 1269     2.0 1052896916
## 1270     2.0 1134521654
## 1271     2.0 1033345050
## 1272     2.0 1052896819
## 1273     1.0  997938500
## 1274     3.5 1361078494
## 1275     3.0 1093070198
## 1276     3.0 1093070479
## 1277     2.5 1166586012
## 1278     3.0 1458506268
## 1280     0.5 1093070145
## 1281     3.5 1058250612
## 1284     3.0 1052897043
## 1289     3.0 1134522057
## 1290     1.5 1338699256
## 1291     3.0 1193435343
## 1292     3.0  997938358
## 1293     3.0 1093070397
## 1294     3.0 1093070210
## 1295     1.5 1425876701
## 1296     1.0 1035258747
## 1297     2.0 1033344937
## 1298     3.0  997939453
## 1299     1.0 1052896819
## 1300     3.0  997939393
## 1301     1.0 1093070319
## 1303     1.5 1134521507
## 1304     2.5 1166587010
## 1305     1.5 1166586212
## 1306     3.5 1134521624
## 1310     2.0 1093028013
## 1311     2.0 1134521585
## 1312     1.0 1093070221
## 1313     3.0 1040205754
## 1314     3.0  997939193
## 1315     3.0 1166587214
## 1320     1.5 1166586517
## 1321     3.0  997938413
## 1322     2.0  997938647
## 1323     3.0 1052896685
## 1324     3.0 1058250115
## 1325     3.0 1033345299
## 1327     3.0 1166586583
## 1328     2.0  997939424
## 1330     1.0 1134521603
## 1331     3.0  997938879
## 1335     1.5 1093028339
## 1336     3.5 1134521534
## 1337     1.0 1033344286
## 1338     3.5 1054449676
## 1339     0.5 1166981862
## 1340     3.5 1134521589
## 1342     3.5 1469330699
## 1343     1.0 1349622617
## 1344     3.5 1460076717
## 1345     2.0 1134521514
## 1346     1.0 1166586707
## 1347     3.0 1033345287
## 1348     3.0 1458506454
## 1349     3.0  997938391
## 1350     1.5 1093028022
## 1351     2.5 1166587162
## 1352     2.5 1465881179
## 1354     2.0 1166586439
## 1355     3.5 1058250734
## 1356     2.0 1469330727
## 1360     2.0 1469330647
## 1361     2.0 1134521539
## 1362     1.5 1166586478
## 1364     3.0 1054449827
## 1365     2.5 1469330584
## 1366     1.5 1054450597
## 1367     3.5 1075142949
## 1368     2.0 1052896819
## 1370     3.5 1054449899
## 1371     2.0 1052896916
## 1375     3.0 1058249502
## 1376     3.0  997938810
## 1377     3.0  997938528
## 1378     3.0 1040205792
## 1381     3.5 1093028404
## 1382     3.0 1033345068
## 1383     3.0  997938372
## 1385     2.5 1166586228
## 1387     3.0 1052896975
## 1388     3.0 1034544351
## 1391     3.0 1052896685
## 1392     3.0 1044219825
## 1393     1.0 1046209705
## 1394     2.0 1044347881
## 1396     2.5 1379040745
## 1397     2.0 1465881239
## 1398     3.0  997938784
## 1399     2.0 1033344732
## 1400     2.0  997938630
## 1401     2.5 1166586203
## 1402     2.0 1052896975
## 1404     3.0  997938413
## 1405     2.0  997938603
## 1409     2.0 1033345050
## 1410     1.0 1166587068
## 1411     3.5 1166587080
## 1412     3.5 1122576686
## 1413     3.0 1052896819
## 1414     2.0 1034544351
## 1415     3.0  997937311
## 1416     3.0 1166586521
## 1417     3.0  997938630
## 1418     3.0  997939162
## 1420     3.0  997938528
## 1422     3.0 1052897043
## 1425     3.5 1054449665
## 1426     1.0 1093070270
## 1427     2.5 1465881227
## 1428     2.5 1166586189
## 1429     2.5 1134521675
## 1430     0.5 1469330645
## 1431     3.0 1052896740
## 1433     3.0  997939439
## 1434     2.0 1052897012
## 1435     3.5 1093070399
## 1436     3.0  997938931
## 1437     2.0 1052896916
## 1438     3.5 1345397769
## 1440     3.5 1122576690
## 1441     2.0  997939328
## 1442     1.0 1054450149
## 1443     3.0 1033344795
## 1444     3.0 1469330601
## 1445     2.0 1033344772
## 1446     2.0 1134522028
## 1447     1.0 1044347881
## 1448     0.5 1134521484
## 1449     2.0  997939055
## 1450     3.0  997938834
## 1451     2.0  997937311
## 1452     3.0 1040205792
## 1453     1.0 1033344752
## 1454     3.5 1166586655
## 1455     3.0  997937311
## 1456     3.5 1465880711
## 1457     3.0  997938567
## 1459     2.0  997938162
## 1460     3.0 1052897012
## 1461     3.5 1458506447
## 1462     3.0 1052896819
## 1464     1.5 1134521618
## 1465     3.0 1040205754
## 1466     1.0 1033344782
## 1467     2.0  997939328
## 1468     2.5 1122576697
## 1469     3.5 1166586146
## 1470     1.0  997938413
## 1472     1.0 1033344906
## 1473     3.0  997938760
## 1475     0.5 1122576701
## 1476     2.0 1347937598
## 1477     2.5 1465880194
## 1478     1.0 1033344732
## 1479     1.0  997939415
## 1480     3.0 1033344917
## 1481     0.5 1469330735
## 1484     1.0 1033344897
## 1485     3.0 1033344772
## 1486     2.5 1054449822
## 1487     3.0  997939393
## 1488     1.0 1033344897
## 1489     1.0 1033344865
## 1491     1.5 1166587193
## 1492     3.0  997939021
## 1493     3.0 1033344995
## 1494     1.0 1033344772
## 1495     1.0 1093070339
## 1496     3.0  997939255
## 1497     2.5 1093028374
## 1499     3.0  997938219
## 1500     2.0 1052896819
## 1502     1.0 1033344752
## 1503     1.0 1033344657
## 1504     3.0  997938372
## 1505     3.0  997938151
## 1506     3.0 1033345068
## 1507     3.0 1033344958
## 1508     1.0 1245361903
## 1509     1.5 1122576707
## 1510     3.0 1033344657
## 1511     3.0 1033344663
## 1512     1.0 1033344878
## 1513     1.0 1033344702
## 1515     1.0 1033344834
## 1517     3.5 1465793437
## 1518     1.5 1469330590
## 1519     2.0 1033344732
## 1520     1.0 1033344897
## 1521     2.5 1054450195
## 1522     3.0  997939653
## 1523     1.0 1033344752
## 1524     2.0  997939037
## 1525     1.0  997938500
## 1526     1.0 1033344970
## 1527     2.0  997937762
## 1530     3.5 1065197456
## 1532     1.5 1166587203
## 1533     3.0  997938567
## 1534     1.0 1033344958
## 1535     2.0 1033344958
## 1538     1.0 1033344752
## 1541     1.0  997938879
## 1543     1.5 1345397822
## 1549     1.0 1054449851
## 1552     2.0 1469330578
## 1554     3.0 1052896740
## 1556     3.5 1345398317
## 1560     1.0 1033344685
## 1561     1.0 1033344702
## 1563     2.5 1361078485
## 1564     2.0 1033344865
## 1566     3.0  997938954
## 1567     3.0 1166586681
## 1571     3.0 1058250603
## 1572     3.0  997939653
## 1574     3.0 1033345241
## 1575     1.0 1033344958
## 1576     3.0 1166586269
## 1578     3.0  997938895
## 1581     3.0 1316395917
## 1583     2.0 1166587025
## 1584     1.0 1033344983
## 1586     3.5 1054449917
## 1587     1.0 1044347881
## 1588     1.5 1460076724
## 1589     1.0  997939415
## 1590     1.0 1134521933
## 1591     3.0 1245361773
## 1592     3.0  997938931
## 1593     1.0 1033344970
## 1594     3.0  997938941
## 1595     2.5 1338698402
## 1596     2.5 1122576723
## 1597     1.0 1033344865
## 1599     2.0  997938413
## 1600     1.0  997939393
## 1601     2.0  997937726
## 1602     2.0 1033344958
## 1604     2.0 1033344897
## 1605     1.0  997938046
## 1607     2.0 1034544351
## 1608     3.0  997939639
## 1609     2.0 1134521644
## 1610     2.0 1361831567
## 1612     1.0  997938391
## 1615     3.0 1063565307
## 1616     2.0 1033345227
## 1617     1.0  997937890
## 1618     0.5 1347936677
## 1619     2.0 1416119608
## 1620     3.0  997937999
## 1624     3.0 1082220247
## 1625     1.5 1416119948
## 1627     3.0  997937986
## 1630     2.5 1096005300
## 1631     3.0 1054449689
## 1632     3.5 1120209453
## 1633     3.0  997938391
## 1634     1.0  997937239
## 1635     2.0 1033344772
## 1637     1.0 1040205754
## 1638     1.5 1063565279
## 1639     3.0  997938310
## 1640     2.5 1054450188
## 1641     2.5 1193436085
## 1642     3.0  997939144
## 1643     1.5 1063565329
## 1646     3.0 1093028035
## 1648     0.5 1465880417
## 1649     2.0 1166586405
## 1650     3.0  997938242
## 1653     2.0 1033344795
## 1654     3.0  997937926
## 1655     3.0 1052896819
## 1656     1.0  997937935
## 1657     1.0  997937822
## 1659     1.5 1096005190
## 1660     2.0 1033344752
## 1661     2.0 1465880183
## 1662     1.0 1166586553
## 1663     3.0  997937786
## 1664     3.0  997937902
## 1667     3.5 1465954636
## 1668     2.0 1033344795
## 1669     3.0  997937762
## 1671     2.0  997937876
## 1672     1.0 1033344878
## 1673     2.0 1122576735
## 1674     3.0  997937961
## 1676     2.0 1044347881
## 1677     3.5 1345397811
## 1678     3.5 1345398289
## 1679     2.0 1345397721
## 1680     2.0 1166586157
## 1683     1.0 1163876415
## 1686     2.0  997938822
## 1687     2.5 1082220261
## 1688     1.0  997937836
## 1689     2.0  997937700
## 1690     1.0  997937726
## 1691     1.0  997937971
## 1692     1.5 1416119541
## 1693     2.0 1122576740
## 1694     2.0  997937700
## 1696     2.0 1033344712
## 1697     3.0  997937795
## 1698     3.0  997938391
## 1699     2.0  997937808
## 1701     2.0  997937999
## 1702     2.0 1039243666
## 1703     3.0  997938372
## 1704     2.0  997937726
## 1705     1.0  997938015
## 1706     1.0  997938035
## 1707     2.5 1134522068
## 1708     3.0 1044348420
## 1709     3.0 1240203682
## 1710     3.0 1044348492
## 1711     2.0  997937860
## 1714     1.0 1039243705
## 1715     1.0  997937860
## 1716     3.0  997937890
## 1717     3.0  997937700
## 1718     2.0  997937848
## 1719     2.0  997937427
## 1721     3.0  997937860
## 1725     1.0  997937986
## 1726     1.0  997937762
## 1727     2.5 1425876021
## 1728     1.0  997937459
## 1729     3.0  997937848
## 1730     1.0  997938035
## 1731     1.0 1033344924
## 1734     1.0  997937926
## 1736     1.0 1166587057
## 1737     3.0  997937700
## 1738     1.0  997937999
## 1739     1.0  997937902
## 1742     1.0  997937614
## 1743     3.0  997937459
## 1744     3.5 1345398275
## 1745     3.0 1052896916
## 1746     3.5 1426110367
## 1747     2.0 1033345087
## 1748     1.0  997937606
## 1749     2.0 1044348492
## 1752     1.0 1044348492
## 1753     2.0 1416119589
## 1754     3.0  997937442
## 1755     3.0  997937427
## 1756     3.0  997937413
## 1757     2.0  997937442
## 1758     1.0 1044348492
## 1759     3.0  997937606
## 1761     2.0  997937459
## 1764     1.0  997937427
## 1765     3.0  997938372
## 1766     1.0  997937442
## 1767     1.0 1033344023
## 1771     1.0 1034544351
## 1772     3.0 1345398332
## 1773     3.0 1033344307
## 1775     1.0  997938035
## 1776     1.0 1349622626
## 1777     2.0  997937459
## 1778     3.0  997937914
## 1779     1.0  997937986
## 1780     3.0 1040205943
## 1782     1.0  997937775
## 1783     1.0  997937762
## 1785     3.0  997939162
## 1787     3.0  997937986
## 1788     1.0  997937808
## 1789     2.0  997937713
## 1790     1.0 1349622526
## 1791     3.0 1120209753
## 1792     1.5 1166586578
## 1794     2.5 1374637769
## 1796     1.0 1033343955
## 1797     2.0 1033343955
## 1798     3.0  997937366
## 1799     2.0  997939193
## 1801     1.0  997937949
## 1802     2.0  997937334
## 1803     3.0 1349048073
## 1805     1.0  997937374
## 1806     3.0  997937366
## 1807     1.0  997937822
## 1808     3.0 1039243666
## 1809     3.0 1033343955
## 1810     2.0 1033345068
## 1811     2.0  997937346
## 1812     3.0  997937775
## 1813     1.0  997937384
## 1814     3.0 1416119736
## 1815     3.0  997939653
## 1817     1.5 1096005216
## 1818     1.0  997937822
## 1819     2.0 1054774846
## 1820     2.5 1075143282
## 1822     3.0  997938203
## 1823     3.0  997938617
## 1824     3.0  997937575
## 1826     1.0  997937346
## 1827     1.0 1033344625
## 1828     3.0 1033343955
## 1829     1.5 1469330631
## 1830     3.0  997937346
## 1831     1.0  997937551
## 1832     2.0  997937544
## 1833     1.0  997937539
## 1834     2.0  997937530
## 1836     3.0  997937519
## 1837     2.0  997937366
## 1838     3.0  997937366
## 1841     2.0 1374637779
## 1842     2.0 1039243705
## 1843     3.5 1054449465
## 1844     3.0 1052896975
## 1847     1.0 1044348420
## 1848     3.5 1075143297
## 1849     1.0 1039243705
## 1850     2.5 1054449369
## 1851     3.0 1166586875
## 1852     2.5 1416119762
## 1853     2.0 1044348492
## 1854     2.0 1054449351
## 1857     1.5 1054449340
## 1859     3.0 1054449355
## 1860     3.0 1033343866
## 1861     1.0 1040206325
## 1863     2.0 1033343828
## 1866     1.0 1469330599
## 1868     2.0 1033343815
## 1869     2.0 1349622574
## 1870     1.0 1040205965
## 1872     1.5 1425876112
## 1874     1.0 1033343815
## 1875     3.5 1443385401
## 1876     3.5 1120209745
## 1878     2.0 1033343815
## 1879     1.0 1033344055
## 1880     2.0 1041532617
## 1881     1.5 1054450221
## 1882     3.0 1033343866
## 1884     1.0 1096005077
## 1886     1.5 1416119882
## 1887     3.0 1345397962
## 1888     1.0 1033343934
## 1890     2.0 1033343901
## 1891     0.5 1416119747
## 1892     1.0 1033344044
## 1893     1.0 1033343934
## 1894     3.0 1033343919
## 1895     2.0 1122925555
## 1896     1.5 1075143288
## 1897     1.0 1033343866
## 1898     1.0 1033344286
## 1900     0.5 1054449705
## 1901     3.0 1033343934
## 1902     3.5 1416120007
## 1903     3.0 1033343841
## 1904     1.5 1465880704
## 1905     2.5 1367800223
## 1906     0.5 1416119542
## 1907     2.5 1465794274
## 1908     1.0 1033343919
## 1909     3.5 1054449455
## 1910     3.5 1345397799
## 1911     3.5 1465954627
## 1912     1.0 1039243048
## 1913     1.0 1033343901
## 1914     2.5 1465881201
## 1916     3.0 1039243048
## 1917     2.0 1166586831
## 1918     2.5 1367800228
## 1919     3.0 1039243048
## 1920     2.0 1052896740
## 1921     1.5 1096005195
## 1922     2.0 1033344065
## 1923     1.0 1039243069
## 1924     1.0 1040205624
## 1926     2.0 1033344188
## 1927     1.0 1033344374
## 1928     1.0 1033344188
## 1929     1.0 1033344188
## 1930     0.5 1166586482
## 1932     2.0 1052896819
## 1933     2.0 1033344374
## 1935     1.0 1033344129
## 1936     2.0 1033344119
## 1937     1.0 1033344145
## 1938     3.0 1054503542
## 1940     1.0 1033344137
## 1941     1.0 1033344334
## 1942     3.0 1035258747
## 1943     2.0 1035258747
## 1944     3.0 1035258747
## 1945     2.5 1054513297
## 1946     3.5 1222576379
## 1947     1.5 1084489317
## 1948     0.5 1425876082
## 1949     1.5 1055439475
## 1950     3.0 1034544351
## 1953     3.5 1075142963
## 1955     2.0 1039242955
## 1957     3.0 1052906939
## 1958     1.0 1416119666
## 1959     3.0 1166587383
## 1960     1.0 1066591270
## 1963     2.0 1357110234
## 1964     1.0 1096005087
## 1965     1.0 1096005111
## 1967     1.0 1084489297
## 1968     2.5 1163876422
## 1970     3.0 1443385275
## 1971     3.0 1040205624
## 1972     2.5 1134521661
## 1973     1.0 1096005123
## 1975     1.5 1096005130
## 1976     2.0 1093027992
## 1977     3.0 1046209643
## 1978     3.0 1465954655
## 1979     2.0 1416119908
## 1980     0.5 1416119753
## 1981     0.5 1416119690
## 1982     1.0 1046209705
## 1983     3.5 1416119611
## 1984     3.0 1046209705
## 1985     0.5 1096005101
## 1987     1.0 1163876393
## 1988     1.0 1416119893
## 1989     0.5 1425876025
## 1990     1.5 1096005116
## 1991     2.5 1075142952
## 1992     2.5 1055439424
## 1994     3.0 1120208617
## 1995     3.0 1052896685
## 1996     1.0 1054271424
## 1997     2.0 1134522002
## 1998     1.0 1061496771
## 1999     3.0 1122576748
## 2000     3.0 1166585438
## 2001     1.5 1084489293
## 2002     3.0 1465793939
## 2003     3.5 1054449659
## 2004     3.5 1055439392
## 2005     2.5 1056617566
## 2006     3.5 1058249439
## 2007     2.5 1134521973
## 2008     2.0 1061496778
## 2009     2.5 1058249457
## 2010     3.5 1061496766
## 2011     1.0 1061496761
## 2012     1.5 1082220233
## 2013     3.0 1416119958
## 2014     1.0 1096005208
## 2015     1.5 1082220241
## 2017     3.5 1120209771
## 2018     2.0 1082220217
## 2019     3.5 1065197251
## 2020     0.5 1425876028
## 2021     1.0 1465881072
## 2022     2.0 1082220258
## 2025     2.5 1067797435
## 2026     2.0 1082220208
## 2027     3.5 1093981691
## 2028     3.5 1068955127
## 2029     1.0 1096005187
## 2030     1.0 1067797349
## 2031     1.0 1096005180
## 2032     2.5 1416119807
## 2033     1.0 1465954640
## 2035     1.5 1338699263
## 2036     1.0 1075142924
## 2037     3.0 1088621558
## 2039     1.0 1347936706
## 2040     2.0 1083003232
## 2042     2.5 1240203829
## 2044     2.5 1097770851
## 2045     3.0 1257734253
## 2046     2.5 1348976559
## 2047     2.0 1367800233
## 2048     2.5 1374637760
## 2049     3.5 1240203970
## 2050     3.5 1465954687
## 2051     3.5 1132469120
## 2053     3.0 1120209290
## 2054     3.5 1347936794
## 2055     3.0 1096005056
## 2056     2.0 1088621554
## 2057     1.5 1088621484
## 2058     1.5 1075142916
## 2059     3.0 1120209458
## 2060     1.0 1075142909
## 2061     0.5 1416119886
## 2062     1.0 1096005109
## 2063     1.0 1166587408
## 2064     3.5 1193435338
## 2065     1.0 1093028019
## 2066     3.0 1082220195
## 2067     2.0 1222576372
## 2068     0.5 1416119755
## 2069     1.5 1082220223
## 2070     3.0 1465954961
## 2071     2.0 1093028001
## 2073     1.0 1097770844
## 2074     1.5 1134521979
## 2075     0.5 1093981610
## 2076     1.0 1425876074
## 2077     1.5 1416119694
## 2078     3.5 1416119705
## 2079     1.5 1166587430
## 2081     1.5 1240203696
## 2082     3.5 1093070784
## 2083     3.5 1345397687
## 2084     2.5 1345398305
## 2085     3.0 1345381192
## 2086     2.5 1345397672
## 2087     3.0 1096005042
## 2088     2.0 1093027976
## 2090     2.5 1134522006
## 2092     2.5 1088621517
## 2093     1.5 1163876352
## 2094     2.5 1166587363
## 2095     3.0 1416119547
## 2096     1.0 1122576284
## 2097     1.5 1257734240
## 2098     1.5 1465880288
## 2099     2.5 1361078268
## 2100     3.5 1120209740
## 2101     3.5 1163876408
## 2102     3.0 1096005049
## 2103     3.0 1093027850
## 2105     3.0 1349622612
## 2106     1.0 1163876378
## 2107     2.0 1120210020
## 2108     3.5 1093027853
## 2109     0.5 1416119915
## 2110     2.0 1134521997
## 2111     3.0 1166586987
## 2112     2.5 1349622634
## 2113     1.0 1166981777
## 2114     2.5 1122925517
## 2115     2.5 1120210034
## 2118     2.5 1166585434
## 2119     1.0 1166981765
## 2121     2.0 1357110243
## 2122     3.0 1134522096
## 2123     3.5 1134522079
## 2124     2.0 1101423869
## 2125     2.0 1163876370
## 2126     3.5 1374637712
## 2127     2.5 1374637844
## 2128     2.0 1166981834
## 2133     2.0 1166587331
## 2134     2.5 1240203954
## 2135     2.5 1349622724
## 2137     1.0 1134521148
## 2138     1.0 1348976609
## 2140     2.5 1347936774
## 2141     1.5 1127035004
## 2142     2.0 1120208607
## 2143     1.5 1136904803
## 2144     0.5 1416119604
## 2145     1.5 1416119717
## 2146     0.5 1361831527
## 2147     3.5 1127035028
## 2148     3.5 1136087271
## 2149     0.5 1127035016
## 2150     3.5 1338702522
## 2151     3.5 1132469115
## 2153     3.5 1136904851
## 2155     0.5 1316395912
## 2156     1.5 1361078474
## 2157     1.0 1416119744
## 2158     1.0 1141391741
## 2159     1.0 1316395893
## 2160     1.5 1367765144
## 2161     0.5 1357110418
## 2162     3.5 1141391837
## 2163     3.0 1135737540
## 2164     2.5 1141391844
## 2165     1.5 1138537176
## 2166     1.0 1416119600
## 2167     2.0 1465954599
## 2168     2.0 1141391812
## 2169     2.5 1425876066
## 2171     1.5 1338698465
## 2173     2.0 1416119810
## 2174     1.5 1416119662
## 2175     2.5 1258259502
## 2177     1.0 1465880318
## 2178     2.5 1240211404
## 2179     2.0 1222576358
## 2181     1.0 1465794625
## 2182     2.5 1316408165
## 2183     1.0 1240211399
## 2184     1.5 1357109999
## 2186     2.5 1316396016
## 2187     1.0 1425876007
## 2188     2.5 1338698829
## 2189     0.5 1416119707
## 2191     1.5 1465794277
## 2192     1.5 1416119790
## 2193     2.0 1416120304
## 2194     0.5 1416119889
## 2195     3.0 1169616283
## 2196     0.5 1338699292
## 2197     1.0 1338702417
## 2198     2.0 1367800237
## 2199     2.0 1416119963
## 2200     3.5 1374637631
## 2201     3.5 1222576367
## 2202     1.5 1245382906
## 2203     2.5 1465793916
## 2204     0.5 1416119898
## 2205     1.0 1347937644
## 2207     1.5 1348976680
## 2208     3.0 1222575856
## 2212     2.5 1316395906
## 2213     2.5 1465880683
## 2214     3.5 1443384396
## 2215     3.5 1245361883
## 2217     1.5 1222576350
## 2219     2.0 1347936470
## 2220     1.5 1349622540
## 2221     1.5 1347936786
## 2222     2.0 1443384826
## 2223     1.5 1338699286
## 2224     3.5 1349622826
## 2225     3.5 1425876037
## 2226     1.5 1443385025
## 2227     2.5 1338702524
## 2228     3.0 1338698806
## 2230     2.0 1416119677
## 2231     1.0 1425875994
## 2232     2.5 1258259468
## 2234     3.5 1338698617
## 2236     1.0 1416120041
## 2237     1.0 1374638435
## 2238     3.5 1222578076
## 2239     2.5 1416119972
## 2240     2.0 1361078252
## 2241     2.0 1338698362
## 2242     2.5 1443384839
## 2243     1.0 1416119594
## 2244     2.0 1374638451
## 2246     3.0 1443385030
## 2247     1.0 1416119686
## 2248     1.5 1425876060
## 2250     1.5 1338702423
## 2251     1.0 1338698854
## 2252     1.5 1347936713
## 2254     1.5 1240203919
## 2257     2.5 1347936669
## 2258     3.5 1216576555
## 2259     1.0 1338698814
## 2260     3.5 1357110059
## 2261     1.5 1349622715
## 2262     0.5 1216576611
## 2263     3.0 1216576596
## 2265     1.0 1316396154
## 2266     1.0 1416119795
## 2267     1.0 1361831545
## 2268     3.5 1316395628
## 2270     3.5 1240211388
## 2271     1.0 1357110065
## 2272     2.0 1222024906
## 2273     1.0 1257734243
## 2274     2.0 1349622731
## 2275     3.5 1367764780
## 2276     3.5 1443384812
## 2278     0.5 1357110411
## 2279     3.5 1245309336
## 2280     2.0 1338698608
## 2281     3.0 1348976367
## 2282     2.0 1245021120
## 2283     1.0 1416119731
## 2284     1.5 1416119711
## 2286     0.5 1465880993
## 2287     3.0 1238804089
## 2288     1.5 1240202854
## 2289     1.0 1465880257
## 2290     1.5 1465880651
## 2291     3.0 1257733143
## 2292     0.5 1338698623
## 2293     1.5 1426110601
## 2294     1.5 1257733150
## 2295     3.5 1245021164
## 2296     1.5 1374638441
## 2298     3.0 1338698899
## 2300     3.5 1338698337
## 2301     2.0 1316396161
## 2302     1.0 1465954712
## 2305     3.0 1374637633
## 2306     2.0 1338698886
## 2307     1.0 1338702414
## 2308     2.0 1389440855
## 2309     1.0 1361831532
## 2310     0.5 1465880996
## 2313     3.0 1257733119
## 2315     3.5 1261945002
## 2317     2.5 1374637773
## 2318     2.5 1465793997
## 2319     3.5 1257734180
## 2320     1.5 1465794388
## 2321     2.5 1465793912
## 2322     3.0 1465793920
## 2323     2.0 1257735545
## 2324     1.0 1425876002
## 2325     2.0 1465880969
## 2326     2.5 1338702430
## 2327     1.5 1338698882
## 2328     1.0 1357110070
## 2330     1.0 1273090173
## 2331     3.5 1316395633
## 2332     0.5 1338698316
## 2334     1.5 1367764758
## 2335     0.5 1361831555
## 2336     2.0 1458506610
## 2338     3.0 1273090163
## 2339     3.0 1361831522
## 2340     2.5 1379040852
## 2341     2.5 1367765175
## 2343     1.0 1316395588
## 2344     3.0 1458506646
## 2345     3.0 1316395983
## 2346     2.0 1338698896
## 2348     2.5 1367765128
## 2350     2.5 1458506381
## 2351     2.5 1465880302
## 2352     1.5 1349048062
## 2353     1.0 1349622587
## 2354     0.5 1367765181
## 2355     1.5 1338698870
## 2356     1.0 1465794431
## 2357     3.0 1374638009
## 2358     2.0 1361078260
## 2360     2.5 1465793930
## 2362     3.0 1367801466
## 2363     3.0 1374638035
## 2364     3.5 1348976539
## 2365     1.0 1338698369
## 2366     3.0 1316395900
## 2367     2.0 1458506571
## 2368     3.0 1367801474
## 2369     1.0 1338698918
## 2370     3.0 1338698461
## 2371     3.0 1316396252
## 2372     0.5 1465880518
## 2373     1.0 1361078285
## 2374     3.5 1367801456
## 2375     1.0 1316396136
## 2376     0.5 1367765123
## 2378     3.0 1345381190
## 2379     2.5 1465880243
## 2380     2.5 1367801369
## 2381     1.0 1347936749
## 2384     1.5 1348976211
## 2385     1.0 1316395573
## 2386     1.5 1338698824
## 2389     2.5 1458506580
## 2390     3.5 1458507263
## 2391     0.5 1458505901
## 2393     1.5 1316395580
## 2394     0.5 1374638031
## 2395     1.0 1347936763
## 2396     0.5 1338698810
## 2397     1.0 1458507259
## 2399     2.5 1458506136
## 2400     2.0 1443385461
## 2401     3.0 1416120053
## 2402     2.5 1338698356
## 2403     1.0 1348976202
## 2404     3.5 1386367929
## 2405     1.5 1316408269
## 2407     0.5 1316395783
## 2408     1.5 1367801460
## 2409     3.0 1374638024
## 2410     1.5 1458506641
## 2412     3.0 1338697857
## 2413     1.0 1349048081
## 2414     3.5 1338698848
## 2415     2.5 1367801470
## 2417     0.5 1361078276
## 2419     3.5 1367801363
## 2420     2.5 1348976195
## 2421     3.0 1374637765
## 2422     1.5 1338698014
## 2423     1.0 1338698247
## 2424     0.5 1465880427
## 2425     0.5 1338697915
## 2426     1.0 1347936860
## 2427     3.0 1345350956
## 2428     2.0 1348979143
## 2429     1.0 1348976183
## 2430     2.5 1338698134
## 2433     3.0 1338698158
## 2434     3.0 1338697924
## 2435     1.5 1465880962
## 2436     2.5 1338698152
## 2437     1.0 1361831455
## 2438     1.0 1338699137
## 2439     3.0 1338697920
## 2440     2.0 1458507291
## 2441     2.5 1338697984
## 2442     3.5 1338697905
## 2443     1.0 1338697996
## 2444     1.0 1338698001
## 2445     1.0 1338698006
## 2447     2.5 1338697968
## 2448     1.5 1345351002
## 2449     1.5 1338697964
## 2450     1.5 1345350968
## 2451     1.0 1374638428
## 2452     1.0 1345350979
## 2453     1.0 1345350959
## 2454     0.5 1465880715
## 2455     1.5 1347937652
## 2456     0.5 1357109952
## 2457     3.5 1345350961
## 2458     1.0 1357109941
## 2459     1.5 1345350995
## 2460     3.0 1361831420
## 2461     2.0 1345350973
## 2462     3.5 1361076608
## 2463     1.5 1374637996
## 2464     2.5 1357109969
## 2465     2.5 1458506349
## 2466     2.5 1367764836
## 2467     3.5 1386368013
## 2468     3.5 1361076604
## 2469     2.5 1426110392
## 2470     3.0 1386367936
## 2471     2.5 1389482906
## 2472     0.5 1465793928
## 2473     0.5 1425876388
## 2474     0.5 1416119923
## 2475     3.0 1367764716
## 2476     1.0 1465880234
## 2477     3.5 1458506339
## 2478     1.5 1425876390
## 2479     1.0 1357109923
## 2480     2.5 1386368031
## 2482     2.0 1361076617
## 2483     0.5 1465880648
## 2484     2.5 1361831156
## 2485     1.0 1400818425
## 2486     3.0 1381534422
## 2488     1.5 1465793952
## 2489     3.0 1386367955
## 2490     1.0 1367764695
## 2491     3.0 1367764864
## 2492     0.5 1465880292
## 2493     3.0 1465880371
## 2494     3.5 1400818444
## 2495     1.0 1386367999
## 2496     1.5 1458506656
## 2497     2.0 1389482894
## 2498     3.0 1386367981
## 2499     2.5 1386367968
## 2500     0.5 1400818394
## 2501     1.0 1458506599
## 2502     2.5 1386367923
## 2504     0.5 1465794267
## 2505     1.0 1465954520
## 2506     1.0 1465880282
## 2507     1.5 1465880264
## 2508     3.5 1458506673
## 2509     1.0 1458506703
## 2510     3.0 1425875562
## 2511     3.0 1381534394
## 2512     3.5 1386367735
## 2514     3.5 1425875553
## 2515     2.0 1443384429
## 2516     1.0 1386367830
## 2517     3.5 1386367813
## 2518     2.0 1389440765
## 2519     3.5 1416120264
## 2520     1.5 1416120141
## 2522     0.5 1465881258
## 2525     2.0 1416120159
## 2526     0.5 1458506323
## 2527     0.5 1465954590
## 2528     1.0 1465954969
## 2529     1.5 1407125286
## 2530     1.0 1458506369
## 2531     0.5 1465794437
## 2532     1.0 1416119568
## 2533     3.5 1425875392
## 2534     1.5 1416120169
## 2535     2.5 1465793948
## 2536     3.0 1425875503
## 2538     0.5 1416120162
## 2539     0.5 1416120149
## 2540     1.0 1416120159
## 2541     2.0 1465880696
## 2542     2.5 1443385454
## 2543     1.0 1425875482
## 2544     3.5 1416120099
## 2550     3.5 1407125270
## 2551     2.5 1425875460
## 2552     2.0 1426110071
## 2553     3.5 1416120171
## 2554     1.5 1443384078
## 2557     1.0 1465880699
## 2559     1.5 1425875476
## 2560     0.5 1465794105
## 2561     2.0 1425875488
## 2562     0.5 1425875497
## 2563     1.0 1425875574
## 2564     1.0 1465793290
## 2567     3.5 1443384500
## 2569     1.5 1425875413
## 2570     3.5 1443384091
## 2571     1.0 1425875458
## 2572     0.5 1425875401
## 2573     0.5 1465794406
## 2574     0.5 1425875449
## 2576     1.0 1425875426
## 2578     3.5 1443384084
## 2579     1.5 1443384307
## 2580     2.0 1443384336
## 2581     1.5 1425875443
## 2582     1.5 1443384294
## 2583     3.0 1443384317
## 2584     3.0 1465793971
## 2586     1.0 1443384389
## 2587     3.5 1458505928
## 2588     3.0 1466051442
## 2589     3.0 1443384000
## 2590     3.0 1443384283
## 2591     0.5 1443384352
## 2592     1.0 1458505916
## 2593     3.0 1465793115
## 2594     2.5 1465793601
## 2595     1.0 1443385387
## 2596     2.5 1458505982
## 2597     1.5 1443384322
## 2598     2.0 1458506093
## 2599     0.5 1465794100
## 2600     2.0 1465793706
## 2601     2.0 1458506081
## 2602     3.0 1443384337
## 2603     0.5 1465794103
## 2604     3.0 1458506026
## 2605     3.0 1443384330
## 2606     3.0 1458507347
## 2607     3.5 1458505912
## 2610     1.0 1458505921
## 2611     0.5 1465794150
## 2612     1.0 1469330276
## 2613     3.0 1467259301
## 2614     3.0 1469330245
## 2615     3.0 1458506089
## 2616     1.5 1458506078
## 2617     3.0 1465793719
## 2618     3.5 1458505989
## 2619     3.0 1465793116
## 2620     1.0 1443384531
## 2621     2.5 1458505973
## 2622     3.0 1458505986
## 2623     3.5 1465793975
## 2624     2.0 1458506009
## 2625     2.5 1465956541
## 2628     2.5 1443384516
## 2629     0.5 1465793205
## 2630     3.5 1458505911
## 2631     3.0 1465793179
## 2632     2.5 1458506017
## 2633     1.0 1465793183
## 2634     3.0 1465793201
## 2635     3.5 1458506016
## 2636     3.5 1458505924
## 2637     3.0 1465793208
## 2638     3.5 1458506107
## 2640     0.5 1465793700
## 2641     2.0 1465793170
## 2642     1.5 1465880375
## 2643     3.0 1460076733
## 2644     1.0 1465793639
## 2645     0.5 1465793691
## 2646     3.5 1465793621
## 2647     1.5 1465793612
## 2648     2.0 1467259316
## 2649     1.5 1465793630
## 2650     3.5 1465794051
## 2651     3.5 1467259294
## 2652     1.0 1465793091
## 2653     2.0 1465880080
## 2654     1.0 1465793093
## 2656     0.5 1469330481
## 2657     1.0 1469330238
## 2658     2.5 1466802905
## 2659     1.0 1469330270
## 2660     2.0 1469330266
## 2662     0.5 1469330307
## 2670     3.5 1178364916
## 2672     3.5 1137577912
## 2675     3.0 1137577645
## 2678     3.5 1137577979
## 2686     3.0 1137577776
## 2690     3.5 1137577905
## 2701     3.5 1127468646
## 2702     3.0 1127469509
## 2705     2.5 1127469577
## 2707     2.0 1127471027
## 2708     3.5 1127474688
## 2709     2.0 1127469552
## 2712     3.5 1127471192
## 2714     3.5 1127470013
## 2715     2.5 1127469401
## 2716     0.5 1127469444
## 2718     0.5 1127469407
## 2719     0.5 1127475344
## 2724     3.0 1127469416
## 2726     3.5 1127469440
## 2729     2.5 1127469466
## 2736     3.5 1127470036
## 2743     3.5 1127472146
## 2745     3.5 1127470622
## 2746     3.5 1127470607
## 2747     2.5 1127473110
## 2749     2.5 1127469628
## 2752     2.0 1127471148
## 2753     3.5 1127470400
## 2755     1.0 1127472932
## 2760     3.5 1127473503
## 2770     3.0 1127474779
## 2771     0.5 1127472490
## 2776     2.5 1127470114
## 2777     3.5 1127470489
## 2779     2.0 1127472442
## 2780     3.5 1127469694
## 2786     2.0 1127470062
## 2788     3.0 1127468688
## 2792     3.0 1127469661
## 2793     2.5 1127475516
## 2794     2.5 1127469521
## 2795     2.5 1127469976
## 2799     3.5 1127469988
## 2804     0.5 1127472770
## 2805     2.5 1127470069
## 2808     3.0 1127469129
## 2812     3.0 1127469612
## 2817     3.5 1127473090
## 2819     3.5 1127469494
## 2823     3.5 1127475491
## 2826     2.5 1127473955
## 2828     2.0 1127470030
## 2831     3.5 1127470130
## 2834     3.5 1127468671
## 2839     1.0 1127469848
## 2840     2.5 1127470166
## 2846     3.0 1127472715
## 2847     3.0 1127469890
## 2848     3.5 1127473623
## 2850     3.0 1127469619
## 2852     3.5 1127473627
## 2853     3.5 1127469711
## 2854     3.0 1127469824
## 2857     2.0 1127469746
## 2859     3.5 1127469374
## 2861     3.0 1127469690
## 2862     2.5 1127472212
## 2869     2.5 1127470023
## 2870     2.0 1127469202
## 2875     2.5 1127469817
## 2879     3.5 1127470537
## 2884     3.0 1127472085
## 2887     3.5 1127470327
## 2889     3.5 1127470285
## 2891     1.0 1127468701
## 2894     1.5 1127469852
## 2897     3.0 1127475013
## 2899     3.5 1127470473
## 2900     0.5 1127470119
## 2902     3.5 1127471221
## 2911     3.5 1127473495
## 2912     0.5 1127470004
## 2918     3.0 1127473364
## 2922     0.5 1127469827
## 2924     2.5 1127474324
## 2927     2.5 1127473845
## 2928     3.0 1127475457
## 2929     0.5 1127470247
## 2930     1.5 1127475188
## 2931     1.5 1127469195
## 2933     3.5 1127470134
## 2936     0.5 1127470299
## 2937     2.0 1127473010
## 2942     2.5 1127475440
## 2944     2.0 1127473119
## 2945     3.0 1127472423
## 2948     2.0 1127471062
## 2949     3.5 1127475067
## 2953     3.5 1127474362
## 2956     3.0 1127474841
## 2958     3.5 1127475334
## 2959     1.0 1127472991
## 2960     0.5 1127472976
## 2961     2.0 1127475308
## 2962     2.0 1127473829
## 2963     2.0 1127470144
## 2964     2.0 1127472896
## 2965     0.5 1127472979
## 2967     3.0 1127469259
## 2968     0.5 1127473548
## 2971     3.5 1127475452
## 2974     3.5 1127471196
## 2975     1.5 1127470254
## 2979     3.5 1127475092
## 2980     2.0 1127471327
## 2983     3.5 1127475055
## 2984     3.5 1127473832
## 2988     2.5 1127470546
## 2990     2.5 1127474852
## 2993     3.5 1127471213
## 3000     2.0 1127473904
## 3006     1.0 1127475148
## 3014     3.5 1127471336
## 3015     0.5 1127475448
## 3016     3.0 1127474877
## 3018     3.0 1127472844
## 3019     3.0 1127470866
## 3022     3.5 1127471100
## 3023     3.0 1127473138
## 3024     2.0 1127473808
## 3025     3.5 1127472829
## 3026     3.0 1127471144
## 3027     2.0 1127473772
## 3028     0.5 1127473349
## 3030     0.5 1127475524
## 3031     3.5 1127470706
## 3033     3.0 1127475246
## 3035     3.0 1127471549
## 3037     3.5 1127470788
## 3038     2.5 1127471208
## 3039     3.5 1127468773
## 3041     3.0 1127475110
## 3044     3.0 1127475574
## 3047     3.0 1127472057
## 3050     2.5 1127475161
## 3051     1.0 1127473991
## 3052     2.0 1127475261
## 3053     3.0 1127475175
## 3055     3.0  856006982
## 3057     3.0  856006982
## 3058     3.0  856007219
## 3059     2.0  856007147
## 3061     3.0  856007359
## 3064     3.0  856006982
## 3065     3.0  856007075
## 3067     2.0  856007279
## 3068     3.0  856007359
## 3069     2.0  856007147
## 3070     3.0  856007495
## 3073     3.0  856007409
## 3074     3.0  856006886
## 3076     3.0  856007147
## 3078     3.0  856007075
## 3079     3.0  856007075
## 3080     3.0  856006982
## 3083     3.0  856007359
## 3084     3.0  856006886
## 3086     3.0  856007279
## 3088     3.0  856007219
## 3090     2.0  856006885
## 3091     3.0  856007219
## 3092     3.0  856007359
## 3093     1.0  856007147
## 3094     2.0  856007587
## 3095     3.0  856006885
## 3098     3.0  856007075
## 3101     3.0  856092135
## 3102     3.0  856007219
## 3104     3.0  856007279
## 3105     1.0  856007587
## 3106     3.0  855190091
## 3107     3.0  855194773
## 3108     3.0  855194718
## 3109     3.0  855192868
## 3110     3.0  855190128
## 3111     3.0  855190128
## 3112     3.0  855190232
## 3113     3.0  855192496
## 3114     3.0  855192773
## 3117     3.0  855193244
## 3118     3.0  855192868
## 3119     1.0  855194301
## 3120     3.0  855190091
## 3121     3.0  855190349
## 3122     3.0  855190091
## 3124     3.0  855192496
## 3125     3.0  855190954
## 3126     3.0  855193076
## 3127     3.0  855192210
## 3128     3.0  855191478
## 3130     3.0  855193488
## 3132     3.0  855190167
## 3133     3.0  855192717
## 3134     3.0  855190167
## 3135     3.0  855190349
## 3136     2.0  855193770
## 3138     3.0  855190261
## 3139     3.0  855193220
## 3140     3.0  855190290
## 3141     3.0  855190091
## 3143     3.0  855190531
## 3144     3.0  855192656
## 3145     3.0  855193530
## 3147     3.0  855190128
## 3148     3.0  855194378
## 3149     3.0  855191429
## 3150     3.0  855190091
## 3152     3.0  855191289
## 3153     3.0  855193751
## 3158     3.0  855191227
## 3159     2.0  855194264
## 3160     1.0  855194345
## 3162     2.0  855192496
## 3163     2.0  855193865
## 3164     3.0  855192957
## 3166     3.0  855193806
## 3167     3.0  855191478
## 3168     3.0  855193054
## 3169     3.0  855192120
## 3170     3.0  855194790
## 3171     2.0  855193510
## 3172     3.0  855191324
## 3176     3.0  855194087
## 3177     3.0  855191324
## 3180     3.0  855193530
## 3181     3.0  855191430
## 3185     1.0  855194773
## 3186     3.0  855191882
## 3187     1.0  855194605
## 3188     3.0  855192982
## 3189     3.0  855192910
## 3194     3.0  855193220
## 3198     3.0  855194824
## 3202     3.0  855192814
## 3203     3.0  855193274
## 3204     3.0  855194773
## 3206     3.0  855193643
## 3208     3.0  855193404
## 3209     3.0  855194560
## 3210     3.0  855191289
## 3211     3.0  855192910
## 3213     3.0  855193558
## 3214     3.0  855193864
## 3215     3.0  855192868
## 3216     3.0  855192178
## 3220     3.0  855195078
## 3221     3.0  855192385
## 3222     3.0  855192254
## 3223     3.0  855194531
## 3224     3.0  855192636
## 3225     3.0  855193244
## 3226     1.0  855192254
## 3228     3.0  855190166
## 3229     3.0  855191289
## 3230     3.0  855193845
## 3231     3.0  855191228
## 3232     3.0  855192120
## 3233     3.0  855193914
## 3234     3.0  855193558
## 3235     3.0  855192605
## 3236     3.0  855193488
## 3237     3.0  855191701
## 3240     3.0  855194301
## 3241     3.0  855193330
## 3242     3.0  855192455
## 3243     3.0  855193404
## 3244     3.0  855192001
## 3245     3.0  855194345
## 3246     3.0  855193700
## 3247     3.0  855193599
## 3253     3.0  855192558
## 3254     3.0  855192419
## 3255     3.0  855191654
## 3256     2.0  855193806
## 3258     1.0  855192308
## 3259     2.0  855192940
## 3260     1.0  855193330
## 3261     3.0  855193449
## 3263     3.0  855190128
## 3264     3.0  855194264
## 3266     3.0  855193845
## 3267     3.0  855192558
## 3268     3.0  855192061
## 3270     1.0  855193700
## 3272     2.0  855193301
## 3273     1.0  855194590
## 3274     3.0  855193449
## 3275     3.0  855193301
## 3277     3.0  855192717
## 3281     3.0  855192688
## 3284     3.0  855192254
## 3286     3.0  855192033
## 3287     3.0  855190447
## 3288     1.0  855194052
## 3289     3.0  855194743
## 3290     3.0  855195077
## 3291     3.0  855191383
## 3292     3.0  855191289
## 3294     3.0  855191229
## 3298     3.0  855193530
## 3302     3.0  855190427
## 3303     3.0  855190199
## 3304     3.0  855190091
## 3305     3.0  855190167
## 3307     3.0  855190382
## 3310     3.0  855190606
## 3311     3.0  855193404
## 3312     3.0  855190128
## 3313     3.0  855190091
## 3314     3.0  855190290
## 3316     3.0  855190091
## 3317     3.0  855190167
## 3318     3.0  855190349
## 3319     3.0  855191702
## 3320     3.0  855190167
## 3321     3.0  855190382
## 3322     3.0  855191324
## 3323     3.0  855190232
## 3324     3.0  855190199
## 3326     2.0  855190382
## 3327     3.0  855194072
## 3329     3.0  855192496
## 3334     3.0  855191552
## 3336     3.0  855193012
## 3346     3.0  855192814
## 3347     3.0  855192582
## 3359     3.0  855193700
## 3363     3.0  855192347
## 3368     3.0  855192178
## 3370     3.0  855190382
## 3372     3.0  855191775
## 3374     3.0  855191289
## 3375     3.0  855195268
## 3378     3.0  855193599
## 3381     3.0  855194052
## 3382     1.0  855192773
## 3383     3.0  855192910
## 3387     3.0  855193194
## 3390     3.0  855192940
## 3391     3.0  855194282
## 3392     3.0  855195373
## 3394     3.0  855192347
## 3398     3.0  855192254
## 3399     3.0  855192740
## 3400     3.0  855191882
## 3404     3.0  855190427
## 3408     3.0  855191701
## 3424     2.0  855192814
## 3432     3.0  855192517
## 3442     3.0  855192868
## 3443     3.0  855191702
## 3452     3.0  855192061
## 3460     3.0  855192688
## 3463     3.0  855192455
## 3464     3.0  855191964
## 3466     3.0  855192605
## 3472     3.0  855191846
## 3476     3.0  855193035
## 3477     3.0  855192090
## 3480     1.0  855192455
## 3482     3.0  855192210
## 3483     3.0  855192120
## 3484     3.0  855193274
## 3485     3.0  855192558
## 3486     3.0  855193628
## 3487     3.0  855192308
## 3488     3.0  855193806
## 3489     2.0  855193932
## 3491     3.0  855193599
## 3492     3.0  855194641
## 3493     3.0  855192773
## 3494     3.0  855193358
## 3498     3.0  855192835
## 3500     3.0  855192814
## 3502     3.0  855190199
## 3506     2.0  855193035
## 3507     3.0  855193845
## 3508     3.0  855192496
## 3510     3.0  855192740
## 3511     3.0  855193700
## 3512     2.0  855193244
## 3513     3.0  855193194
## 3514     3.0  855194670
## 3515     1.0  855194188
## 3516     3.0  855193076
## 3518     1.0  855193946
## 3519     1.0  855194693
## 3520     2.0  855190404
## 3521     3.0  855190404
## 3523     3.0  855193012
## 3524     3.0  855190404
## 3525     3.0  855192910
## 3526     3.0  855192982
## 3527     3.0  855192254
## 3529     3.5 1238729767
## 3530     2.5 1238729782
## 3531     3.5 1238729861
## 3532     3.5 1224042765
## 3533     2.0 1238729747
## 3534     3.0 1238729755
## 3536     2.5 1224042795
## 3537     1.0 1238729849
## 3538     1.5 1224043057
## 3539     0.5 1238729735
## 3540     3.5 1238729834
## 3542     1.0 1238729802
## 3543     2.0 1238729739
## 3544     3.5 1238729826
## 3545     1.0 1238729854
## 3548     3.0 1238729744
## 3550     3.0 1238729842
## 3551     2.5 1224043054
## 3552     3.5 1238729785
## 3553     2.0 1238729764
## 3555     0.5 1238729741
## 3558     2.0 1238729789
## 3561     3.5 1238729831
## 3565     2.0 1238729822
## 3566     3.0 1224043134
## 3567     3.5 1238729311
## 3568     2.0 1224043067
## 3569     3.0 1224042752
## 3570     1.5 1238729863
## 3574     2.0 1238729793
## 3578     3.0 1238729777
## 3579     1.0 1238730775
## 3581     3.5 1238729811
## 3582     3.5 1238730771
## 3583     3.0 1224042777
## 3584     2.5 1224042802
## 3589     3.0 1224042811
## 3593     3.5 1238729839
## 3594     0.5 1238731034
## 3595     0.5 1224043052
## 3596     0.5 1224042755
## 3597     0.5 1238729331
## 3599     2.0 1224042780
## 3600     2.0 1224042827
## 3603     3.5 1224043145
## 3611     1.0 1224043213
## 3613     3.5 1224043257
## 3614     1.5 1224043185
## 3615     2.5 1224043294
## 3620     1.0 1238729405
## 3624     3.5 1224043018
## 3627     3.0  853846478
## 3628     3.0  853846669
## 3631     3.0  853157544
## 3632     3.0  853846547
## 3634     3.0  853157476
## 3637     2.0  853846288
## 3638     3.0  853847536
## 3639     2.0  853846511
## 3640     3.0  853846669
## 3641     3.0  853846207
## 3642     3.0  853847723
## 3643     3.0  853857742
## 3644     3.0  853846400
## 3645     3.0  853847574
## 3646     3.0  853846400
## 3647     3.0  853846752
## 3648     3.0  853847612
## 3651     3.0  853852608
## 3652     3.0  853846783
## 3653     3.0  853856221
## 3654     3.0  853846579
## 3655     3.0  853846443
## 3656     3.0  853846873
## 3657     3.0  853846511
## 3658     3.0  853847574
## 3661     3.0  853846813
## 3662     3.0  853847688
## 3663     3.0  853846443
## 3664     3.0  853846547
## 3665     3.0  853847813
## 3668     3.0  853846639
## 3670     3.0  853846612
## 3671     3.0  853846511
## 3672     3.0  853846723
## 3673     2.0  853846511
## 3674     3.0  853157476
## 3675     3.0  853157544
## 3677     3.0  853157476
## 3678     3.0  853845946
## 3680     3.0  853850791
## 3681     3.0  853850699
## 3682     3.0  853850791
## 3692     3.0  853851841
## 3693     3.0  853851861
## 3694     3.0  853851892
## 3698     3.0  853849003
## 3699     3.0  853848034
## 3700     3.0  853851203
## 3701     3.0  853848062
## 3702     3.0  853852140
## 3703     3.0  853848342
## 3706     3.0  853846752
## 3707     3.0  853846723
## 3708     2.0  853853701
## 3709     3.0  853847910
## 3711     3.0  853853956
## 3712     3.0  853847780
## 3713     3.0  853847910
## 3716     3.0  853851608
## 3717     3.0  853848738
## 3718     3.0  853852316
## 3723     3.0  853850791
## 3734     3.0  853850905
## 3735     3.0  853851222
## 3739     3.0  853850752
## 3740     3.0  853850874
## 3744     3.0  853850835
## 3745     3.0  853850835
## 3747     3.0  853850968
## 3750     3.0  853851052
## 3751     3.0  853850874
## 3753     2.0  853848737
## 3755     3.0  853850933
## 3761     3.0  853852020
## 3763     3.0  853851203
## 3764     3.0  853852097
## 3765     3.0  853850968
## 3768     3.0  853853496
## 3770     3.0  853853725
## 3771     3.0  853852524
## 3772     3.0  853852058
## 3773     3.0  853853473
## 3774     3.0  853852140
## 3775     3.0  853851257
## 3776     3.0  853852263
## 3777     3.0  853851257
## 3778     3.0  853853545
## 3780     3.0  853851841
## 3781     3.0  853850905
## 3782     3.0  853852501
## 3783     3.0  853850968
## 3784     3.0  853854148
## 3786     3.0  853853593
## 3787     3.0  854522908
## 3788     3.0  853850933
## 3790     2.0 1131662481
## 3791     3.5 1131662466
## 3792     2.0 1131661907
## 3793     3.0 1131661969
## 3794     3.0 1131662452
## 3795     1.0 1131661890
## 3797     1.5 1131662930
## 3798     2.0 1131664520
## 3799     2.5 1131662440
## 3800     2.0 1131662423
## 3803     2.0 1131663069
## 3805     3.0 1131662435
## 3806     2.0 1131753358
## 3807     3.5 1131663409
## 3808     2.5 1131662387
## 3811     2.5 1131753373
## 3814     3.0 1131661923
## 3816     1.0 1131664533
## 3817     2.0 1131662084
## 3822     1.5 1131662400
## 3823     2.5 1131662414
## 3825     3.5 1131662357
## 3827     2.5 1131723086
## 3828     2.0 1131662346
## 3829     2.0 1131661960
## 3833     2.5 1131662370
## 3834     3.5 1131662293
## 3836     3.5 1131663188
## 3840     3.0 1131753381
## 3843     3.5 1131661937
## 3846     2.0 1131662302
## 3848     3.5 1131662312
## 3853     3.5 1131662334
## 3855     3.0 1131663044
## 3857     2.5 1131662271
## 3858     2.0 1131663328
## 3859     2.0 1131662659
## 3860     2.5 1131662268
## 3861     2.5 1131663443
## 3862     2.0 1131664773
## 3863     3.0 1131662252
## 3864     3.5 1131662000
## 3865     2.5 1131723166
## 3867     2.0 1131661994
## 3869     3.0 1131663020
## 3870     2.5 1131664489
## 3871     2.5 1131662243
## 3872     3.0 1131662014
## 3873     2.5 1131661978
## 3874     3.5 1131723076
## 3875     3.5 1131662226
## 3876     2.5 1131661945
## 3877     3.5 1131662232
## 3879     3.5 1131663357
## 3882     3.5 1131664754
## 3883     2.5 1131664719
## 3884     3.0 1131723151
## 3885     2.0 1131663013
## 3887     1.5 1131663552
## 3890     2.0 1131723146
## 3891     2.5 1131664710
## 3892     2.5 1131723065
## 3893     2.0 1131661911
## 3894     2.0 1131664699
## 3895     2.5 1131662202
## 3896     2.0 1131662216
## 3897     2.0 1131662209
## 3898     2.0 1131662220
## 3900     3.0 1131662152
## 3901     3.0 1131662710
## 3902     2.0 1131663006
## 3904     1.5 1131662185
## 3906     2.0 1131664676
## 3907     1.0 1131664687
## 3909     2.0 1131662174
## 3911     3.0 1131662717
## 3913     2.5 1131663311
## 3915     3.5 1131723124
## 3916     2.5 1131662169
## 3917     2.5 1131662162
## 3919     1.5 1131662194
## 3920     2.0 1131723135
## 3921     3.0 1131662989
## 3922     2.5 1131662687
## 3924     1.5 1131662190
## 3925     3.0 1131664651
## 3928     3.0 1131663515
## 3929     2.5 1131661897
## 3930     2.5 1131664627
## 3931     2.0 1131662894
## 3933     2.0 1131662700
## 3934     2.0 1131723113
## 3936     2.5 1131753363
## 3937     3.0 1131663359
## 3938     2.0 1131662121
## 3939     2.0 1131664612
## 3941     2.0 1131664618
## 3942     2.0 1131723071
## 3945     2.0 1131664374
## 3946     3.5 1131663472
## 3948     3.5 1131664587
## 3949     3.5 1131663565
## 3950     2.5 1131663696
## 3952     2.5 1131663383
## 3953     3.0 1131663420
## 3955     3.5 1131662103
## 3956     2.5 1131662107
## 3959     2.5 1131662670
## 3961     3.0 1131662525
## 3962     2.5 1131664572
## 3964     2.5 1131664567
## 3966     3.5 1131662534
## 3967     2.5 1131663373
## 3970     3.5 1131663263
## 3971     3.5 1131662504
## 3974     3.5 1131663453
## 3977     2.5 1131663156
## 3978     2.0 1131662491
## 3979     3.0 1131662517
## 3981     2.5 1131662684
## 3982     2.5 1131723215
## 3984     2.0 1131664302
## 3985     2.0 1131663158
## 3989     3.5 1131663298
## 3990     3.0 1131662518
## 3992     3.0 1131663081
## 3994     3.5 1131662473
## 3995     3.5 1131662938
## 3997     3.0 1131663440
## 3998     3.0 1131663094
## 4001     3.5 1131663378
## 4006     2.5 1131663228
## 4007     3.0 1131662462
## 4009     3.0 1148729853
## 4010     3.5 1148730128
## 4011     3.5 1166728170
## 4013     2.0 1148669114
## 4014     1.5 1148720884
## 4015     3.5 1148673467
## 4017     3.5 1166728173
## 4020     3.5 1148672099
## 4023     3.5 1148730116
## 4024     3.5 1148669588
## 4026     3.5 1148672933
## 4027     3.0 1148720873
## 4029     2.5 1148386188
## 4030     3.5 1148778581
## 4037     3.5 1148668973
## 4040     3.5 1148673465
## 4041     2.5 1148720795
## 4045     3.5 1148777951
## 4046     2.5 1148777966
## 4047     3.5 1148668967
## 4051     2.0 1148668961
## 4055     3.5 1148669891
## 4056     3.5 1148730048
## 4057     3.5 1148720861
## 4058     3.5 1148673418
## 4059     3.5 1148669887
## 4060     3.5 1148730134
## 4061     3.5 1148729018
## 4062     3.0 1148720907
## 4067     3.5 1148729022
## 4068     3.5 1148720627
## 4070     2.5 1148729848
## 4071     3.0 1148668958
## 4072     3.5 1166728142
## 4074     3.5 1149868397
## 4075     2.5 1148728787
## 4076     3.5 1148670328
## 4079     3.0 1149868548
## 4083     2.5 1148669090
## 4089     3.5 1148673415
## 4090     2.0 1148669865
## 4091     3.5 1148669863
## 4092     3.5 1148669087
## 4097     2.5 1148728764
## 4098     3.5 1148671779
## 4102     3.5 1148730009
## 4107     3.0 1148673452
## 4108     3.5 1148778793
## 4111     3.5 1148729982
## 4116     3.5 1148671931
## 4118     3.5 1148721097
## 4119     3.5 1148721092
## 4120     3.5 1148728814
## 4123     3.5 1148669327
## 4124     3.5 1148729987
## 4125     3.5 1148669080
## 4126     3.5 1148721086
## 4127     2.5 1148728784
## 4128     3.0 1148668956
## 4131     3.5 1148673456
## 4136     3.5 1148671525
## 4138     2.5 1148669302
## 4140     3.0 1148673102
## 4145     3.5 1148669299
## 4146     3.0 1148670388
## 4149     3.0 1149868223
## 4155     3.5 1148730030
## 4161     3.5 1148670496
## 4164     3.5 1148670960
## 4165     3.5 1148671412
## 4168     3.5 1148672325
## 4171     3.5 1148671596
## 4173     3.5 1149868188
## 4178     3.5 1148778850
## 4179     3.5 1148386185
## 4180     1.5 1148669296
## 4182     3.5 1148730410
## 4183     2.5 1148720563
## 4184     3.5 1148672048
## 4185     3.5 1148671992
## 4192     3.5 1148777838
## 4193     3.5 1148730086
## 4194     3.5 1148671587
## 4197     3.0 1148778787
## 4199     3.5 1148728732
## 4203     2.0 1148670285
## 4204     3.5 1148720736
## 4206     3.0 1148777902
## 4209     3.5 1148386142
## 4210     3.5 1148730139
## 4215     3.5 1148672025
## 4217     2.5 1148777918
## 4219     3.0 1148669063
## 4220     2.5 1148670340
## 4221     2.5 1166728237
## 4222     3.5 1148669051
## 4223     3.5 1148730168
## 4226     3.5 1148720760
## 4227     3.5 1148669282
## 4228     3.0 1148720878
## 4229     2.0 1149868079
## 4230     1.5 1148720958
## 4232     3.0 1148720919
## 4233     3.5 1166728241
## 4234     2.0 1148720846
## 4235     3.0 1148669048
## 4236     0.5 1148778558
## 4237     1.0 1148670343
## 4238     3.5 1148668953
## 4240     2.5 1148669045
## 4246     3.5 1148729054
## 4248     3.0 1148669792
## 4252     3.5 1148669267
## 4253     3.5 1148728611
## 4254     3.5 1148670970
## 4256     3.0 1148730178
## 4257     3.0 1148673442
## 4258     3.5 1148730066
## 4259     3.5 1148669265
## 4260     2.0 1148720837
## 4261     3.0 1148728727
## 4263     1.5 1148728810
## 4265     3.5 1148728751
## 4270     3.5 1148730162
## 4272     3.0 1148728794
## 4274     3.0 1148671908
## 4275     3.0 1148728778
## 4277     1.0 1148728746
## 4278     3.5 1148728769
## 4279     3.5 1148728790
## 4280     2.5 1148728802
## 4281     1.5 1148728736
## 4283     3.5 1148728767
## 4284     3.5 1148728429
## 4285     3.5 1148669764
## 4286     3.5 1148669261
## 4291     3.0 1148669036
## 4292     3.5 1148669531
## 4294     2.5 1148728867
## 4297     2.0 1148720894
## 4299     1.5 1148669258
## 4300     3.5 1166728231
## 4302     3.0 1148730098
## 4304     3.5 1148672500
## 4306     3.5 1148386163
## 4308     3.5 1148672515
## 4309     3.5 1148669228
## 4310     3.5 1148729360
## 4311     3.5 1148669739
## 4315     3.5 1148673578
## 4317     3.5 1148730155
## 4318     2.5 1148669021
## 4319     3.5 1148669225
## 4320     2.5 1148669239
## 4321     3.0 1148671939
## 4323     3.0 1148386176
## 4325     3.5 1148730053
## 4327     3.5 1148778590
## 4330     3.0 1148729858
## 4332     2.5 1148669219
## 4335     2.0 1149868567
## 4336     3.5 1149868269
## 4338     3.0 1148672184
## 4339     3.5 1148669719
## 4340     3.5 1148730088
## 4342     3.5 1166728248
## 4343     2.5 1148670873
## 4345     3.5 1148671340
## 4347     3.0 1148669012
## 4349     1.5 1148386172
## 4352     3.0 1166036066
## 4353     3.5 1148673094
## 4354     2.0 1148669714
## 4357     3.5 1149868713
## 4361     2.0 1149867815
## 4363     2.5 1148669200
## 4364     3.5 1148669501
## 4365     3.5 1148672034
## 4368     3.5 1148673075
## 4371     3.5 1148669008
## 4372     3.5 1148730113
## 4373     3.5 1148669191
## 4374     3.5 1148778865
## 4377     3.5 1149868562
## 4380     3.5 1148778622
## 4381     2.5 1148720744
## 4382     3.5 1148669706
## 4383     2.0 1148669188
## 4385     3.0 1148672778
## 4386     2.5 1148720826
## 4388     2.5 1148671916
## 4390     3.0 1148673280
## 4391     3.5 1148728895
## 4392     3.5 1148669703
## 4393     3.0 1148729851
## 4394     2.0 1148728701
## 4395     2.5 1148669181
## 4400     3.5 1148672101
## 4403     3.0 1148669488
## 4405     3.5 1148730163
## 4409     2.5 1148721061
## 4410     3.5 1148728891
## 4412     3.5 1148721102
## 4414     1.5 1166035912
## 4419     3.0 1148669175
## 4421     3.5 1148721082
## 4422     3.5 1148729373
## 4423     3.5 1148671696
## 4425     3.5 1148669480
## 4426     3.0 1148669173
## 4427     3.5 1148730416
## 4430     2.0 1148721157
## 4431     1.0 1148669685
## 4433     3.0 1148669465
## 4434     2.0 1148386159
## 4436     3.0 1148669458
## 4437     3.5 1149868554
## 4438     3.5 1148669165
## 4439     3.5 1148730072
## 4441     2.5 1148777893
## 4443     2.0 1148669688
## 4445     2.0 1148671784
## 4446     3.0 1148669156
## 4447     3.0 1148721105
## 4453     3.5 1148729496
## 4459     3.5 1148672776
## 4460     2.0 1148729830
## 4461     3.5 1148728652
## 4462     3.5 1148386146
## 4463     3.5 1148669449
## 4464     3.5 1148671975
## 4465     1.0 1149868599
## 4466     3.0 1148669447
## 4467     2.0 1148670048
## 4472     3.5 1148670046
## 4473     2.0 1148670035
## 4474     3.5 1148672150
## 4476     1.5 1148778542
## 4477     3.5 1148670033
## 4478     3.0 1148670029
## 4479     0.5 1148669153
## 4480     2.0 1148672030
## 4481     3.0 1148672429
## 4483     3.5 1148672010
## 4484     3.5 1148669150
## 4485     3.0 1148730000
## 4486     1.5 1148729027
## 4487     3.5 1148670025
## 4490     3.0 1148670015
## 4493     3.5 1148669430
## 4494     3.5 1148669145
## 4495     3.5 1148730080
## 4496     3.5 1148669142
## 4497     3.5 1148730186
## 4498     3.5 1148673770
## 4499     3.0 1148670011
## 4504     2.0 1148729348
## 4505     3.0 1148730142
## 4511     1.0 1148669423
## 4512     3.5 1148671310
## 4513     3.0 1148668984
## 4514     3.0 1149868375
## 4515     3.0 1148670003
## 4524     2.5 1166728155
## 4525     3.5 1148777819
## 4526     3.5 1148669987
## 4527     2.0 1148670299
## 4529     3.5 1148721129
## 4530     3.5 1148729991
## 4531     0.5 1148668981
## 4532     3.5 1148669651
## 4533     3.5 1148730375
## 4534     3.0 1148671569
## 4536     2.5 1148669404
## 4537     2.0 1148728872
## 4538     3.0 1148669643
## 4539     3.0 1148729764
## 4541     3.5 1148728844
## 4542     3.5 1148670503
## 4546     3.5 1148728452
## 4547     3.5 1148672044
## 4549     2.5 1148668978
## 4552     1.5 1148728632
## 4557     3.5 1148729985
## 4558     3.5 1148672553
## 4561     2.5 1148728773
## 4565     3.0 1166035845
## 4567     2.5 1148673567
## 4568     2.5 1149868386
## 4569     3.5 1148730363
## 4573     3.5 1149868589
## 4574     3.5 1148673429
## 4576     3.5 1148670511
## 4577     3.5 1148777788
## 4578     1.5 1148671670
## 4579     3.5 1148728655
## 4580     3.0 1148730486
## 4582     3.5 1148730325
## 4584     3.5 1166728191
## 4586     3.5 1148777833
## 4587     2.5 1149868022
## 4589     3.0 1148672862
## 4591     3.5 1148672069
## 4592     1.5 1148669388
## 4593     3.0 1148672708
## 4596     3.5 1148777887
## 4597     3.0 1148669120
## 4598     3.5 1148670540
## 4599     3.5 1148671873
## 4606     3.0 1148669952
## 4607     3.0 1149867788
## 4608     2.5 1148669950
## 4609     3.5 1148673142
## 4610     3.0 1148777906
## 4612     2.5 1148721109
## 4613     2.0 1148721080
## 4616     3.5 1148671989
## 4617     2.0 1148720869
## 4618     1.5 1148673512
## 4621     2.5 1148672120
## 4627     2.0 1148729032
## 4628     3.5 1148671849
## 4630     3.5 1148672333
## 4633     3.0 1148671300
## 4634     2.0 1149867747
## 4635     2.0 1148669384
## 4639     3.0 1148669381
## 4642     3.5 1148671745
## 4643     3.5 1148673159
## 4644     2.0 1148673729
## 4645     3.5 1166036074
## 4647     3.5 1148671356
## 4648     3.5 1148672143
## 4649     1.0 1166035969
## 4652     3.0 1148729504
## 4653     3.5 1148728467
## 4656     3.5 1148673274
## 4657     3.0 1148672148
## 4658     3.5 1148672825
## 4659     3.5 1148728858
## 4662     3.5 1148671852
## 4663     3.5 1148777848
## 4664     2.0 1148729024
## 4665     3.5 1148670303
## 4666     2.5 1148777970
## 4669     3.5 1148673283
## 4672     3.5 1148730147
## 4675     3.0 1148673032
## 4676     3.5 1148730109
## 4678     2.5 1148777777
## 4683     3.0 1148669930
## 4684     3.0 1148730354
## 4685     3.0 1148672301
## 4687     3.5 1148672278
## 4689     3.5 1148730062
## 4690     3.5 1148669374
## 4693     3.5 1148728505
## 4694     3.5 1149868226
## 4696     2.5 1148673735
## 4699     3.5 1148730017
## 4700     3.5 1148673299
## 4701     3.0 1148671579
## 4702     2.5 1148728469
## 4704     3.0 1148672716
## 4705     3.5 1148730328
## 4706     3.5 1148730343
## 4708     3.5 1148730331
## 4709     3.0 1148670189
## 4716     3.5 1148671243
## 4719     3.0 1148673758
## 4720     3.0 1148671278
## 4722     2.0 1148720535
## 4723     2.5 1148728902
## 4724     3.5 1148777867
## 4727     3.5 1148671236
## 4728     3.0 1148778653
## 4731     3.5 1148672962
## 4732     1.5 1149867891
## 4733     2.5 1166728253
## 4734     3.5 1166728226
## 4736     3.0  849321616
## 4738     3.0  849321588
## 4739     3.0  849282414
## 4742     3.0  849282540
## 4746     3.0  849282506
## 4748     3.0  849282414
## 4749     3.0  849321669
## 4751     3.0  849321569
## 4754     3.0  849321955
## 4756     3.0  859625254
## 4758     3.0  859625874
## 4761     3.0  859625254
## 4762     3.0  859625254
## 4763     2.0  859625336
## 4764     2.0  859625772
## 4765     3.0  859625553
## 4768     3.0  859625336
## 4769     3.0  859625254
## 4770     2.0  859625336
## 4772     3.0  859625495
## 4773     2.0  859625824
## 4775     1.0  859625931
## 4776     3.0  859625442
## 4778     2.0  859625669
## 4779     3.0  859625669
## 4780     2.0  859625845
## 4781     3.0  859626258
## 4786     0.5 1351544773
## 4788     3.5 1360088114
## 4789     2.5 1360088108
## 4790     3.0 1360087975
## 4791     3.5 1360087955
## 4792     0.5 1360088129
## 4794     0.5 1360088074
## 4796     2.0 1360088133
## 4797     3.0 1360088079
## 4798     3.0 1360088041
## 4799     3.5 1360088007
## 4800     2.5 1360087958
## 4801     1.0 1360088125
## 4802     3.5 1352636797
## 4804     3.5 1354752756
## 4805     3.5 1360088060
## 4806     2.5 1360088081
## 4807     3.0 1351544331
## 4808     3.0 1360088143
## 4810     3.5 1360088024
## 4812     3.5 1352058567
## 4813     3.5 1371811577
## 4814     3.5 1360088053
## 4816     3.5 1352058572
## 4817     1.5 1351544316
## 4819     3.5 1360088119
## 4820     3.5 1371811514
## 4821     3.5 1351544445
## 4823     3.0 1351544792
## 4824     3.0 1351544355
## 4826     3.0 1352058527
## 4834     2.0 1351544362
## 4836     3.0 1352058543
## 4838     2.5 1353708984
## 4839     2.5 1352058529
## 4843     3.0 1351545093
## 4844     3.5 1351544451
## 4846     2.5 1354752813
## 4849     2.0 1351544780
## 4851     1.5 1352058557
## 4852     3.5 1351545042
## 4854     3.0 1352058609
## 4855     3.5 1352597808
## 4860     2.0 1353708976
## 4861     2.5 1352058766
## 4863     3.0 1352058603
## 4864     2.0 1352921335
## 4866     0.5 1357253672
## 4867     1.5 1357253678
## 4868     3.5 1353344968
## 4870     3.0 1352921346
## 4873     3.5 1365194619
## 4874     3.5 1352838248
## 4876     3.0 1352058778
## 4878     2.0 1351545109
## 4880     1.5 1351545104
## 4882     0.5 1357253708
## 4884     3.0 1353708965
## 4885     2.0 1352838206
## 4889     3.0 1353344981
## 4891     3.0 1357253700
## 4892     3.5 1352921338
## 4893     3.0 1361215024
## 4899     3.5 1352058533
## 4903     3.0 1353797039
## 4906     3.0 1353962805
## 4908     3.5 1353868066
## 4910     3.5 1351545097
## 4915     3.0 1352058770
## 4917     2.5 1353344881
## 4918     2.5 1352921375
## 4919     0.5 1357253685
## 4921     3.5 1352838242
## 4922     3.5 1361215017
## 4923     2.5 1352058524
## 4924     3.0 1353708936
## 4925     3.5 1351544480
## 4926     3.5 1351545114
## 4928     3.5 1352597733
## 4930     3.0 1353868028
## 4932     3.0 1352838257
## 4934     3.0 1353345002
## 4935     3.5 1353345011
## 4937     3.0 1352838237
## 4939     3.5 1353709018
## 4940     3.5 1352597735
## 4941     2.0 1353797029
## 4942     3.5 1351545047
## 4943     3.5 1352838229
## 4944     0.5 1357253681
## 4945     2.0 1353345007
## 4946     3.5 1352597807
## 4947     3.5 1352597692
## 4949     3.5 1354313972
## 4950     2.0 1354313516
## 4952     3.5 1351545019
## 4966     3.0  939079855
## 4968     2.0  939082326
## 4969     3.0  939078921
## 4970     2.0  939077258
## 4973     1.0  939076569
## 4984     3.0  938944636
## 4993     2.0  938944139
## 5010     1.0  938942755
## 5014     3.0  938943150
## 5015     2.0  938942821
## 5016     3.0  938942529
## 5022     2.0  938944923
## 5028     2.0 1313925564
## 5029     0.5 1313925259
## 5030     3.0 1313925074
## 5031     0.5 1313925699
## 5032     0.5 1313925185
## 5033     1.5 1313925639
## 5034     3.5 1313924474
## 5035     3.0 1313924446
## 5037     3.0 1313925688
## 5038     2.5 1313925589
## 5039     0.5 1313925693
## 5041     2.0 1313925220
## 5042     2.5 1313927224
## 5044     2.5 1313927226
## 5048     3.0 1313924902
## 5050     2.0  945277634
## 5056     2.0  945277971
## 5060     2.0  945122277
## 5062     3.0  945278415
## 5063     3.0 1060795346
## 5067     2.0  945277094
## 5069     2.0  945706968
## 5073     3.0  994458116
## 5076     3.0  945277588
## 5078     1.0  945113597
## 5081     2.0  999626484
## 5082     3.0  994458432
## 5083     2.0  945278527
## 5084     2.0  945277654
## 5086     2.0  945279013
## 5087     2.0  986009538
## 5090     3.0  945276587
## 5096     1.0  952884892
## 5102     2.0  994458003
## 5108     3.0  945276685
## 5110     3.0  945277422
## 5117     2.0  995228802
## 5118     2.0  945278777
## 5121     2.0  945277698
## 5123     3.0  954818652
## 5145     2.0  945277535
## 5146     2.0  945116219
## 5148     3.0  945122884
## 5149     2.0  945277742
## 5153     3.0  945276726
## 5159     3.0  945276726
## 5161     2.0  945277405
## 5167     3.0  945116219
## 5173     3.0  951009961
## 5175     2.0  945277181
## 5176     3.0  945278043
## 5179     3.0  945112993
## 5180     3.0  945278328
## 5181     3.0  951009383
## 5184     3.0  945276900
## 5187     1.0  945278630
## 5190     2.0  960819972
## 5212     3.0  986009052
## 5214     3.0  945295766
## 5215     3.0  945295955
## 5217     2.0  945295766
## 5218     3.0  945295766
## 5220     3.0  945278498
## 5225     3.0  946162006
## 5226     3.0  945295466
## 5227     2.0  945114585
## 5236     1.0  945295052
## 5238     1.0  945115105
## 5245     3.0 1039068134
## 5248     2.0  960819766
## 5249     3.0  945294508
## 5250     3.0  945294700
## 5251     3.0  945122605
## 5255     3.0  945114638
## 5258     3.0  945114495
## 5260     3.0  948166414
## 5261     2.0  945114673
## 5265     3.0  951007847
## 5278     2.0  945114453
## 5298     3.0  945113844
## 5301     3.0  945294811
## 5308     3.0  951009284
## 5316     3.0  945115456
## 5323     3.0  945277674
## 5326     3.0  945277556
## 5328     3.0  960918255
## 5329     3.0  945278359
## 5334     3.0  945115018
## 5336     3.0  945277760
## 5337     3.0  960819894
## 5344     3.0 1011327941
## 5347     3.0  945278893
## 5351     2.0  945277026
## 5352     3.0  945122819
## 5356     2.0  945123592
## 5357     3.0  945276660
## 5361     3.0  945276960
## 5368     3.0  948142097
## 5374     2.0  945122710
## 5376     3.0  945122710
## 5382     3.0  945279033
## 5384     3.0  945276705
## 5386     3.0  945279097
## 5389     2.0 1030334513
## 5390     1.0  948165859
## 5395     3.0  945296041
## 5405     3.0  945115767
## 5411     3.0  945116252
## 5416     3.0  945278278
## 5417     3.0  994457962
## 5418     3.0  948167472
## 5420     3.0  945278244
## 5421     3.0  948167277
## 5422     3.0  952884997
## 5424     1.0  945115480
## 5427     1.0  944943070
## 5432     3.0  948166931
## 5434     2.0  945277311
## 5436     3.0  945295156
## 5438     2.0  994439964
## 5440     3.0  945295466
## 5441     3.0  945276493
## 5444     3.0  952744480
## 5445     3.0  945294641
## 5448     2.0  968788273
## 5449     2.0  945295156
## 5452     3.0  945295766
## 5453     3.0  945116220
## 5454     3.0  945294700
## 5456     1.0  945294872
## 5457     2.0  945113656
## 5463     3.0  968787840
## 5464     3.0  945294700
## 5467     3.0  945276439
## 5474     3.0  945277634
## 5475     2.0  960917865
## 5476     3.0  948165999
## 5477     2.0  945294858
## 5478     2.0  945295069
## 5482     3.0  945277113
## 5483     1.0  945295214
## 5486     2.0  945278963
## 5491     3.0  945294811
## 5495     3.0  945115512
## 5496     3.0  945277654
## 5498     3.0  960918218
## 5499     3.0  945295543
## 5503     2.0  945295588
## 5505     3.0  945294509
## 5506     3.0  945880314
## 5508     3.0  945117801
## 5512     3.0  954818726
## 5513     3.0  948141433
## 5519     3.0  945880314
## 5520     3.0  945294912
## 5521     2.0  945294912
## 5523     1.0  945116330
## 5526     2.0  945122356
## 5530     2.0  945295214
## 5534     3.0  945117685
## 5535     1.0  945295052
## 5536     2.0  945294858
## 5537     3.0  945294764
## 5539     3.0  968788273
## 5540     3.0  945295466
## 5542     3.0  945295543
## 5544     2.0  945295588
## 5545     2.0  945295543
## 5546     3.0  945295543
## 5547     2.0  994438963
## 5550     2.0  945294641
## 5552     3.0  945117284
## 5553     3.0  945117855
## 5554     3.0  986009301
## 5559     3.0  945278292
## 5560     3.0 1012830681
## 5564     1.0  945295156
## 5565     3.0  945115326
## 5569     2.0  945117855
## 5570     2.0  945114316
## 5571     3.0  945117685
## 5576     3.0  945116067
## 5582     2.0  945294700
## 5585     3.0  945118400
## 5588     3.0  945113125
## 5589     2.0  945113981
## 5590     3.0  945278645
## 5591     3.0  945295156
## 5601     2.0  945295588
## 5617     3.0  945295052
## 5620     3.0  951162572
## 5628     3.0  945118516
## 5629     2.0  945118906
## 5635     3.0  945295466
## 5636     3.0  945123497
## 5642     3.0  945276778
## 5644     2.0  945277311
## 5649     3.0  945118516
## 5650     3.0 1033398031
## 5651     2.0  945294811
## 5652     3.0  945113597
## 5659     2.0  945116137
## 5663     3.0  945278929
## 5664     3.0  986738761
## 5666     3.0  945295766
## 5672     3.0  945117941
## 5673     3.0  948595947
## 5676     3.0  950389052
## 5682     1.0  952744452
## 5686     3.0  951009046
## 5692     3.0  960819766
## 5693     3.0  960819374
## 5695     3.0  951009046
## 5697     2.0  952224346
## 5701     2.0  994439603
## 5711     2.0  954818846
## 5713     3.0  968788547
## 5714     3.0  954818365
## 5721     2.0  960917865
## 5722     3.0  954818149
## 5726     2.0  960819182
## 5728     3.0  955926108
## 5730     3.0  960918425
## 5736     3.0  960918218
## 5739     3.0  960917702
## 5741     2.0  960819512
## 5743     3.0  957052972
## 5754     2.0  986008334
## 5767     2.0  960917865
## 5768     3.0  960917657
## 5770     3.0  960917771
## 5778     3.0  986745621
## 5781     2.0  968788764
## 5782     3.0 1039065693
## 5793     2.0  994438640
## 5802     2.0 1015714238
## 5806     3.0 1009341085
## 5812     3.0  986738661
## 5817     3.0  994459012
## 5821     3.0  986738661
## 5827     2.0  986738761
## 5828     1.0 1039070344
## 5830     3.0  986008184
## 5833     3.0  986738613
## 5834     3.0 1055785445
## 5835     3.0  986008121
## 5842     3.0  994457827
## 5847     3.0  994458606
## 5852     3.0 1039066739
## 5855     3.0 1039067403
## 5859     3.0  999310004
## 5860     2.0 1039067528
## 5862     2.0 1039069165
## 5867     3.0  994457142
## 5870     3.0 1039067434
## 5871     3.0  994440115
## 5873     2.0 1039066699
## 5874     3.0  994457641
## 5881     3.0 1039067528
## 5882     2.0 1002770641
## 5888     1.0  994458003
## 5890     3.0  994457962
## 5891     2.0  996950674
## 5893     2.0  996950674
## 5897     3.0  996950542
## 5901     3.0  996950542
## 5902     2.0  996950542
## 5903     3.0 1014533110
## 5911     3.0 1002769561
## 5916     3.0 1006492881
## 5919     3.0 1006492955
## 5921     2.0 1006492955
## 5922     3.0 1009340636
## 5929     3.0 1010289168
## 5932     3.0 1011328056
## 5933     3.0 1009937419
## 5935     3.0  945114153
## 5936     3.0 1011328004
## 5941     2.0 1012830712
## 5942     3.0 1016419671
## 5947     3.0 1014613681
## 5950     3.0 1039065866
## 5952     3.0 1015205474
## 5954     1.0 1036123436
## 5956     2.0 1019363280
## 5960     3.0 1019363219
## 5961     3.0 1019363219
## 5963     3.0 1020056776
## 5965     2.0 1019363168
## 5969     1.0 1020056711
## 5970     2.0 1021348305
## 5975     2.0 1024891677
## 5977     3.0 1027051268
## 5978     3.0 1046105730
## 5984     3.0 1035175467
## 5985     3.0 1031799315
## 5988     3.0 1039067403
## 5990     1.0 1036367646
## 5993     2.0 1033880299
## 5996     3.0 1033880263
## 6001     3.0 1039067617
## 6005     3.0 1035175594
## 6011     1.0 1036367914
## 6012     2.0 1036367914
## 6014     3.5 1060013944
## 6016     3.0 1038203534
## 6017     3.0 1038203534
## 6021     3.0 1039066739
## 6024     3.0 1060736279
## 6027     3.0 1040659215
## 6033     3.0 1043687080
## 6034     3.0 1043687080
## 6035     2.0 1043687080
## 6036     2.0 1043687080
## 6037     3.0 1043687014
## 6039     3.0 1055798065
## 6040     2.0 1046106675
## 6041     3.0 1049142071
## 6042     3.0 1048704049
## 6043     3.0 1048704049
## 6046     3.0 1049142157
## 6047     3.0 1049142105
## 6050     3.0 1049749117
## 6052     3.5 1055797818
## 6062     3.5 1273633559
## 6067     3.5 1273541973
## 6071     3.5 1273720368
## 6075     3.0 1273542081
## 6076     2.0 1273542019
## 6084     3.0 1273542066
## 6095     3.0 1273541964
## 6096     3.5 1273542085
## 6102     3.5 1274150321
## 6106     3.5 1273553986
## 6107     3.5 1274150289
## 6127     3.5 1273720454
## 6130     3.0  834828185
## 6132     3.0  834828337
## 6136     3.0  834828318
## 6138     3.0  834828318
## 6139     3.0  834828227
## 6142     2.0  834828168
## 6144     3.0  834828268
## 6146     3.0  834828185
## 6148     2.0  834828059
## 6149     3.0  834828155
## 6150     3.0  834828108
## 6151     3.0  834828168
## 6152     3.0  834828337
## 6156     3.0  834828337
## 6158     3.0  834828227
## 6161     3.0  834828059
## 6162     3.0  834828155
## 6163     2.0  834828185
## 6164     3.0  834828632
## 6165     3.0  834828199
## 6166     3.0  834828123
## 6172     3.0  834828085
## 6176     2.0  834828108
## 6177     3.0 1032769612
## 6178     3.0 1032678367
## 6179     1.0 1033543456
## 6180     3.0 1032769595
## 6182     2.0 1032676906
## 6186     1.0 1032678174
## 6192     2.0 1032679359
## 6200     2.0 1032679990
## 6201     3.0 1032859220
## 6202     2.0 1032679469
## 6204     3.0 1032769282
## 6205     1.0 1032859270
## 6207     2.0 1032679534
## 6208     3.0 1032680083
## 6211     1.0 1032766234
## 6215     3.0 1032860971
## 6217     2.0 1032680420
## 6218     2.0 1032676887
## 6220     2.0 1032860951
## 6221     2.0 1032680004
## 6224     3.0 1033192223
## 6227     1.0 1032766463
## 6230     2.0 1032859504
## 6231     1.0 1032766852
## 6232     3.0 1032858995
## 6234     2.0 1032768775
## 6236     2.0 1032859012
## 6237     1.0 1032859119
## 6240     3.0 1032679887
## 6244     2.0 1032859389
## 6245     2.0 1032769282
## 6247     2.0 1032859878
## 6248     3.0 1032677405
## 6249     3.0 1032769523
## 6250     3.0 1032769002
## 6251     2.0 1032677594
## 6252     3.0 1032677740
## 6255     2.0 1032677346
## 6256     2.0 1034930090
## 6257     3.0 1032769237
## 6260     3.0 1032859050
## 6261     2.0 1032766929
## 6263     2.0 1032769543
## 6264     3.0 1032859587
## 6265     2.0 1032677362
## 6269     2.0 1032676888
## 6271     3.0 1034930190
## 6272     1.0 1032859254
## 6276     3.0 1032677333
## 6277     2.0 1032769250
## 6278     2.0 1033604248
## 6280     2.0 1034929996
## 6282     2.0 1032679865
## 6283     2.0 1032678282
## 6285     3.0 1032680212
## 6287     3.0 1032767204
## 6288     3.0 1033604322
## 6289     2.0 1032677637
## 6293     3.0 1032678352
## 6296     3.0 1034930125
## 6297     3.0 1032679488
## 6302     3.0 1032858930
## 6303     3.0 1032769523
## 6304     3.0 1032858979
## 6306     3.0 1032859878
## 6309     2.0 1032678432
## 6315     3.0  973747402
## 6318     3.0  973747340
## 6324     3.0  973747709
## 6332     3.0  973748307
## 6333     3.0  973747985
## 6334     3.0  973747797
## 6345     3.0  973748336
## 6354     3.0  973748587
## 6364     3.0  973747591
## 6367     3.0  973747156
## 6369     3.0  973747911
## 6372     1.0  973747354
## 6374     3.0  973748587
## 6384     3.0  973747591
## 6386     3.0  973748787
## 6390     3.0  973747017
## 6402     3.0  973747017
## 6406     3.0  973748443
## 6408     3.0  973747797
## 6411     3.0  973747877
## 6413     3.0  973748196
## 6416     1.0  973748964
## 6417     3.0  973747685
## 6418     3.0  973747621
## 6420     3.0  973749013
## 6423     3.0  973748979
## 6425     3.0  973747777
## 6426     3.0  973747797
## 6427     3.0  973749026
## 6430     2.0  973746627
## 6431     3.0  973748277
## 6432     3.0  973747591
## 6442     2.0  973749049
## 6443     3.0  973748307
## 6446     3.0  973747685
## 6448     3.0  973747723
## 6450     3.0  973747609
## 6457     2.0  973747877
## 6459     3.0  973747985
## 6460     3.0  973748713
## 6468     3.0  973748196
## 6469     3.0  973748228
## 6472     3.0  973747643
## 6477     3.0  973746214
## 6481     3.0  973747385
## 6482     1.0  973746896
## 6485     3.0  973748196
## 6501     3.0  973747017
## 6502     2.5 1174450075
## 6503     1.5 1174450069
## 6504     3.0 1174450074
## 6506     2.0 1174450068
## 6508     1.5 1174450057
## 6509     1.5 1174450070
## 6510     1.5 1174450053
## 6511     0.5 1174450079
## 6512     1.5 1174450076
## 6513     2.5 1174450052
## 6514     1.0 1174450054
## 6515     3.5 1174450064
## 6517     3.5 1174450061
## 6518     2.0 1174450051
## 6519     0.5 1174450080
## 6521     2.5 1174450059
## 6522     3.0  847057147
## 6523     3.0  847057223
## 6525     3.0  847056854
## 6527     3.0  847057202
## 6530     3.0  847057696
## 6533     3.0  847057520
## 6540     3.0  847057301
## 6541     3.0  847057765
## 6542     3.0  847058110
## 6543     3.0  847056547
## 6544     3.0  847057385
## 6547     3.0  847057018
## 6550     2.0  847057444
## 6552     3.0  847057061
## 6554     3.0  847057136
## 6559     3.0  847057240
## 6560     3.0  847057202
## 6561     3.0  847056984
## 6569     3.0  847057827
## 6575     3.0  847057278
## 6576     3.0  847056948
## 6577     3.0  847056636
## 6580     3.0  847057119
## 6581     3.0  847057444
## 6582     3.0  847057328
## 6583     3.0  847057520
## 6585     3.0  847056926
## 6587     3.0  847056948
## 6588     3.0  847056636
## 6589     3.0  847056926
## 6590     3.0  847056783
## 6591     3.0  847056547
## 6594     3.0  847056636
## 6596     3.0  847057385
## 6599     3.0  847057179
## 6601     3.0  847057575
## 6604     3.0  847057415
## 6606     3.0  847056854
## 6607     3.0  847057363
## 6608     3.0  847057328
## 6609     3.0  847057094
## 6610     2.0  847056854
## 6611     3.0  847056854
## 6612     3.0  847056547
## 6613     3.0  847056510
## 6614     3.0  847056510
## 6616     3.0  847056819
## 6617     3.0  853005492
## 6620     2.0  853005800
## 6622     3.0  847057696
## 6623     3.0  847057928
## 6625     3.0  853005621
## 6629     2.0  981308246
## 6632     3.0  981308294
## 6634     3.0  981308309
## 6641     3.0  981304291
## 6647     3.0  981307942
## 6649     3.0  981307838
## 6651     3.0  981304524
## 6653     3.0  981304635
## 6656     3.0  981307823
## 6668     3.0 1416075151
## 6671     3.5 1389806500
## 6686     3.5 1416075186
## 6687     3.0 1416075336
## 6688     3.0 1389721837
## 6691     3.5 1389721935
## 6693     3.0 1416075365
## 6707     3.5 1390248633
## 6708     3.5 1389722066
## 6716     3.0 1416075350
## 6727     3.5 1416075321
## 6740     3.5 1449693163
## 6756     3.0 1416074797
## 6772     3.0  833532967
## 6774     3.0  832525157
## 6776     3.0  832523307
## 6777     3.0  832523276
## 6779     3.0  833532967
## 6780     3.0  832523411
## 6782     3.0  832523738
## 6784     3.0  832523045
## 6785     3.0  832523339
## 6788     3.0  832525093
## 6789     3.0  832525181
## 6790     3.0  833534728
## 6793     2.0  832523411
## 6799     3.0  832523340
## 6807     2.0  832523386
## 6808     3.0  832523386
## 6809     3.0  832523307
## 6810     3.0  832525157
## 6813     3.0  832523411
## 6815     3.0  832523386
## 6820     3.0  832523045
## 6821     3.0  832523013
## 6822     3.0  832523013
## 6823     3.0  832523340
## 6824     3.0  832523082
## 6859     3.5 1466993111
## 6874     3.5 1093888283
## 6879     3.5 1093886586
## 6881     3.0 1107100488
## 6887     3.5 1093887342
## 6892     3.5 1109811944
## 6895     3.0 1093887714
## 6897     3.5 1093887565
## 6901     3.0 1093886809
## 6905     3.5 1093889745
## 6911     3.5 1093888257
## 6912     3.5 1093887515
## 6916     3.5 1093887255
## 6920     3.5 1093886864
## 6928     3.0 1093886607
## 6930     2.5 1093886688
## 6932     3.5 1093886662
## 6941     3.5 1109816599
## 6947     3.0 1093886675
## 6950     3.5 1109816608
## 6951     3.5 1093887570
## 6954     3.0 1093887748
## 6956     3.0 1093886639
## 6957     2.5 1093886710
## 6960     3.5 1093887247
## 6965     3.5 1093887225
## 6967     3.5 1093887900
## 6968     3.0 1093887778
## 6969     3.0 1093886717
## 6970     3.0 1093889767
## 6971     3.5 1093889882
## 6975     3.0 1093887368
## 6976     3.0 1093887455
## 6977     3.0 1093887370
## 6978     2.5 1093889776
## 6981     3.5 1093887446
## 6983     3.5 1093886996
## 6984     3.5 1093887641
## 6985     3.5 1093888808
## 6986     3.5 1093888619
## 6990     3.5 1093887350
## 6996     3.0 1093886668
## 6998     3.5 1107102322
## 7003     3.5 1093887254
## 7004     3.5 1093887241
## 7005     3.5 1109816504
## 7009     3.5 1093886835
## 7011     3.5 1093887961
## 7012     3.5 1093886804
## 7014     3.0 1093887835
## 7015     3.5 1107100521
## 7020     3.5 1109812764
## 7023     3.5 1109814401
## 7025     2.5 1107100577
## 7028     3.5 1093887686
## 7031     3.5 1107100440
## 7033     3.5 1093887634
## 7034     3.5 1093887667
## 7035     3.5 1093889755
## 7039     3.5 1093888602
## 7041     3.0 1107100419
## 7046     3.5 1093887841
## 7052     3.5 1109813193
## 7053     3.5 1093887324
## 7056     3.0 1093887605
## 7066     3.0 1093887692
## 7074     3.5 1473258327
## 7080     3.5 1473258331
## 7083     3.5 1473258311
## 7088     3.5 1473258305
## 7097     1.5 1473258445
## 7098     3.5 1473258346
## 7100     3.0 1473258409
## 7104     3.5 1473258169
## 7107     3.5 1473258388
## 7108     2.5 1473258340
## 7117     3.5 1473258269
## 7118     3.5 1473258378
## 7124     3.0 1473258337
## 7125     3.5 1473258248
## 7129     3.5 1473258356
## 7134     3.5 1473258383
## 7135     3.0 1473258427
## 7136     2.0 1473258421
## 7139     3.0 1473258291
## 7140     3.5 1473258281
## 7142     2.0 1473258334
## 7146     2.0  974767953
## 7147     2.0  974769666
## 7149     1.0  974770180
## 7150     3.0  974768430
## 7151     3.0  974769902
## 7155     3.0  974769730
## 7156     3.0  974767845
## 7158     2.0  974770079
## 7159     3.0  974768798
## 7160     3.0  974767746
## 7165     3.0  974756766
## 7166     3.0  974770180
## 7167     3.0  974770325
## 7170     1.0  974769125
## 7171     2.0  974768022
## 7175     3.0  974767879
## 7176     1.0  974770474
## 7177     3.0  974769125
## 7178     1.0  974769482
## 7179     3.0  974769561
## 7180     3.0  974768903
## 7181     2.0  974769902
## 7182     3.0  974756766
## 7184     3.0  974768604
## 7186     2.0  974768471
## 7187     2.0  974769658
## 7188     1.0  974770180
## 7189     2.0  974770079
## 7191     2.0  974770281
## 7192     3.0  974770104
## 7193     3.0  974768999
## 7194     3.0  974769207
## 7195     1.0  974767879
## 7196     3.0  974767845
## 7200     3.0  974768285
## 7201     3.0  974768834
## 7203     3.0  974769843
## 7204     3.0  974767917
## 7205     3.0  974767845
## 7206     2.0  974769730
## 7207     2.0  974769659
## 7208     2.0  974770360
## 7210     2.0  974770325
## 7211     3.0  974756704
## 7213     2.0  974768402
## 7215     3.0  974770104
## 7216     3.0  974769963
## 7217     2.0  974767746
## 7219     3.0  974769659
## 7222     2.0  974770180
## 7224     2.0  974756766
## 7225     3.0  974769253
## 7227     2.0  974770248
## 7229     3.0  974767983
## 7231     3.0  974769963
## 7232     2.0  974770007
## 7233     3.0  974769034
## 7234     2.0  974767808
## 7235     2.0  974770281
## 7237     2.0  974767953
## 7238     2.0  974756976
## 7241     3.0  974769561
## 7242     1.0  974757072
## 7243     2.0  974757005
## 7244     3.0  974757005
## 7245     2.0  974769818
## 7247     2.0  974770227
## 7248     1.0  974768834
## 7249     1.0  974769902
## 7250     2.0  974767809
## 7251     2.0  974768798
## 7255     3.0  858707194
## 7256     3.0  858707194
## 7257     2.0  858707139
## 7258     3.0  858707139
## 7259     3.0  858707138
## 7261     3.0  858707138
## 7264     2.0  858707138
## 7265     3.0  858707247
## 7266     3.0  858707194
## 7267     3.0  858707310
## 7268     2.0  858707310
## 7269     3.0  858707138
## 7273     3.0  858707194
## 7274     3.0  858707248
## 7275     3.0  858707310
## 7277     3.0  858707464
## 7278     3.5 1140202251
## 7283     3.0 1140202266
## 7286     2.5 1140202408
## 7288     2.5 1140202271
## 7289     2.5 1140202307
## 7292     0.5 1140202339
## 7294     1.0 1140202402
## 7295     2.5 1140202334
## 7342     3.0  832229039
## 7344     3.0  832229161
## 7348     3.0  832229039
## 7352     3.0  832228958
## 7353     3.0  832228906
## 7355     3.0  832228958
## 7356     3.0  832229007
## 7360     3.0  832228958
## 7364     3.0  832228859
## 7367     3.0  832228979
## 7368     3.0  832229068
## 7370     3.0  832229985
## 7373     3.0  832228796
## 7375     3.0  832228906
## 7377     3.5 1322169967
## 7378     3.0 1322169717
## 7380     3.0 1439687078
## 7381     3.0 1322170542
## 7382     3.5 1322170475
## 7383     2.5 1322169932
## 7384     3.5 1322169695
## 7385     3.5 1319744320
## 7388     3.5 1322169641
## 7391     3.5 1322169697
## 7392     3.5 1322167325
## 7393     3.5 1367466511
## 7396     3.5 1368072767
## 7397     3.5 1322169588
## 7398     3.5 1322169669
## 7399     3.5 1322169653
## 7400     3.0 1322170930
## 7403     2.5 1419495810
## 7406     3.5 1322169711
## 7407     3.5 1319745467
## 7408     3.5 1318721589
## 7411     3.5 1316496812
## 7412     3.5 1322169763
## 7413     3.5 1322167612
## 7414     3.5 1410971787
## 7416     3.5 1322169645
## 7417     3.5 1318721485
## 7419     2.5 1412457717
## 7420     3.5 1322170149
## 7421     2.5 1412471587
## 7422     3.5 1322169801
## 7423     3.5 1322167341
## 7424     3.5 1322167292
## 7425     3.0 1322171839
## 7426     3.0 1419495799
## 7427     3.5 1322169947
## 7429     3.5 1318725610
## 7431     3.0 1322171335
## 7433     3.5 1322169954
## 7435     3.5 1319744666
## 7436     3.5 1322167149
## 7437     3.0 1322170564
## 7438     3.5 1322170785
## 7439     3.5 1415258524
## 7440     3.5 1412321963
## 7442     3.0 1322170922
## 7443     3.5 1324101279
## 7446     3.5 1318835468
## 7447     2.5 1412471207
## 7448     3.5 1322170518
## 7450     3.5 1322167802
## 7451     3.0 1322170331
## 7452     3.5 1322170196
## 7453     3.5 1322169924
## 7454     3.0 1322170066
## 7455     2.5 1412470814
## 7456     3.5 1367729581
## 7457     3.0 1412471725
## 7459     3.5 1318835841
## 7460     3.0 1319744255
## 7462     3.5 1318797469
## 7464     3.0 1322170644
## 7467     3.0 1322171045
## 7468     3.5 1322173362
## 7469     3.0 1316922546
## 7470     3.5 1410971832
## 7472     3.0 1319748211
## 7474     3.5 1318835610
## 7475     3.5 1322167231
## 7476     3.5 1405181557
## 7477     3.0 1322167807
## 7479     3.5 1303371101
## 7480     3.5 1322171604
## 7481     3.0 1319745406
## 7483     3.5 1318796382
## 7484     3.5 1425960044
## 7486     3.5 1305602329
## 7492     3.0 1322169255
## 7493     3.5 1322167657
## 7494     3.0 1322167294
## 7495     3.5 1322167764
## 7496     3.5 1322167056
## 7499     3.5 1322167180
## 7502     3.5 1320820975
## 7507     3.5 1319744880
## 7508     3.5 1320505613
## 7509     3.0 1412478838
## 7510     3.5 1317277244
## 7511     3.0 1367774627
## 7513     3.5 1322167119
## 7517     3.0 1317612608
## 7518     3.5 1318796409
## 7519     3.0 1322871160
## 7520     3.0 1322167122
## 7521     3.5 1322174318
## 7523     3.5 1322170898
## 7525     3.0 1368072937
## 7528     2.5 1414562338
## 7530     3.5 1322167707
## 7531     3.0 1368060971
## 7534     2.5 1333323786
## 7535     3.0 1317417331
## 7536     3.5 1322171670
## 7539     3.0 1341268936
## 7543     2.5 1319744919
## 7544     2.5 1339446902
## 7546     3.0 1367968341
## 7547     3.5 1317413816
## 7548     3.0 1339447083
## 7552     3.5 1319743664
## 7553     3.5 1425960095
## 7555     2.5 1325534468
## 7557     3.5 1316416730
## 7558     3.5 1318796541
## 7559     3.0 1341268726
## 7560     3.0 1367794617
## 7562     3.5 1320128368
## 7564     3.5 1319744696
## 7569     3.0 1341268857
## 7570     3.0 1339446959
## 7571     3.0 1319743714
## 7575     3.5 1322167635
## 7576     3.5 1322167363
## 7577     3.5 1319744759
## 7578     3.0 1414562300
## 7579     3.5 1319745276
## 7580     2.5 1414561763
## 7581     3.5 1317613176
## 7582     3.0 1333324895
## 7583     3.5 1317417268
## 7584     3.5 1303371215
## 7586     3.5 1322174118
## 7587     3.0 1320505644
## 7588     3.0 1367968282
## 7589     3.0 1322167429
## 7590     3.5 1319745902
## 7591     2.5 1367968590
## 7594     3.0 1414561107
## 7595     3.5 1319745453
## 7598     3.0 1322168181
## 7600     3.5 1317612663
## 7601     3.5 1317415599
## 7602     3.0 1415388297
## 7603     3.5 1322168130
## 7604     3.0 1339447216
## 7608     3.5 1322167725
## 7610     3.5 1319745148
## 7612     3.0 1339447153
## 7613     3.0 1322171427
## 7614     3.5 1322171197
## 7615     3.5 1317415398
## 7617     3.5 1322167397
## 7618     3.0 1369722178
## 7620     3.5 1309052092
## 7621     3.5 1317612601
## 7622     3.0 1319745336
## 7624     3.5 1371359811
## 7625     3.0 1339446347
## 7627     2.5 1415388549
## 7628     3.0 1322167257
## 7629     3.0 1322167662
## 7630     2.5 1339447162
## 7631     2.0 1414561720
## 7632     3.0 1333325498
## 7633     3.0 1428727629
## 7636     3.5 1322167586
## 7637     2.5 1317417320
## 7638     3.5 1319746126
## 7644     3.0 1339447164
## 7646     3.5 1319745424
## 7647     3.0 1339447168
## 7648     2.5 1414561470
## 7649     3.0 1322967502
## 7650     3.5 1319743116
## 7651     3.0 1412471624
## 7653     3.5 1320709035
## 7655     3.0 1412457389
## 7656     3.5 1319747076
## 7658     3.5 1405916134
## 7660     3.5 1319743302
## 7662     3.0 1322167708
## 7664     3.0 1322165598
## 7665     3.5 1319746873
## 7666     3.5 1319744824
## 7667     3.5 1317621831
## 7670     3.5 1369880284
## 7674     3.5 1318796568
## 7676     3.0 1305603027
## 7677     3.5 1317414089
## 7679     3.5 1322167566
## 7680     3.5 1371359903
## 7682     3.5 1319744734
## 7684     3.0 1322966900
## 7685     3.5 1305603309
## 7686     3.5 1322167367
## 7687     3.5 1322167677
## 7688     2.5 1368412407
## 7689     3.5 1322719467
## 7690     3.5 1305603082
## 7693     3.5 1319746373
## 7694     3.0 1322168337
## 7695     3.5 1305603272
## 7698     3.5 1316539661
## 7700     3.5 1317405737
## 7701     3.5 1316494407
## 7702     3.5 1322167931
## 7704     3.0 1339446804
## 7705     3.0 1322167961
## 7708     3.0 1414850769
## 7709     3.5 1405650223
## 7712     3.0 1305603095
## 7713     3.5 1322167425
## 7714     3.5 1319748155
## 7721     3.5 1317417335
## 7722     3.5 1317414139
## 7723     3.0 1371530476
## 7726     3.0 1322167866
## 7727     3.5 1305603492
## 7728     3.5 1319746905
## 7729     3.5 1319745128
## 7731     3.0 1414850946
## 7732     3.0 1339446991
## 7733     3.5 1319745750
## 7734     3.0 1414562131
## 7735     3.5 1324101310
## 7738     3.0 1305603556
## 7739     3.0 1319745660
## 7740     3.5 1316539530
## 7741     3.0 1317415585
## 7743     3.5 1428726464
## 7745     3.5 1319745518
## 7748     3.5 1319744484
## 7750     1.5 1341268695
## 7751     3.5 1322167990
## 7757     3.5 1320700986
## 7759     3.5 1319745212
## 7761     3.5 1368483486
## 7762     2.5 1412309172
## 7763     3.5 1321425442
## 7765     3.5 1318796373
## 7766     3.5 1322167089
## 7767     3.5 1318742711
## 7769     3.5 1415388786
## 7770     3.5 1318796556
## 7771     3.5 1305603954
## 7772     3.5 1341268645
## 7773     3.5 1368499219
## 7774     3.5 1368250070
## 7775     3.0 1414850824
## 7778     2.5 1414851036
## 7781     3.5 1319744151
## 7783     3.0 1319743782
## 7786     3.5 1319743415
## 7787     3.0 1369722191
## 7789     3.5 1317277357
## 7790     3.5 1322169386
## 7791     3.0 1368499410
## 7794     2.5 1415388667
## 7795     3.0 1317277197
## 7796     3.0 1317277220
## 7797     2.5 1410972161
## 7798     3.5 1316907766
## 7799     3.0 1414851073
## 7800     2.5 1414849679
## 7801     3.0 1329101733
## 7802     2.5 1368483363
## 7803     3.5 1368249365
## 7804     3.5 1331430993
## 7805     3.0 1368499298
## 7806     3.5 1371530093
## 7807     3.5 1371360050
## 7808     2.0 1341268688
## 7809     2.5 1415388593
## 7810     2.5 1341268657
## 7811     3.0 1414562176
## 7812     2.5 1414562366
## 7815     3.0 1414850934
## 7816     3.0 1410972137
## 7817     3.0 1368499835
## 7819     3.0 1356760463
## 7820     3.0 1368499321
## 7821     3.0 1415388917
## 7822     3.0 1371530088
## 7825     2.5 1410972337
## 7826     3.5 1367725555
## 7828     3.5 1368483794
## 7829     3.5 1367725590
## 7830     3.5 1367786421
## 7832     3.0 1371530237
## 7833     2.5 1412497730
## 7838     3.5 1368499380
## 7839     2.5 1428726967
## 7841     3.5 1410972280
## 7842     2.0 1412570841
## 7843     2.5 1412570882
## 7844     2.0 1412570808
## 7845     3.5 1414561040
## 7846     3.0 1414850862
## 7847     3.0 1410972358
## 7848     2.5 1415388310
## 7849     2.5 1412554038
## 7850     2.5 1412561078
## 7851     3.0 1405181551
## 7853     3.5 1410972517
## 7854     2.5 1412570817
## 7855     2.5 1410972202
## 7856     2.5 1412583710
## 7857     3.0 1410972239
## 7858     2.5 1410972320
## 7859     3.5 1425960344
## 7860     3.0 1412553084
## 7861     2.5 1410972264
## 7862     3.0 1412553201
## 7863     2.5 1428726440
## 7864     2.5 1412553055
## 7865     3.5 1410972164
## 7866     3.0 1410972074
## 7867     3.0 1419495256
## 7868     3.0 1410972132
## 7869     2.5 1405181398
## 7870     2.5 1412553003
## 7871     3.5 1410972058
## 7872     3.5 1405649924
## 7873     2.5 1410972102
## 7874     2.5 1412552876
## 7876     3.5 1412552728
## 7877     2.5 1412552534
## 7878     2.5 1428726233
## 7879     3.5 1425960080
## 7880     3.5 1412550699
## 7881     3.0 1415388454
## 7882     2.5 1428726245
## 7883     3.0 1428726219
## 7884     2.5 1428727019
## 7885     2.0 1428726405
## 7886     3.0 1428726202
## 7887     3.0 1414562891
## 7888     2.5 1428726241
## 7890     3.0  978039958
## 7892     2.0  978040891
## 7893     1.0  978040922
## 7894     3.0  978040023
## 7895     3.0  978039850
## 7897     2.0  978039693
## 7899     3.0  978039301
## 7900     3.0  978039629
## 7901     2.0  978039693
## 7903     3.0  978039922
## 7904     3.0  978040871
## 7905     3.0  978039850
## 7913     3.0  978039654
## 7916     3.0  978039693
## 7920     3.0  978039819
## 7926     3.0  978039301
## 7933     3.0  978039753
## 7936     3.0  978041342
## 7937     3.0  978039714
## 7938     2.0  978041312
## 7940     1.0  978039958
## 7941     2.0  978039891
## 7942     2.0  978040828
## 7943     2.0  978040023
## 7944     3.0  978039891
## 7949     3.0  978039557
## 7950     2.0  978041370
## 7952     3.0  978039795
## 7955     2.0  978039263
## 7956     1.0  978040922
## 7958     3.0  978041224
## 7959     3.0  978040922
## 7960     1.0  978041370
## 7961     1.0  978041398
## 7962     1.0  978041398
## 7963     3.0  978039629
## 7964     3.0  978041279
## 7969     3.0  978041312
## 7971     3.0  978039301
## 7972     2.0  978039988
## 7974     3.0  978039891
## 7976     2.0  978041342
## 7977     2.0  978039629
## 7978     2.0  978041312
## 7982     3.0  978041189
## 7983     3.0  978039693
## 7985     3.0  978041224
## 7989     3.0  847412676
## 7990     2.0  847412692
## 7991     3.0  847412643
## 7992     3.0  847412837
## 7994     3.0  847412515
## 7995     3.0  847412712
## 7998     3.0  847412606
## 7999     3.0  847412606
## 8000     1.0  847412567
## 8001     3.0  847412628
## 8002     3.0  847412811
## 8005     3.0  847412812
## 8006     3.0  847412567
## 8007     3.0  847412859
## 8009     2.0  847412544
## 8010     3.0  847412567
## 8015     3.0  847412643
## 8016     3.0  847412515
## 8017     3.0  847412692
## 8018     3.0  847412586
## 8020     3.0  847412812
## 8021     3.0  847412628
## 8022     3.0  847413020
## 8024     3.0  847412812
## 8026     3.0  847412676
## 8027     3.0  847413043
## 8028     3.0  847412659
## 8030     3.0  847412515
## 8031     3.0  847412659
## 8033     3.0  847413043
## 8035     1.0  974728763
## 8036     3.0  974728763
## 8040     3.0  974728999
## 8041     2.0  974729270
## 8047     2.0  974729345
## 8050     2.0  974729270
## 8051     3.0  974729165
## 8056     3.0  974729270
## 8066     1.0 1231763607
## 8067     3.5 1231770596
## 8072     1.0 1231770503
## 8074     0.5 1231763493
## 8075     1.0 1231766853
## 8077     0.5 1231763521
## 8078     1.0 1231763632
## 8082     3.5 1231766114
## 8085     1.0 1231763560
## 8088     2.0 1231763745
## 8092     3.5 1231770278
## 8093     2.0 1231763949
## 8101     1.0 1231763805
## 8104     3.5 1231769278
## 8105     3.5 1231769628
## 8111     3.5 1231763467
## 8112     3.5 1231770591
## 8114     3.5 1231769937
## 8117     3.5 1231766722
## 8119     2.0 1231763882
## 8120     2.0 1231763840
## 8123     3.0 1231767136
## 8126     3.5 1231766676
## 8127     3.5 1231769289
## 8128     3.5 1231770833
## 8132     2.0 1231769833
## 8135     1.0  955192933
## 8136     1.0  955192933
## 8137     3.0  955193660
## 8138     1.0  955192933
## 8139     1.0  955192933
## 8142     3.0  955193310
## 8143     3.0  955193387
## 8146     2.0  955192367
## 8148     2.0  955191985
## 8149     3.0  955193468
## 8150     1.0  955192692
## 8152     3.0  955193256
## 8153     1.0  955192663
## 8155     1.0  955193574
## 8160     1.0  955192739
## 8161     1.0  955192603
## 8162     3.0  955192307
## 8163     3.0  955192417
## 8164     3.0  955192010
## 8165     1.0  955192491
## 8166     1.0  955192571
## 8168     2.0  955192739
## 8169     1.0  955193387
## 8171     1.0  955192779
## 8172     1.0  955192307
## 8174     1.0  955192760
## 8175     2.0  955192571
## 8184     2.0 1352836775
## 8187     2.5 1352832722
## 8188     3.5 1352836545
## 8189     3.5 1352835678
## 8191     3.0 1352837063
## 8194     0.5 1352832871
## 8200     3.5 1352834428
## 8202     3.5 1352836442
## 8203     1.0 1352836450
## 8207     1.0 1352834067
## 8209     2.0 1352833048
## 8211     1.5 1352836517
## 8216     3.5 1352833131
## 8220     2.5 1352836507
## 8221     3.5 1352834483
## 8223     3.0  855926941
## 8224     3.0  855926988
## 8226     2.0  855926988
## 8227     3.0  855927315
## 8230     3.0  855927438
## 8231     3.0  855927172
## 8232     3.0  855926941
## 8233     3.0  855927437
## 8235     3.0  855927131
## 8239     3.0  855926988
## 8240     3.0  855926988
## 8241     3.0  855927438
## 8245     2.0  855927438
## 8246     3.0  855927131
## 8250     3.0  855926941
## 8251     3.0  855927315
## 8252     2.0  855927438
## 8254     3.0  855927131
## 8257     3.0  855927315
## 8260     3.0  855926988
## 8264     2.0 1470350794
## 8272     2.0 1467003504
## 8273     2.0 1467004905
## 8277     2.0 1470350790
## 8280     2.0 1470350831
## 8281     2.0 1467006124
## 8285     2.0 1470350811
## 8287     2.0 1467004922
## 8291     2.0 1470350967
## 8300     2.0 1467005800
## 8301     2.0 1467003164
## 8307     2.0 1467005377
## 8309     2.0 1470351101
## 8316     2.0 1470351007
## 8319     2.0 1470350746
## 8321     2.0 1470350810
## 8323     2.0 1470350743
## 8331     2.0 1467005230
## 8337     2.0 1470350796
## 8339     2.0 1467006386
## 8340     2.0 1470350740
## 8341     2.0 1470351006
## 8347     2.0 1470351002
## 8356     2.0 1470350881
## 8357     2.0 1470350949
## 8367     2.0 1470350880
## 8372     2.0 1470350958
## 8376     2.0 1470350857
## 8380     2.0 1470350850
## 8381     2.0 1470350848
## 8383     1.0 1469031525
## 8386     2.0 1470352143
## 8388     2.0 1470350841
## 8391     2.0 1470352155
## 8392     2.0 1470350839
## 8396     2.0 1470350837
## 8398     1.0 1467005018
## 8401     2.0 1470351704
## 8407     2.0 1475110909
## 8412     2.0 1470351096
## 8422     2.0 1467005813
## 8423     2.0 1470351099
## 8427     1.0 1467006042
## 8432     2.0 1470350837
## 8433     2.0 1470351801
## 8435     2.0 1470351097
## 8437     2.0 1470350982
## 8439     2.0 1470351095
## 8440     2.0 1467005081
## 8442     2.0 1467009601
## 8446     2.0 1470350862
## 8448     2.0 1467005858
## 8450     2.0 1467006160
## 8452     2.0 1470351118
## 8460     2.0 1470350976
## 8461     2.0 1470350951
## 8462     2.0 1470350879
## 8463     2.0 1470350876
## 8469     2.0 1467005824
## 8471     2.0 1470355415
## 8473     2.0 1470350975
## 8476     2.0 1470351000
## 8481     2.0 1470351001
## 8482     2.0 1470350956
## 8485     2.0 1470350834
## 8500     2.0 1470350980
## 8502     2.0 1470350814
## 8504     2.0 1470350817
## 8505     2.0 1467005360
## 8507     2.0 1470350824
## 8512     2.0 1467003213
## 8513     2.0 1470350961
## 8517     2.0 1470350791
## 8518     2.0 1470351794
## 8519     2.0 1470350792
## 8520     1.0 1472530513
## 8521     2.0 1470352323
## 8533     2.0 1470350829
## 8536     2.0 1470350939
## 8539     2.0 1469228080
## 8542     2.0 1470351983
## 8544     2.0 1467009198
## 8548     2.0 1467009678
## 8549     2.0 1470350835
## 8553     2.0 1467007232
## 8557     2.0 1470350809
## 8566     2.0 1467005523
## 8570     2.0 1470350985
## 8580     2.0 1470351003
## 8584     2.0 1467005359
## 8590     2.0 1467006058
## 8591     2.0 1470350855
## 8592     2.0 1470350851
## 8593     2.0 1467005604
## 8596     2.0 1470350845
## 8601     1.0 1467095936
## 8603     1.0 1467005673
## 8606     2.0 1467005222
## 8607     2.0 1467005342
## 8608     2.0 1470350978
## 8614     2.0 1470350955
## 8617     2.0 1470350986
## 8625     2.0 1470350866
## 8637     2.0 1467004435
## 8657     1.0 1467004629
## 8664     2.0 1470350858
## 8665     2.0 1470350948
## 8667     1.0 1473791535
## 8668     2.0 1470350973
## 8671     2.0 1470350882
## 8672     2.0 1467004552
## 8680     2.0 1470350873
## 8682     1.0 1467004544
## 8691     2.0 1470350788
## 8694     1.0 1467004530
## 8700     1.0 1467092453
## 8702     2.0 1467004218
## 8703     2.0 1470350802
## 8706     2.0 1467004578
## 8708     2.0 1470350983
## 8711     1.0 1467092392
## 8718     2.0 1470350793
## 8722     2.0 1474953835
## 8724     2.0 1471306876
## 8729     2.0 1470351005
## 8731     2.0 1470351004
## 8734     2.0 1467092461
## 8737     2.0 1467005297
## 8738     1.0 1467003517
## 8744     2.0 1470350815
## 8745     2.0 1467005244
## 8747     1.0 1470355990
## 8748     2.0 1470350818
## 8751     2.0 1470352041
## 8757     2.0 1470350977
## 8761     2.0 1470350833
## 8766     2.0 1469152845
## 8768     2.0 1467005931
## 8772     2.0 1470350745
## 8777     2.0 1470350805
## 8790     3.0  907762733
## 8796     2.0  907762795
## 8797     3.0  907763065
## 8809     3.0  907764831
## 8812     3.0  907762795
## 8818     3.0  907766060
## 8828     2.0  907765142
## 8829     2.0  907762832
## 8836     2.0  907765142
## 8837     3.0  907765059
## 8849     3.0  907764544
## 8850     3.0  907765939
## 8851     3.0  907765939
## 8859     3.0  907764544
## 8868     3.0  907764584
## 8869     3.0  907765939
## 8870     3.0  907764723
## 8873     3.0  907764431
## 8880     2.0  907765422
## 8881     1.0  907765461
## 8895     3.0  907762885
## 8898     3.0  907765059
## 8902     3.0  907762795
## 8909     3.0  907763245
## 8910     3.0  907762733
## 8911     3.0  907762832
## 8914     2.0  907762795
## 8916     1.0  907761833
## 8917     3.0  907761919
## 8930     3.0  907764389
## 8932     2.0  907765223
## 8933     2.0  907765363
## 8934     1.0  907765329
## 8935     1.0  907765329
## 8936     1.0  907765422
## 8937     1.0  907765461
## 8939     3.0  907765278
## 8940     1.0  907765422
## 8941     2.0  907765329
## 8943     3.0  907765223
## 8944     2.0  907765329
## 8948     3.0  907765223
## 8949     3.0  907764935
## 8951     3.0  907765902
## 8954     2.0  907762001
## 8957     3.0  907765191
## 8958     3.0  907765191
## 8960     2.0  907765363
## 8961     3.0  907765278
## 8965     3.0  907765278
## 8968     2.0  907764584
## 8969     3.0  907765422
## 8970     1.0  907765461
## 8973     3.0  907765059
## 8974     3.0  907764544
## 8975     1.0  907762089
## 8976     3.0  907764470
## 8977     2.0  907765363
## 8987     3.0  907765600
## 8988     3.0  907765142
## 8993     1.0  961127638
## 8995     1.0  961127638
## 8996     3.0  961127638
## 8997     2.0  961128086
## 9000     2.0  961128124
## 9002     2.0  961127724
## 9003     2.0  961128239
## 9006     2.0  961127522
## 9007     2.0  961128178
## 9010     2.0  961127638
## 9015     2.0  961127256
## 9017     3.0  961127834
## 9021     1.0  961128020
## 9022     1.0  961128302
## 9025     2.0  961128239
## 9028     3.0  961127592
## 9029     2.0  961128124
## 9030     2.0  961127480
## 9031     3.0  961127480
## 9032     3.0  961127690
## 9034     2.0  961128302
## 9039     3.0  961127558
## 9041     2.0  961127790
## 9042     2.0  961127761
## 9043     2.0  961127256
## 9044     1.0  961128302
## 9048     2.0  961127638
## 9049     3.0  961128269
## 9052     2.0  961127558
## 9058     1.0  961127407
## 9060     3.0  961127923
## 9061     1.0  961127256
## 9064     3.0  961127639
## 9065     2.5 1144755845
## 9068     2.5 1144755826
## 9070     3.5 1144755802
## 9071     2.0 1144756058
## 9072     1.0 1144756054
## 9075     2.5 1144756299
## 9076     1.5 1144756051
## 9077     0.5 1144756048
## 9078     1.5 1144755842
## 9083     0.5 1144756031
## 9084     3.5 1144756028
## 9085     3.5 1144756398
## 9090     1.5 1144755833
## 9093     3.5 1144756013
## 9094     3.5 1144755855
## 9096     0.5 1144755869
## 9098     1.5 1144756203
## 9099     3.0 1144755873
## 9100     3.5 1144755823
## 9101     2.5 1144756199
## 9102     1.5 1144756004
## 9103     1.0 1144756192
## 9104     0.5 1144756188
## 9106     0.5 1144756181
## 9107     3.5 1144756178
## 9108     3.5 1144756175
## 9110     3.5 1144755999
## 9111     0.5 1144756164
## 9112     2.0 1144756161
## 9114     1.0 1144756153
## 9115     1.5 1144756141
## 9116     1.5 1144755852
## 9118     2.0 1144755809
## 9119     1.5 1144756134
## 9120     3.0 1144756128
## 9123     1.5 1144755795
## 9126     1.0 1144756112
## 9128     3.5 1144756106
## 9129     0.5 1144756094
## 9130     1.5 1144755866
## 9132     3.5 1144756101
## 9133     3.0 1144756087
## 9140     3.5 1144756276
## 9141     2.0 1144756332
## 9144     3.0 1125829035
## 9147     3.5 1125828860
## 9152     2.5 1125828818
## 9154     3.5 1125829207
## 9162     1.5 1125828900
## 9163     2.5 1125828872
## 9168     3.5 1125828850
## 9174     3.5 1125829108
## 9175     3.5 1125829131
## 9177     3.0 1125829042
## 9184     3.0 1125828855
## 9189     3.0 1125829047
## 9195     3.0 1125828995
## 9198     3.5 1216051639
## 9199     2.0 1216050806
## 9200     2.5 1216052245
## 9203     1.5 1216486613
## 9205     3.5 1216052001
## 9206     3.5 1216050872
## 9208     1.5 1216052048
## 9209     3.5 1216487185
## 9210     3.0 1216050910
## 9212     3.0 1216050688
## 9214     3.0 1217176111
## 9215     3.5 1216051901
## 9216     2.5 1216050607
## 9217     2.0 1216486577
## 9218     1.5 1216050050
## 9219     2.5 1216487081
## 9220     2.0 1216487462
## 9221     2.5 1216050212
## 9222     3.0 1216050981
## 9223     3.5 1216052355
## 9224     3.0 1216050143
## 9225     3.0 1216487383
## 9226     3.5 1216052159
## 9227     2.5 1216487645
## 9229     3.0 1216486917
## 9230     2.0 1216050704
## 9231     3.5 1216050633
## 9234     2.5 1217176086
## 9235     3.5 1216051628
## 9236     2.5 1216487574
## 9237     3.5 1216051765
## 9239     3.5 1216050812
## 9240     2.0 1216052066
## 9242     2.0 1216051712
## 9244     2.5 1216487345
## 9245     2.5 1216051756
## 9246     1.5 1216050040
## 9247     2.5 1216052376
## 9248     3.5 1216051647
## 9249     2.5 1216487259
## 9250     3.0 1216487390
## 9251     2.5 1216050185
## 9252     3.0 1216486970
## 9253     2.0 1216486558
## 9254     2.0 1216050841
## 9255     3.0 1216486754
## 9257     3.5 1216050771
## 9258     2.0 1216050083
## 9262     3.0 1216050558
## 9263     3.0 1216487170
## 9264     1.0 1216052021
## 9267     3.0 1216487450
## 9268     1.0 1216050711
## 9269     2.5 1216050152
## 9270     1.5 1216050859
## 9271     3.0 1216487130
## 9272     1.5 1216487195
## 9273     2.5 1217175695
## 9274     3.5 1217175825
## 9275     3.5 1216051015
## 9276     3.5 1216050580
## 9278     2.5 1216486820
## 9279     3.0 1216050489
## 9280     3.5 1216487437
## 9281     3.0 1216050661
## 9283     3.5 1216051026
## 9285     1.0 1216487083
## 9286     3.5 1217175814
## 9287     3.0 1216051664
## 9288     1.5 1216052029
## 9290     3.5 1216050163
## 9291     3.0 1216050722
## 9294     2.5 1217175803
## 9296     3.5 1216051752
## 9297     3.0 1216050500
## 9298     1.5 1216050627
## 9299     2.5 1216050335
## 9301     3.0 1216486831
## 9304     2.0 1216050274
## 9306     2.0 1216050747
## 9307     2.5 1217175562
## 9308     0.5 1216052075
## 9309     3.0 1217175793
## 9310     3.5 1216486608
## 9312     2.5 1217176199
## 9314     3.5 1216487236
## 9315     1.5 1216051039
## 9316     2.0 1216052080
## 9317     2.5 1216487374
## 9318     2.0 1217176162
## 9321     2.5 1216487036
## 9323     3.0 1216487165
## 9325     2.5 1216051161
## 9328     1.0 1216050246
## 9329     2.5 1216052363
## 9331     3.5 1216051047
## 9335     3.5 1216051666
## 9336     2.5 1216051984
## 9341     3.0 1216487179
## 9342     1.0 1216051188
## 9344     2.5 1216050332
## 9346     2.5 1216051008
## 9347     2.5 1216050692
## 9349     2.5 1217424458
## 9350     3.5 1216050821
## 9354     3.0 1216052146
## 9355     2.5 1217175527
## 9357     3.0 1216487091
## 9362     3.0 1216486663
## 9366     3.5 1451359418
## 9378     3.5 1452916989
## 9383     3.5 1451707886
## 9389     3.0 1451708608
## 9390     3.0 1451708709
## 9392     3.5 1451708254
## 9393     3.5 1451712467
## 9401     3.0 1451706920
## 9404     3.0 1451178678
## 9405     3.0 1451406848
## 9406     3.5 1451706930
## 9409     1.5 1465535480
## 9411     3.5 1453472303
## 9418     3.5 1079098249
## 9420     0.5 1075307034
## 9421     3.0 1075307039
## 9423     0.5 1075307036
## 9424     0.5 1075307056
## 9426     1.0 1075307064
## 9428     3.5 1079098188
## 9430     3.0 1078570670
## 9432     1.0 1075307062
## 9433     3.0 1079098254
## 9437     2.5 1075307060
## 9438     1.5 1076324016
## 9441     0.5 1076324074
## 9446     1.5 1075307020
## 9447     1.0 1075307065
## 9450     2.0 1079098251
## 9452     3.0 1076324009
## 9454     3.5 1079098265
## 9456     1.0 1076324059
## 9457     1.0 1076324000
## 9462     3.0 1078570723
## 9465     3.5 1078570725
## 9468     2.5 1079098501
## 9469     1.0 1078570715
## 9471     2.0 1078570716
## 9478     3.0 1079098192
## 9489     2.0 1078570684
## 9493     2.0 1078570672
## 9499     2.5 1079098205
## 9509     2.5 1076324031
## 9513     3.5 1079098342
## 9515     3.0  843159644
## 9517     3.0  843159716
## 9518     3.0  843159967
## 9519     3.0  843159770
## 9525     2.0  843159716
## 9534     3.0  843159967
## 9538     2.0  945118660
## 9543     2.0  945118792
## 9546     2.0  945150351
## 9548     3.0  945118543
## 9550     3.0  945150278
## 9555     3.0  945149834
## 9563     2.0  974599486
## 9564     2.0  974597659
## 9583     3.0  974600108
## 9588     3.0  974600728
## 9589     3.0  974599861
## 9590     3.0  974600572
## 9592     2.0  974599543
## 9599     3.0  974599434
## 9600     3.0  974600144
## 9601     2.0  974600286
## 9602     3.0  974599773
## 9607     3.0  974600703
## 9610     3.0  974598446
## 9611     3.0  854711770
## 9613     3.0  854711916
## 9619     3.0  854714498
## 9622     3.0  854711772
## 9624     3.0  854711958
## 9625     3.0  854711941
## 9626     1.0  854711771
## 9627     3.0  854711830
## 9628     3.0  854711884
## 9630     3.0  854711804
## 9631     1.0  854711771
## 9634     3.0  854715870
## 9637     3.0  854713176
## 9645     3.0  854714394
## 9648     3.0  854713245
## 9651     3.0  854714421
## 9654     1.0  854713245
## 9656     3.0  854715869
## 9660     2.0  854715870
## 9662     2.0  854714246
## 9664     3.0  854714439
## 9671     3.0  854714302
## 9676     3.0  854714282
## 9679     3.0  854715905
## 9683     3.0  854711916
## 9687     3.0  854711862
## 9688     3.0  854711941
## 9689     3.0  854711862
## 9690     3.0  854711771
## 9692     3.0  854711830
## 9693     3.0  854712785
## 9694     3.0  854711978
## 9696     3.0  854711830
## 9698     3.0  854711916
## 9699     1.0  854711884
## 9700     3.0  854711916
## 9703     2.0  854711884
## 9705     3.0  854711830
## 9706     3.0  854711830
## 9707     3.0  854712006
## 9708     3.0  854711916
## 9710     3.0  854714227
## 9715     3.0 1249809905
## 9716     3.5 1249808221
## 9718     3.0 1219476836
## 9719     3.0 1249808197
## 9722     3.0 1219477266
## 9726     3.0 1194740982
## 9729     3.5 1194741627
## 9730     3.5 1219477297
## 9731     3.5 1194741800
## 9732     3.5 1219477374
## 9734     3.5 1194741795
## 9735     3.5 1194741615
## 9736     3.0 1249809470
## 9737     2.5 1249807905
## 9738     3.5 1249809424
## 9743     3.5 1194741164
## 9744     3.5 1194741234
## 9747     3.0 1194743811
## 9749     3.5 1194741096
## 9751     3.5 1194742491
## 9753     3.5 1194741774
## 9763     3.5 1194741082
## 9766     3.0 1249809495
## 9771     2.5 1194741124
## 9772     3.5 1249808019
## 9774     3.5 1194741217
## 9776     3.5 1194741010
## 9778     3.5 1249808373
## 9779     3.5 1194742620
## 9780     3.5 1194742605
## 9782     1.0 1249809623
## 9783     3.5 1194740954
## 9784     1.5 1249808007
## 9785     3.0 1249807997
## 9787     2.5 1194743883
## 9789     3.0 1194740965
## 9792     3.5 1194741657
## 9793     3.5 1194744286
## 9794     3.5 1249809788
## 9797     3.5 1249807965
## 9798     3.5 1194744599
## 9800     3.5 1194741843
## 9804     1.5 1249807943
## 9805     3.5 1194744481
## 9806     3.5 1194744514
## 9807     3.0 1249807928
## 9808     3.0 1194741828
## 9810     3.5 1194744593
## 9811     1.0 1194741643
## 9812     3.5 1194741823
## 9814     3.0 1194741682
## 9816     3.0 1194742776
## 9819     3.5 1249808268
## 9822     3.5 1255153332
## 9824     2.5 1219474832
## 9825     3.0 1194742092
## 9826     3.0 1194742744
## 9828     3.5 1346824829
## 9830     2.5 1194741316
## 9831     3.5 1194744575
## 9832     3.5 1194744487
## 9833     3.5 1249809801
## 9834     3.5 1194744213
## 9835     3.5 1202605564
## 9838     3.5 1366831701
## 9845     3.0 1366831962
## 9848     3.5 1366831100
## 9854     3.5 1348153638
## 9855     3.5 1366831784
## 9856     3.5 1366831290
## 9861     3.0 1366831955
## 9863     2.0 1366831769
## 9867     3.0 1366831950
## 9873     3.5 1348153569
## 9877     3.5 1366831929
## 9882     2.5 1366831811
## 9883     3.5 1348153818
## 9884     1.0 1348153829
## 9889     3.5 1348153794
## 9895     2.5 1348153841
## 9897     0.5 1348153863
## 9898     3.5 1366831871
## 9899     3.5 1366831839
## 9900     3.5 1348153974
## 9902     3.5 1366831823
## 9907     3.5 1366831708
## 9915     3.0 1348154058
## 9921     3.0  853954323
## 9922     3.0  853954486
## 9923     3.0  853954577
## 9924     3.0  853954402
## 9935     3.0  853954577
## 9941     3.0  853954814
## 9945     3.0  853954401
## 9951     3.0  853954323
## 9957     3.0  853954485
## 9958     3.0  853954656
## 9959     3.0  853954235
## 9962     3.0  853954814
## 9964     3.0  853954729
## 9965     3.0  853954814
## 9972     3.0  853954577
## 9975     3.0  853954485
## 9976     3.0  853954577
## 9978     3.0  853954729
## 9979     3.0  853954656
## 9982     3.0  853954402
## 9989     3.0  853954814
## 10002    3.0  974659502
## 10014    3.0  974659023
## 10021    3.0  974659408
## 10024    3.5 1461778737
## 10025    2.5 1461784724
## 10026    3.5 1461784392
## 10028    3.5 1461784365
## 10029    3.5 1461784569
## 10030    3.0 1461778719
## 10034    3.0 1461778746
## 10037    3.5 1461778557
## 10041    3.5 1461784591
## 10043    3.0 1461784428
## 10044    3.0 1461778739
## 10045    3.0 1461784475
## 10051    3.5 1461784644
## 10053    3.0 1461778751
## 10054    3.5 1461784424
## 10055    3.5 1461784642
## 10056    2.5 1461778617
## 10057    3.5 1461784345
## 10059    3.5 1461778611
## 10060    3.5 1461778692
## 10061    3.0 1461784613
## 10062    3.5 1461784742
## 10065    3.0 1461784637
## 10067    3.0 1461784599
## 10068    3.0 1461778600
## 10069    3.0 1461778760
## 10070    1.5 1461784035
## 10071    2.5 1461783967
## 10072    3.0 1461783836
## 10073    3.0 1461783926
## 10074    3.5 1461784442
## 10075    3.5 1461783857
## 10076    3.5 1461783923
## 10077    3.0 1461784071
## 10079    1.5 1461784048
## 10080    3.5 1461783915
## 10082    2.5 1461783988
## 10084    3.0 1461784367
## 10085    3.0 1461784065
## 10086    3.5 1461784011
## 10088    3.0 1461783845
## 10089    3.0 1461783869
## 10090    3.5 1461783841
## 10091    3.5 1461783980
## 10092    3.0 1461778717
## 10093    3.5 1461783881
## 10094    2.5 1461783975
## 10095    3.0 1461783872
## 10096    3.0 1461784578
## 10097    3.0 1461783889
## 10098    3.5 1461783865
## 10099    3.0 1461784050
## 10100    2.5 1461784730
## 10101    3.0 1461778734
## 10102    3.5 1461783920
## 10103    3.5 1461783992
## 10104    2.5 1461784606
## 10105    3.0 1461783846
## 10106    3.5 1461783983
## 10107    3.0 1461783838
## 10109    3.0 1461784038
## 10110    3.5 1461783871
## 10111    2.0 1461783970
## 10112    3.0 1461784533
## 10113    3.5 1461783960
## 10114    3.0 1461778706
## 10115    3.0 1461784490
## 10116    3.5 1461783867
## 10117    3.0 1461783898
## 10118    2.5 1461784661
## 10119    3.5 1461784505
## 10120    3.0 1461784473
## 10121    3.0 1461783972
## 10122    3.5 1461784759
## 10123    2.0 1461783887
## 10124    3.0 1461784763
## 10125    3.0 1461783896
## 10126    3.5 1461784702
## 10127    3.0 1461784573
## 10128    3.5 1461784364
## 10129    3.5 1461784711
## 10130    2.5 1461784674
## 10131    3.0 1461783948
## 10132    3.0 1461784566
## 10133    3.0 1461784585
## 10134    3.5 1461783951
## 10135    3.5 1461784370
## 10136    3.0 1461783936
## 10138    3.0 1464722875
## 10139    3.0 1464723963
## 10140    3.0 1461783977
## 10141    3.5 1464723975
## 10142    1.5 1464722915
## 10143    2.5 1464722908
## 10144    3.5 1464723971
## 10145    3.0 1464722892
## 10146    2.5 1464723952
## 10147    3.5 1464723990
## 10148    3.0 1464723959
## 10149    2.0 1461784655
## 10150    2.5 1464723939
## 10151    3.0 1464723955
## 10152    3.5 1464722900
## 10153    3.0 1461783945
## 10154    3.0 1461784582
## 10155    3.5 1464723948
## 10156    3.5 1461784515
## 10157    3.5 1464723984
## 10158    3.0 1464723945
## 10160    3.0 1464722878
## 10162    3.5 1464723967
## 10164    3.5 1461778714
## 10165    3.0 1461784352
## 10167    3.5 1461784770
## 10168    3.5 1461784524
## 10169    3.5 1461783955
## 10170    2.0 1461784744
## 10171    3.0 1461784013
## 10173    2.0 1461784029
## 10174    2.0 1461783938
## 10175    3.0 1461784053
## 10176    3.5 1461778701
## 10177    3.0 1461784665
## 10178    3.5 1461784766
## 10179    3.5 1461784449
## 10180    3.5 1461784739
## 10181    3.5 1461784720
## 10182    3.0 1461784574
## 10183    3.5 1461784563
## 10184    3.5 1461784704
## 10185    2.5 1461784358
## 10186    3.0 1461778763
## 10189    2.5 1461784734
## 10190    3.0 1461784588
## 10191    3.5 1461778748
## 10192    3.0 1461784567
## 10193    2.5 1461784749
## 10194    3.5 1461784700
## 10195    3.5 1461784437
## 10196    3.5 1461784698
## 10197    3.5 1461784548
## 10199    3.5 1461778724
## 10200    3.5 1461784387
## 10201    3.0 1461784379
## 10202    1.0 1461784707
## 10203    3.5 1461784342
## 10204    3.5 1461778744
## 10205    3.5 1461784635
## 10207    3.0 1461778642
## 10208    3.0 1461778637
## 10209    3.0 1461778586
## 10210    3.5 1461778626
## 10211    1.0 1461784183
## 10212    3.5 1461784683
## 10213    3.0 1461778632
## 10214    2.0 1461784162
## 10216    2.5 1255595527
## 10218    3.0 1255591764
## 10219    2.5 1255593501
## 10221    1.5 1255501766
## 10222    3.5 1255597031
## 10224    3.5 1255591860
## 10226    2.5 1255606447
## 10229    3.0 1255596165
## 10231    2.0 1255608841
## 10233    2.0 1470720095
## 10234    3.5 1304411684
## 10235    2.0 1255587668
## 10237    3.5 1255596154
## 10238    3.0 1406172306
## 10239    3.5 1312496282
## 10240    2.5 1255843848
## 10241    3.0 1255742407
## 10243    3.5 1255502716
## 10244    3.5 1348568488
## 10245    3.0 1255596442
## 10247    3.5 1286701620
## 10248    1.0 1281668214
## 10249    2.0 1255608880
## 10250    3.0 1255506790
## 10251    3.5 1255505013
## 10252    3.5 1255608532
## 10253    2.5 1256018505
## 10254    0.5 1255587428
## 10255    3.5 1255503714
## 10256    3.0 1255587153
## 10258    3.0 1470720332
## 10259    3.5 1255593273
## 10260    2.5 1256030057
## 10261    3.0 1266049987
## 10263    3.0 1255503373
## 10267    3.5 1264835146
## 10270    3.0 1437711199
## 10273    3.5 1255506785
## 10274    2.5 1369513505
## 10275    2.0 1470720392
## 10278    3.0 1304411765
## 10279    3.5 1255844977
## 10280    3.0 1255597661
## 10284    3.0 1256029728
## 10288    2.5 1255849588
## 10289    2.0 1255609029
## 10290    3.5 1285414310
## 10291    3.0 1255593485
## 10292    2.0 1255501759
## 10293    3.0 1256029720
## 10294    3.5 1470720434
## 10298    2.0 1255947440
## 10299    3.0 1457597096
## 10300    2.5 1255597004
## 10301    3.0 1256030041
## 10302    3.0 1255594331
## 10303    3.5 1280749457
## 10304    2.5 1255501745
## 10305    2.5 1255597090
## 10306    2.5 1255596999
## 10308    3.5 1255502945
## 10309    2.5 1304412304
## 10310    3.5 1255508982
## 10311    3.5 1304412090
## 10314    2.5 1304411724
## 10316    3.5 1255608640
## 10318    3.5 1255507407
## 10320    3.0 1287294447
## 10322    3.5 1255845005
## 10323    3.5 1272354528
## 10324    3.0 1470720213
## 10325    3.5 1470896986
## 10327    0.5 1255593983
## 10328    3.5 1470720182
## 10330    3.0 1255850852
## 10333    3.5 1255844972
## 10336    3.5 1255596533
## 10337    2.5 1470719734
## 10338    3.5 1255608112
## 10340    3.0 1255595915
## 10344    3.5 1255844780
## 10346    3.5 1255844932
## 10347    3.0 1256030046
## 10349    1.5 1398568108
## 10351    3.0 1470720316
## 10352    3.0 1255845002
## 10353    2.5 1256030164
## 10354    3.0 1255506758
## 10355    3.0 1470720292
## 10356    3.0 1470720380
## 10357    2.5 1256018210
## 10358    2.5 1422335223
## 10359    3.0 1256029754
## 10361    1.5 1255608540
## 10362    2.5 1256030591
## 10364    2.5 1470720372
## 10366    3.5 1283940897
## 10367    2.5 1470720219
## 10369    3.5 1457596624
## 10370    1.0 1255591836
## 10371    3.5 1304411666
## 10372    2.0 1398568202
## 10373    2.5 1255606772
## 10374    3.5 1348567967
## 10375    3.0 1418785517
## 10376    2.5 1256030174
## 10377    3.5 1255500962
## 10379    2.5 1255849976
## 10383    1.5 1255501638
## 10386    3.5 1470720223
## 10387    3.0 1255594607
## 10388    3.5 1303464880
## 10389    3.5 1279948049
## 10390    3.5 1337594349
## 10391    3.0 1256030424
## 10392    3.0 1255595609
## 10393    3.5 1282638702
## 10395    3.5 1255743474
## 10396    3.5 1255609078
## 10400    3.5 1255844891
## 10402    2.0 1255595979
## 10403    3.5 1411355622
## 10405    3.5 1255595920
## 10406    3.5 1255609131
## 10409    3.0 1255508109
## 10412    3.5 1280749995
## 10430    3.5 1270610619
## 10433    3.0 1255608634
## 10437    3.5 1432525150
## 10439    3.5 1256030107
## 10444    3.5 1280749968
## 10454    3.5 1312496151
## 10455    2.5 1255587965
## 10458    1.5 1255591944
## 10459    3.5 1267705570
## 10460    2.0 1255593963
## 10461    3.5 1255501914
## 10462    3.0 1255501035
## 10463    3.0 1255500860
## 10464    3.0 1348567962
## 10467    3.5 1255844967
## 10468    3.0 1255608055
## 10469    3.5 1437103984
## 10471    2.0 1470720209
## 10472    2.5 1470719755
## 10473    3.0 1255502875
## 10474    3.5 1261667770
## 10476    3.5 1281668223
## 10479    3.0 1255591429
## 10483    3.5 1255500918
## 10485    3.0 1398567944
## 10486    2.5 1255501084
## 10487    1.0 1255586834
## 10488    3.5 1409205998
## 10490    2.5 1255609223
## 10491    3.5 1304411853
## 10492    2.0 1255502015
## 10494    3.0 1255843935
## 10495    3.5 1255591360
## 10496    3.5 1255509163
## 10497    3.0 1256030207
## 10498    2.5 1255597293
## 10499    0.5 1255597075
## 10501    3.5 1331374345
## 10502    3.0 1255607723
## 10503    3.0 1460517728
## 10506    3.0 1256028479
## 10507    0.5 1255586362
## 10508    3.5 1255596053
## 10509    1.0 1255589046
## 10510    2.5 1255597219
## 10511    3.5 1255501843
## 10514    3.5 1311319246
## 10515    1.5 1255849480
## 10516    3.0 1255609000
## 10517    3.5 1295875283
## 10519    3.5 1457597070
## 10520    3.0 1255596853
## 10521    1.5 1255507319
## 10523    2.0 1255596139
## 10525    1.5 1255845284
## 10526    0.5 1256552857
## 10527    3.5 1255502846
## 10530    2.0 1255593683
## 10532    0.5 1255503138
## 10533    3.5 1406172191
## 10534    3.0 1256030295
## 10535    3.0 1257239744
## 10537    3.5 1369514567
## 10538    2.5 1255596509
## 10539    1.0 1255588837
## 10540    3.5 1272354630
## 10541    3.0 1470720028
## 10542    1.0 1255589167
## 10543    2.5 1437709517
## 10544    1.0 1255849486
## 10545    3.5 1255594560
## 10546    3.5 1437709512
## 10547    3.0 1411355597
## 10550    2.0 1255591355
## 10551    2.5 1255596503
## 10552    3.0 1255591350
## 10553    3.5 1272355372
## 10556    3.5 1431232609
## 10559    3.5 1255845278
## 10561    3.5 1255742786
## 10568    3.0 1437103998
## 10571    2.5 1255595963
## 10573    3.5 1411452543
## 10574    2.5 1255595957
## 10576    3.5 1303464933
## 10577    3.5 1470720309
## 10578    3.5 1255608711
## 10579    2.5 1304412471
## 10580    2.5 1304411648
## 10583    3.5 1378180034
## 10584    3.5 1303464871
## 10585    3.5 1282545301
## 10586    3.5 1255844937
## 10587    3.5 1279948023
## 10588    3.5 1437711085
## 10590    3.0 1256027987
## 10591    3.0 1255500870
## 10594    3.5 1255506668
## 10599    3.5 1261656636
## 10600    3.5 1300947005
## 10602    3.5 1255844084
## 10603    3.0 1255596126
## 10604    3.0 1418786181
## 10605    3.5 1261656735
## 10606    1.0 1255589018
## 10607    3.0 1256030336
## 10611    3.0 1304411810
## 10614    3.5 1411876538
## 10616    3.5 1348568537
## 10620    3.5 1255593907
## 10621    3.5 1255502070
## 10622    3.0 1255844988
## 10624    2.5 1255587644
## 10626    3.0 1256030202
## 10627    3.5 1255608781
## 10628    3.5 1441522263
## 10630    3.0 1255502470
## 10631    0.5 1256028414
## 10632    2.5 1255742368
## 10633    3.0 1255594309
## 10635    3.5 1369513448
## 10636    3.5 1255504073
## 10637    3.5 1454042117
## 10638    3.5 1431234283
## 10641    3.0 1255593426
## 10642    3.5 1255593420
## 10643    3.0 1255586748
## 10644    3.0 1275964632
## 10646    3.0 1255507270
## 10647    3.5 1255844856
## 10648    2.0 1255844835
## 10651    3.0 1427170376
## 10652    1.5 1255597066
## 10654    2.0 1255850016
## 10655    2.0 1255593663
## 10657    3.5 1261487007
## 10660    3.0 1441522359
## 10662    3.0 1474615000
## 10663    3.5 1255844950
## 10664    3.5 1274265898
## 10666    3.5 1406171915
## 10668    2.0 1256030469
## 10670    3.0 1469772944
## 10671    1.0 1255586425
## 10674    3.5 1437709524
## 10676    3.0 1427170447
## 10679    2.0 1256030461
## 10680    3.5 1369514518
## 10681    3.5 1464751460
## 10682    2.5 1255591345
## 10683    2.0 1256944354
## 10684    3.0 1437709506
## 10685    3.0 1255596353
## 10688    3.0 1255597830
## 10689    3.0 1255502120
## 10690    3.5 1255844776
## 10691    2.0 1255586467
## 10692    3.5 1255501979
## 10694    3.5 1255591385
## 10696    1.5 1255947627
## 10698    3.0 1282545112
## 10699    1.0 1255587084
## 10700    2.5 1472698650
## 10701    3.0 1256019289
## 10702    2.5 1304412607
## 10704    3.0 1369513635
## 10705    3.0 1259325836
## 10706    2.5 1257229357
## 10708    3.0 1255591390
## 10709    3.5 1255501853
## 10710    3.5 1273043702
## 10711    3.0 1255844915
## 10713    2.0 1255596937
## 10716    3.0 1348568560
## 10717    3.5 1255506106
## 10720    3.5 1255849777
## 10721    3.5 1348568747
## 10722    3.5 1255509017
## 10723    3.0 1464508137
## 10724    3.5 1456038664
## 10725    3.5 1411355584
## 10734    2.5 1255849720
## 10736    3.5 1432523188
## 10737    1.0 1255586415
## 10739    3.5 1255607717
## 10742    3.5 1406172160
## 10744    3.5 1261487189
## 10747    3.5 1255596722
## 10750    3.0 1255509153
## 10751    3.0 1337594327
## 10752    2.5 1255503566
## 10753    2.5 1255500985
## 10754    3.5 1256018249
## 10757    2.5 1474615285
## 10759    2.0 1255743364
## 10760    3.5 1257228558
## 10762    3.5 1255845019
## 10763    2.5 1255845250
## 10765    2.5 1255608868
## 10767    3.5 1255508823
## 10770    3.5 1304411787
## 10771    2.5 1256028073
## 10772    2.5 1255500852
## 10773    3.0 1256030417
## 10776    3.5 1475124680
## 10777    2.5 1255607878
## 10778    3.5 1255507224
## 10780    3.5 1369514944
## 10782    3.5 1279948734
## 10783    3.5 1261572674
## 10787    3.5 1255742725
## 10788    3.5 1255592969
## 10789    3.0 1255586543
## 10790    1.5 1255586548
## 10791    3.5 1255597612
## 10792    3.0 1264493967
## 10796    3.5 1255597607
## 10798    3.5 1282543451
## 10801    3.0 1255506079
## 10802    2.0 1255594378
## 10803    0.5 1255588774
## 10804    0.5 1255588780
## 10807    0.5 1255588769
## 10808    2.5 1255591380
## 10809    2.0 1255608746
## 10810    3.0 1255595938
## 10812    3.5 1469772991
## 10813    3.0 1255844919
## 10816    2.5 1258367323
## 10817    3.5 1258367400
## 10818    3.5 1259389532
## 10820    3.5 1370057557
## 10821    3.5 1464751470
## 10824    3.5 1255596218
## 10825    3.5 1259325859
## 10826    2.0 1255608143
## 10827    2.5 1255594368
## 10828    3.0 1255597273
## 10829    3.0 1255844941
## 10831    3.0 1255591794
## 10832    2.5 1255608592
## 10833    1.5 1255608249
## 10834    1.5 1257229260
## 10836    3.5 1261573299
## 10837    2.5 1255596214
## 10838    1.5 1255742451
## 10840    3.5 1255844895
## 10841    3.0 1262826535
## 10844    3.5 1312496194
## 10845    3.0 1304411604
## 10846    3.0 1255742998
## 10847    2.5 1255586357
## 10848    3.5 1255849638
## 10851    2.0 1255608483
## 10852    0.5 1255503033
## 10853    3.0 1369513586
## 10854    2.5 1255596840
## 10855    3.5 1255591337
## 10856    3.0 1257229345
## 10861    2.5 1255742448
## 10862    3.0 1255597278
## 10863    3.0 1255845245
## 10864    3.0 1255594363
## 10865    2.5 1256030443
## 10868    2.0 1255608233
## 10869    1.5 1456038994
## 10870    3.5 1255609092
## 10873    3.5 1255845024
## 10874    3.5 1437710061
## 10875    3.0 1418462162
## 10876    3.5 1255844881
## 10877    3.5 1255849756
## 10879    0.5 1255596198
## 10881    2.5 1255608478
## 10882    0.5 1255592082
## 10884    2.5 1255596703
## 10886    2.5 1256019294
## 10888    2.5 1257228611
## 10889    1.0 1255849364
## 10890    2.0 1255845363
## 10891    2.5 1255596208
## 10892    3.5 1255507158
## 10895    1.5 1257229023
## 10897    2.5 1255609063
## 10898    3.5 1255844800
## 10899    2.0 1255596203
## 10900    3.5 1255506563
## 10901    3.5 1457597545
## 10903    3.0 1428469574
## 10906    1.5 1255608385
## 10907    3.5 1456038999
## 10908    3.5 1256944285
## 10910    3.5 1370057531
## 10912    3.0 1255593845
## 10914    3.5 1255596109
## 10916    3.5 1427170442
## 10917    3.5 1406172273
## 10918    2.5 1296952145
## 10919    2.0 1255505425
## 10921    3.0 1255594496
## 10924    2.5 1255742990
## 10925    3.5 1448953270
## 10926    3.0 1255845239
## 10928    3.0 1255596106
## 10929    3.5 1304411492
## 10930    1.5 1255608222
## 10931    3.0 1255591538
## 10932    1.5 1255594879
## 10933    0.5 1255606781
## 10934    3.5 1255509080
## 10936    2.0 1255594188
## 10937    3.0 1255844809
## 10939    3.5 1272355409
## 10941    3.5 1306826998
## 10945    3.0 1255608487
## 10946    2.5 1255607838
## 10947    3.0 1312496381
## 10948    2.0 1456039352
## 10949    3.5 1331374381
## 10950    3.5 1255844964
## 10951    3.0 1255844032
## 10952    3.5 1272354473
## 10954    3.5 1255591532
## 10955    3.0 1406172104
## 10956    3.0 1255504768
## 10961    3.0 1256030678
## 10962    3.5 1255592071
## 10963    3.0 1255742674
## 10965    0.5 1255586200
## 10967    3.0 1255606569
## 10968    3.5 1369514322
## 10970    3.0 1256030657
## 10971    3.0 1456039054
## 10974    3.5 1448953334
## 10975    3.5 1435472845
## 10976    3.0 1304411962
## 10977    3.0 1255844887
## 10979    3.5 1448953194
## 10980    3.0 1255593557
## 10981    3.5 1395987921
## 10982    3.0 1460517505
## 10983    2.0 1456039090
## 10986    3.0 1255591376
## 10987    3.0 1255591889
## 10988    3.0 1304411695
## 10989    3.0 1256017396
## 10990    3.0 1255503508
## 10991    3.0 1255503893
## 10992    1.0 1256030597
## 10993    2.0 1255608382
## 10994    3.0 1456039073
## 10995    3.5 1304412191
## 10996    2.0 1255849610
## 10997    2.5 1255609142
## 10998    0.5 1255742979
## 10999    1.5 1255503888
## 11000    2.0 1456039270
## 11002    2.5 1337594371
## 11003    1.5 1257164626
## 11004    2.5 1256029172
## 11005    1.0 1255587508
## 11006    3.5 1431406170
## 11008    2.0 1427170483
## 11009    3.5 1255850919
## 11013    3.0 1255595533
## 11015    2.5 1255587123
## 11016    2.5 1256029535
## 11017    3.5 1256029550
## 11018    2.5 1255588990
## 11019    2.0 1255588995
## 11021    3.5 1255501720
## 11022    3.0 1312496408
## 11023    3.5 1406172340
## 11026    2.0 1456039316
## 11027    2.0 1456039164
## 11030    3.5 1279948760
## 11031    3.5 1255503878
## 11034    1.5 1255608120
## 11037    3.0 1411355691
## 11038    3.5 1369513550
## 11039    0.5 1255503002
## 11040    3.5 1255844960
## 11041    2.0 1456039319
## 11042    2.5 1456039235
## 11043    2.5 1255849679
## 11045    3.0 1432523137
## 11046    2.5 1304411827
## 11047    0.5 1255586932
## 11048    3.5 1255503222
## 11050    3.5 1417081916
## 11051    3.0 1369514779
## 11052    2.0 1255596285
## 11053    2.5 1255591371
## 11055    3.0 1417081929
## 11056    2.5 1309414298
## 11057    3.0 1369515372
## 11059    3.0 1255501671
## 11060    1.5 1255843864
## 11061    0.5 1257229292
## 11062    2.0 1255503487
## 11064    2.0 1255595377
## 11066    3.0 1369513547
## 11067    2.5 1257229160
## 11068    0.5 1255589036
## 11069    3.0 1427170631
## 11070    3.0 1464508095
## 11071    0.5 1256029804
## 11072    1.5 1256028643
## 11073    3.5 1460519359
## 11074    1.5 1255742653
## 11076    3.0 1337594381
## 11077    1.5 1255587133
## 11078    2.5 1348567959
## 11082    3.5 1457596987
## 11084    3.5 1289045130
## 11087    3.0 1255591789
## 11089    3.0 1471332819
## 11090    3.5 1264405832
## 11091    2.5 1257228185
## 11094    3.5 1369514741
## 11095    2.0 1464508090
## 11096    3.5 1257222707
## 11097    2.0 1255503478
## 11098    2.0 1255596893
## 11099    3.0 1441513227
## 11100    3.0 1255593542
## 11101    3.5 1255588164
## 11102    2.0 1255607831
## 11103    3.0 1279947114
## 11107    3.5 1261656678
## 11108    3.5 1454042575
## 11109    3.0 1256029303
## 11113    3.0 1261486850
## 11115    2.5 1256030436
## 11116    2.0 1255594326
## 11118    2.0 1456039242
## 11120    3.5 1255849692
## 11122    3.5 1255594489
## 11123    3.5 1474614697
## 11125    3.0 1255591876
## 11126    2.5 1257164378
## 11127    2.5 1255596889
## 11128    3.0 1288095855
## 11129    3.0 1255591517
## 11131    2.0 1260977308
## 11132    3.5 1304412434
## 11133    3.5 1255503212
## 11134    3.0 1255844992
## 11137    3.5 1255606539
## 11138    1.5 1255743175
## 11139    2.0 1255595662
## 11143    1.5 1256559095
## 11144    3.5 1279948092
## 11146    2.5 1287575320
## 11148    3.0 1255503838
## 11149    2.5 1255586520
## 11150    3.5 1423801745
## 11152    3.5 1448953187
## 11153    3.5 1435474813
## 11156    3.5 1303464741
## 11157    3.0 1255742433
## 11158    1.5 1255589173
## 11159    3.5 1312496376
## 11160    3.0 1456039039
## 11161    1.0 1256029799
## 11162    2.5 1256030665
## 11163    3.5 1255844984
## 11164    3.5 1411451654
## 11165    2.5 1427170338
## 11166    3.0 1255596174
## 11168    2.0 1456039261
## 11169    3.5 1255742327
## 11170    3.5 1348568288
## 11172    2.5 1456039172
## 11174    3.0 1255502811
## 11175    3.0 1256017177
## 11176    2.5 1256019169
## 11178    3.0 1255593134
## 11179    3.0 1255608196
## 11180    2.0 1255843862
## 11181    0.5 1255588939
## 11182    3.5 1441522129
## 11183    0.5 1255588886
## 11184    2.5 1255594684
## 11188    3.0 1296460230
## 11189    3.5 1255591865
## 11190    3.5 1475989020
## 11191    0.5 1255592030
## 11192    3.5 1304412144
## 11195    3.0 1255597036
## 11196    3.0 1256019079
## 11197    2.5 1255742417
## 11200    3.5 1359617333
## 11201    3.0 1406172493
## 11203    3.5 1456038539
## 11204    3.5 1469772963
## 11206    3.5 1437710037
## 11208    3.0 1255587770
## 11211    2.5 1255589582
## 11216    3.5 1255590127
## 11217    2.5 1255501883
## 11220    2.0 1256029681
## 11223    2.5 1337593382
## 11224    3.0 1255596884
## 11225    1.0 1456039398
## 11227    3.5 1431234249
## 11228    2.0 1255589041
## 11229    3.5 1255947240
## 11231    3.0 1427168079
## 11233    3.5 1262838012
## 11237    3.5 1457597312
## 11238    3.5 1469772912
## 11239    3.0 1255596762
## 11241    3.5 1255844160
## 11242    0.5 1354679048
## 11243    1.0 1255587749
## 11244    1.0 1255743146
## 11246    3.0 1255596758
## 11247    3.0 1255595655
## 11248    3.5 1337593113
## 11249    3.0 1289046552
## 11252    2.5 1255845334
## 11253    3.0 1255843857
## 11255    1.0 1255587163
## 11258    3.0 1255595926
## 11259    2.0 1256018225
## 11261    3.0 1255507534
## 11262    2.5 1255607814
## 11263    3.0 1369513542
## 11264    3.0 1257228496
## 11265    3.0 1255591870
## 11266    3.5 1255844803
## 11267    3.5 1309414233
## 11268    2.0 1255506326
## 11269    3.0 1255596097
## 11270    2.5 1255845337
## 11271    3.5 1255508666
## 11272    3.5 1255592012
## 11273    3.0 1255845325
## 11276    1.5 1256029685
## 11277    3.5 1457320124
## 11278    3.5 1256028349
## 11279    3.5 1369513527
## 11280    3.0 1255505821
## 11281    1.5 1256029392
## 11283    3.5 1312496387
## 11284    3.5 1411355658
## 11285    3.0 1417081946
## 11286    2.5 1257228521
## 11288    3.0 1255844003
## 11289    3.0 1256030828
## 11290    3.5 1454043394
## 11291    3.5 1304412896
## 11292    1.0 1255588757
## 11294    3.0 1256030820
## 11296    3.5 1255502976
## 11299    3.0 1309414323
## 11302    2.0 1256559191
## 11304    3.0 1427170230
## 11305    2.5 1257229414
## 11306    2.5 1454042655
## 11308    0.5 1255742925
## 11309    1.0 1255591703
## 11310    3.5 1255844928
## 11311    2.5 1255742920
## 11312    3.0 1255508977
## 11314    3.0 1369515354
## 11315    0.5 1255587403
## 11316    3.5 1255584710
## 11317    1.0 1255586255
## 11318    2.5 1454042857
## 11319    2.5 1362112175
## 11320    3.5 1411355653
## 11322    3.5 1255844905
## 11323    3.5 1255593521
## 11325    3.0 1255504580
## 11326    0.5 1255586400
## 11328    3.5 1296460156
## 11329    3.5 1255502085
## 11330    3.5 1255506853
## 11331    3.5 1466320346
## 11333    0.5 1255587385
## 11335    3.5 1457597587
## 11338    2.5 1256030711
## 11340    3.0 1422335258
## 11341    2.5 1255586478
## 11342    2.5 1259837617
## 11343    3.5 1255502965
## 11344    2.5 1257164355
## 11345    3.0 1256030617
## 11348    3.0 1286699648
## 11349    2.5 1256030870
## 11350    1.0 1255588747
## 11351    1.0 1255586233
## 11352    3.0 1255596877
## 11353    2.5 1255845225
## 11356    3.0 1255501684
## 11358    2.5 1309414319
## 11359    3.0 1454042794
## 11360    3.5 1255592002
## 11361    3.5 1441513955
## 11362    3.0 1256029140
## 11363    3.5 1255502108
## 11365    2.0 1348568291
## 11367    3.0 1257228572
## 11368    3.5 1255591698
## 11369    2.0 1255742621
## 11370    3.0 1255503784
## 11372    2.0 1256018404
## 11374    3.5 1384070152
## 11376    3.0 1257228718
## 11377    2.5 1256018025
## 11378    3.5 1312496372
## 11379    2.0 1256029937
## 11380    3.0 1256017323
## 11381    3.0 1255947527
## 11382    0.5 1255588933
## 11385    3.0 1255503405
## 11386    3.5 1323247224
## 11387    3.5 1255844923
## 11392    2.5 1256030803
## 11393    3.0 1369514644
## 11395    3.5 1281668271
## 11397    3.0 1255844816
## 11399    3.5 1255501962
## 11400    2.5 1256029998
## 11402    3.5 1255504199
## 11403    2.0 1423801583
## 11404    2.5 1286794236
## 11406    2.5 1255596747
## 11407    3.5 1255505761
## 11408    3.5 1255502960
## 11409    3.0 1457598052
## 11410    2.5 1255596552
## 11411    2.5 1473060722
## 11413    2.0 1256559213
## 11414    1.5 1255594676
## 11415    3.5 1255844900
## 11416    1.0 1255586222
## 11417    3.0 1255592007
## 11419    1.5 1255596555
## 11420    0.5 1255586134
## 11421    1.0 1255501589
## 11422    3.0 1454042795
## 11424    1.0 1255586976
## 11427    3.5 1427170416
## 11428    3.0 1255501647
## 11429    2.5 1435472881
## 11430    3.5 1454042671
## 11431    1.0 1255589062
## 11432    2.5 1454043041
## 11433    3.0 1255597366
## 11434    3.0 1255596548
## 11435    3.5 1255606270
## 11436    1.5 1255591493
## 11437    2.5 1257228964
## 11438    2.0 1454042917
## 11440    2.0 1255503396
## 11441    3.0 1255508072
## 11442    2.5 1255591693
## 11443    2.0 1255593506
## 11444    2.0 1255844138
## 11447    3.5 1437711118
## 11449    3.0 1255505738
## 11450    3.0 1288697624
## 11452    3.5 1457597334
## 11453    3.5 1255843975
## 11454    3.0 1369514646
## 11455    3.5 1457318292
## 11456    0.5 1255588727
## 11457    3.5 1255844953
## 11458    1.0 1256559067
## 11459    3.5 1430034154
## 11461    0.5 1255587337
## 11462    3.5 1255504546
## 11463    3.5 1266309913
## 11465    2.0 1256018282
## 11466    3.0 1255742863
## 11467    0.5 1255586420
## 11468    3.0 1337593619
## 11470    2.0 1454042733
## 11472    1.0 1255589051
## 11478    3.5 1418785824
## 11480    3.0 1406172474
## 11482    3.5 1460517652
## 11483    0.5 1255506219
## 11485    3.5 1255851305
## 11486    3.5 1255501824
## 11488    3.5 1427170617
## 11490    3.0 1255509258
## 11491    3.0 1273231862
## 11492    3.5 1423801587
## 11493    3.5 1369515334
## 11498    3.0 1454042683
## 11499    3.5 1255508067
## 11500    3.0 1257228665
## 11501    2.5 1454042767
## 11502    3.5 1289995423
## 11503    3.5 1348567926
## 11505    2.5 1255851331
## 11506    0.5 1261217423
## 11507    3.5 1255584542
## 11508    3.0 1260280418
## 11510    3.5 1256639055
## 11511    3.0 1476086345
## 11512    2.5 1255850946
## 11514    3.5 1312496413
## 11515    3.5 1255505699
## 11517    0.5 1257228032
## 11518    3.0 1263197192
## 11521    3.5 1264835071
## 11522    3.5 1268808266
## 11526    3.0 1262490949
## 11528    3.5 1369514017
## 11529    2.0 1260877856
## 11531    3.5 1441513896
## 11533    3.0 1437711220
## 11538    3.0 1270610716
## 11539    3.0 1279948662
## 11544    3.5 1432523566
## 11545    3.5 1279947051
## 11547    3.5 1471493475
## 11548    2.0 1288697300
## 11549    3.5 1277244869
## 11552    3.5 1279948640
## 11553    2.5 1286184933
## 11554    3.5 1293747419
## 11555    3.5 1293747383
## 11556    2.5 1454042956
## 11557    3.0 1286699464
## 11558    2.5 1295874843
## 11559    3.5 1289045492
## 11560    3.0 1369514012
## 11562    3.5 1288262844
## 11563    2.0 1454041525
## 11565    3.5 1337594376
## 11568    3.5 1296730408
## 11569    3.5 1470450406
## 11572    3.5 1334396237
## 11573    3.5 1337593917
## 11575    3.5 1476081506
## 11576    2.5 1457597559
## 11577    3.5 1304412705
## 11582    3.0 1320810425
## 11583    2.5 1457597487
## 11584    3.5 1437709564
## 11585    3.5 1300946992
## 11588    2.5 1406172509
## 11592    3.5 1471332805
## 11597    3.0 1411452415
## 11599    3.0 1315968775
## 11605    3.5 1317176746
## 11607    3.5 1369515303
## 11612    3.5 1457597592
## 11614    3.5 1319336835
## 11617    3.5 1345798952
## 11618    3.5 1357553094
## 11620    3.5 1324634215
## 11621    3.5 1325543528
## 11623    3.5 1431406208
## 11624    3.0 1329461095
## 11627    3.0 1329122460
## 11628    3.5 1345799028
## 11629    3.5 1325685214
## 11630    3.5 1329461077
## 11632    3.5 1348568449
## 11637    3.0 1457597425
## 11638    3.0 1329986644
## 11640    3.0 1411452403
## 11641    3.5 1345799036
## 11643    3.5 1348568088
## 11647    2.5 1352959770
## 11650    3.5 1351406444
## 11654    3.5 1437711595
## 11655    3.0 1398570058
## 11656    3.0 1398570053
## 11658    3.5 1437711059
## 11662    3.5 1358144551
## 11663    3.5 1437711174
## 11664    3.5 1398570077
## 11665    3.5 1348568386
## 11666    3.5 1398570066
## 11669    3.5 1437711131
## 11671    2.5 1359358796
## 11672    3.0 1348568337
## 11673    3.5 1441514105
## 11674    3.5 1454043300
## 11676    3.5 1369515292
## 11681    3.5 1357552193
## 11682    3.5 1369206362
## 11684    3.5 1374355488
## 11686    3.5 1437710825
## 11690    3.5 1357552186
## 11693    3.5 1370057754
## 11698    3.5 1411452577
## 11699    3.5 1378179817
## 11703    2.5 1454041530
## 11705    3.5 1374355582
## 11707    3.0 1409452741
## 11709    2.5 1457596601
## 11710    2.5 1454042845
## 11711    3.0 1406171923
## 11712    2.0 1457597113
## 11713    3.0 1437104561
## 11714    3.5 1418462292
## 11715    3.0 1427170398
## 11719    3.5 1457597402
## 11721    3.5 1411452394
## 11724    0.5 1390015641
## 11725    3.5 1404370211
## 11726    3.0 1427170708
## 11729    3.5 1404370215
## 11731    3.5 1406172291
## 11732    3.5 1457597419
## 11734    3.5 1427170706
## 11735    3.5 1398570071
## 11736    3.5 1437711587
## 11737    3.5 1411452354
## 11740    3.5 1437104540
## 11744    3.0 1411452818
## 11745    3.5 1409452259
## 11746    2.0 1411452812
## 11749    3.0 1409452254
## 11750    3.0 1457597194
## 11752    2.5 1454043389
## 11753    3.5 1423801674
## 11754    2.5 1454043328
## 11756    3.5 1454043334
## 11759    2.5 1423801598
## 11760    3.5 1422335674
## 11763    3.0 1454042867
## 11764    3.0 1457597515
## 11767    2.5 1427170549
## 11768    3.0 1457597407
## 11770    3.5 1418462052
## 11772    3.0 1457597605
## 11775    3.5 1423801646
## 11779    3.5 1437711208
## 11780    3.0 1437711165
## 11781    3.5 1418462066
## 11783    0.5 1454042838
## 11784    3.0 1457597665
## 11786    3.0 1454042923
## 11787    3.5 1431232449
## 11788    3.0 1454042873
## 11789    3.5 1454042779
## 11790    3.5 1431233322
## 11791    3.5 1431233272
## 11795    3.0 1466320222
## 11797    3.5 1474255427
## 11798    3.5 1437711226
## 11799    3.5 1457597882
## 11801    3.5 1437709660
## 11802    3.5 1432523179
## 11803    3.5 1466320172
## 11805    3.0 1466320258
## 11806    3.5 1470720695
## 11809    3.5 1457597863
## 11810    3.0 1456038901
## 11812    3.5 1471332767
## 11815    3.5 1457332236
## 11816    3.5 1466320302
## 11817    3.0 1466320393
## 11819    3.5 1460517484
## 11821    3.0 1469772608
## 11822    3.5 1473060620
## 11823    3.0 1474255459
## 11826    3.0  942705457
## 11835    1.0  942703569
## 11838    3.0  942703678
## 11839    3.0  942705648
## 11849    2.0  942705232
## 11851    3.0  942704723
## 11854    3.0  942705496
## 11861    3.0  942704863
## 11866    3.0  942704192
## 11870    3.0  942705648
## 11874    3.0 1165607201
## 11875    3.0 1143047700
## 11880    2.0 1165607377
## 11882    3.0 1143047643
## 11885    2.0 1143047471
## 11887    0.5 1165607346
## 11888    2.0 1143047458
## 11889    3.0 1143047880
## 11890    0.5 1143047478
## 11891    3.0 1165596956
## 11895    1.0 1143047916
## 11897    1.0 1143047463
## 11898    3.0 1143048961
## 11899    1.0 1143048947
## 11900    1.0 1165596837
## 11901    3.0 1143048856
## 11908    0.5 1143047705
## 11909    3.0 1143047928
## 11911    3.5 1165607559
## 11913    3.5 1143048840
## 11914    3.5 1143048887
## 11915    0.5 1143048986
## 11918    0.5 1143048977
## 11919    1.0 1143047503
## 11920    3.0 1143048836
## 11921    3.0 1165607261
## 11925    3.5 1165607211
## 11931    3.0 1143048004
## 11932    2.0 1143048064
## 11933    0.5 1165607144
## 11934    0.5 1143048164
## 11935    3.5 1143048156
## 11936    3.0 1143047444
## 11937    2.5 1143049592
## 11940    3.0 1165607364
## 11941    0.5 1143047624
## 11942    3.0 1143048523
## 11943    3.0 1143047921
## 11944    3.0 1143048053
## 11945    3.5 1143048090
## 11947    3.5 1143047679
## 11948    3.0 1143047997
## 11949    3.0 1143048070
## 11951    2.5 1165607133
## 11952    3.5 1143047685
## 11954    3.5 1143048532
## 11957    2.5 1143048305
## 11958    2.0 1143047636
## 11959    3.0 1143048520
## 11961    2.5 1143049630
## 11965    3.0 1165607066
## 11967    1.5 1143048602
## 11968    0.5 1143047691
## 11969    2.0 1143047689
## 11971    3.5 1143048020
## 11972    3.5 1143048746
## 11973    3.0 1143048172
## 11975    3.0 1143048565
## 11977    3.5 1143047896
## 11978    2.0 1143049546
## 11979    3.5 1143048546
## 11981    0.5 1165607272
## 11983    3.0 1143047490
## 11984    3.5 1143047941
## 11986    3.0 1143048203
## 11988    3.5 1143049532
## 11989    2.5 1165607291
## 11994    2.5 1165607318
## 11996    3.5 1143048060
## 11997    2.0 1165607360
## 12001    3.5 1143048192
## 12002    3.0 1165607372
## 12007    3.0 1143047861
## 12011    3.0 1165607136
## 12012    3.0 1165607299
## 12018    0.5 1165607897
## 12020    3.0 1194384318
## 12021    3.0 1194384313
## 12025    3.5 1194384373
## 12026    3.5 1194384328
## 12029    3.5 1194384353
## 12032    3.5 1194384277
## 12034    2.0 1194384399
## 12037    3.5 1194384470
## 12038    3.5 1194384451
## 12040    3.5 1163252774
## 12041    3.0 1183844529
## 12043    3.5 1163253023
## 12044    2.5 1163253088
## 12046    3.5 1163252918
## 12047    3.5 1163004464
## 12048    3.5 1163219726
## 12049    1.5 1163253105
## 12050    3.5 1163013335
## 12052    3.0 1163253085
## 12053    2.0 1183844506
## 12054    3.0 1163286142
## 12055    2.5 1163082488
## 12056    2.5 1163219428
## 12057    2.0 1163253082
## 12058    3.0 1163253079
## 12060    1.0 1163125859
## 12061    2.5 1163259531
## 12063    3.5 1163253117
## 12064    2.5 1163252922
## 12066    3.5 1163012801
## 12069    2.0 1163253047
## 12070    2.5 1163253104
## 12071    3.0 1163082485
## 12072    3.5 1163082500
## 12074    3.5 1163006023
## 12075    3.0 1163125780
## 12076    3.5 1163219373
## 12077    2.5 1163013353
## 12078    2.5 1163013344
## 12079    1.5 1163286164
## 12080    3.0 1163277657
## 12081    2.5 1163013330
## 12082    3.0 1163006020
## 12083    3.0 1183920204
## 12084    2.0 1163013198
## 12086    1.5 1183920099
## 12087    2.5 1163252886
## 12088    3.5 1163082479
## 12090    3.0 1163013339
## 12091    3.5 1163006012
## 12092    3.0 1163013328
## 12093    3.5 1163253015
## 12094    2.5 1163253037
## 12095    2.0 1183844492
## 12096    2.5 1163013368
## 12097    3.0 1183512581
## 12098    3.0 1163253027
## 12099    2.0 1163253163
## 12101    3.0 1183512477
## 12103    3.5 1163005369
## 12104    3.0 1163219390
## 12105    2.5 1163277702
## 12107    3.5 1183920326
## 12108    3.0 1163253110
## 12110    3.5 1163252515
## 12112    3.0 1163253049
## 12115    3.0 1183512491
## 12122    3.5 1183920321
## 12124    3.5 1163253113
## 12126    3.5 1163013055
## 12128    3.5 1163012783
## 12129    3.0 1183512498
## 12131    3.0 1163252277
## 12134    3.5 1163006001
## 12135    3.5 1163219327
## 12136    3.5 1163079424
## 12140    3.0 1163252892
## 12141    3.5 1183920197
## 12142    2.0 1183920089
## 12145    3.5 1163286102
## 12146    3.5 1163253071
## 12147    1.5 1183920103
## 12148    2.5 1163219409
## 12150    3.5 1163277597
## 12152    3.5 1163915779
## 12153    3.0 1183844513
## 12154    2.0 1163252930
## 12155    3.5 1163079388
## 12156    2.5 1163269736
## 12157    2.5 1163219656
## 12158    2.5 1183844547
## 12159    2.0 1163286171
## 12160    2.0 1163252812
## 12161    2.5 1163253127
## 12163    3.0 1183920347
## 12164    3.5 1183920251
## 12165    3.5 1183920333
## 12168    3.5 1163286265
## 12169    3.5 1163004544
## 12170    2.5 1163915788
## 12171    3.5 1183920345
## 12179    3.5 1163005107
## 12181    3.5 1183844537
## 12182    2.0 1163252612
## 12183    3.5 1163219423
## 12185    3.5 1163277646
## 12186    3.5 1163277601
## 12187    3.5 1163738035
## 12190    2.5 1163738031
## 12192    1.5 1163006017
## 12193    3.5 1163219366
## 12194    3.0 1163219414
## 12195    2.5 1163252918
## 12198    3.5 1163125798
## 12199    3.0 1166027951
## 12200    1.0 1183844524
## 12204    3.5 1163125886
## 12205    2.0 1163259854
## 12206    3.0 1163013177
## 12207    3.5 1163125878
## 12211    3.5 1163277606
## 12212    2.5 1163277704
## 12213    3.5 1183920193
## 12218    3.0 1163259912
## 12219    3.5 1163082621
## 12221    2.5 1163738069
## 12222    3.5 1183920264
## 12225    3.0 1163259527
## 12228    3.5 1166027891
## 12229    3.0 1166027895
## 12230    1.5 1183844498
## 12231    0.5 1183920246
## 12233    3.0 1183512502
## 12234    2.5 1163219416
## 12235    1.5 1163260803
## 12238    3.0 1163006008
## 12239    1.5 1163915774
## 12243    3.5 1163265862
## 12244    3.5 1163220288
## 12245    3.5 1183920122
## 12247    3.0 1163252840
## 12248    3.0 1163252803
## 12249    3.0 1163125809
## 12251    0.5 1163004354
## 12253    2.5 1183920127
## 12254    1.0 1163346129
## 12255    2.5 1163277700
## 12256    2.0 1183920136
## 12257    3.0 1166027898
## 12258    3.5 1163125847
## 12259    3.5 1163286177
## 12260    3.5 1163252909
## 12263    3.5 1163005241
## 12265    3.0 1163125785
## 12266    3.0 1183920097
## 12267    2.0 1183844539
## 12268    3.0 1183844467
## 12269    2.0 1163005117
## 12271    3.5 1163219308
## 12273    1.0 1163386523
## 12274    3.0 1163006045
## 12275    0.5 1183920259
## 12278    3.5 1163004657
## 12279    0.5 1183511678
## 12281    3.0 1163125818
## 12283    3.5 1166027993
## 12284    3.0 1163219386
## 12285    3.0 1163219717
## 12286    3.5 1163219638
## 12287    3.0 1163277592
## 12288    3.0 1163005385
## 12291    3.0 1183844543
## 12292    0.5 1163004453
## 12293    3.5 1183920262
## 12296    3.0 1163277654
## 12297    3.0 1163346143
## 12301    3.5 1163004488
## 12302    2.5 1183844503
## 12304    2.0 1163004783
## 12306    3.5 1163219723
## 12311    3.5 1163004517
## 12313    2.5 1183511703
## 12320    3.0 1183844570
## 12322    0.5 1183511682
## 12324    2.0 1183920174
## 12327    3.5 1163252803
## 12329    3.5 1183511991
## 12330    2.0 1183511757
## 12331    1.0 1163219241
## 12333    3.5 1183511779
## 12334    2.5 1163219395
## 12336    3.5 1163013078
## 12338    3.0 1163386501
## 12340    2.0 1163286160
## 12342    3.5 1163079317
## 12345    3.5 1163220283
## 12346    2.5 1163005991
## 12349    3.5 1163125866
## 12351    0.5 1163005434
## 12353    0.5 1183511648
## 12354    3.5 1274051069
## 12358    3.5 1344469842
## 12362    1.5 1274050758
## 12363    3.5 1274050991
## 12365    3.5 1327289203
## 12379    3.5 1274050816
## 12381    3.5 1274050750
## 12385    3.5 1274050785
## 12392    3.5 1327289197
## 12394    3.5 1274051063
## 12395    2.0 1274051008
## 12397    1.0 1274050989
## 12399    3.5 1274050843
## 12400    3.0 1274050885
## 12403    2.5 1327288495
## 12407    3.5 1274050904
## 12410    2.0 1274050876
## 12413    3.5 1345676342
## 12419    3.0 1274045997
## 12422    3.0 1274051802
## 12425    2.5 1344469730
## 12427    3.5 1274046079
## 12433    3.5 1274051084
## 12444    1.5 1274050974
## 12449    2.5 1274050826
## 12450    3.0 1344470388
## 12465    2.0 1274046002
## 12466    3.5 1274050967
## 12476    2.5 1274046172
## 12486    3.5 1274046121
## 12487    3.0 1344470577
## 12492    3.0 1327289233
## 12498    3.5 1344472522
## 12499    3.5 1344469805
## 12502    3.5 1327288577
## 12506    3.5 1344470351
## 12507    3.5 1344470343
## 12508    3.5 1327288572
## 12514    1.5 1274050890
## 12524    3.5 1344530365
## 12526    2.5 1274051757
## 12536    3.5 1344530435
## 12540    2.5 1344530420
## 12548    3.0 1274051715
## 12550    3.5 1327288529
## 12551    3.0 1274051268
## 12567    3.5 1274051780
## 12568    3.5 1327288523
## 12575    3.5 1344530363
## 12576    3.5 1344530371
## 12583    2.0 1345676370
## 12587    3.5 1274051816
## 12589    3.5 1274051721
## 12594    3.5 1344469724
## 12617    2.0 1182994648
## 12618    2.5 1182994926
## 12619    0.5 1182995062
## 12620    2.5 1182994636
## 12621    3.0 1182994622
## 12622    2.0 1182994728
## 12624    2.5 1182994765
## 12625    0.5 1182555848
## 12626    3.0 1182994616
## 12627    2.0 1182556000
## 12628    2.5 1182994781
## 12629    2.5 1182994717
## 12630    2.5 1182994627
## 12631    2.5 1182994732
## 12632    3.0 1182994756
## 12633    3.0 1182994965
## 12634    2.5 1182994653
## 12635    2.0 1182994899
## 12636    3.0 1182994775
## 12637    2.5 1182994952
## 12638    3.0 1182994723
## 12639    3.0 1182994711
## 12640    2.5 1182994818
## 12641    0.5 1182994912
## 12642    3.0 1182994786
## 12643    2.5 1182994791
## 12644    2.5 1182994945
## 12645    2.5 1182555959
## 12646    0.5 1182555847
## 12647    2.0 1182556054
## 12648    3.0 1182994750
## 12649    3.0 1182994807
## 12650    2.5 1182995057
## 12651    2.5 1182555876
## 12652    0.5 1182994878
## 12653    3.5 1182994972
## 12654    3.0 1182556148
## 12655    3.0 1182994834
## 12656    2.0 1182555991
## 12657    2.5 1182555869
## 12658    3.0 1182994903
## 12659    2.5 1182556240
## 12660    3.0 1182994861
## 12661    3.0 1182995029
## 12662    3.0 1182994849
## 12663    3.0 1182995072
## 12664    3.0 1182994884
## 12665    2.5 1182995104
## 12666    3.0 1182995012
## 12667    3.5 1182556308
## 12668    3.0 1182556130
## 12669    2.5 1182556378
## 12670    2.0 1182556482
## 12671    3.5 1182556320
## 12672    2.0  844860022
## 12675    3.0  844860003
## 12677    1.0  844860151
## 12682    3.0  844860173
## 12683    3.0  844860003
## 12685    3.0  844860250
## 12686    1.0  844860173
## 12687    2.0  844860022
## 12688    2.0  844860266
## 12689    3.0  844860062
## 12691    3.0  844860022
## 12693    2.0  844860215
## 12695    3.0  844860085
## 12700    2.0  844860250
## 12705    3.0  844860198
## 12711    3.0 1307179969
## 12713    3.5 1307172938
## 12714    3.0 1307171149
## 12715    3.5 1307173087
## 12716    3.0 1307173089
## 12721    3.5 1307169236
## 12727    3.0 1307178475
## 12728    3.5 1307178724
## 12732    3.5 1307175182
## 12734    3.0 1307178374
## 12741    3.5 1307172085
## 12743    1.5 1307169246
## 12745    3.0 1307178387
## 12750    2.0 1307169218
## 12761    3.5 1307173783
## 12768    3.0 1307169275
## 12780    2.0 1307180653
## 12781    3.0 1307171489
## 12783    3.0 1307171929
## 12786    2.5 1307169545
## 12788    2.5 1307169589
## 12792    3.5 1307180611
## 12793    2.5 1307169608
## 12803    3.5 1307180420
## 12810    3.5 1307178465
## 12814    3.5 1307175022
## 12821    2.5 1307177440
## 12835    3.0 1307177412
## 12837    3.0 1307178303
## 12838    3.0 1307172173
## 12841    2.5 1307177426
## 12842    3.5 1307180145
## 12847    3.5 1307173098
## 12850    3.0 1307169533
## 12854    2.0 1307180237
## 12857    2.0 1307169383
## 12859    3.5 1307175227
## 12860    3.0 1307177375
## 12863    3.0 1307180634
## 12864    3.0 1307172215
## 12866    2.5 1307172182
## 12868    3.5 1307172379
## 12869    3.0  835973445
## 12870    3.0  835973471
## 12877    3.0  835973398
## 12878    2.0  835973504
## 12879    3.0  835973398
## 12880    3.0  835973445
## 12884    3.0  835973458
## 12885    3.0  835973431
## 12888    2.0  835973419
## 12890    2.0  835973418
## 12892    3.0  835973398
## 12895    3.0  835973504
## 12896    3.0  835973380
## 12897    3.0  835973458
## 12898    1.0  835973488
## 12899    3.0  835973431
## 12900    3.0  835973504
## 12901    3.0  835973488
## 12902    3.0  835973445
## 12905    3.0  835973379
## 12909    1.0 1156206448
## 12912    3.5 1156207469
## 12913    3.5 1156206709
## 12916    0.5 1156205069
## 12922    3.5 1156205656
## 12925    2.5 1156205254
## 12927    3.5 1156205241
## 12929    3.5 1156205647
## 12934    3.5 1156207536
## 12946    3.0 1156205231
## 12956    0.5 1156205108
## 12967    2.0 1156205343
## 12968    0.5 1156205568
## 12969    2.0 1156206976
## 12971    1.5 1156205337
## 12972    3.5 1156205560
## 12979    3.5 1156205549
## 12983    1.0 1156205227
## 12998    3.5 1156205522
## 13000    0.5 1156205302
## 13003    3.5 1156206681
## 13005    3.5 1156206992
## 13021    1.0 1156205296
## 13025    3.0 1156205474
## 13027    2.0 1156205292
## 13028    3.5 1156205780
## 13029    3.5 1156205468
## 13034    1.5 1156205759
## 13039    3.5 1156205736
## 13040    3.5 1156205449
## 13043    0.5 1156207279
## 13045    0.5 1156205445
## 13051    0.5 1156205029
## 13052    3.5 1156206308
## 13053    3.5 1156206705
## 13055    1.0 1156205435
## 13056    0.5 1156206646
## 13057    3.5 1156205432
## 13058    3.5 1156207498
## 13064    3.5 1156205409
## 13068    3.5 1156206624
## 13069    3.5 1429910800
## 13073    3.0 1429910797
## 13074    3.0 1429910957
## 13077    3.5 1429910909
## 13079    3.5 1429910906
## 13080    3.0 1429910948
## 13081    3.5 1429911562
## 13082    3.0 1429910790
## 13084    3.5 1429910812
## 13087    3.5 1429910861
## 13090    3.5 1429911066
## 13093    3.5 1429911142
## 13096    3.0 1429911077
## 13097    3.0 1429911265
## 13099    3.5 1429911152
## 13101    3.5 1429911137
## 13102    3.5 1429911227
## 13106    3.5 1429911063
## 13111    3.5 1429910917
## 13112    3.5 1429911017
## 13113    3.5 1429911098
## 13114    3.0 1429911130
## 13115    3.5 1429911247
## 13117    3.5 1429911059
## 13119    3.5 1429911297
## 13120    3.5 1429910872
## 13121    3.5 1429911118
## 13122    3.0 1429911039
## 13123    3.0 1429911113
## 13124    3.5 1429910932
## 13127    3.5 1429911126
## 13128    3.5 1429911204
## 13131    3.0 1429911214
## 13133    3.5 1429911525
## 13134    3.5 1429911101
## 13135    3.5 1429910987
## 13137    3.5 1429911276
## 13138    3.5 1429911292
## 13140    3.5 1429910892
## 13143    3.5 1429911174
## 13145    3.5 1429911221
## 13146    3.5 1429910876
## 13147    3.5 1429911233
## 13148    3.0 1429911253
## 13150    3.5 1429911097
## 13151    3.5 1429911229
## 13152    3.5 1429911203
## 13153    3.0 1429911238
## 13155    3.0 1429911193
## 13158    3.5 1429910974
## 13160    2.5 1429910960
## 13161    3.5 1429910829
## 13162    3.5 1429910890
## 13164    3.5 1429910852
## 13169    3.5 1429911541
## 13170    3.5 1429910984
## 13172    3.5 1429910849
## 13174    3.5 1429911003
## 13177    3.0 1429911001
## 13178    3.0 1429910808
## 13179    3.5 1429910884
## 13180    3.5 1429910860
## 13186    2.0  837512420
## 13187    3.0  837512493
## 13189    3.0  837512280
## 13191    3.0  837512169
## 13192    2.0  837512134
## 13193    1.0  837506990
## 13196    1.0  837513025
## 13197    3.0  837512403
## 13200    3.0  837512681
## 13201    3.0  837513025
## 13203    2.0  837512454
## 13204    1.0  837512701
## 13205    3.0  837511998
## 13206    3.0  837512987
## 13207    1.0  837511493
## 13208    3.0  837511986
## 13209    3.0  837512599
## 13210    3.0  837511797
## 13211    3.0  837512325
## 13213    2.0  837512519
## 13216    1.0  837512599
## 13217    3.0  837512030
## 13220    1.0  837513012
## 13221    3.0  837512134
## 13222    2.0  837512482
## 13223    1.0  837512962
## 13225    1.0  837512611
## 13233    1.0  837512249
## 13236    1.0  837512763
## 13239    3.0  837511838
## 13240    3.0  837512312
## 13242    3.0  837512561
## 13243    3.0  837512169
## 13244    1.0  837512580
## 13247    2.0  837512403
## 13248    1.0  837512723
## 13251    3.0  837512599
## 13253    3.0  837512420
## 13254    1.0  837512433
## 13256    3.0  837512015
## 13257    3.0  837512344
## 13259    3.0  837512191
## 13261    3.0  837512312
## 13262    3.0  837512312
## 13264    3.0  837512225
## 13266    2.0  837512648
## 13267    3.0  837512249
## 13268    3.0  837511838
## 13269    2.0  837506847
## 13271    1.0  837512482
## 13273    1.0  837512648
## 13275    3.0  837512114
## 13276    3.0  837512268
## 13277    3.0  837512325
## 13278    3.0  837506797
## 13280    3.0  837506714
## 13283    2.0  837512504
## 13284    3.0  837507101
## 13286    3.0  837512225
## 13289    1.0  837512681
## 13290    1.0  837512723
## 13292    3.0  848161799
## 13293    1.0  848159306
## 13297    1.0  848159249
## 13298    1.0  848159249
## 13299    3.0  848161123
## 13305    3.0  848159230
## 13310    3.0  848161443
## 13313    3.0  848161498
## 13316    3.0  848161182
## 13318    3.0  848161091
## 13321    3.0  848161330
## 13322    3.0  848161539
## 13324    3.0  848161182
## 13325    3.0  848161391
## 13326    1.0  848160230
## 13328    3.0  848161353
## 13333    3.0  848161454
## 13334    2.0  848159289
## 13335    3.0  848161091
## 13337    3.0  848161811
## 13339    3.0  848161507
## 13340    1.0  848159406
## 13342    3.0  848159752
## 13344    3.0  848159167
## 13348    3.0  848161373
## 13350    1.0  848159117
## 13354    3.0  848161252
## 13357    1.0  848159406
## 13361    3.0  848161454
## 13362    3.0  848161149
## 13364    3.0  848161787
## 13367    3.0  848161308
## 13368    3.0  848161308
## 13369    3.0  848161343
## 13370    3.0  848161773
## 13372    3.0  848161773
## 13376    3.0  848161134
## 13377    3.0  848159765
## 13381    3.0  848161182
## 13382    3.0  848159117
## 13385    3.0  848160389
## 13386    3.0  848160729
## 13388    3.0  848161199
## 13389    3.0  848160081
## 13393    3.0  848161134
## 13395    3.0  848159654
## 13399    3.0  848161404
## 13400    2.0  848162010
## 13401    3.0  848159719
## 13402    3.0  848161443
## 13405    3.0  848160066
## 13406    2.0  848159191
## 13408    3.0  848161491
## 13409    3.0  848161343
## 13412    3.0  848161443
## 13413    3.0  848159148
## 13414    3.0  848159932
## 13417    3.0  848161773
## 13419    3.0  848159361
## 13423    3.0  848159779
## 13427    3.0  848159249
## 13432    3.0  848161252
## 13434    1.0  848161788
## 13435    3.0  848159230
## 13436    3.0  848159093
## 13437    2.0  848159191
## 13438    3.0  848161161
## 13439    3.0  848159074
## 13442    3.0  848161267
## 13444    3.0  848159230
## 13446    3.0  848161360
## 13447    3.0  848161308
## 13449    3.0  848160245
## 13450    3.0  848161481
## 13451    3.0  848161221
## 13454    3.0  848159794
## 13456    3.0  848162119
## 13458    3.0  848161237
## 13459    3.0  848161539
## 13462    2.0  848159406
## 13463    3.0  848159949
## 13464    2.0  848162010
## 13465    3.0  848161481
## 13466    2.0  848161528
## 13467    3.0  848161552
## 13468    3.0  848161552
## 13470    1.0  848162026
## 13473    3.0  848161267
## 13476    3.0  848160211
## 13479    3.0  848160993
## 13482    3.0  858623186
## 13483    3.0  858623219
## 13485    3.0  858623186
## 13487    1.0  858623186
## 13488    3.0  858623319
## 13489    3.0  858623186
## 13491    3.0  858623240
## 13497    3.0  858623186
## 13498    3.0  858623335
## 13500    3.0  858623219
## 13501    2.0  858623186
## 13502    3.0  858623257
## 13503    3.0  858623270
## 13504    3.0  858623186
## 13506    3.0  858623219
## 13507    3.0  858623257
## 13508    1.0  858623283
## 13509    3.0  858623219
## 13510    3.0  858623299
## 13512    2.0  858623335
## 13513    3.5 1239773232
## 13515    3.5 1239764623
## 13516    3.5 1239764334
## 13517    3.0 1239755559
## 13519    3.0 1239764316
## 13521    3.5 1239758460
## 13522    2.0 1239764336
## 13523    0.5 1239764721
## 13526    2.0 1239763939
## 13527    2.0 1239765071
## 13528    3.0 1239766992
## 13529    3.0 1239763933
## 13530    3.0 1239764312
## 13532    0.5 1239767689
## 13533    3.0 1239764173
## 13534    0.5 1239755560
## 13536    3.5 1239755456
## 13537    3.0 1239758451
## 13538    3.5 1239757625
## 13539    2.5 1239763984
## 13541    3.5 1239764763
## 13543    2.0 1239763845
## 13544    3.0 1239775160
## 13545    3.0 1239764885
## 13550    3.0 1239763839
## 13551    2.0 1239763826
## 13552    1.5 1239766980
## 13553    2.5 1239773306
## 13554    2.5 1239764176
## 13555    2.5 1239763731
## 13556    3.0 1239763722
## 13558    2.5 1239772521
## 13561    1.5 1239766985
## 13563    3.5 1239767724
## 13566    2.0 1239755377
## 13567    3.0 1239765069
## 13568    2.5 1239764309
## 13569    3.0 1239757679
## 13570    3.0 1239772558
## 13571    2.0 1239763711
## 13573    3.5 1239763938
## 13575    3.5 1239763830
## 13576    3.5 1239763854
## 13577    3.5 1239764853
## 13578    3.0 1239772575
## 13579    3.5 1239763983
## 13580    3.0 1239762941
## 13582    3.5 1239757090
## 13583    1.0 1239755385
## 13588    3.0 1239775047
## 13589    3.0 1239758081
## 13591    3.5 1239764678
## 13592    3.5 1239758059
## 13594    3.5 1239758202
## 13595    3.0 1239764886
## 13597    3.5 1239757684
## 13602    3.0 1239764604
## 13604    2.5 1239772561
## 13605    3.5 1239763858
## 13608    3.0 1239764173
## 13610    2.5 1239755415
## 13612    2.5 1239765070
## 13613    3.0 1239764905
## 13614    3.0 1239764514
## 13615    3.5 1239765130
## 13616    1.5 1239764889
## 13617    0.5 1239764845
## 13619    0.5 1239767713
## 13621    3.0 1239764767
## 13622    2.5 1239756858
## 13625    3.0 1239755446
## 13628    1.5 1239773365
## 13629    3.5 1239764518
## 13630    0.5 1239755427
## 13631    3.0 1239764540
## 13632    3.5 1239764341
## 13633    3.5 1239772229
## 13634    2.0 1239764751
## 13635    3.0 1239764896
## 13636    3.5 1239774217
## 13637    2.0 1239764695
## 13639    3.0 1239765142
## 13641    3.0 1239767000
## 13642    3.0 1257010873
## 13643    2.5 1239764852
## 13644    3.5 1239766983
## 13645    3.5 1239764618
## 13650    2.5 1239764978
## 13651    0.5 1239758086
## 13652    2.0 1239764969
## 13655    1.0 1239764684
## 13656    2.5 1239766975
## 13657    3.5 1239767661
## 13659    2.5 1239755416
## 13660    3.5 1239764774
## 13666    2.5 1239765128
## 13667    3.0 1239773748
## 13670    3.0 1239755557
## 13672    3.5 1239775154
## 13673    3.5 1239763277
## 13676    2.0 1239764184
## 13677    3.5 1239765070
## 13678    3.5 1239773151
## 13679    2.5 1239755558
## 13680    3.0 1239756814
## 13682    3.5 1239758460
## 13687    3.0 1239762847
## 13689    3.0 1239772623
## 13690    2.5 1239773931
## 13692    3.5 1239767658
## 13697    3.0 1239757094
## 13698    3.5 1239772461
## 13699    3.5 1239772239
## 13700    3.0 1239764714
## 13702    1.0 1239767719
## 13704    3.5 1239764608
## 13705    2.5 1239773123
## 13707    2.0 1239773937
## 13708    3.5 1239756837
## 13709    3.0 1239773743
## 13712    2.5 1239773941
## 13717    3.0 1239772568
## 13723    3.5 1239757077
## 13728    3.5 1239767702
## 13729    3.0 1239772533
## 13733    3.5 1239772618
## 13734    3.5 1239772528
## 13735    2.5 1239772951
## 13736    3.5 1239772632
## 13737    3.0 1239778397
## 13738    2.0 1239755439
## 13739    3.0 1239775005
## 13740    2.5 1239772928
## 13742    3.5 1239774702
## 13745    3.0 1239774712
## 13750    3.0 1239773175
## 13752    1.5 1256960930
## 13755    1.0 1239772235
## 13756    2.5 1239758696
## 13758    2.5 1239772923
## 13762    3.0 1239759260
## 13763    3.0 1239758705
## 13764    2.5 1239767650
## 13778    2.0 1257610314
## 13789    3.0 1257610347
## 13791    3.5 1257620544
## 13794    3.0 1257610479
## 13836    2.0  875517624
## 13840    3.0  875520648
## 13842    3.0  875518226
## 13846    3.0  875518088
## 13848    3.0  875518345
## 13849    3.0  875520264
## 13851    2.0  875520463
## 13852    3.0  875518641
## 13855    3.0  875520464
## 13862    3.0  875518016
## 13869    3.0  875515203
## 13871    3.0  875515030
## 13873    2.0  876370672
## 13874    3.0  876288277
## 13883    2.0  875515030
## 13885    3.5 1448813887
## 13887    3.5 1448798511
## 13888    3.0 1448798347
## 13894    3.5 1448814317
## 13903    3.5 1448814498
## 13919    3.0 1448813382
## 13920    3.0 1448814231
## 13921    3.0 1448814231
## 13922    3.0 1448814230
## 13923    2.5 1448814268
## 13929    3.5 1448813361
## 13930    3.0 1448814276
## 13933    3.0 1448814280
## 13935    3.0 1448814200
## 13937    3.0 1448813368
## 13938    3.5 1448814226
## 13940    3.0 1448814412
## 13948    2.0 1448813528
## 13949    3.0 1448814312
## 13950    3.5 1448814436
## 13955    3.0 1448814393
## 13961    3.5 1448814434
## 13964    3.0 1448814469
## 13966    2.5 1448814476
## 13967    2.0 1448814443
## 13968    3.5 1448814407
## 13972    3.0 1448813885
## 13973    2.0 1448814418
## 13975    3.0 1448814399
## 13978    3.0 1448813535
## 13987    3.5 1448798561
## 13992    3.0 1448814299
## 13993    3.5 1448813209
## 13996    3.5 1448814286
## 14000    3.5 1448798222
## 14009    3.0 1448814395
## 14013    3.5 1448813127
## 14016    3.5 1448814472
## 14018    3.0 1448798204
## 14029    3.5 1448813890
## 14030    2.5 1448814423
## 14035    3.0  848525932
## 14036    3.0  848526431
## 14037    2.0  848525661
## 14039    1.0  848525799
## 14043    2.0  848525833
## 14044    3.0  848526389
## 14048    3.0  848526334
## 14049    3.0  848526084
## 14050    3.0  848525971
## 14054    3.0  848526572
## 14055    3.0  848525510
## 14056    3.0  848526334
## 14057    3.0  848525554
## 14058    2.0  848525873
## 14061    3.0  848525554
## 14062    1.0  848526406
## 14063    3.0  848525932
## 14064    2.0  848526037
## 14065    3.0  848526572
## 14066    3.0  848526334
## 14067    3.0  848526060
## 14068    1.0  848526484
## 14069    3.0  848526274
## 14071    3.0  848525661
## 14073    3.0  848526484
## 14074    3.0  848525589
## 14076    3.0  848526529
## 14078    3.0  848526334
## 14079    2.0  848525694
## 14080    2.0  848525873
## 14081    3.0  848526005
## 14082    3.0  848525694
## 14083    3.0  848525624
## 14087    2.0  848525932
## 14088    1.0  848525589
## 14089    2.0  848525873
## 14092    3.0  848526037
## 14093    3.0  848525624
## 14094    3.0  848526061
## 14095    3.0  848526061
## 14096    3.0  848526431
## 14097    3.0  848525694
## 14098    2.0  848525554
## 14099    3.0  848525589
## 14100    2.0  848525873
## 14101    3.0  848526389
## 14102    2.0  848526484
## 14104    3.0  848525833
## 14105    3.0  848526594
## 14106    1.0  848525730
## 14107    2.0  848526037
## 14108    3.0  848525730
## 14110    3.0  848526431
## 14111    3.0  848525730
## 14113    1.0  848526671
## 14114    1.0  848525833
## 14115    2.0  848526037
## 14116    2.0  848525903
## 14117    3.0  848525624
## 14118    3.0  848525903
## 14119    3.0  848525873
## 14120    3.0  848525971
## 14121    2.0  848525694
## 14122    3.0  848526615
## 14124    2.0  848526508
## 14128    3.0  848526431
## 14130    3.0  848525730
## 14131    3.0  848526251
## 14132    1.0  848525932
## 14133    2.0  848526508
## 14135    3.0  848526615
## 14136    3.0  848526005
## 14137    3.0  848525799
## 14138    3.0  848526632
## 14139    3.0  848526363
## 14140    1.0  848526529
## 14143    3.0  848525764
## 14144    3.0  848525554
## 14147    3.0  848525510
## 14149    2.0  848525764
## 14150    2.0  848526061
## 14152    3.0  848526615
## 14154    2.0  848526274
## 14156    2.0  848526334
## 14158    3.5 1304992956
## 14161    3.5 1304992612
## 14164    3.5 1304992545
## 14166    3.0 1304992201
## 14168    3.5 1304729472
## 14169    3.5 1304993113
## 14172    3.5 1304729463
## 14173    3.5 1304992467
## 14174    3.5 1304991727
## 14175    3.5 1304993029
## 14179    2.5 1304729519
## 14182    2.5 1304992362
## 14183    3.5 1304992164
## 14184    3.0 1304991715
## 14186    3.5 1304992145
## 14188    3.5 1304991976
## 14189    3.5 1304992476
## 14190    3.0 1304992157
## 14193    2.5 1304729528
## 14196    3.5 1304729500
## 14198    3.5 1304729546
## 14202    3.5 1304991872
## 14210    3.0 1304991885
## 14211    3.5 1304729440
## 14212    3.5 1304992621
## 14213    3.5 1304992965
## 14216    3.5 1304992197
## 14218    3.5 1304992081
## 14221    3.5 1304992785
## 14222    3.0 1304992367
## 14223    3.5 1304992382
## 14225    3.5 1304992244
## 14228    3.5 1304992372
## 14232    3.5 1304992334
## 14234    3.5 1304992089
## 14236    3.5 1304992212
## 14237    3.0 1304992510
## 14238    2.5 1304992707
## 14239    2.5 1304729449
## 14240    3.5 1304992236
## 14243    3.5 1304992445
## 14246    3.0 1304992274
## 14248    3.5 1304992693
## 14249    2.5 1304993132
## 14251    3.0 1304992753
## 14252    3.5 1304991839
## 14255    3.5 1304729573
## 14258    3.0 1304992724
## 14259    3.0 1304729539
## 14260    3.5 1304729577
## 14262    3.5 1304992717
## 14263    3.5 1304992675
## 14266    3.5 1304993193
## 14267    3.5 1304992208
## 14268    3.5 1304992116
## 14270    3.5 1304992960
## 14272    3.0 1304991655
## 14274    3.0 1304992417
## 14279    3.5 1304992638
## 14280    3.5 1304992993
## 14283    3.5 1304991702
## 14285    3.0 1304992773
## 14286    3.5 1304993061
## 14287    3.5 1304730389
## 14289    3.0 1304991855
## 14290    3.5 1304992297
## 14295    3.0 1304993097
## 14297    2.5 1304992317
## 14299    3.5 1304992218
## 14300    3.5 1304992595
## 14304    2.5 1304993120
## 14305    3.5 1304992010
## 14309    3.5 1304992976
## 14315    3.5 1304991723
## 14317    3.5 1291781117
## 14319    3.0 1291777340
## 14320    2.5 1291781042
## 14322    3.5 1291780487
## 14324    3.5 1291780453
## 14325    2.0 1291780169
## 14327    3.0 1291779564
## 14328    3.5 1291780604
## 14330    2.5 1291779708
## 14332    3.0 1291780145
## 14333    3.0 1291781185
## 14335    1.5 1291779806
## 14336    1.5 1291781070
## 14337    2.5 1291779540
## 14339    1.0 1291781004
## 14342    2.5 1291779941
## 14343    2.0 1291779697
## 14345    3.0 1291781464
## 14346    3.0 1291777310
## 14347    2.5 1291780484
## 14349    3.5 1291781459
## 14350    3.5 1291779824
## 14351    2.5 1291780026
## 14354    1.5 1291780751
## 14355    3.0 1291780969
## 14356    3.5 1291781469
## 14357    2.0 1291780019
## 14359    3.0 1291780592
## 14360    2.5 1291781119
## 14361    3.0 1291779528
## 14363    3.5 1291779626
## 14369    2.0 1291777522
## 14370    2.5 1291781044
## 14371    3.5 1291780064
## 14374    2.5 1291780343
## 14376    1.0 1291780076
## 14382    1.0 1291780335
## 14383    2.5 1291780964
## 14384    3.5 1291779761
## 14385    1.5 1291780347
## 14386    3.0 1291779570
## 14387    3.5 1291777280
## 14390    2.0 1291780196
## 14394    1.5 1291780877
## 14396    1.5 1291777466
## 14397    2.5 1291777325
## 14398    0.5 1291777450
## 14399    2.5 1291777293
## 14400    3.0 1291780906
## 14402    0.5 1291777353
## 14404    3.5 1291780358
## 14406    3.0 1291780351
## 14407    3.5 1291781096
## 14416    3.5 1291780951
## 14419    2.5 1291779700
## 14420    3.5 1291777250
## 14421    1.5 1291780622
## 14422    2.5 1291780996
## 14426    3.0 1291781112
## 14427    2.5 1291779623
## 14428    2.5 1291781129
## 14430    1.0 1291781066
## 14431    3.5 1291779733
## 14432    3.5 1291777509
## 14433    1.5 1291779692
## 14435    3.5 1292392675
## 14436    3.5 1291779659
## 14437    1.5 1291780177
## 14439    2.0 1291781215
## 14440    3.0 1291779577
## 14441    2.0 1291779607
## 14443    3.5 1291779652
## 14444    3.0 1291780898
## 14445    3.5 1291779827
## 14446    3.0 1291780974
## 14447    3.5 1292392653
## 14448    3.0 1291777481
## 14449    2.5 1291780596
## 14450    2.5 1291781001
## 14451    2.5 1292392659
## 14452    2.0 1291780469
## 14453    1.5 1291781025
## 14454    3.0 1291779663
## 14457    1.0 1291781212
## 14461    3.0 1291780509
## 14462    3.5 1291780992
## 14463    3.5 1291781105
## 14465    3.5 1292392712
## 14469    3.0 1291781085
## 14470    3.0 1292392700
## 14471    2.5 1291779888
## 14474    3.5 1292392505
## 14475    3.0 1291780552
## 14478    3.5 1292392628
## 14479    3.5 1292392633
## 14480    3.0 1291780606
## 14482    2.5 1291781053
## 14483    3.0 1291780941
## 14484    3.0 1291780984
## 14486    3.0 1291780476
## 14487    2.5 1291780610
## 14488    3.5 1291781204
## 14491    3.0 1291779704
## 14495    3.5 1291780148
## 14497    3.5 1292392670
## 14498    3.5 1292392500
## 14500    3.5 1292392637
## 14503    3.5 1292392716
## 14508    2.5 1291780910
## 14509    3.0 1291780495
## 14513    3.0 1016317600
## 14522    2.0 1016317489
## 14523    3.0 1016317721
## 14533    3.0 1019023101
## 14534    3.0 1016317617
## 14535    3.0 1019023293
## 14538    3.0 1016317696
## 14544    2.0 1016317171
## 14548    3.0 1019023206
## 14553    3.0 1019023343
## 14557    3.0 1016317074
## 14574    2.0 1019023613
## 14590    3.0 1019023410
## 14592    2.0 1019023252
## 14593    3.0 1019023190
## 14595    3.0 1019023230
## 14597    3.0 1016317074
## 14601    3.0 1019023736
## 14602    3.0 1016317396
## 14604    3.0 1019023569
## 14606    3.0 1019023517
## 14607    3.0 1016317090
## 14608    2.0 1019023463
## 14609    3.0 1019023369
## 14611    3.0 1019023613
## 14615    3.0 1018816035
## 14616    3.0 1019023410
## 14618    3.0 1016317111
## 14620    3.0 1025556197
## 14623    2.0 1019023768
## 14626    3.0 1019023230
## 14627    2.0 1019023343
## 14630    3.0 1016317773
## 14631    3.0 1019022937
## 14632    3.0 1016317697
## 14634    3.0 1018815528
## 14641    3.0 1018815698
## 14646    3.0 1016317157
## 14649    3.0 1016317856
## 14654    2.0 1019023753
## 14655    3.0 1019023314
## 14667    3.0 1025556197
## 14669    3.0 1018816130
## 14673    3.0 1018816171
## 14674    3.0 1018816130
## 14677    3.0 1018815904
## 14680    3.0 1018815674
## 14684    3.0 1019023252
## 14691    3.0 1018815770
## 14697    3.0 1018815599
## 14702    3.0 1019023314
## 14703    3.0 1019023054
## 14704    3.0 1019023314
## 14706    3.0 1018815560
## 14718    3.0 1016317600
## 14719    3.0 1018816073
## 14723    2.0 1016317833
## 14726    3.0 1016317074
## 14727    3.0 1025556197
## 14732    3.0 1019023102
## 14735    3.0 1018815953
## 14737    3.0 1019023314
## 14739    3.0 1019023569
## 14741    3.0 1016317140
## 14743    2.0 1018815877
## 14744    3.0 1019023613
## 14745    3.0 1019023671
## 14747    2.0 1016317856
## 14751    2.0 1019023517
## 14753    3.0 1025556197
## 14756    3.0 1016317519
## 14762    3.0 1016317253
## 14769    3.0 1019023736
## 14770    3.0 1016317253
## 14778    3.0 1016317227
## 14780    3.0 1019023736
## 14783    2.0 1016317111
## 14784    3.0 1018815528
## 14788    3.0 1016317721
## 14793    2.0 1016316859
## 14796    3.0 1025556197
## 14797    3.0 1025556369
## 14798    3.0 1025556197
## 14802    3.0 1018816326
## 14804    3.0 1018816304
## 14805    2.0 1018816267
## 14806    3.0 1018816267
## 14810    3.0 1025556285
## 14811    2.5 1223256331
## 14813    2.0 1223256805
## 14814    3.5 1223256797
## 14816    3.0 1223256282
## 14817    3.0 1223256349
## 14832    3.0 1223256301
## 14837    3.5 1223256264
## 14844    2.5 1223256322
## 14846    3.0 1223256635
## 14848    3.0 1223256357
## 14849    3.0 1223256336
## 14850    3.0 1223256786
## 14851    2.5 1223256713
## 14854    2.5 1223256849
## 14860    3.0 1223256810
## 14861    3.0 1223256730
## 14873    3.0 1223256472
## 14880    3.0 1223256615
## 14882    3.5 1223256776
## 14886    3.5 1223256753
## 14887    1.0 1460342505
## 14890    1.0 1460342434
## 14891    3.5 1460343084
## 14892    2.0 1460343105
## 14895    2.5 1460342503
## 14896    1.5 1460342652
## 14897    2.5 1460342605
## 14898    1.5 1460342318
## 14900    0.5 1460342660
## 14901    2.0 1460342416
## 14902    3.5 1460342325
## 14903    1.5 1460342687
## 14904    2.0 1460342646
## 14907    3.0 1460342315
## 14909    3.5 1460342304
## 14910    2.0 1460342342
## 14911    1.5 1460342302
## 14914    1.5 1460342421
## 14915    2.5 1460342673
## 14916    2.0 1460342716
## 14917    2.0 1460343721
## 14919    2.5 1460342322
## 14922    3.5 1460342334
## 14923    2.0 1460342420
## 14926    3.0 1460342517
## 14927    3.5 1460342468
## 14928    3.5 1460343956
## 14931    3.0 1460342330
## 14932    2.5 1460342480
## 14933    2.5 1460342320
## 14934    2.0 1460342498
## 14935    2.0 1460342433
## 14937    1.5 1460342560
## 14939    2.5 1460342413
## 14941    3.0 1460342413
## 14942    1.5 1460342563
## 14943    3.5 1460342531
## 14944    2.5 1460342451
## 14945    0.5 1460342715
## 14947    3.5 1460343016
## 14948    0.5 1460342648
## 14949    3.0 1460342624
## 14951    1.0 1460342488
## 14955    3.5 1460343708
## 14956    2.5 1460342388
## 14957    2.5 1460342443
## 14958    1.0 1460342654
## 14959    1.5 1460342423
## 14960    1.5 1460342389
## 14961    3.5 1460343714
## 14962    3.5 1460342705
## 14963    3.0 1460342676
## 14964    1.5 1460342685
## 14965    3.0 1460342668
## 14966    1.0 1460342613
## 14967    1.5 1460342644
## 14968    0.5 1460342547
## 14969    3.5 1460343718
## 14971    3.0 1460343661
## 14975    3.5 1460343011
## 14977    2.5 1460343401
## 14978    2.0 1460343083
## 14979    2.5 1460342395
## 14983    3.0 1460342391
## 14984    3.5 1460343777
## 14985    3.5 1460342807
## 14987    1.5 1460343379
## 14988    3.0 1460343218
## 14989    1.5 1460343699
## 14991    3.5 1460343862
## 14992    3.5 1460342888
## 14993    2.0 1460343786
## 14994    3.0 1460343233
## 14995    3.5 1460343228
## 14999    3.0 1460343800
## 15001    1.5 1460343121
## 15002    2.0 1460342400
## 15008    2.0 1460342393
## 15009    1.5 1460343388
## 15012    1.0 1460342589
## 15013    3.5 1460343371
## 15014    1.0 1460342797
## 15015    3.0 1459405466
## 15016    3.0 1459405274
## 15018    3.5 1459405698
## 15020    3.5 1459405701
## 15024    3.5 1459405340
## 15036    2.5 1459405478
## 15039    3.5 1459405423
## 15043    2.5 1459405039
## 15044    3.0 1459405262
## 15050    3.0 1459405452
## 15051    3.5 1459405271
## 15052    3.0 1459405319
## 15059    3.0 1459405160
## 15068    3.5 1459405380
## 15071    3.5 1459405048
## 15073    1.5 1459405437
## 15074    3.5 1459405880
## 15079    2.0 1459405127
## 15083    3.0 1459404907
## 15084    3.0 1459404951
## 15087    2.0  950999958
## 15088    3.0  938586999
## 15089    3.0  938586999
## 15091    1.0  938585500
## 15093    3.0  938587407
## 15094    3.0  947519500
## 15095    3.0  938623596
## 15096    2.0  938586337
## 15097    2.0  938585857
## 15098    2.0  938586560
## 15099    3.0  938585556
## 15100    1.0  938586591
## 15104    3.0  938585656
## 15106    2.0  938587172
## 15107    1.0  938586663
## 15109    3.0  938587407
## 15111    3.0  938587034
## 15114    1.0  938586706
## 15115    3.0  938586006
## 15122    2.0  947519711
## 15123    3.0  938586662
## 15128    3.0  938588178
## 15129    3.0  938624252
## 15133    3.0  938623596
## 15139    3.0  938623596
## 15146    2.0  938624708
## 15147    2.0  938588392
## 15148    1.0  938624591
## 15149    2.0  938588290
## 15150    3.0  938588290
## 15151    2.0  938624617
## 15153    3.0  938587916
## 15154    3.0  938588290
## 15155    3.0  938623534
## 15156    2.0  938624591
## 15159    3.0  938585037
## 15163    3.0  938623675
## 15165    3.0  947519573
## 15168    3.0  938587916
## 15169    3.0  938587876
## 15172    2.0  938588358
## 15173    3.0  938585285
## 15174    3.0  938587104
## 15175    3.0  947519657
## 15176    2.0  938585094
## 15177    3.0  938585718
## 15178    1.0  938586764
## 15182    1.0  938585037
## 15184    3.0  938585613
## 15187    3.0  938587337
## 15189    3.0  938586895
## 15190    3.0  947519573
## 15194    3.0  938624252
## 15196    2.0  947519658
## 15198    3.0  947519629
## 15199    1.0  938623675
## 15204    3.0  938624708
## 15205    2.0  947519712
## 15208    2.0  938584974
## 15209    1.0  938585869
## 15210    2.0  938623675
## 15211    1.0  938624708
## 15212    1.0  938624807
## 15213    3.0  947519712
## 15217    2.0  942783208
## 15218    3.0  938586999
## 15219    3.0  942783156
## 15221    3.0  938549745
## 15223    1.0  951000065
## 15224    3.0  938623208
## 15225    3.0  947519597
## 15228    3.0  938586006
## 15230    2.0  950999958
## 15231    3.0  938587172
## 15232    2.0  938549053
## 15236    3.0  940223140
## 15237    2.0  942783078
## 15239    3.0  950999736
## 15243    2.0  947519315
## 15244    2.0  948412004
## 15245    2.0  953399961
## 15247    1.0 1015038047
## 15249    3.0  963871870
## 15250    3.0  970943910
## 15252    3.0 1015037811
## 15253    2.0 1015038093
## 15257    3.0 1044786615
## 15258    3.0  982280624
## 15259    3.0 1015037743
## 15260    2.0 1015037795
## 15276    3.0  854194023
## 15277    3.0  854194024
## 15280    3.0  854194056
## 15281    3.0  854193977
## 15282    3.0  854194208
## 15283    2.0  854194208
## 15284    3.0  854193977
## 15285    3.0  854194086
## 15286    3.0  854193977
## 15288    3.0  854193977
## 15289    3.0  854194086
## 15290    3.0  854194056
## 15291    3.0  854194024
## 15292    3.0  854193977
## 15294    3.0  854193977
## 15295    3.0  854194056
## 15299    3.5 1292402318
## 15300    2.5 1292402288
## 15301    2.5 1292402307
## 15302    3.5 1292402305
## 15304    2.0 1292402324
## 15306    2.5 1292402282
## 15307    3.5 1292402634
## 15308    2.5 1292402274
## 15312    2.5 1292402330
## 15313    3.5 1292402569
## 15318    3.5 1292402444
## 15319    3.5 1292402503
## 15325    3.0 1292402316
## 15326    3.5 1292402618
## 15330    3.5 1292402682
## 15331    2.5 1292402269
## 15334    3.0 1292402279
## 15335    3.5 1292402688
## 15336    3.0 1292402332
## 15339    3.5 1292402724
## 15360    1.0  959976593
## 15366    2.0  957980283
## 15368    2.0  957895047
## 15382    3.0  957895080
## 15384    3.0  957894400
## 15390    2.0  956598995
## 15391    3.0  956598677
## 15396    3.0  956599860
## 15399    3.0  957895251
## 15400    3.0  958249214
## 15404    3.0  956600134
## 15406    3.0  956600183
## 15409    3.0  957894532
## 15410    3.0  957894532
## 15411    2.0  957894170
## 15420    3.0  958248454
## 15425    2.0  957894532
## 15438    2.0  957980779
## 15439    3.0  957980120
## 15441    3.0  957895047
## 15481    3.0  959976680
## 15491    2.0  957894450
## 15502    2.0  957893991
## 15503    3.0  957894807
## 15527    3.0  956590405
## 15541    3.0  956590405
## 15568    3.0  957893991
## 15586    3.0  957894707
## 15587    3.0  958248668
## 15606    3.0  957894204
## 15608    3.0  956599971
## 15609    3.0  957980378
## 15611    2.0  957980557
## 15614    3.0  957980250
## 15617    3.0  957980222
## 15619    3.0  957980400
## 15624    3.0  956599100
## 15628    2.0  958248516
## 15632    2.0  957980557
## 15633    2.0  957894170
## 15645    2.0  957894285
## 15646    2.0  957982093
## 15647    3.0  959976817
## 15650    2.0  957980451
## 15656    2.0  957893804
## 15666    2.0  957895650
## 15668    3.0  958249148
## 15669    1.0  957895013
## 15670    2.0  957894870
## 15671    3.0  956600246
## 15692    3.0  956599162
## 15702    3.0  957980400
## 15703    2.0  957894204
## 15704    2.0  957894807
## 15705    2.0  957980222
## 15712    2.0  957894667
## 15713    3.0  959976680
## 15731    3.0  959976680
## 15732    3.0  957980451
## 15734    3.0  958248471
## 15735    2.0  957894627
## 15737    2.0  957980426
## 15744    3.0  959976634
## 15745    3.0  958248878
## 15746    3.0  957894667
## 15747    3.0  957895251
## 15752    3.0  959976680
## 15759    1.0  957894741
## 15760    3.0  957894126
## 15770    3.0  957894400
## 15773    3.0  956600183
## 15777    3.0  957894126
## 15779    3.0  957893897
## 15784    3.0  957980309
## 15788    3.0  957894400
## 15789    3.0  958248949
## 15790    3.0  958249041
## 15791    3.0  957894883
## 15792    3.0  958249076
## 15794    3.0  956599941
## 15796    3.0  957980146
## 15798    3.0  957980283
## 15802    1.0  957894760
## 15803    1.0  957980378
## 15805    3.0  958248533
## 15812    3.0  957893541
## 15815    3.0  957895189
## 15816    3.0  957980173
## 15819    2.0  957980426
## 15840    3.0  959976634
## 15847    3.0  956598547
## 15848    3.0  956591576
## 15851    3.0  957894309
## 15854    2.0  957980469
## 15875    3.0  956600083
## 15885    3.0  957896083
## 15886    3.0  956599100
## 15892    3.0  957894126
## 15901    3.0  958249773
## 15904    2.0  957893930
## 15908    3.0  956599162
## 15909    2.0  957894309
## 15910    2.0  957893972
## 15921    3.0  957894505
## 15922    3.0  958248878
## 15924    3.0  957895233
## 15928    3.0  956598432
## 15929    2.0  957893451
## 15930    2.0  957893451
## 15932    2.0  956599821
## 15933    2.0  957893364
## 15934    2.0  957893405
## 15935    2.0  957893405
## 15937    3.0  956599874
## 15939    1.0  957893451
## 15942    3.0  956591745
## 15946    3.0  957894788
## 15948    2.0  957893364
## 15951    3.0  956599061
## 15957    2.0  957980779
## 15958    3.0  957894667
## 15965    3.0  957894760
## 15968    1.0  957893428
## 15973    1.0  957893428
## 15976    2.0  957894267
## 15977    2.0  957981575
## 15979    3.0  959975630
## 15990    2.0  957893471
## 15991    3.0  957981663
## 15995    3.0  956590822
## 16015    3.0  959976106
## 16019    3.0  959975848
## 16020    3.0  959021792
## 16021    3.0  959976044
## 16028    3.0  961791852
## 16035    1.0 1117751197
## 16036    1.5 1117482144
## 16038    1.0 1117750991
## 16039    1.0 1117751173
## 16041    3.0 1117403705
## 16042    3.0 1117403402
## 16046    2.5 1117751391
## 16049    2.0 1117482051
## 16051    1.0 1117315897
## 16052    2.0 1117402549
## 16053    2.5 1117315794
## 16057    3.5 1117403369
## 16059    3.5 1117403410
## 16060    3.0 1117403375
## 16062    3.5 1117481903
## 16063    3.0 1117315673
## 16064    3.5 1117315810
## 16065    1.5 1117751643
## 16066    1.0 1117751071
## 16068    2.0 1117402521
## 16069    1.5 1117315867
## 16070    3.0 1117403717
## 16071    3.5 1117402531
## 16072    1.0 1117750982
## 16073    3.5 1117402540
## 16074    3.5 1117315619
## 16076    1.5 1117315761
## 16077    3.0 1117751684
## 16078    2.0 1117315940
## 16079    1.5 1117315845
## 16082    3.0 1117751407
## 16083    1.0 1117403012
## 16085    3.0 1117315874
## 16086    2.0 1117402713
## 16088    3.5 1117482016
## 16090    3.0 1117402464
## 16093    3.5 1117403390
## 16095    2.0 1117482135
## 16097    3.0 1117482102
## 16098    3.5 1117402645
## 16107    3.5 1117402615
## 16108    1.0 1117751135
## 16114    3.0 1117403312
## 16116    1.5 1117751234
## 16121    2.0 1117482004
## 16123    3.5 1117751568
## 16125    3.5 1117402600
## 16135    3.5 1446673678
## 16136    3.5 1446674058
## 16137    3.5 1446673686
## 16141    3.5 1446674117
## 16144    3.5 1446674123
## 16148    3.5 1446674066
## 16149    3.5 1446674097
## 16152    3.5 1446673980
## 16153    3.5 1446673794
## 16155    3.5 1446674082
## 16160    3.5 1446673875
## 16162    3.5 1446674148
## 16168    3.5 1446674037
## 16171    3.5 1446674062
## 16180    3.0 1446674088
## 16184    3.5 1446673778
## 16189    3.5 1446673992
## 16191    3.5 1446673802
## 16195    3.0 1446674139
## 16201    3.5 1446674078
## 16202    3.0 1085578997
## 16203    3.5 1101130624
## 16204    3.5 1100533597
## 16206    2.0 1088058230
## 16207    3.5 1086093635
## 16208    2.5 1085574077
## 16211    3.0 1100533551
## 16215    2.5 1088058158
## 16216    3.5 1100533831
## 16217    3.5 1088058675
## 16218    3.5 1086093600
## 16220    3.0 1100529775
## 16221    3.5 1085581733
## 16222    3.0 1085581726
## 16224    3.5 1100533423
## 16225    2.0 1088058683
## 16226    2.0 1100533903
## 16227    2.5 1100533996
## 16229    2.5 1086093646
## 16230    3.5 1100533509
## 16231    3.0 1101130498
## 16232    3.5 1085579933
## 16233    3.5 1085574471
## 16234    2.5 1088058647
## 16235    3.5 1100533466
## 16238    3.0 1100533564
## 16239    2.0 1088058656
## 16240    3.0 1085579676
## 16241    3.0 1086272698
## 16242    3.0 1085579171
## 16243    3.0 1100533414
## 16244    3.5 1086101939
## 16245    3.0 1101130575
## 16246    3.0 1086094614
## 16248    3.5 1100533451
## 16249    3.5 1101130637
## 16250    3.0 1086095273
## 16251    3.0 1100534070
## 16252    3.0 1086094602
## 16253    3.5 1100529797
## 16254    2.5 1088058623
## 16256    3.0 1086093920
## 16257    3.0 1100533629
## 16258    2.5 1085581664
## 16259    3.0 1086095239
## 16261    1.5 1085573835
## 16262    3.5 1100533484
## 16263    2.5 1100533815
## 16264    3.0 1100533587
## 16265    3.5 1086101945
## 16266    3.5 1100533501
## 16267    3.5 1100529745
## 16268    3.0 1085640697
## 16269    3.0 1085640689
## 16270    3.0 1086094013
## 16272    3.5 1100533610
## 16273    3.0 1086094619
## 16274    3.5 1086094026
## 16275    2.5 1085574422
## 16276    3.0 1086101954
## 16277    3.5 1086095236
## 16279    3.5 1085640658
## 16281    3.0 1085574395
## 16283    3.5 1086095164
## 16284    3.0 1086093615
## 16285    3.5 1100533482
## 16286    3.5 1086272680
## 16287    3.0 1088058164
## 16290    3.5 1086095185
## 16292    3.0 1100533435
## 16294    2.5 1088058610
## 16295    3.0 1100533457
## 16296    2.5 1085581674
## 16297    3.5 1086093893
## 16299    2.5 1085574335
## 16300    2.5 1085581638
## 16302    2.5 1088058188
## 16303    3.0 1086101906
## 16304    2.5 1085581624
## 16306    3.5 1086095142
## 16307    3.5 1100533616
## 16309    3.0 1086274277
## 16310    3.0 1086095103
## 16311    3.0 1085579881
## 16314    2.5 1088058573
## 16316    3.5 1085574410
## 16317    3.5 1085573973
## 16318    3.0 1086095128
## 16322    3.0 1085581557
## 16324    2.5 1086093583
## 16325    3.5 1088058555
## 16326    3.0 1085579179
## 16328    3.5 1085579028
## 16330    3.5 1086095072
## 16332    3.0 1086095090
## 16334    3.0 1088059092
## 16336    3.0 1101130590
## 16339    3.5 1086101917
## 16342    3.5 1085581565
## 16343    3.0 1101130530
## 16346    3.5 1085580336
## 16347    3.5 1100533822
## 16350    3.5 1086101890
## 16351    3.5 1085580285
## 16353    3.5 1101125772
## 16356    1.5 1085573954
## 16361    3.0 1086272749
## 16364    3.0 1085581535
## 16365    3.0 1086093850
## 16366    3.5 1088058500
## 16368    3.0 1085579145
## 16369    3.5 1085640555
## 16371    3.0 1086093867
## 16374    3.5 1086101897
## 16375    3.5 1085579314
## 16376    3.5 1086960518
## 16377    3.0 1086094327
## 16378    2.5 1085581530
## 16379    3.5 1086960509
## 16381    2.5 1086093877
## 16382    3.0 1086101845
## 16384    3.5 1086095038
## 16385    3.0 1086960525
## 16386    3.5 1086095060
## 16387    3.5 1085573855
## 16388    3.5 1085640550
## 16389    3.0 1100533952
## 16390    3.0 1086095042
## 16392    3.5 1086093488
## 16393    2.0 1085580294
## 16395    3.0 1085579473
## 16396    3.5 1088058180
## 16397    3.0 1085574042
## 16398    3.0 1085581486
## 16399    3.5 1086095010
## 16401    2.0 1086274021
## 16403    3.0 1086095002
## 16404    3.5 1100533713
## 16408    3.5 1085581466
## 16410    3.5 1086960071
## 16411    3.0 1086101836
## 16412    3.0 1088059037
## 16416    3.0 1101116025
## 16417    3.0 1085640483
## 16419    2.0 1085579811
## 16420    3.5 1088058417
## 16423    3.0 1086093845
## 16425    3.5 1086093383
## 16427    3.0 1088058422
## 16429    3.0 1100533686
## 16431    3.5 1100533958
## 16432    3.0 1085581438
## 16433    3.0 1085581441
## 16434    2.5 1088058369
## 16435    2.5 1100533989
## 16437    3.0 1086094963
## 16438    3.0 1086272795
## 16439    3.0 1085581411
## 16440    3.5 1100534034
## 16441    2.0 1086093376
## 16442    3.5 1088058350
## 16443    3.0 1086093792
## 16445    3.0 1086094915
## 16447    3.0 1086272559
## 16450    3.0 1088058975
## 16451    3.5 1199439298
## 16454    3.5 1085579021
## 16456    3.5 1085581448
## 16457    2.5 1085581377
## 16458    3.0 1088058358
## 16459    3.0 1085574059
## 16460    3.0 1100533577
## 16461    3.0 1086093370
## 16462    3.5 1100534113
## 16463    3.0 1088058376
## 16464    3.0 1088058315
## 16465    3.0 1085579828
## 16466    3.5 1086272645
## 16467    3.5 1086094900
## 16469    2.0 1085640299
## 16470    3.0 1085581383
## 16471    3.0 1086094906
## 16474    3.0 1085574342
## 16476    2.5 1086093818
## 16477    3.5 1085574093
## 16478    1.5 1085574070
## 16479    3.0 1086094844
## 16480    3.0 1085581341
## 16481    3.5 1199439167
## 16482    3.0 1086094851
## 16483    1.0 1086102111
## 16484    2.5 1086094875
## 16485    3.0 1085581358
## 16487    3.0 1086274315
## 16488    2.0 1086093346
## 16489    3.5 1086960054
## 16490    3.0 1086094859
## 16491    3.0 1085579657
## 16492    2.0 1088058933
## 16493    3.0 1100533937
## 16494    2.5 1086960284
## 16496    2.5 1085581054
## 16497    3.0 1086272690
## 16501    3.0 1086094218
## 16502    3.5 1086093785
## 16504    3.0 1086101839
## 16505    3.0 1085574349
## 16508    3.5 1101125851
## 16511    3.0 1086093777
## 16512    3.0 1086094809
## 16513    3.0 1086094805
## 16515    3.0 1086094522
## 16516    3.5 1085579412
## 16517    2.5 1085641901
## 16518    3.0 1085581274
## 16519    3.0 1086274284
## 16520    3.5 1086093765
## 16521    3.5 1086094765
## 16522    3.5 1086093452
## 16523    3.5 1085580217
## 16525    3.0 1085640104
## 16526    3.0 1086272799
## 16527    2.5 1086094787
## 16528    2.5 1086093357
## 16529    3.5 1086102081
## 16530    3.0 1088058238
## 16531    3.0 1086272525
## 16532    2.5 1086093741
## 16533    2.5 1100531148
## 16534    3.0 1101125778
## 16535    3.0 1086272631
## 16536    3.5 1085574022
## 16537    3.5 1085581284
## 16540    3.0 1086960240
## 16541    3.0 1085581289
## 16542    3.0 1085640064
## 16546    2.5 1086102087
## 16549    2.0 1088058852
## 16550    3.5 1086094781
## 16551    3.0 1085579419
## 16552    3.5 1086093773
## 16553    3.0 1086094534
## 16555    3.5 1086094545
## 16557    2.0 1086094180
## 16561    3.0 1086094194
## 16562    3.0 1086093756
## 16564    3.5 1086102036
## 16565    2.5 1086274173
## 16567    3.0 1085580186
## 16568    3.0 1086274263
## 16569    3.0 1088058270
## 16570    3.0 1086094721
## 16571    3.0 1085581279
## 16572    3.0 1101125836
## 16573    3.0 1086094736
## 16575    2.0 1086275040
## 16576    2.5 1086093749
## 16577    3.0 1085639931
## 16578    3.0 1086272615
## 16580    3.0 1088058788
## 16581    2.0 1086094164
## 16582    3.0 1085639873
## 16583    2.0 1085639899
## 16584    3.5 1085573843
## 16585    3.5 1100532157
## 16586    3.5 1086272672
## 16588    3.5 1086272776
## 16590    3.5 1085580193
## 16592    3.0 1088058815
## 16593    3.5 1085580206
## 16594    3.0 1085639858
## 16595    2.0 1086094470
## 16598    3.5 1088058250
## 16600    3.0 1085639848
## 16603    3.0 1085639812
## 16605    3.5 1085580172
## 16606    3.0 1085639807
## 16607    3.5 1086094703
## 16609    3.0 1086101988
## 16610    2.0 1085579220
## 16612    3.0 1086093719
## 16613    3.5 1085639777
## 16615    3.0 1085579637
## 16616    3.0 1085580165
## 16617    3.0 1085580993
## 16618    3.0 1086274032
## 16619    3.0 1086094467
## 16620    2.5 1088058223
## 16621    3.0 1086094100
## 16622    2.5 1085639782
## 16624    3.5 1085582146
## 16625    3.5 1086274529
## 16627    3.0 1086272790
## 16628    3.5 1085581236
## 16629    3.5 1086272598
## 16630    3.0 1086272410
## 16631    3.0 1085581244
## 16632    3.0 1101115611
## 16633    3.0 1085582137
## 16634    3.0 1086093708
## 16635    3.5 1085582061
## 16637    2.5 1199438959
## 16638    3.0 1086093682
## 16639    3.0 1088058214
## 16643    3.0 1086094105
## 16645    3.0 1085574460
## 16646    3.5 1085582030
## 16647    2.0 1086274470
## 16648    1.5 1088058733
## 16649    3.5 1085641574
## 16650    2.5 1101115415
## 16653    2.5 1085582022
## 16655    1.5 1086094117
## 16656    3.0 1085581212
## 16659    3.0 1086094066
## 16660    3.0 1100532042
## 16662    3.5 1100532177
## 16663    3.0 1086101995
## 16664    3.5 1101125659
## 16665    3.5 1085581939
## 16666    3.0 1085641448
## 16667    3.5 1086093675
## 16669    3.5 1100606244
## 16671    3.5 1086272571
## 16673    3.5 1101125697
## 16675    2.5 1086272492
## 16677    3.5 1100605991
## 16678    3.5 1088058706
## 16679    3.0 1086094075
## 16680    3.0 1085581170
## 16681    3.5 1085581157
## 16682    3.0 1199438599
## 16683    3.0 1086272603
## 16684    2.0 1199439214
## 16685    3.5 1100532089
## 16686    3.0 1086094656
## 16687    2.5 1085580015
## 16690    3.0 1086094360
## 16691    3.5 1100532118
## 16692    3.0 1085581870
## 16694    3.5 1100532019
## 16698    3.0 1100606302
## 16699    2.0 1086094349
## 16700    2.5 1088059177
## 16702    2.5 1086093699
## 16703    3.0 1085579207
## 16705    3.5 1100606316
## 16707    3.5 1086093623
## 16708    2.5 1085581780
## 16710    3.5 1086272341
## 16711    3.0 1086272346
## 16712    3.5 1101125893
## 16713    3.5 1086272329
## 16715    3.5 1199439249
## 16719    3.5 1199439144
## 16721    2.5 1199439080
## 16724    3.5 1199438665
## 16725    3.0 1199438842
## 16726    1.5 1199439007
## 16728    3.0 1215820041
## 16734    3.0 1215760658
## 16735    3.5 1215759985
## 16737    3.5 1215760493
## 16739    3.0 1215760243
## 16740    3.5 1215818358
## 16744    2.5 1215760669
## 16747    2.5 1215761066
## 16750    2.0 1215761101
## 16752    3.5 1215818302
## 16755    3.0 1215818385
## 16756    0.5 1215818472
## 16758    1.0 1215818522
## 16760    3.0 1215760972
## 16761    0.5 1215819552
## 16766    3.5 1215818396
## 16772    3.0 1446493028
## 16775    3.0 1446493238
## 16776    0.5 1446493194
## 16777    2.0 1446493350
## 16779    3.5 1446493296
## 16780    1.5 1446493230
## 16781    3.5 1446493183
## 16782    3.5 1446493152
## 16783    3.5 1446493281
## 16784    0.5 1446493334
## 16785    1.5 1446493198
## 16786    0.5 1446493222
## 16787    2.0 1446493286
## 16788    2.0 1446493319
## 16789    3.0 1446493190
## 16790    0.5 1446493216
## 16791    1.5 1446493250
## 16792    0.5 1446493273
## 16794    3.5 1446493203
## 16799    1.5 1446493170
## 16803    3.0 1446493062
## 16805    3.0  843302154
## 16806    2.0  843302154
## 16807    3.0  843302110
## 16808    3.0  843301948
## 16809    3.0  843302067
## 16810    3.0  843302067
## 16812    3.0  843302196
## 16813    2.0  843301990
## 16814    3.0  843302067
## 16815    3.0  843302110
## 16816    3.0  843301884
## 16818    3.0  843302111
## 16819    1.0  843301948
## 16822    3.0  843302154
## 16824    3.0  843301884
## 16825    3.0  843302026
## 16826    3.0  843302111
## 16831    3.0  843302154
## 16832    3.0  843301884
## 16835    3.5 1153229790
## 16839    2.5 1153229745
## 16852    2.5 1153229716
## 16854    3.5 1153229759
## 16869    3.0  840100546
## 16870    3.0  840100501
## 16873    3.0  840100501
## 16874    1.0  840101128
## 16880    3.0  840100386
## 16881    3.0  840100546
## 16886    3.0  840100585
## 16900    3.0  840100893
## 16902    3.0  840100456
## 16906    3.0  840100546
## 16912    3.0  840100821
## 16915    3.0  840100439
## 16916    3.0  840100821
## 16920    2.0  840100921
## 16925    3.0  840100501
## 16935    3.0  840100946
## 16950    3.0  840100994
## 16953    3.0  840100921
## 16967    3.0  840100416
## 16972    3.0  840100695
## 16978    3.0 1097430540
## 16979    3.5 1097429457
## 16980    3.5 1097432318
## 16982    2.5 1098045013
## 16984    3.5 1097429230
## 16985    3.5 1097429750
## 16987    1.0 1097429193
## 16990    3.0 1097431144
## 16991    3.0 1097430874
## 16992    0.5 1097429180
## 16994    3.5 1097514612
## 16995    3.5 1097432358
## 16998    3.0 1097432346
## 16999    2.5 1097431678
## 17002    0.5 1097431412
## 17003    3.5 1097430507
## 17005    3.5 1097432320
## 17007    3.5 1097432375
## 17009    3.0 1097514606
## 17011    3.0 1097430518
## 17012    2.0 1097429176
## 17013    3.0 1097514380
## 17014    3.5 1097429651
## 17015    3.5 1098045314
## 17016    2.0 1097432326
## 17018    3.5 1097431682
## 17019    3.5 1097429767
## 17022    2.5 1097432334
## 17024    3.5 1097429669
## 17026    3.5 1097430883
## 17028    3.0 1097432336
## 17029    3.5 1097430881
## 17030    3.5 1098044819
## 17031    1.0 1097430889
## 17032    3.5 1097429406
## 17033    3.0 1097432380
## 17034    1.5 1097432330
## 17035    2.5 1097429297
## 17039    3.0 1097432294
## 17040    3.0 1097430856
## 17042    2.5 1097429228
## 17043    3.5 1097432291
## 17045    3.5 1097432312
## 17047    1.5 1097429183
## 17049    2.5 1097429387
## 17051    3.0 1097514893
## 17052    3.5 1097429385
## 17058    3.0 1097429251
## 17060    3.5 1097429373
## 17061    3.5 1097431651
## 17064    3.0 1097431125
## 17067    2.5 1097432456
## 17074    3.5 1097429355
## 17076    3.0 1097431418
## 17080    3.5 1097432420
## 17081    3.0 1098044795
## 17082    3.5 1097431623
## 17083    3.5 1097431420
## 17087    3.0 1097432450
## 17088    3.5 1098373835
## 17089    1.5 1097431619
## 17091    3.5 1097429361
## 17092    3.5 1097514793
## 17093    3.0 1097431614
## 17097    3.5 1097514816
## 17098    3.5 1097429351
## 17100    3.0 1098044660
## 17103    1.5 1097429349
## 17104    1.5 1097429237
## 17105    2.5 1097431968
## 17107    1.0 1097430687
## 17109    3.5 1097431959
## 17110    3.0 1098373801
## 17111    3.0 1097432240
## 17112    3.0 1097431606
## 17113    3.5 1098374434
## 17114    2.5 1097429293
## 17115    2.5 1097431602
## 17116    3.5 1097429320
## 17117    3.5 1097430719
## 17118    3.5 1098373990
## 17121    3.5 1097514936
## 17123    3.5 1098374461
## 17124    3.0 1098373776
## 17125    2.5 1097429187
## 17127    3.5 1097514940
## 17128    3.5 1098045265
## 17129    3.5 1097431564
## 17131    3.5 1097431577
## 17132    2.0 1097431941
## 17135    2.5 1097514906
## 17136    1.5 1097429203
## 17139    3.0 1098373766
## 17140    3.5 1098374417
## 17142    3.5 1097514883
## 17143    3.0 1097431925
## 17144    3.5 1098373592
## 17148    2.5 1098373755
## 17152    1.5 1097431911
## 17155    2.5 1098044731
## 17156    3.0 1098044735
## 17157    2.5 1097432395
## 17159    3.5 1098374402
## 17160    1.5 1097432489
## 17162    3.0 1097430705
## 17163    1.0 1097429310
## 17165    3.5 1097431536
## 17166    1.0 1097429213
## 17171    3.5 1097514822
## 17172    3.5 1097431519
## 17175    3.0 1097431523
## 17177    3.0 1097432427
## 17178    3.0 1097431882
## 17184    3.5 1098374333
## 17185    0.5 1097429253
## 17186    3.5 1098044715
## 17187    3.0 1097429526
## 17188    3.5 1097429513
## 17189    3.0 1098373553
## 17193    1.0 1097429530
## 17194    3.5 1097429519
## 17196    2.5 1098374329
## 17197    2.5 1098374337
## 17198    3.5 1097431498
## 17201    3.5 1097429206
## 17203    3.5 1097429533
## 17205    3.5 1097431490
## 17206    3.5 1097429535
## 17207    1.0 1097429517
## 17208    3.5 1097432437
## 17209    3.5 1098374299
## 17210    3.5 1098373571
## 17211    3.5 1097514909
## 17212    2.0 1098374296
## 17215    3.5 1097431843
## 17216    2.5 1098045068
## 17217    3.5 1097514767
## 17219    3.0 1097431503
## 17220    3.5 1097431493
## 17221    3.5 1098374191
## 17224    3.5 1098374196
## 17225    2.5 1097514553
## 17226    0.5 1097431467
## 17229    3.5 1097514787
## 17232    2.5 1097514663
## 17233    3.5 1098044698
## 17234    3.0 1097432186
## 17235    2.5 1097514666
## 17240    3.5 1097431823
## 17243    3.5 1098044693
## 17244    3.5 1097436698
## 17246    2.5 1098374158
## 17247    3.5 1097431477
## 17249    2.5 1097514531
## 17250    3.5 1097431817
## 17252    2.5 1098374154
## 17254    3.5 1097431810
## 17258    3.0 1097514898
## 17259    2.5 1097431464
## 17260    3.5 1097514657
## 17261    2.0 1098374142
## 17263    3.0 1097431797
## 17264    3.0 1097514862
## 17266    2.5 1098045051
## 17269    1.5 1097431446
## 17271    1.5 1097430574
## 17272    3.0 1097514874
## 17276    3.0 1097432135
## 17277    3.5 1098045039
## 17278    3.5 1097514754
## 17281    3.5 1098045419
## 17282    3.5 1097432127
## 17283    3.0 1097432492
## 17289    3.0 1098373561
## 17290    3.0 1097514681
## 17291    1.5 1097429446
## 17293    3.0 1098045033
## 17294    3.0 1097436615
## 17295    3.5 1097429453
## 17299    3.5 1098374066
## 17303    2.0 1098044676
## 17304    3.5 1097432077
## 17305    3.0 1097432100
## 17307    3.0 1097432064
## 17310    3.5 1097432030
## 17312    3.0 1097437389
## 17318    3.0 1097432018
## 17321    3.0  852720897
## 17322    3.0  852720984
## 17323    3.0  852720865
## 17326    3.0  852720866
## 17330    2.0  852720866
## 17333    1.0  852720866
## 17341    3.0  844884590
## 17346    3.0  844884266
## 17369    3.0  838365897
## 17371    3.0  838365897
## 17374    3.0  838365857
## 17375    1.0  838365737
## 17376    3.0  838365840
## 17389    3.0  838365907
## 17390    3.0  838365867
## 17395    3.5 1107034126
## 17396    2.0 1107034459
## 17399    3.0 1107034092
## 17400    3.0 1107034046
## 17403    3.5 1107034097
## 17405    2.5 1107034038
## 17407    3.5 1107034454
## 17415    3.0 1107034043
## 17416    3.5 1107034088
## 17419    3.5 1107034448
## 17420    3.5 1107034119
## 17429    3.0 1107034074
## 17430    3.5 1107034071
## 17434    1.5 1163454706
## 17441    2.5 1163454728
## 17442    2.5 1163454712
## 17443    2.0 1163454650
## 17444    3.0 1163454691
## 17449    3.0 1163454632
## 17450    1.0 1163454748
## 17451    2.0 1163454640
## 17458    3.5 1320638323
## 17462    3.5 1320638237
## 17465    3.0 1320634780
## 17466    2.5 1320634699
## 17467    2.5 1320634623
## 17470    0.5 1320634657
## 17473    0.5 1320634669
## 17475    3.0 1320634724
## 17477    3.0 1320638154
## 17480    3.0 1320640136
## 17481    0.5 1320634828
## 17483    0.5 1320634835
## 17484    2.0 1320634634
## 17486    3.5 1320634680
## 17487    3.0 1320634856
## 17496    3.5 1320637335
## 17503    3.5 1320639535
## 17504    3.5 1320637031
## 17519    2.0  951009429
## 17531    3.0  951009851
## 17533    2.0  951009005
## 17547    3.0  951009349
## 17550    3.0  951009429
## 17553    3.0  951009005
## 17558    3.0  950153947
## 17573    3.0  951009429
## 17579    3.0  951009005
## 17582    3.0  951008883
## 17584    3.0  951009585
## 17585    2.0  951008911
## 17592    3.0  951008828
## 17594    1.0  951009552
## 17595    3.0  951009097
## 17597    3.0  951009481
## 17607    3.0  951009067
## 17608    1.0  951009097
## 17610    3.0  951009097
## 17615    3.0  951009067
## 17616    3.0  951009481
## 17617    3.0  950153928
## 17618    3.0  951009397
## 17629    3.0  951008941
## 17633    3.0  951009067
## 17635    3.0  951009826
## 17636    1.0  951009209
## 17638    3.0  951009005
## 17640    3.0  951009097
## 17641    3.0  951008855
## 17642    3.0  951009148
## 17643    3.0  951009037
## 17645    3.0  951009005
## 17646    3.0  951009230
## 17648    3.0  951009168
## 17658    2.0  951009097
## 17678    3.0  964408657
## 17680    3.0  964408796
## 17683    3.0  964408894
## 17684    3.0  964408994
## 17686    3.0  964409017
## 17687    2.0  964408796
## 17690    3.0  964408911
## 17695    3.0  964408938
## 17696    3.0  964409039
## 17699    3.0  964408938
## 17701    3.0  964408938
## 17702    2.0  913048158
## 17703    3.0  913051445
## 17705    3.0  913048006
## 17707    3.0  913050793
## 17709    3.0  915411448
## 17711    3.0  945993306
## 17715    2.0  913048438
## 17718    3.0  945993516
## 17719    2.0  913232674
## 17720    2.0  952582537
## 17723    3.0  913128316
## 17726    3.0  913048077
## 17727    1.0  913232864
## 17728    2.0  913051632
## 17731    2.0  913232864
## 17732    1.0  913051632
## 17733    2.0  960751812
## 17734    2.0  913051475
## 17735    3.0  913050333
## 17736    2.0  913232894
## 17738    2.0  913232929
## 17740    2.0  913050480
## 17746    3.0  913050293
## 17748    3.0  913051506
## 17750    3.0  913048548
## 17752    3.0  913049150
## 17753    3.0  952583089
## 17754    3.0  913049072
## 17755    3.0  913048916
## 17756    2.0  913050396
## 17758    2.0  913049964
## 17761    2.0  913051632
## 17762    2.0  952583169
## 17763    3.0  952583509
## 17764    3.0  913048158
## 17767    3.0  972097228
## 17770    3.0  952582353
## 17775    3.0  913047597
## 17776    3.0  952582708
## 17788    1.0  913232929
## 17789    3.0  913048883
## 17790    3.0  913052090
## 17791    3.0  913049964
## 17793    2.0  913232864
## 17794    3.0  915411867
## 17798    2.0  913232716
## 17802    3.0  913050553
## 17807    1.0  913051506
## 17809    3.0  913211320
## 17810    3.0  913051666
## 17811    2.0  952583400
## 17827    3.0  915411502
## 17830    3.0  913232992
## 17831    3.0  960671689
## 17832    2.0  913050827
## 17833    3.0  913681100
## 17834    3.0  952584169
## 17837    3.0  913051666
## 17838    3.0  913050942
## 17839    3.0  913048764
## 17840    2.0  913049782
## 17843    3.0  960671633
## 17854    2.0  913050942
## 17855    2.0  913232754
## 17860    3.0  913680627
## 17861    2.0  952583063
## 17862    2.0  913118043
## 17877    3.0  913058346
## 17887    3.0  952581003
## 17899    2.0  913049179
## 17913    3.0  913232524
## 17921    2.0  913051590
## 17926    2.0  952584516
## 17928    2.0  952582585
## 17929    3.0  952582509
## 17930    3.0  913049427
## 17933    2.0  952583400
## 17934    3.0  913232642
## 17935    2.0  913232965
## 17936    3.0  952582034
## 17937    1.0  913232965
## 17938    3.0  913232794
## 17941    2.0  913233215
## 17943    3.0  913051590
## 17948    2.0  913050666
## 17949    2.0  913232929
## 17952    2.0  913050368
## 17953    3.0  913232754
## 17955    2.0  913051590
## 17956    3.0  913048764
## 17957    2.0  952581174
## 17958    1.0  913233239
## 17959    1.0  913233239
## 17961    2.0  952583721
## 17962    2.0  913048476
## 17964    3.0  913051475
## 17965    2.0  913050942
## 17966    3.0  913232754
## 17967    2.0  913050793
## 17968    3.0  913050230
## 17969    2.0  913233183
## 17971    2.0  913051632
## 17972    2.0  913233268
## 17973    3.0  915579236
## 17976    3.0  952582839
## 17978    1.0  913049303
## 17982    3.0  913048232
## 17983    2.0  913048077
## 17985    3.0  952583024
## 17986    3.0  913211248
## 17988    2.0  913050553
## 17989    3.0  913117813
## 17990    3.0  927055670
## 17991    3.0  913232894
## 17992    3.0  952583747
## 17993    1.0  913051506
## 17994    2.0  913050075
## 17995    3.0  913052089
## 17998    3.0  913057714
## 17999    3.0  913047343
## 18000    2.0  913049844
## 18001    3.0  913047878
## 18005    3.0  913050029
## 18006    3.0  913049605
## 18007    2.0  913050666
## 18008    2.0  913233215
## 18009    2.0  913048883
## 18010    3.0  913051445
## 18013    3.0  913232864
## 18014    3.0  913048721
## 18015    2.0  913048605
## 18016    3.0  913128356
## 18019    2.0  913057714
## 18020    2.0  913051666
## 18021    2.0  913233136
## 18022    3.0  913047687
## 18023    3.0  913049396
## 18024    3.0  913680547
## 18025    2.0  913051697
## 18026    3.0  913233296
## 18027    3.0  913050997
## 18028    2.0  913051666
## 18030    2.0  913058499
## 18032    2.0  913680503
## 18033    2.0  913050666
## 18035    3.0  913051632
## 18037    2.0  913052129
## 18040    3.0  952583206
## 18046    3.0  913052966
## 18047    3.0  952582353
## 18055    3.0  960671689
## 18059    3.0  952583848
## 18061    3.0  952583799
## 18062    3.0  913050368
## 18063    3.0  952581796
## 18066    2.0  952583848
## 18067    2.0  913050261
## 18068    3.0  913233012
## 18070    3.0  960671689
## 18072    2.0  913051697
## 18073    2.0  960671689
## 18080    3.0  913211160
## 18083    2.0  913051697
## 18085    3.0  952583442
## 18088    3.0  913233215
## 18091    2.0  952582409
## 18093    3.0  913232965
## 18094    3.0  913058346
## 18095    3.0  952584492
## 18096    3.0  913050518
## 18098    3.0  913211320
## 18099    3.0  913211248
## 18100    3.0  945993582
## 18101    3.0  960671726
## 18102    3.0  952582538
## 18104    3.0  960671689
## 18105    3.0  915411308
## 18110    3.0  952582887
## 18112    2.0  913052129
## 18113    3.0  913058279
## 18116    2.0  952584516
## 18120    2.0  927055099
## 18121    3.0  913051262
## 18123    2.0  952583548
## 18124    3.0  952582839
## 18131    2.0  913046852
## 18132    3.0  927055342
## 18133    3.0  952583721
## 18135    3.0  952582174
## 18136    3.0  952121372
## 18139    1.0  913233136
## 18141    3.0  945995494
## 18142    3.0  952582248
## 18143    2.0  913233327
## 18145    3.0  952581686
## 18147    2.0  913233183
## 18148    3.0  913232567
## 18150    2.0  913233296
## 18151    2.0  913232864
## 18152    3.0  913233268
## 18153    3.0  927055846
## 18154    2.0  913232642
## 18155    1.0  913233136
## 18156    3.0  952583624
## 18158    3.0  972097288
## 18159    3.0  915411448
## 18163    3.0  915412223
## 18164    3.0  945993844
## 18166    2.0  952583587
## 18167    2.0  952582887
## 18169    3.0  952583587
## 18170    3.0  952582382
## 18172    1.0  945993859
## 18173    2.0  959733676
## 18174    3.0  952583902
## 18175    3.0  945993764
## 18176    3.0  952583967
## 18177    2.0  945993697
## 18178    3.0  945993582
## 18179    3.0  952583509
## 18185    3.0  945993537
## 18187    3.0  952121533
## 18188    2.0  952582248
## 18189    1.0  945993764
## 18190    3.0  952582887
## 18191    1.0  945993967
## 18192    2.0  952121596
## 18194    2.0  952121533
## 18196    2.0  952583721
## 18201    2.0  989622527
## 18202    3.0  952121372
## 18203    2.0  952583136
## 18205    3.0  952582207
## 18207    3.0  952121372
## 18208    2.0  952121490
## 18211    3.0  952581439
## 18213    3.0  945993349
## 18220    3.0  952582069
## 18229    3.0  945993582
## 18234    3.0  952583136
## 18237    3.0  952582207
## 18242    3.0  952582639
## 18243    3.0  952582729
## 18244    2.0  952583587
## 18246    3.0  960751946
## 18248    2.0  972097355
## 18249    3.0  972097906
## 18252    3.0  952583442
## 18253    2.0  972097256
## 18256    3.0  959734260
## 18263    2.0  952583929
## 18265    3.0  952581470
## 18266    2.0  952583206
## 18267    2.0  952583587
## 18271    2.0  972097449
## 18274    2.0  972097473
## 18275    2.0  972097288
## 18276    3.0  952581856
## 18278    3.0  952580649
## 18279    2.0  952580566
## 18282    3.0  972097355
## 18287    2.0  960671726
## 18288    3.0  952580649
## 18290    3.0  952580566
## 18291    3.0  972097322
## 18298    2.0  960671726
## 18299    1.0  989784509
## 18303    2.0  972097378
## 18305    1.0  989622944
## 18308    3.0  989623049
## 18313    3.0  989622945
## 18314    2.0  972097449
## 18316    2.0  972097449
## 18317    2.0  989622976
## 18318    3.0  989623306
## 18319    2.0  989623049
## 18323    3.0  972097355
## 18326    2.0  989622976
## 18329    3.0  989622945
## 18331    3.0  989622945
## 18332    3.0  989622570
## 18333    3.0  989622945
## 18334    2.0  989784550
## 18343    2.5 1167422234
## 18344    3.5 1167420751
## 18345    3.0 1125350649
## 18346    3.5 1167421762
## 18349    3.0 1167422401
## 18350    2.5 1125350327
## 18351    2.0 1167422338
## 18352    3.0 1167422364
## 18353    3.5 1125522893
## 18355    3.0 1167422305
## 18356    3.0 1167422258
## 18357    3.5 1167422230
## 18358    3.5 1167422387
## 18359    3.5 1125523032
## 18360    3.0 1125523035
## 18361    3.0 1167422333
## 18362    3.0 1167422359
## 18363    3.5 1125523111
## 18365    3.5 1167420777
## 18367    3.0 1167422326
## 18368    1.5 1167420460
## 18369    3.5 1167422272
## 18370    3.0 1167422320
## 18371    3.0 1167422296
## 18372    3.5 1125523023
## 18373    1.5 1167420471
## 18376    3.0 1167421691
## 18377    3.5 1125523097
## 18378    3.5 1125523103
## 18382    3.5 1167422131
## 18383    3.0 1125523069
## 18384    3.5 1125350472
## 18387    3.5 1167421349
## 18388    1.5 1167421357
## 18389    2.5 1125523079
## 18390    3.5 1125522964
## 18391    2.5 1125350599
## 18392    3.0 1125350568
## 18393    3.0 1125350259
## 18394    3.5 1125523072
## 18396    3.0 1125350313
## 18397    3.0 1125523087
## 18400    3.5 1167422380
## 18401    3.0 1125350343
## 18402    3.5 1125350275
## 18406    2.5 1167420608
## 18407    3.0 1167420253
## 18408    3.5 1125523075
## 18409    3.0 1125350356
## 18410    1.5 1167420444
## 18411    2.5 1167420413
## 18416    3.0 1167420364
## 18417    3.5 1125350564
## 18420    3.0 1125350335
## 18422    3.5 1125350317
## 18423    3.5 1125350538
## 18426    3.5 1125523055
## 18427    3.0 1125523007
## 18431    3.5 1125350425
## 18433    3.5 1167421669
## 18437    3.0 1125522923
## 18438    3.0 1167421776
## 18439    2.0 1167420840
## 18440    3.5 1167422034
## 18441    3.5 1167422048
## 18443    3.5 1125350417
## 18445    3.5 1125523048
## 18446    3.5 1167420588
## 18447    3.5 1167422090
## 18449    3.5 1125350348
## 18450    2.0 1125523044
## 18453    2.5 1167420410
## 18454    2.5 1167422038
## 18455    2.5 1125523018
## 18456    3.0 1167420604
## 18457    3.5 1125350427
## 18458    3.5 1125522968
## 18460    3.0 1125350544
## 18461    3.0 1167420597
## 18463    2.5 1125523014
## 18466    0.5 1167420818
## 18467    3.5 1125350483
## 18468    3.0 1125350587
## 18472    2.0 1125350613
## 18473    3.0 1125350594
## 18475    3.5 1125350627
## 18476    2.0 1167421715
## 18479    1.5 1167420746
## 18480    3.0 1167421787
## 18483    3.0  833058428
## 18491    3.0  833058633
## 18493    3.0  833058866
## 18494    3.0  833059070
## 18496    3.0  833058390
## 18499    3.0  833058390
## 18501    3.0  833058557
## 18509    3.0  833058442
## 18510    3.0  833058621
## 18521    3.0  833058414
## 18524    3.0  833058428
## 18526    3.0  833058704
## 18533    3.0  833058489
## 18536    3.0  833058645
## 18546    3.0  836906092
## 18548    3.0  833058545
## 18549    3.0  833058905
## 18550    3.0  836906093
## 18557    3.0  836906141
## 18558    3.0  833058905
## 18561    3.0  832773057
## 18562    3.0  832773057
## 18563    3.0  832773202
## 18564    3.0  832773358
## 18566    3.0  832772925
## 18567    3.0  832772980
## 18568    3.0  832773057
## 18569    2.0  832772980
## 18570    2.0  832773092
## 18571    1.0  832773092
## 18572    1.0  832773017
## 18573    3.0  832773092
## 18574    3.0  832773358
## 18575    3.0  832773202
## 18577    3.0  832773092
## 18578    1.0  832772925
## 18579    3.0  832773092
## 18582    3.0  832773017
## 18583    3.0  832773057
## 18584    1.0  832773202
## 18585    1.0  832772980
## 18586    3.0  832772977
## 18587    3.0  832773358
## 18588    1.0  832772925
## 18589    3.0  832773057
## 18590    3.0  832773202
## 18592    3.0  832773302
## 18595    3.0  832772977
## 18596    3.0  832772925
## 18597    3.0  832772925
## 18598    3.0  832773017
## 18599    3.0  832773358
## 18600    3.0  832773358
## 18605    3.0  994021141
## 18609    3.0  994021000
## 18610    1.0  994015880
## 18613    2.0  994015896
## 18614    2.0  994020942
## 18615    2.0  994021210
## 18616    2.0  994020942
## 18617    1.0  994020953
## 18621    2.0  994021077
## 18626    3.0  994021178
## 18628    3.0  994021057
## 18630    2.0  994020971
## 18635    3.0 1147861200
## 18637    3.5 1147861617
## 18639    3.0 1147861437
## 18641    3.0 1147861878
## 18642    3.5 1147861620
## 18646    2.5 1147862448
## 18648    3.5 1147862163
## 18649    3.0 1147861240
## 18655    3.5 1147862239
## 18661    3.5 1147861842
## 18662    3.0 1147862399
## 18667    3.0 1147861193
## 18672    3.5 1147861893
## 18676    3.5 1147861388
## 18677    2.0 1147861403
## 18678    3.0 1147861760
## 18685    3.5 1147861832
## 18686    3.5 1147861688
## 18687    2.5 1147861744
## 18688    3.5 1147862433
## 18689    3.0 1147861810
## 18690    2.0 1147862179
## 18692    2.5 1147861752
## 18693    3.0 1147861764
## 18696    2.0 1147862295
## 18697    3.0 1147861798
## 18698    2.5 1147862366
## 18701    3.0 1147861916
## 18702    2.0 1147862207
## 18706    2.5 1147862346
## 18707    2.5 1147861882
## 18708    3.0 1147862438
## 18709    3.0 1147861819
## 18711    3.0 1147861932
## 18713    3.5 1147861944
## 18714    3.5 1147861644
## 18715    2.5 1147862196
## 18716    3.5 1147861573
## 18726    0.5 1269733955
## 18736    2.0 1244537743
## 18738    3.5 1269733436
## 18747    3.0 1244537726
## 18751    3.0 1269734068
## 18759    2.0 1269735439
## 18762    2.5 1269735996
## 18777    3.5 1269734601
## 18782    3.5 1269736034
## 18796    3.5 1269736671
## 18801    3.0 1269735987
## 18803    3.0 1269735628
## 18807    3.0 1269734042
## 18810    0.5 1269734109
## 18811    3.5 1244537996
## 18814    3.0 1269734161
## 18820    0.5 1244537537
## 18822    0.5 1269734112
## 18832    3.5 1269736579
## 18833    2.5 1269735788
## 18836    3.0 1244537079
## 18842    3.0 1269735935
## 18843    2.5 1269734016
## 18844    3.5 1269735525
## 18846    3.0 1269734062
## 18847    3.5 1269734659
## 18848    3.0 1269737566
## 18849    3.5 1269736108
## 18850    3.5 1269733447
## 18852    1.0 1269735812
## 18857    2.0 1269736281
## 18861    2.5 1269736021
## 18864    1.0 1269734116
## 18865    1.5 1269734961
## 18866    3.0 1269736040
## 18868    3.5 1269733990
## 18872    3.0 1269734050
## 18873    3.5 1269737542
## 18875    3.0 1269735283
## 18878    3.5 1269735728
## 18880    3.0 1269737520
## 18884    3.5 1269733972
## 18887    3.5 1269734945
## 18892    0.5 1269734106
## 18895    1.5 1269734083
## 18896    3.5 1269735602
## 18903    3.5 1269735450
## 18904    2.5 1269734352
## 18907    2.5 1269735873
## 18917    3.5 1269736050
## 18924    0.5 1269735444
## 18926    0.5 1269736273
## 18930    3.0  833286607
## 18931    3.0  833286456
## 18932    3.0  833286506
## 18933    3.0  833286550
## 18934    3.0  833286654
## 18936    3.0  833286594
## 18939    3.0  833286550
## 18941    3.0  833286470
## 18942    2.0  833286594
## 18943    3.0  833286795
## 18944    3.0  833286470
## 18947    3.0  833286577
## 18948    3.0  833286643
## 18950    3.0  833286440
## 18951    3.0  833286506
## 18953    3.0  833286440
## 18956    3.0  833286723
## 18958    3.0  833287094
## 18959    3.0  833286940
## 18966    2.0  833286978
## 18967    3.0  833286550
## 18969    3.0  833286624
## 18970    2.0  833287220
## 18973    3.0  833286712
## 18980    3.0  833287311
## 18985    3.0  833286399
## 18988    3.0  833287296
## 18991    3.0  833287296
## 18992    3.0  833287194
## 18999    3.0  842322769
## 19004    3.0  842323102
## 19005    3.0  842322681
## 19007    3.0  842322523
## 19016    2.0 1049682634
## 19017    3.0 1049682515
## 19020    2.0 1049683567
## 19025    3.0 1049690251
## 19029    1.0 1049684039
## 19031    1.0 1049682562
## 19034    3.0 1049684855
## 19039    2.0 1049683476
## 19040    3.0 1049683383
## 19041    3.0 1049690067
## 19042    1.0 1049682729
## 19044    2.0 1049684039
## 19046    2.0 1049682822
## 19047    3.0 1049683828
## 19057    3.0 1049690251
## 19066    2.0 1049684701
## 19069    3.0 1049684687
## 19070    3.0 1049684826
## 19080    3.0 1049682807
## 19084    3.0 1049683439
## 19088    2.0 1049683456
## 19099    3.0 1049690086
## 19102    3.0 1049683972
## 19103    1.0 1049683032
## 19104    3.0 1049682539
## 19106    2.0 1049684749
## 19107    2.0 1049683548
## 19108    2.0 1049691020
## 19109    2.0 1049682780
## 19112    2.0 1049684916
## 19116    3.0 1049683751
## 19120    2.0 1049683504
## 19123    3.0 1049683768
## 19124    3.0 1049683326
## 19131    3.0 1049683220
## 19134    2.0 1049682679
## 19135    3.0 1049682807
## 19136    2.0 1049682729
## 19137    3.0 1049684733
## 19139    3.0 1049683351
## 19141    2.0 1049682780
## 19143    3.0 1049690354
## 19145    3.0 1049684794
## 19146    2.0 1049684762
## 19147    2.0 1049683204
## 19152    3.0 1049683738
## 19154    3.0 1049682497
## 19166    3.0 1049690086
## 19169    3.0 1049682780
## 19175    3.0 1049683929
## 19176    2.0 1049682835
## 19179    3.0 1049683204
## 19181    1.0 1049682865
## 19184    3.0 1049683701
## 19192    3.0 1049683467
## 19194    1.0 1049682795
## 19195    3.0 1049682759
## 19196    2.0 1049684817
## 19204    3.0 1049683920
## 19205    3.0 1049683651
## 19206    1.0 1049683266
## 19211    1.0 1049690048
## 19212    3.0 1049683249
## 19214    3.0 1049690613
## 19215    3.0 1049690808
## 19216    3.0 1049690695
## 19217    3.0 1049690847
## 19218    3.0 1049690102
## 19223    1.0 1049684340
## 19226    2.0 1049684373
## 19227    3.0 1049690644
## 19230    2.0 1049690152
## 19231    3.0 1049690988
## 19232    1.0 1049682846
## 19238    2.0 1049684260
## 19240    3.0 1049690481
## 19241    2.0 1049682975
## 19242    2.0 1049684289
## 19243    3.0 1049685075
## 19249    2.0 1049690140
## 19258    3.0 1049684450
## 19262    3.0 1049684142
## 19268    3.0 1049685135
## 19270    3.0 1049684216
## 19271    1.0 1049682951
## 19273    3.0 1049684159
## 19276    1.0 1049683099
## 19277    3.0 1049690695
## 19278    2.0 1049685166
## 19282    2.0 1049682909
## 19288    3.0 1049690516
## 19292    3.0 1049690695
## 19293    3.0 1049690580
## 19296    1.0 1049683086
## 19297    1.0 1049690547
## 19306    3.0 1049684271
## 19309    3.0 1049685053
## 19311    3.0 1049684359
## 19321    3.0 1049684537
## 19323    2.0 1049690439
## 19325    3.0 1049689958
## 19326    3.0 1049684216
## 19327    1.0 1049685126
## 19329    3.0 1049690674
## 19336    1.0 1049690439
## 19337    3.0  965328135
## 19339    3.0  965328135
## 19340    3.0  965328135
## 19341    3.0  965328135
## 19343    3.0  965328135
## 19345    1.0  965328476
## 19348    3.0  965328302
## 19349    3.0  965328416
## 19350    3.0  965328241
## 19352    3.0  965328302
## 19353    2.0  965328135
## 19354    2.0  965328302
## 19355    3.0  965328416
## 19356    2.0  965328241
## 19358    3.0  965328416
## 19361    3.0  965328416
## 19362    3.0  965328241
## 19363    3.0 1138997743
## 19364    3.5 1140723887
## 19365    1.0 1138998764
## 19366    3.5 1138999325
## 19367    3.0 1138999264
## 19369    3.0 1139003683
## 19370    3.5 1138997386
## 19371    1.5 1140723854
## 19372    3.0 1138999206
## 19373    2.5 1138999333
## 19375    0.5 1138998386
## 19376    2.0 1139003532
## 19377    1.0 1138999624
## 19378    0.5 1139000278
## 19379    3.0 1139000192
## 19380    3.0 1138999377
## 19381    3.5 1138999284
## 19382    0.5 1138998368
## 19385    2.5 1138999494
## 19386    3.5 1138999984
## 19387    1.0 1138999363
## 19389    3.5 1138999359
## 19390    3.5 1139000274
## 19391    3.5 1138998393
## 19392    2.0 1138999234
## 19393    3.5 1138985739
## 19394    1.5 1140723852
## 19396    3.5 1138999338
## 19397    3.0 1138999240
## 19398    3.5 1138998345
## 19399    3.5 1138998954
## 19400    3.5 1138998339
## 19401    2.5 1138999304
## 19402    3.0 1139003169
## 19403    3.0 1138999246
## 19404    3.5 1149644358
## 19405    2.5 1138999426
## 19406    2.0 1139003970
## 19407    1.0 1138998357
## 19408    2.5 1138998351
## 19410    3.5 1139000027
## 19411    3.0 1138999196
## 19413    3.5 1138999276
## 19414    1.5 1138999450
## 19417    2.0 1149644393
## 19418    3.0 1139004419
## 19420    3.5 1138998637
## 19422    3.5 1138998867
## 19423    3.0 1138997735
## 19425    3.5 1138999226
## 19427    3.0 1138999271
## 19428    2.0 1138999218
## 19429    2.0 1139000095
## 19430    2.0 1138999229
## 19431    3.5 1138999943
## 19432    1.0 1139003949
## 19434    3.0 1138999279
## 19436    3.0 1138998722
## 19437    1.5 1138998179
## 19438    2.5 1138999897
## 19441    3.5 1138998705
## 19442    3.5 1139003939
## 19443    3.5 1138999381
## 19450    3.5 1139000148
## 19452    3.5 1138999458
## 19453    0.5 1138998296
## 19456    3.0 1138999948
## 19457    3.0 1138999293
## 19458    3.0 1138998307
## 19459    3.0 1138999543
## 19463    3.0 1138999352
## 19467    3.0 1138985488
## 19471    3.0 1138999487
## 19474    3.5 1138998614
## 19476    3.0 1138985543
## 19478    3.5 1138999564
## 19481    3.5 1138999472
## 19483    3.0 1139003088
## 19485    1.0 1138999570
## 19488    3.5 1139002409
## 19494    3.0 1138999930
## 19495    2.5 1138999889
## 19502    3.5 1138999832
## 19504    3.5 1138999386
## 19505    3.0 1138999978
## 19506    2.0 1139000051
## 19507    3.5 1139000105
## 19508    3.5 1138999646
## 19509    3.0 1138999999
## 19510    1.0 1138985523
## 19512    1.5 1138985568
## 19513    1.0 1138999849
## 19514    3.0 1139003911
## 19515    2.0 1138999651
## 19516    3.5 1138999441
## 19517    2.5 1138999586
## 19518    2.0 1138999392
## 19519    3.0 1139003180
## 19522    3.5 1139000022
## 19523    1.0 1140723811
## 19526    2.5 1138999757
## 19527    2.5 1139000200
## 19528    2.5 1139003364
## 19530    2.5 1138999414
## 19531    3.5 1138998573
## 19532    1.5 1138985430
## 19533    3.5 1138998229
## 19534    3.0 1138985529
## 19535    3.5 1138999699
## 19536    3.0 1139002586
## 19537    3.0 1138999402
## 19538    3.0 1138998251
## 19539    3.0 1138999878
## 19540    3.5 1139003501
## 19542    2.5 1138999939
## 19544    3.5 1138999817
## 19545    1.5 1138998812
## 19546    1.5 1138985574
## 19549    3.5 1139003177
## 19551    1.0 1138999860
## 19552    3.0 1140723797
## 19553    2.0 1138985434
## 19554    3.5 1138999966
## 19556    3.5 1138998245
## 19557    3.5 1138999592
## 19558    2.0 1138998151
## 19559    2.0 1139000186
## 19560    3.5 1139003198
## 19562    3.0 1138998159
## 19563    3.5 1139000209
## 19564    3.5 1138985437
## 19567    3.0 1138998930
## 19570    2.5 1138998238
## 19571    3.5 1139003856
## 19572    2.5 1139000322
## 19574    3.5 1139004433
## 19576    3.5 1139003454
## 19577    3.5 1139000118
## 19578    3.0 1138999518
## 19580    3.5 1138999663
## 19581    3.5 1138998919
## 19582    3.0 1139000084
## 19583    1.0 1138985399
## 19585    2.0 1138999477
## 19587    2.5 1138998912
## 19589    3.0 1138998883
## 19590    3.0 1139003270
## 19591    2.5 1139003272
## 19592    2.5 1139003277
## 19593    3.0 1139003192
## 19595    3.5 1138999903
## 19597    1.0 1139003839
## 19600    3.5 1138999343
## 19601    3.0 1138999611
## 19602    2.5 1139003845
## 19603    1.0 1138998776
## 19604    3.0 1138985408
## 19608    3.0 1139002432
## 19609    3.0 1138999845
## 19610    3.5 1138998544
## 19611    3.0 1138999531
## 19612    2.0 1139003827
## 19613    3.5 1139002483
## 19614    3.5 1138999514
## 19615    3.5 1138999827
## 19616    2.0 1138999259
## 19618    2.5 1139000240
## 19619    3.5 1138998117
## 19621    2.0 1139003804
## 19622    3.5 1139000015
## 19624    3.5 1139002538
## 19625    2.0 1139003810
## 19630    3.5 1138999421
## 19631    3.5 1139004267
## 19632    3.5 1139002739
## 19633    3.0 1138998089
## 19634    2.5 1138999989
## 19636    3.5 1139002323
## 19638    3.5 1139003233
## 19639    3.5 1139002489
## 19640    3.5 1139002089
## 19641    3.5 1140723698
## 19642    3.0 1138999838
## 19643    3.0 1139000344
## 19644    3.0 1139004475
## 19646    2.5 1139003778
## 19647    3.5 1138998124
## 19648    3.5 1139003786
## 19649    3.0 1138999869
## 19650    2.5 1149644342
## 19651    3.5 1139002313
## 19653    3.0 1139003239
## 19654    3.5 1138998877
## 19655    3.5 1138999687
## 19657    3.5 1138999373
## 19659    0.5 1138985391
## 19660    2.0 1149644335
## 19663    3.0 1139003758
## 19664    3.5 1139000126
## 19666    2.5 1140723774
## 19667    2.0 1138998034
## 19668    3.0 1139002677
## 19671    3.5 1138998191
## 19676    3.0 1139002534
## 19677    2.5 1138999409
## 19678    2.0 1140723933
## 19680    3.5 1140723925
## 19682    2.5 1139003545
## 19683    2.0 1139002134
## 19686    3.0 1138997700
## 19688    3.5 1138998187
## 19689    3.0 1139004237
## 19690    3.0 1139003560
## 19692    3.5 1149644325
## 19693    3.5 1139003416
## 19694    1.0 1149644286
## 19695    3.5 1139003209
## 19696    3.0 1139000247
## 19699    3.5 1138998092
## 19700    2.5 1138999669
## 19702    3.5 1138997691
## 19708    3.5 1139000080
## 19709    3.0 1138997433
## 19710    3.5 1139003694
## 19711    3.5 1139004327
## 19713    3.0 1139003401
## 19717    3.0 1139003512
## 19718    2.0 1139003706
## 19719    3.0 1138998783
## 19722    3.0 1139004044
## 19723    1.0 1138998410
## 19727    3.5 1139004407
## 19728    3.0 1138998609
## 19729    3.0 1139003215
## 19730    3.0 1138998402
## 19731    3.5 1139002515
## 19735    3.0 1138997905
## 19736    0.5 1139002372
## 19740    3.0  992138514
## 19745    3.0  992234666
## 19753    3.0  992138595
## 19755    3.0  992139118
## 19756    2.0  992139284
## 19757    3.0  992234780
## 19758    2.0  992294336
## 19759    3.0  992139118
## 19762    3.0  992294336
## 19765    2.0  992293841
## 19768    3.0  992139118
## 19769    3.0  992232012
## 19772    3.0  992139205
## 19773    1.0  992232108
## 19774    2.0  992294182
## 19775    3.0  992232081
## 19777    3.0  992232081
## 19778    2.0  992232012
## 19781    3.0  992324879
## 19783    3.5 1285244965
## 19786    3.0 1285312208
## 19787    2.0 1285312185
## 19788    3.5 1284656529
## 19789    3.5 1284656508
## 19790    3.0 1285312214
## 19792    2.5 1285312198
## 19794    2.5 1285244961
## 19799    3.5 1285244968
## 19807    1.5 1283414100
## 19809    2.5 1285245057
## 19811    3.5 1296286126
## 19834    2.5 1283580984
## 19836    3.5 1285241821
## 19847    3.5 1283416148
## 19857    3.5 1283580966
## 19858    3.5 1285241067
## 19864    3.5 1283416213
## 19874    3.5 1296285967
## 19876    2.5 1416147036
## 19877    2.5 1416147058
## 19878    0.5 1416151676
## 19879    1.0 1416148560
## 19880    1.0 1416148907
## 19882    2.5 1416146851
## 19883    3.5 1416147092
## 19884    2.5 1416149693
## 19885    0.5 1416147032
## 19886    2.5 1416166708
## 19887    0.5 1416152168
## 19888    2.5 1416151751
## 19889    2.0 1416152164
## 19890    3.0 1416149837
## 19891    2.0 1416166759
## 19892    1.5 1416166508
## 19893    0.5 1416152160
## 19895    3.5 1416147099
## 19896    0.5 1416146861
## 19898    0.5 1416167123
## 19899    3.0 1416147759
## 19900    2.0 1416151683
## 19902    2.0 1416147111
## 19903    2.5 1416147040
## 19904    2.0 1416149794
## 19905    1.0 1416151786
## 19906    2.0 1416148867
## 19907    1.5 1416148459
## 19908    0.5 1416150265
## 19909    1.5 1416149433
## 19911    0.5 1416167074
## 19912    0.5 1416149415
## 19913    2.0 1416149825
## 19914    2.5 1416147765
## 19915    2.0 1416149643
## 19917    1.0 1416152218
## 19918    2.0 1416152182
## 19919    1.0 1416152187
## 19920    3.5 1416151493
## 19922    3.0 1416147085
## 19923    0.5 1416166658
## 19924    2.0 1416149829
## 19925    0.5 1416147045
## 19926    2.0 1416147101
## 19927    3.0 1416166743
## 19928    3.0 1416149349
## 19929    0.5 1416150251
## 19930    2.0 1416148801
## 19931    0.5 1416147215
## 19932    1.0 1416151854
## 19934    3.0 1416147113
## 19936    0.5 1416152056
## 19937    0.5 1416151747
## 19938    1.0 1416150738
## 19939    2.5 1416148463
## 19941    2.0 1416150569
## 19942    0.5 1416151745
## 19943    3.5 1416148555
## 19944    0.5 1416151669
## 19945    1.5 1416150273
## 19946    2.0 1416149089
## 19947    1.5 1416150896
## 19948    0.5 1416148619
## 19949    2.5 1416150482
## 19950    0.5 1416148052
## 19953    0.5 1416151035
## 19954    3.0 1416148805
## 19955    0.5 1416147953
## 19957    0.5 1416150855
## 19958    2.0 1416148791
## 19959    3.5 1416148256
## 19960    2.0 1416151800
## 19962    1.0 1416149227
## 19963    0.5 1416150529
## 19964    3.0 1416148375
## 19966    1.5 1416167044
## 19967    3.5 1416148707
## 19968    1.0 1416151820
## 19969    3.0 1416148514
## 19970    2.0 1416151753
## 19971    1.5 1416147889
## 19972    1.0 1416150791
## 19973    2.0 1416148883
## 19974    1.0 1416150781
## 19975    3.0 1416152236
## 19976    0.5 1416147175
## 19977    3.5 1416167222
## 19979    3.0 1416166737
## 19981    3.0 1416166854
## 19982    1.5 1416148953
## 19984    2.0 1416151937
## 19987    0.5 1416147095
## 19988    0.5 1416151020
## 19990    2.0 1416148342
## 19991    2.0 1416147321
## 19992    2.0 1416150287
## 19994    2.0 1416151014
## 19999    3.0 1416147749
## 20000    0.5 1416149287
## 20001    0.5 1416151053
## 20004    1.5 1416152072
## 20005    1.0 1416151620
## 20008    3.0 1416148004
## 20010    0.5 1416151654
## 20011    2.5 1416167104
## 20012    3.5 1416151509
## 20013    0.5 1416151960
## 20014    1.5 1416151825
## 20016    3.0 1416147860
## 20017    0.5 1416152127
## 20018    2.5 1416148204
## 20019    2.5 1416150536
## 20020    1.0 1416151755
## 20021    1.5 1416149735
## 20022    2.5 1416151835
## 20024    0.5 1416151768
## 20025    2.5 1416152378
## 20026    3.0 1416151661
## 20027    2.5 1416151890
## 20029    3.0 1416166671
## 20031    3.5 1416151617
## 20032    1.5 1416151903
## 20034    1.0 1416150767
## 20037    3.0 1416150940
## 20038    0.5 1416166636
## 20039    2.5 1416148065
## 20040    2.0 1416152039
## 20041    3.0 1416151814
## 20045    2.5 1416146932
## 20046    1.0 1416152114
## 20048    2.0 1416146928
## 20050    2.0 1416146891
## 20051    0.5 1416146955
## 20052    2.5 1416146886
## 20053    0.5 1416166965
## 20054    3.5 1361244876
## 20056    1.0 1361244162
## 20059    2.0 1361245876
## 20063    3.5 1361245791
## 20065    3.0 1361245653
## 20067    1.0 1361244182
## 20068    3.0 1361246182
## 20070    2.0 1361244165
## 20071    3.0 1361245161
## 20072    2.5 1361245725
## 20074    3.5 1361245346
## 20080    2.5 1361246029
## 20085    2.5 1361245689
## 20088    3.0 1361246175
## 20089    2.0 1361246185
## 20090    3.5 1361245691
## 20094    2.0 1361244151
## 20095    3.0 1361244172
## 20097    3.5 1361245759
## 20100    2.0 1361244168
## 20101    2.5 1361245768
## 20102    3.5 1361245754
## 20103    3.0 1361245676
## 20107    3.0 1361245704
## 20108    3.0 1361245727
## 20115    3.0 1361245112
## 20117    2.5 1361245321
## 20118    3.5 1361245315
## 20123    3.5 1361244188
## 20125    3.0 1361245892
## 20136    3.0 1361245847
## 20142    2.5 1361245888
## 20143    2.5 1361244155
## 20145    2.0 1361244184
## 20146    3.5 1361245921
## 20152    3.5 1361245133
## 20153    3.5 1361245107
## 20155    3.0 1361244819
## 20159    3.0 1361244856
## 20166    2.5 1361246019
## 20173    3.5 1361245956
## 20175    3.5 1361245898
## 20181    3.0 1361245711
## 20183    3.0 1361245851
## 20191    3.0 1361244148
## 20194    3.5 1361245934
## 20195    3.5 1361245906
## 20196    3.0 1361245975
## 20197    3.0 1361244270
## 20198    3.0 1361244186
## 20205    3.5 1361245203
## 20210    3.0 1361245894
## 20211    3.0 1361244382
## 20216    3.0 1361244291
## 20219    3.5 1361245986
## 20229    3.5 1361245927
## 20242    3.0 1361245531
## 20244    3.5 1361245129
## 20254    3.0 1361245074
## 20260    3.5 1361246024
## 20263    3.5 1361246072
## 20264    3.0 1361246008
## 20277    3.0 1361244834
## 20282    3.0 1361245076
## 20291    3.0 1361245069
## 20296    3.0 1361244810
## 20298    3.0 1361244379
## 20300    3.0 1361244837
## 20305    3.5 1361244363
## 20306    3.0 1361245067
## 20308    1.5 1361244337
## 20309    3.5 1361244279
## 20315    3.0 1361244869
## 20316    3.5 1361244267
## 20318    3.0 1361245093
## 20331    2.5 1361246377
## 20333    2.5 1361245099
## 20337    3.0 1361244853
## 20339    2.0 1361245355
## 20340    1.0 1361244352
## 20351    3.0 1361245454
## 20356    1.0 1361244804
## 20360    3.5 1361245472
## 20362    2.0 1361244831
## 20363    2.0 1361244263
## 20365    3.0  844995924
## 20367    3.0  844995987
## 20368    3.0  844995924
## 20369    3.0  844996094
## 20370    1.0  844996036
## 20371    3.0  844996094
## 20372    3.0  844995987
## 20374    1.0  844996017
## 20375    3.0  844996159
## 20376    3.0  844996036
## 20377    3.0  844996171
## 20378    1.0  844995935
## 20379    1.0  844996003
## 20380    2.0  844996017
## 20381    3.0  844996213
## 20382    3.0  844996036
## 20384    2.0  844996139
## 20385    1.0  844996105
## 20386    3.0  844996304
## 20392    3.5 1405977333
## 20393    3.5 1405977381
## 20397    3.0 1405975956
## 20401    3.5 1405977273
## 20402    3.0 1405977357
## 20404    1.0 1405977464
## 20405    3.5 1405975561
## 20406    3.5 1405975526
## 20409    3.0 1405975376
## 20411    3.5 1405977493
## 20412    2.0 1405975398
## 20414    3.0 1405975454
## 20415    3.0 1405975219
## 20418    3.0 1405975645
## 20421    3.5 1405977432
## 20428    3.5 1405975580
## 20430    3.5 1405975698
## 20431    3.5 1405975826
## 20433    3.5 1405977595
## 20435    3.5 1405975837
## 20440    3.0  946411893
## 20447    3.0  946411129
## 20452    3.0  946412403
## 20458    3.0  946412362
## 20460    2.0  946411524
## 20463    3.0  946411524
## 20464    3.0  946412547
## 20468    3.0  946412517
## 20470    3.0  946412480
## 20472    1.0  946412054
## 20476    2.0  946412430
## 20479    2.0  946412015
## 20481    3.0  946412054
## 20485    3.0  946412072
## 20486    2.0  946412302
## 20487    1.0  946411077
## 20492    3.0  946412302
## 20493    2.0  946411646
## 20494    2.0  946411893
## 20496    2.0  946411077
## 20498    3.0  946411893
## 20499    2.0  946412262
## 20500    3.0  946412230
## 20501    1.0  946411077
## 20503    2.0  946411129
## 20508    3.0  946412031
## 20510    3.0  946411180
## 20512    3.0  946411610
## 20514    2.0  946412517
## 20517    2.0 1440379001
## 20523    2.5 1440378998
## 20525    0.5 1440379483
## 20533    3.0 1440379096
## 20536    3.5 1440379423
## 20537    3.0 1440379493
## 20538    3.0 1440379257
## 20539    3.5 1440379002
## 20541    2.0 1440379156
## 20542    2.5 1440379164
## 20544    0.5 1440379157
## 20545    0.5 1440379171
## 20546    3.5 1440379148
## 20548    0.5 1440379177
## 20549    3.5 1440380097
## 20550    3.0 1440379205
## 20551    3.0 1440379149
## 20553    3.0 1440379211
## 20554    0.5 1440379198
## 20555    1.0 1440379175
## 20556    2.5 1440379166
## 20557    3.5 1440379152
## 20559    0.5 1440379203
## 20560    3.0 1440379816
## 20561    0.5 1440379200
## 20562    0.5 1440379805
## 20564    3.5 1440379269
## 20567    3.5 1440379576
## 20569    3.5 1440379218
## 20573    3.5 1440379410
## 20575    3.5 1440379572
## 20576    2.5 1440380767
## 20577    3.0 1440380782
## 20578    3.0 1440380741
## 20579    1.5 1440380784
## 20580    2.0 1440380751
## 20582    0.5 1440380709
## 20583    3.0 1440380727
## 20585    2.0 1440380794
## 20586    3.5 1440379950
## 20587    3.0 1440380763
## 20588    3.0 1440380757
## 20590    1.0 1440379581
## 20592    3.0 1440379431
## 20595    3.5 1440379061
## 20596    1.0 1440379297
## 20597    3.5 1440379307
## 20598    3.5 1066860908
## 20599    3.5 1066860904
## 20604    3.0 1066861159
## 20605    2.5 1066860664
## 20606    2.5 1066860594
## 20607    3.5 1066861087
## 20610    2.5 1066861232
## 20613    3.0 1066860858
## 20617    2.5 1066861049
## 20619    3.5 1066861243
## 20621    3.5 1066860612
## 20623    0.5 1066860579
## 20624    3.0 1066860952
## 20626    3.5 1066860861
## 20628    2.0 1066860669
## 20629    3.0 1066860559
## 20631    3.5 1066860675
## 20633    3.5 1066860623
## 20634    3.0 1066861192
## 20636    2.0 1066860605
## 20637    2.0 1066860946
## 20640    3.0 1066860979
## 20647    3.0 1066861237
## 20648    3.5 1066861206
## 20649    3.5 1066861079
## 20651    0.5 1066861031
## 20652    3.0 1066861058
## 20653    3.0 1066861052
## 20654    0.5 1066861066
## 20655    1.0 1066861099
## 20657    3.5 1066861201
## 20659    3.5 1066861152
## 20660    3.5 1066861002
## 20667    2.0 1398068334
## 20668    1.0 1398068296
## 20669    3.5 1398068279
## 20670    3.5 1398068429
## 20672    0.5 1398068255
## 20675    0.5 1398068232
## 20678    3.5 1398068846
## 20680    2.0 1398068298
## 20682    3.5 1398068868
## 20684    1.5 1398068441
## 20685    3.5 1398068320
## 20686    3.5 1398068624
## 20692    3.0 1398070522
## 20693    1.5 1398068815
## 20694    3.0 1398070657
## 20696    1.5 1398068331
## 20698    3.0 1398070514
## 20701    3.5 1398070653
## 20702    3.0 1398070681
## 20703    3.5 1398069668
## 20704    3.0 1398069605
## 20705    3.0 1398069703
## 20706    3.5 1398069632
## 20707    3.5 1398069387
## 20708    2.5 1398069406
## 20714    3.0  944933710
## 20716    3.0  979428119
## 20717    3.0  959003310
## 20718    3.0  949293748
## 20719    3.0  998014490
## 20721    2.0  945056203
## 20723    2.0  947534592
## 20725    2.0  979428220
## 20726    2.0  979428203
## 20727    3.0  952206207
## 20729    2.0  979428221
## 20731    1.0  979428095
## 20732    2.0  959003302
## 20733    3.0  979428119
## 20735    3.0  979428204
## 20736    2.0  979428037
## 20738    3.0  998014346
## 20742    3.0  998014490
## 20744    3.0  997098002
## 20745    2.0  997731322
## 20746    2.0  997731488
## 20747    1.0  997097547
## 20748    3.0  997097201
## 20750    3.0  997731488
## 20751    3.0  997098002
## 20753    3.0  997731585
## 20754    1.0  997731439
## 20755    1.0  997731406
## 20758    3.0  997097862
## 20759    1.0  997097126
## 20761    2.0  997097887
## 20762    1.0  997097104
## 20763    3.0  997098179
## 20764    3.0  997098179
## 20765    3.0  997731406
## 20766    2.0  997097602
## 20767    2.0  997097547
## 20768    1.0  997097175
## 20769    2.0  997097663
## 20770    2.0  997098027
## 20771    3.0  997097663
## 20772    3.0  997097602
## 20773    3.0  997097731
## 20777    3.0  997097710
## 20779    3.0  997097801
## 20780    3.0  997097922
## 20781    2.0  997731439
## 20782    3.0  997098048
## 20783    3.0  997097461
## 20784    3.0  997731565
## 20785    3.0  997097753
## 20786    1.0  997097510
## 20787    3.0  997097547
## 20788    2.0  997097774
## 20789    3.0  999350539
## 20790    2.0  999350539
## 20791    3.0  999350539
## 20792    1.0  999350510
## 20793    3.0  999350465
## 20794    1.0  997097967
## 20795    3.0  999350418
## 20796    3.0 1001762787
## 20797    2.0 1001762723
## 20799    3.0 1001762672
## 20801    3.0 1001762599
## 20802    1.0 1001762575
## 20803    2.0 1001762575
## 20806    1.5 1149647922
## 20807    2.0 1149648223
## 20808    1.0 1149648213
## 20811    3.0 1149647927
## 20813    1.5 1149648270
## 20814    1.0 1149648209
## 20815    3.0 1149649360
## 20816    1.0 1149650329
## 20817    3.5 1149651175
## 20820    3.5 1149648233
## 20826    1.5 1149650037
## 20828    3.5 1149650138
## 20830    2.0 1149650080
## 20833    3.0 1149648260
## 20834    1.5 1149650110
## 20835    1.0 1149648217
## 20839    3.0 1149647890
## 20840    1.0 1149648220
## 20844    3.0 1149648257
## 20846    3.5 1149650126
## 20848    3.0 1149650334
## 20849    3.5 1149649869
## 20851    3.5 1149648743
## 20853    3.5 1149649918
## 20855    0.5 1149650208
## 20857    3.0 1149648266
## 20862    0.5 1149648226
## 20876    2.5 1149651161
## 20877    3.0 1149650183
## 20880    3.5 1149649117
## 20882    2.0  837455574
## 20884    3.0  837455602
## 20886    3.0  837455152
## 20887    3.0  837455212
## 20889    2.0  837455463
## 20891    3.0  837455463
## 20893    2.0  837455702
## 20894    3.0  837455510
## 20895    3.0  837455389
## 20897    3.0  837455702
## 20898    3.0  837455360
## 20899    3.0  837455359
## 20901    3.0  837455207
## 20903    3.0  837455538
## 20906    3.0  837455155
## 20907    2.0  837455505
## 20908    1.0  837455574
## 20909    2.0  837455642
## 20910    3.0  837455389
## 20914    3.0  837455700
## 20916    3.0  837455769
## 20917    3.0  837455203
## 20920    3.0  837455149
## 20927    3.0  845421514
## 20932    3.0  845421721
## 20935    3.0  845421758
## 20937    3.0  845421514
## 20938    1.0  845421838
## 20941    3.0  845421636
## 20962    2.0 1256071554
## 20963    3.0 1256071535
## 20966    2.5 1256071403
## 20969    2.5 1256071385
## 20970    2.5 1256071313
## 20971    3.0 1256070632
## 20974    3.5 1256070637
## 20976    3.5 1256070798
## 20977    3.0 1256070669
## 20982    3.5 1256071551
## 20983    3.5 1256071087
## 20984    3.5 1256071515
## 20990    1.5 1256070731
## 20991    3.5 1256071497
## 20992    3.0 1256071301
## 20993    1.0 1256070809
## 20994    2.5 1256070651
## 20996    3.5 1256070622
## 20997    3.5 1256070833
## 20998    3.0 1256071434
## 21001    3.5 1256071125
## 21003    2.5 1256070791
## 21004    3.5 1256071570
## 21005    3.5 1256070838
## 21006    3.0 1256070819
## 21010    3.5 1256071278
## 21012    3.0 1256071619
## 21014    3.0 1256071561
## 21015    3.0 1256071208
## 21016    2.5 1256071348
## 21017    3.0 1256071512
## 21019    3.5 1256071623
## 21020    3.5 1256071306
## 21023    3.5 1256071427
## 21024    3.0 1256071632
## 21025    3.0 1256071408
## 21027    3.5 1256071479
## 21028    3.0 1256071414
## 21030    3.0 1256071118
## 21032    1.0 1256071015
## 21035    3.5 1405201255
## 21037    3.5 1405201272
## 21042    3.5 1405202676
## 21044    2.0 1405201244
## 21046    3.5 1405201384
## 21052    3.0 1405201225
## 21058    3.0 1405201208
## 21059    2.0 1405201342
## 21066    1.5 1405201645
## 21071    3.5 1059603929
## 21076    2.0 1059530841
## 21077    2.5 1059504993
## 21078    3.0 1059604099
## 21083    3.5 1059604535
## 21084    2.5 1059530882
## 21086    3.5 1059507607
## 21087    3.5 1059507635
## 21090    3.5 1059603985
## 21096    3.5 1059603845
## 21097    3.5 1059604425
## 21100    3.0 1059604127
## 21108    3.5 1059507495
## 21110    2.0 1059504978
## 21111    3.0 1059531137
## 21117    2.5 1059604044
## 21121    3.5 1059604070
## 21123    3.5 1059603976
## 21128    3.5 1059604059
## 21129    3.0 1059604077
## 21132    3.5 1059604123
## 21133    3.5 1059604016
## 21137    2.5 1059604160
## 21147    2.5 1059604051
## 21148    1.0 1059504922
## 21151    3.5 1059530938
## 21154    3.5 1059604467
## 21156    3.0 1059604600
## 21158    3.5 1059604495
## 21167    3.0 1059530858
## 21169    3.0 1059531133
## 21172    2.0 1059680407
## 21174    2.0 1059604523
## 21179    3.0 1059604443
## 21188    3.0 1059507478
## 21189    3.5 1059530891
## 21192    3.5 1059507573
## 21197    3.0 1059604518
## 21198    3.5 1059505089
## 21203    3.0 1436919660
## 21204    3.5 1436923278
## 21205    3.5 1436922267
## 21206    3.0 1436922260
## 21207    1.0 1436923406
## 21209    3.5 1436920137
## 21210    3.5 1436919731
## 21214    3.5 1436923463
## 21215    3.5 1436919682
## 21216    2.0 1436919678
## 21217    3.5 1436922091
## 21218    3.0 1436923262
## 21219    3.0 1436919666
## 21220    1.0 1436923874
## 21221    3.5 1436923201
## 21222    3.0 1436922845
## 21224    2.5 1436923492
## 21225    3.5 1436924020
## 21226    3.0 1436922838
## 21227    3.5 1436923241
## 21228    3.0 1436923341
## 21229    3.0 1436921940
## 21232    3.0 1436919693
## 21233    3.5 1436923824
## 21234    3.5 1436923836
## 21238    3.5 1436923511
## 21239    3.5 1436923301
## 21241    2.5 1436923361
## 21243    3.0 1437092078
## 21244    3.5 1436923701
## 21248    3.0 1436923336
## 21250    2.0 1436920748
## 21251    3.5 1437092289
## 21252    3.5 1436923731
## 21253    3.5 1436919662
## 21256    3.0 1436923311
## 21258    2.0 1436924332
## 21259    3.5 1436921212
## 21263    3.5 1436921174
## 21264    3.0 1436921241
## 21265    3.5 1436923694
## 21266    3.0 1436921204
## 21268    3.5 1436924169
## 21269    3.5 1436923770
## 21271    2.5 1436923897
## 21273    2.0 1436921198
## 21274    2.5 1436924129
## 21275    0.5 1436923433
## 21276    3.5 1436923904
## 21278    3.0 1436922147
## 21279    3.5 1436924098
## 21282    3.0 1436920788
## 21283    3.5 1436924086
## 21285    1.0 1436924457
## 21286    2.5 1436924064
## 21290    3.5 1436923292
## 21291    3.5 1436923452
## 21292    3.5 1436920698
## 21293    3.5 1437092382
## 21294    1.0 1436923801
## 21296    3.5 1436923718
## 21297    1.5 1436923984
## 21298    3.5 1436920875
## 21300    3.0 1436924288
## 21303    3.5 1436921220
## 21304    3.0 1437092225
## 21305    3.5 1436921237
## 21307    3.5 1437092060
## 21309    3.5 1436924140
## 21310    3.5 1436924164
## 21311    1.5 1436920426
## 21312    3.5 1436922210
## 21313    3.5 1436923619
## 21314    3.5 1436924295
## 21316    2.0 1436921197
## 21317    3.0 1436921489
## 21320    2.5 1436923970
## 21321    3.0 1436924006
## 21322    3.5 1436923949
## 21324    1.5 1436920434
## 21331    3.0 1436920430
## 21332    3.5 1436923611
## 21333    3.5 1437092098
## 21335    3.5 1436920411
## 21336    2.5 1436920881
## 21337    3.5 1436920417
## 21339    3.5 1436919763
## 21340    3.5 1436920406
## 21341    3.5 1436924283
## 21344    3.0 1436923971
## 21345    3.0 1436924285
## 21349    3.0 1436924293
## 21351    1.0 1436922011
## 21352    3.5 1436924083
## 21354    3.0 1437092283
## 21355    3.0 1437092038
## 21356    3.0 1437092357
## 21357    3.0 1436922181
## 21359    3.5 1436924372
## 21362    3.5 1436920649
## 21363    3.5 1436921076
## 21364    3.0 1436924009
## 21365    3.5 1436923816
## 21366    2.0 1436920701
## 21367    1.0 1436920763
## 21368    3.5 1436923666
## 21369    3.5 1436921688
## 21370    3.0 1436920657
## 21371    3.5 1437092374
## 21373    3.0 1436920699
## 21377    3.0 1437092345
## 21378    3.0 1436921599
## 21381    3.0 1436920647
## 21388    2.0 1436920889
## 21389    2.0 1436922387
## 21390    2.0 1436921750
## 21393    2.0 1436921752
## 21396    2.5 1436920661
## 21399    3.5 1436921332
## 21403    3.0 1436920652
## 21404    1.5 1436920644
## 21406    3.5 1436921987
## 21410    3.5 1437091813
## 21419    1.5 1436919773
## 21420    2.0 1436920459
## 21421    3.5 1436920672
## 21422    1.5 1436922811
## 21428    3.5 1436921034
## 21429    3.0 1436920450
## 21431    3.0 1436919888
## 21432    3.5 1436920456
## 21434    3.0 1114306148
## 21435    3.0 1114306834
## 21436    2.5 1114308628
## 21438    3.0 1114305732
## 21439    3.5 1338710602
## 21440    2.0 1114307220
## 21442    2.5 1130905954
## 21443    2.5 1114306777
## 21444    1.0 1114308273
## 21445    1.5 1113906883
## 21447    2.5 1114309836
## 21448    2.5 1114307227
## 21449    2.5 1113906876
## 21450    3.0 1114310004
## 21451    3.0 1116309622
## 21455    2.5 1116309027
## 21456    3.0 1114306717
## 21457    3.5 1113907638
## 21458    2.5 1140424747
## 21459    1.0 1113906767
## 21460    3.0 1114307200
## 21461    3.0 1114306408
## 21462    3.5 1114306762
## 21463    1.5 1113907546
## 21464    0.5 1114306763
## 21466    2.5 1114307190
## 21467    3.0 1114306739
## 21468    2.0 1113907543
## 21470    3.0 1114306793
## 21471    3.0 1116309076
## 21475    2.0 1114307194
## 21476    3.0 1114307088
## 21477    1.5 1130906351
## 21478    1.0 1113906795
## 21479    3.5 1113907646
## 21482    3.0 1114306733
## 21483    3.0 1114306743
## 21485    3.5 1114306710
## 21487    2.0 1114309590
## 21488    2.5 1114309597
## 21489    1.5 1140424503
## 21491    3.5 1114306136
## 21492    1.5 1113907512
## 21493    2.5 1113907507
## 21494    0.5 1114305827
## 21495    1.5 1130906332
## 21496    3.5 1114306799
## 21497    2.5 1114309144
## 21498    3.0 1114309149
## 21499    2.5 1116309673
## 21500    3.5 1113907403
## 21501    3.5 1113907611
## 21502    3.0 1114305997
## 21503    3.0 1114306681
## 21504    3.5 1116308883
## 21505    3.5 1113907841
## 21508    3.0 1113907501
## 21509    3.5 1113907509
## 21510    2.5 1113907499
## 21511    3.0 1114306821
## 21512    3.0 1116309174
## 21514    3.0 1114309361
## 21515    1.0 1114309340
## 21516    3.5 1113907497
## 21517    3.0 1140424715
## 21518    3.5 1113907486
## 21519    3.5 1113907480
## 21521    0.5 1114309343
## 21522    3.0 1114308357
## 21525    2.5 1116309093
## 21526    3.0 1114306312
## 21527    3.0 1114305646
## 21528    2.0 1130906339
## 21529    3.0 1114306755
## 21530    3.0 1140424695
## 21534    3.5 1113907614
## 21535    3.0 1114308753
## 21537    3.5 1114306439
## 21541    3.5 1116309029
## 21542    2.5 1114308250
## 21543    2.5 1114309788
## 21544    2.5 1114306405
## 21545    2.5 1113907467
## 21546    3.0 1140424472
## 21547    1.0 1113907471
## 21548    3.5 1114308253
## 21549    3.5 1114306247
## 21551    3.0 1114305651
## 21552    3.0 1114307068
## 21553    3.5 1114310411
## 21554    3.5 1116308716
## 21555    3.5 1114309780
## 21556    2.0 1130905926
## 21557    2.0 1140424671
## 21558    3.0 1114306438
## 21559    3.5 1114309794
## 21561    3.0 1114305802
## 21562    3.5 1113907463
## 21564    2.5 1113907470
## 21566    1.0 1114309118
## 21568    3.5 1113907173
## 21569    3.0 1114308258
## 21571    3.0 1130906048
## 21572    3.0 1114306474
## 21575    3.5 1113907621
## 21576    2.5 1114305644
## 21578    2.0 1113907429
## 21579    2.5 1114309570
## 21580    3.0 1113906862
## 21581    0.5 1114308962
## 21582    3.0 1113907620
## 21586    3.0 1140424835
## 21587    3.5 1114310162
## 21589    3.0 1114309965
## 21591    2.5 1114308739
## 21592    3.5 1114308327
## 21593    2.5 1114308323
## 21594    3.0 1140424655
## 21596    2.5 1114309121
## 21597    2.0 1140424652
## 21598    3.0 1114309099
## 21599    3.0 1116309060
## 21601    3.5 1114309094
## 21602    3.0 1113907434
## 21604    3.0 1114308749
## 21605    3.0 1140424926
## 21606    3.5 1113907755
## 21607    3.0 1113906820
## 21608    3.0 1114309102
## 21609    2.0 1114305796
## 21610    3.0 1114306506
## 21614    1.5 1114309314
## 21615    1.0 1113906789
## 21616    3.5 1114306170
## 21617    2.0 1114309106
## 21618    1.5 1114306418
## 21621    2.0 1114309083
## 21622    3.5 1114309756
## 21623    2.5 1114309081
## 21624    2.0 1114308243
## 21625    2.5 1140425276
## 21627    3.0 1130906021
## 21629    2.5 1114305999
## 21630    3.0 1114309068
## 21631    1.5 1130905942
## 21632    3.5 1116309062
## 21633    3.0 1140424614
## 21634    3.5 1130906013
## 21635    1.5 1114309074
## 21636    2.5 1140424609
## 21637    3.5 1116309095
## 21638    3.5 1130906025
## 21639    3.5 1114306322
## 21640    3.0 1114308297
## 21641    2.5 1116309105
## 21642    1.0 1114305779
## 21644    2.5 1116309128
## 21645    3.0 1114306340
## 21646    2.5 1140425211
## 21648    3.5 1116308629
## 21649    2.5 1116309195
## 21650    3.0 1116309037
## 21651    3.5 1114307128
## 21652    2.0 1140424450
## 21653    3.5 1113907439
## 21654    3.0 1114310351
## 21655    2.0 1114306803
## 21656    2.5 1114308289
## 21658    3.5 1114306436
## 21659    2.0 1114307063
## 21660    3.5 1114306285
## 21661    3.5 1113907596
## 21663    3.0 1113907447
## 21665    2.5 1114306272
## 21666    2.5 1114306338
## 21667    2.5 1114306349
## 21668    1.5 1130906007
## 21669    3.5 1114306253
## 21670    2.5 1116309776
## 21671    2.5 1114306511
## 21672    3.0 1114309060
## 21673    3.0 1114306459
## 21674    2.5 1114306295
## 21675    3.5 1140424443
## 21676    3.0 1130905997
## 21677    3.5 1114306175
## 21678    2.0 1114306402
## 21680    3.5 1116308763
## 21683    2.0 1114309274
## 21684    3.5 1114308255
## 21685    3.5 1114309045
## 21687    3.0 1116309257
## 21688    3.5 1114310328
## 21689    2.5 1140424586
## 21690    2.5 1114306379
## 21692    2.5 1114309258
## 21693    3.0 1140424569
## 21694    3.0 1114309532
## 21695    3.5 1114306035
## 21696    3.0 1114307344
## 21697    3.0 1116309150
## 21700    3.0 1113907405
## 21701    3.0 1114306306
## 21702    2.5 1114307106
## 21703    2.5 1114306483
## 21704    3.0 1140424875
## 21705    3.5 1113907398
## 21707    2.5 1114309035
## 21708    2.0 1114305883
## 21709    2.5 1114309231
## 21710    0.5 1114307111
## 21714    2.5 1114309032
## 21715    1.5 1114308565
## 21716    2.0 1113906866
## 21717    3.5 1114306448
## 21718    2.5 1140425267
## 21719    3.0 1114308424
## 21720    2.0 1114309026
## 21721    3.5 1114307255
## 21722    2.5 1114309029
## 21723    2.5 1114308990
## 21724    0.5 1130905933
## 21725    2.0 1114305880
## 21726    3.0 1140425059
## 21727    3.5 1114308399
## 21728    2.0 1114309224
## 21729    3.0 1114306129
## 21731    2.0 1113907418
## 21732    2.5 1114308408
## 21733    3.5 1114309507
## 21734    3.5 1130905973
## 21735    0.5 1114307260
## 21736    2.5 1114308268
## 21737    3.5 1114307108
## 21739    3.0 1116309087
## 21740    3.5 1114305764
## 21741    3.5 1114306435
## 21743    2.5 1114308411
## 21744    3.5 1116309199
## 21745    3.5 1114306196
## 21746    2.0 1114309000
## 21747    3.5 1116309074
## 21749    2.0 1116308745
## 21750    3.0 1114305746
## 21751    1.0 1114307240
## 21752    3.5 1140425035
## 21754    2.0 1116309045
## 21756    1.5 1114306226
## 21757    3.5 1114306208
## 21758    3.0 1114309217
## 21760    3.0 1116308752
## 21762    3.0 1114308733
## 21763    3.0 1114308377
## 21764    2.5 1114308518
## 21765    2.5 1114309202
## 21766    2.0 1114309198
## 21767    2.5 1114308375
## 21768    3.0 1140425335
## 21769    3.5 1130905875
## 21770    2.5 1114309192
## 21771    2.5 1114306144
## 21772    3.0 1114306442
## 21773    3.5 1114309684
## 21776    0.5 1113906878
## 21777    3.5 1114307235
## 21778    2.5 1113907675
## 21779    2.0 1130905878
## 21780    3.5 1140425041
## 21781    1.5 1114306240
## 21784    3.0 1114308996
## 21785    3.0 1116309023
## 21787    3.0 1140425340
## 21788    2.5 1114307223
## 21789    3.0 1114308502
## 21791    3.0 1140425023
## 21792    3.0 1130905862
## 21793    3.0 1114306263
## 21794    3.0 1113907846
## 21796    3.5 1116309020
## 21798    2.5 1140425017
## 21800    3.5 1116309048
## 21802    2.5 1140425226
## 21803    3.5 1140424531
## 21805    3.5 1114306451
## 21807    3.0 1114308384
## 21808    3.0 1130906087
## 21809    2.5 1114308481
## 21811    3.0 1140425006
## 21814    3.5 1114309184
## 21816    3.5 1140425002
## 21817    3.0 1114309640
## 21819    3.0 1114306250
## 21820    3.5 1114310030
## 21821    2.0 1140425213
## 21823    2.0 1114306190
## 21825    3.0 1114306172
## 21827    2.5 1114310016
## 21830    3.5 1140424514
## 21832    3.0 1140425194
## 21834    3.0 1233053797
## 21835    3.0 1114306375
## 21836    3.0 1140424985
## 21838    2.5 1140424802
## 21849    3.0  847296838
## 21852    3.0  847296802
## 21853    3.0  847296863
## 21855    3.0  847296838
## 21856    3.0  847297041
## 21859    1.0  847296625
## 21860    3.0  847296891
## 21863    1.0  847296918
## 21864    3.0  847296716
## 21866    3.0  847296838
## 21868    3.0  847296748
## 21869    3.0  847296891
## 21873    3.0  847296802
## 21874    2.0  847296945
## 21876    3.0  847296891
## 21878    3.0  847296716
## 21879    3.0  847296625
## 21885    3.0  847296774
## 21888    3.0  847296802
## 21889    3.0  847296863
## 21890    2.0  847296918
## 21893    3.0  847296891
## 21900    3.0  847296945
## 21902    3.0  847296838
## 21903    3.0  847297041
## 21905    3.0  847296624
## 21907    3.0  847296584
## 21908    3.0  847296583
## 21909    3.0  847296653
## 21910    3.0  847296802
## 21911    3.5 1335947960
## 21913    1.5 1335948177
## 21914    3.5 1335948369
## 21915    0.5 1335948417
## 21919    3.5 1335948357
## 21920    0.5 1335947944
## 21921    3.5 1335948381
## 21922    1.5 1335899920
## 21923    3.5 1335947956
## 21925    1.5 1335948277
## 21926    1.5 1335948220
## 21927    2.0 1335948114
## 21928    2.0 1335948227
## 21930    2.0 1335948404
## 21935    3.0 1335948140
## 21936    3.0 1335900437
## 21937    3.5 1335948229
## 21939    3.5 1335948034
## 21940    3.5 1335947993
## 21941    1.5 1335948250
## 21942    3.5 1335948259
## 21944    3.0 1335947928
## 21945    2.5 1335948104
## 21947    2.5 1335948233
## 21948    2.5 1335948190
## 21949    3.5 1335947977
## 21951    2.0 1335948123
## 21953    2.5 1335948136
## 21954    1.0 1335948087
## 21955    3.0 1335900366
## 21956    2.0 1335948451
## 21959    3.5 1335899984
## 21960    3.5 1335948212
## 21961    3.5 1335948295
## 21962    3.5 1335900642
## 21963    2.5 1335948126
## 21966    3.0 1335948194
## 21968    3.5 1335948027
## 21970    3.5 1335948427
## 21973    3.0 1335900442
## 21974    3.5 1335948146
## 21975    3.5 1335900563
## 21977    3.5 1335948037
## 21978    2.5 1335900548
## 21979    1.0 1335899988
## 21980    2.0 1335900032
## 21981    3.5 1335949082
## 21982    1.5 1335948429
## 21983    3.5 1335948270
## 21986    0.5 1335900055
## 21988    3.5 1335899930
## 21989    3.5 1335948443
## 21990    2.0 1335948255
## 21991    1.5 1335948097
## 21994    3.5 1335948291
## 21996    3.0 1335900376
## 21997    3.5 1335948379
## 21998    2.0 1335900014
## 22001    2.0 1335948728
## 22002    3.5 1335948421
## 22003    2.5 1335948068
## 22005    3.0 1335899937
## 22008    2.5 1335899940
## 22009    3.0 1335900020
## 22011    2.5 1335949482
## 22013    2.0 1335899953
## 22014    3.0 1335900864
## 22016    3.0 1335901749
## 22018    1.0 1335899914
## 22019    3.0 1335901184
## 22021    3.5 1335902247
## 22023    2.0 1335902212
## 22024    3.0 1335900931
## 22025    3.5 1335902192
## 22026    3.5 1335947708
## 22028    3.5 1335901317
## 22030    3.0 1335901901
## 22033    3.0 1335900924
## 22034    3.5 1335947578
## 22035    2.5 1335900026
## 22036    1.5 1335900702
## 22037    2.0 1335948558
## 22043    3.0 1335900942
## 22044    2.0 1335901802
## 22047    3.0 1335901347
## 22050    3.5 1335901818
## 22051    3.5 1335902114
## 22052    2.0 1335901696
## 22055    3.5 1335902217
## 22059    1.5 1335902266
## 22061    2.5 1335901682
## 22062    3.5 1335948549
## 22065    3.5 1335901169
## 22066    3.5 1335947549
## 22068    2.5 1335900800
## 22069    3.5 1335900784
## 22072    3.0 1335901270
## 22076    3.0 1335901666
## 22077    3.5 1335901976
## 22078    3.5 1335901772
## 22079    2.5 1335901278
## 22081    3.0 1335901584
## 22082    3.5 1335947593
## 22083    3.5 1335902045
## 22084    2.0 1335900892
## 22085    3.0 1335900898
## 22089    3.0 1335902209
## 22090    2.0 1335901071
## 22091    3.0 1335948539
## 22095    3.5 1335901202
## 22102    3.5 1335901035
## 22103    3.0 1335901274
## 22106    3.0 1335901427
## 22107    3.5 1335902094
## 22110    3.5 1335947842
## 22111    3.0 1335900445
## 22116    3.5 1335901210
## 22119    3.5 1335947751
## 22120    3.5 1335947573
## 22121    3.5 1335947706
## 22123    3.5 1335947732
## 22125    2.5 1335947556
## 22132    3.0 1046738981
## 22135    3.0 1046739844
## 22139    3.0 1046739156
## 22140    1.0 1046739765
## 22153    3.0 1046739028
## 22165    2.0 1046739622
## 22167    3.0 1046739925
## 22168    1.0 1046739925
## 22169    3.0 1046739825
## 22171    2.0 1046739622
## 22177    2.0 1046739947
## 22182    3.0  850917346
## 22183    3.0  850917346
## 22186    3.0  850917310
## 22188    3.0  850917507
## 22191    3.0  850917416
## 22196    3.0  850917383
## 22197    3.0  850917460
## 22200    3.0  850917383
## 22206    3.0  943350048
## 22210    2.0  943350184
## 22215    3.0  943350048
## 22216    2.0  943350327
## 22222    3.0  943350327
## 22225    3.0  943350140
## 22230    3.0  943350140
## 22235    3.0  943350572
## 22236    3.0  943350366
## 22237    3.0  943350292
## 22238    2.0  943350366
## 22240    3.0  943350687
## 22241    3.0  943350789
## 22242    1.0  943350292
## 22243    2.0  943350250
## 22244    2.0  943350184
## 22247    3.0  943350687
## 22249    3.0  943350101
## 22250    3.0  943350101
## 22253    3.0  943350250
## 22254    3.0  943350749
## 22256    3.0  943350250
## 22259    3.5 1277429506
## 22261    0.5 1277429585
## 22269    0.5 1277429539
## 22273    1.5 1277429575
## 22279    0.5 1277429624
## 22301    0.5 1277430461
## 22302    3.5 1291598726
## 22303    2.5 1291654669
## 22304    3.5 1291598989
## 22305    2.0 1291598164
## 22307    1.0 1323623560
## 22308    3.5 1292893066
## 22310    3.0 1293113893
## 22311    3.0 1291598753
## 22312    2.0 1365940346
## 22314    3.5 1291598691
## 22315    2.5 1291598182
## 22318    3.0 1365939855
## 22319    1.0 1365940218
## 22320    1.0 1365940267
## 22321    2.5 1292452031
## 22322    3.0 1292893321
## 22323    2.5 1292452011
## 22324    3.0 1365940159
## 22325    2.5 1293113928
## 22326    3.0 1291599281
## 22327    3.5 1362937775
## 22329    3.0 1292893387
## 22331    3.5 1291598930
## 22332    3.0 1291598910
## 22333    2.5 1291598746
## 22336    3.0 1291598762
## 22337    3.5 1291654589
## 22338    3.0 1292893393
## 22339    3.0 1291598808
## 22340    3.5 1293016236
## 22341    3.5 1291598784
## 22342    3.5 1291598908
## 22346    3.5 1291598625
## 22351    3.5 1365893094
## 22352    3.0 1292893377
## 22355    3.5 1320685313
## 22356    3.5 1293113883
## 22357    3.0 1291654595
## 22358    2.5 1291665492
## 22359    3.5 1291599035
## 22360    3.5 1292893137
## 22361    3.0 1293109610
## 22362    2.5 1291654674
## 22363    3.0 1291598819
## 22364    3.5 1323617866
## 22366    2.5 1292893513
## 22368    3.0 1292451944
## 22369    3.0 1291599080
## 22371    2.0 1294526056
## 22372    3.5 1292893076
## 22373    3.0 1291598335
## 22374    3.0 1292521972
## 22375    3.5 1291654575
## 22376    3.0 1365939990
## 22377    3.0 1295793889
## 22378    3.0 1344510238
## 22379    3.5 1292893361
## 22380    2.5 1291598407
## 22381    2.5 1365941887
## 22384    3.0 1291599023
## 22385    3.0 1291598299
## 22386    2.0 1365941508
## 22387    2.0 1365941511
## 22388    2.5 1291598091
## 22390    2.5 1292451929
## 22391    3.0 1365939927
## 22393    2.5 1323618008
## 22394    3.0 1365940395
## 22396    3.0 1291598945
## 22397    3.5 1344510213
## 22398    3.5 1291598880
## 22402    3.5 1293109639
## 22404    3.0 1292451917
## 22406    3.5 1323649448
## 22407    1.0 1365941844
## 22408    3.5 1292893831
## 22409    3.0 1291598272
## 22410    3.5 1291654702
## 22412    1.5 1291599091
## 22413    3.5 1291598864
## 22414    3.5 1291598320
## 22415    1.0 1344510369
## 22417    3.5 1294526030
## 22418    3.0 1291598302
## 22419    3.0 1291598172
## 22421    3.0 1291598859
## 22422    2.5 1292451959
## 22423    2.0 1344510529
## 22424    3.5 1291665526
## 22426    3.0 1291598243
## 22427    2.5 1292451971
## 22429    3.5 1291598976
## 22430    3.5 1295749296
## 22433    3.5 1292893258
## 22434    3.5 1293016263
## 22436    2.5 1365941890
## 22437    3.0 1365939875
## 22438    2.5 1323618006
## 22439    3.5 1362938388
## 22440    3.5 1293016283
## 22442    2.5 1344510472
## 22443    3.5 1291600250
## 22444    3.5 1292893873
## 22445    3.5 1291598877
## 22447    1.5 1344510189
## 22449    3.0 1323623646
## 22450    3.0 1365939971
## 22451    2.5 1291665485
## 22452    3.5 1291598862
## 22455    3.0 1293016287
## 22456    3.0 1365939907
## 22457    3.5 1291665403
## 22458    3.5 1323617840
## 22459    2.5 1365939958
## 22462    3.5 1291598673
## 22466    2.5 1291598696
## 22467    1.5 1365941863
## 22468    3.5 1292499258
## 22472    3.0 1291599019
## 22473    2.0 1365941322
## 22475    3.0 1291598711
## 22476    2.5 1365940004
## 22477    3.5 1362938408
## 22478    2.0 1291598416
## 22479    3.5 1365939715
## 22482    3.0 1291598639
## 22483    2.0 1365941516
## 22484    1.0 1365941909
## 22485    3.5 1291644796
## 22489    3.5 1292893101
## 22490    3.5 1291644922
## 22491    3.0 1291654728
## 22494    3.5 1344509648
## 22495    3.0 1344510654
## 22498    3.0 1292452004
## 22499    2.5 1323618003
## 22501    2.0 1291665551
## 22502    2.0 1365941993
## 22503    3.5 1293109672
## 22504    3.0 1293016154
## 22509    3.0 1293016163
## 22510    3.0 1365939913
## 22513    3.0 1291599363
## 22514    3.5 1295576379
## 22515    3.5 1293016134
## 22519    3.5 1292893280
## 22520    3.0 1295662855
## 22521    3.5 1292893170
## 22522    3.0 1297193695
## 22526    2.0 1365942000
## 22527    3.0 1292893998
## 22528    3.5 1362938651
## 22529    2.5 1365941359
## 22530    3.5 1362938391
## 22531    3.5 1308343647
## 22532    3.0 1362938622
## 22533    3.5 1362938345
## 22534    3.5 1362937651
## 22536    2.5 1365940028
## 22539    3.0 1355865379
## 22541    3.5 1365891207
## 22542    3.5 1292893005
## 22544    3.0 1291598709
## 22547    3.5 1323617792
## 22548    2.0 1291598421
## 22550    2.5 1323617992
## 22552    0.5 1365941829
## 22556    3.5 1344509879
## 22557    3.5 1323965285
## 22564    3.5 1330113001
## 22566    3.5 1355865641
## 22568    2.5 1293212820
## 22569    3.5 1291665385
## 22571    3.0 1292521924
## 22572    3.5 1291598631
## 22574    3.5 1365939711
## 22575    3.0 1293016250
## 22578    2.5 1291654739
## 22582    0.5 1291599117
## 22585    3.5 1292893081
## 22586    3.5 1369334448
## 22589    1.5 1365942027
## 22593    3.5 1320684703
## 22594    0.5 1344510080
## 22595    3.0 1365940034
## 22596    3.5 1323620427
## 22599    3.0 1323622974
## 22601    3.5 1369334443
## 22603    2.0 1344510027
## 22605    3.5 1344509886
## 22606    3.0 1355865600
## 22610    1.5 1365941495
## 22617    1.5 1344510618
## 22618    3.5 1355865522
## 22619    2.5 1365941277
## 22626    3.5 1369334582
## 22629    2.0 1231502691
## 22630    3.5 1231502746
## 22631    2.5 1231502784
## 22634    3.5 1231502801
## 22635    2.5 1231502861
## 22637    3.0 1231502866
## 22638    2.0 1231502844
## 22639    1.5 1231502789
## 22640    3.5 1231502682
## 22643    3.5 1231502773
## 22645    1.5 1231502994
## 22646    1.5 1231503042
## 22647    3.5 1231503157
## 22649    2.5 1183519921
## 22651    2.0 1183519883
## 22652    3.5 1183519855
## 22654    3.5 1183519692
## 22655    0.5 1183519180
## 22656    3.0 1183518573
## 22659    3.5 1183519814
## 22660    3.5 1183519849
## 22661    3.0 1183519514
## 22662    1.5 1183519900
## 22663    1.5 1183519943
## 22668    2.5 1183519918
## 22669    2.0 1183519845
## 22670    2.0 1183519867
## 22672    3.5 1183519399
## 22673    1.5 1183519905
## 22674    3.0 1183519839
## 22675    3.0 1183519821
## 22676    0.5 1183519940
## 22677    3.0 1183519802
## 22679    1.5 1183518385
## 22680    3.5 1183519707
## 22681    2.0 1183519898
## 22683    2.0 1183519929
## 22685    2.5 1183519923
## 22686    3.5 1183519818
## 22687    3.0 1183519807
## 22689    3.0 1183519890
## 22691    2.5 1183519887
## 22692    3.5 1183519013
## 22693    3.5 1183519823
## 22694    3.0 1183518371
## 22704    3.5 1183519667
## 22705    3.0 1183519916
## 22726    3.5 1183519595
## 22727    3.0 1183518377
## 22729    3.5 1183519710
## 22730    1.0 1183518395
## 22731    3.5 1183519612
## 22732    3.5 1183519234
## 22734    3.5 1183518591
## 22738    3.5 1183519734
## 22742    3.5 1183518403
## 22743    3.0 1183519914
## 22745    3.5 1183518768
## 22746    3.5 1183518894
## 22748    3.5 1183518778
## 22750    3.5 1183518550
## 22751    3.5 1183518696
## 22753    2.5 1183519617
## 22754    3.5 1183519611
## 22756    3.0 1183518491
## 22758    3.0 1183518579
## 22760    3.5 1183518849
## 22761    3.5 1183518670
## 22762    2.0 1183519684
## 22764    3.0 1183519713
## 22768    3.0 1183519658
## 22772    3.5 1183518857
## 22773    3.5 1183518733
## 22775    2.5 1183519466
## 22776    2.5 1183519224
## 22777    3.5 1183519665
## 22780    3.0 1183519269
## 22784    3.5 1183519681
## 22785    1.5 1183519215
## 22786    3.5 1183519761
## 22788    2.5 1183519282
## 22790    1.0 1183519374
## 22791    1.5 1183519243
## 22792    3.0 1183519455
## 22794    3.5 1183518878
## 22795    3.5 1183518740
## 22796    3.5 1183518799
## 22797    2.0  974256306
## 22808    3.0  974255503
## 22810    3.0  974257089
## 22812    3.0  974256051
## 22815    3.0  974258948
## 22816    3.0  974257297
## 22822    3.0  974256205
## 22826    3.0  974257259
## 22832    3.0  974257516
## 22833    3.0  974256830
## 22834    3.0  974256784
## 22836    3.0  974256864
## 22837    3.0  974258079
## 22842    3.0  974256416
## 22853    3.0  974257475
## 22857    3.0  974257547
## 22860    2.0  974258881
## 22863    2.0  974257362
## 22867    3.0  974255599
## 22868    3.0  974255556
## 22869    3.0  974258728
## 22873    2.0  974255556
## 22877    2.0  974257056
## 22885    3.0  974259106
## 22887    3.0  974257297
## 22888    3.0  974256661
## 22889    3.0  974257516
## 22892    3.0  974257600
## 22893    2.0  974257630
## 22901    3.0  837629516
## 22902    3.0  837629819
## 22903    3.0  837629820
## 22904    3.0  837629562
## 22906    3.0  837629544
## 22907    3.0  837629757
## 22909    3.0  837629866
## 22913    3.0  837630800
## 22915    3.0  837629381
## 22917    3.0  837629544
## 22920    3.0  837629381
## 22922    3.0  837629586
## 22923    3.0  837630800
## 22925    3.0  837629733
## 22926    3.0  837629820
## 22928    3.0  837629973
## 22929    3.0  837629407
## 22930    3.0  837629615
## 22931    3.0  837629940
## 22933    3.0  837629757
## 22934    3.0  837629733
## 22936    3.0  837629896
## 22938    3.0  837629711
## 22939    3.0  837629353
## 22941    3.0  837629586
## 22942    3.0  837629406
## 22943    3.0  837629516
## 22945    3.0  837629406
## 22946    3.0  837629692
## 22947    3.0  837629446
## 22949    3.0  837629381
## 22953    3.0  837629516
## 22954    3.0  837629516
## 22956    3.0  837630800
## 22960    3.0  837629544
## 22961    3.0  837629427
## 22963    3.0  837629711
## 22968    3.0  837630094
## 22972    3.0  837629973
## 22973    3.0  837629615
## 22975    3.0  837629925
## 22976    3.0  837629659
## 22978    3.0  837629381
## 22980    3.0  837629353
## 22981    3.0  837629353
## 22983    3.0  837629407
## 22984    3.0  837629659
## 22985    3.0  837630040
## 22986    3.0  837630094
## 22987    2.0  852791965
## 22989    3.0  852791965
## 22990    3.0  852791965
## 22992    3.0  852791965
## 22995    3.0  852792308
## 22996    3.0  852792221
## 22997    3.0  852792392
## 23001    3.0  852792107
## 23002    3.0  852792452
## 23004    3.0  852792019
## 23005    3.0  852792058
## 23006    3.0  852792354
## 23007    3.0  852792246
## 23008    3.0  852791994
## 23009    3.0  852792246
## 23010    2.0  852792058
## 23011    3.0  852792058
## 23012    3.0  852791994
## 23013    3.0  852792221
## 23014    3.0  852792272
## 23015    3.0  852792392
## 23017    3.0 1390767736
## 23018    0.5 1390776289
## 23021    0.5 1390767109
## 23023    3.0 1390766954
## 23025    1.5 1390767810
## 23027    2.0 1390767129
## 23029    3.5 1390766825
## 23031    3.5 1390776274
## 23032    2.5 1390767042
## 23033    2.0 1390766869
## 23034    2.5 1390766860
## 23036    3.0 1390776270
## 23037    0.5 1294063848
## 23038    3.0 1390766855
## 23040    3.5 1294063744
## 23044    1.5 1390776630
## 23046    3.5 1390767124
## 23048    3.5 1294063913
## 23049    1.5 1294063829
## 23050    3.5 1390767684
## 23053    3.0 1294158283
## 23054    0.5 1294159272
## 23055    0.5 1294063996
## 23057    2.0 1390766977
## 23060    2.0 1294063921
## 23061    3.5 1390767582
## 23062    2.0 1294064126
## 23063    3.5 1390776583
## 23064    3.5 1390776260
## 23065    2.5 1390776566
## 23067    3.5 1390767117
## 23068    2.5 1390776249
## 23069    0.5 1294064112
## 23071    3.0 1294158525
## 23072    2.5 1390776545
## 23073    3.5 1390776540
## 23074    3.5 1390767791
## 23075    1.5 1294158761
## 23078    3.0 1294158232
## 23079    0.5 1390767164
## 23081    2.5 1320602141
## 23082    2.5 1294158583
## 23083    2.5 1294064035
## 23084    2.5 1294064607
## 23085    1.5 1320618115
## 23087    3.5 1390776168
## 23091    3.5 1390767498
## 23092    3.0 1390775312
## 23094    3.5 1390775955
## 23098    3.5 1179531301
## 23101    3.0 1182619735
## 23104    2.0 1179531233
## 23105    3.0 1179531305
## 23108    1.0 1178927026
## 23112    3.0 1182620144
## 23114    2.0 1178926978
## 23115    2.5 1178926928
## 23116    3.5 1179031670
## 23123    3.5 1179533887
## 23128    2.5 1182619757
## 23129    2.5 1182620184
## 23133    3.5 1179530356
## 23134    3.0 1178926883
## 23136    3.5 1178926971
## 23137    3.5 1182619909
## 23138    3.0 1178926953
## 23139    3.5 1179530384
## 23147    3.5 1178926925
## 23148    3.5 1179890296
## 23149    3.5 1179890318
## 23153    3.0 1178926889
## 23157    3.0 1179531357
## 23158    3.5 1182619938
## 23160    3.5 1178926870
## 23161    2.5 1179531309
## 23164    3.5 1179891094
## 23165    3.5 1179530369
## 23166    3.5 1182619905
## 23167    3.0 1178927037
## 23168    2.5 1182620196
## 23171    3.0 1182619936
## 23172    3.5 1179531245
## 23174    3.5 1178927070
## 23177    3.5 1182287590
## 23178    3.0 1182619927
## 23180    2.5 1111482682
## 23181    3.0 1111981462
## 23182    2.5 1111981538
## 23183    2.5 1111482847
## 23184    1.0 1111482570
## 23185    2.5 1111479425
## 23186    3.5 1111479044
## 23187    3.5 1111981801
## 23189    3.5 1111479971
## 23190    2.0 1111482816
## 23191    3.5 1111981437
## 23193    3.0 1111482441
## 23197    2.0 1111981621
## 23198    3.5 1111981751
## 23199    2.0 1111479041
## 23202    1.5 1111981610
## 23203    1.0 1111482443
## 23204    2.5 1111482873
## 23205    2.0 1111981642
## 23206    3.0 1111479127
## 23207    3.5 1111981940
## 23208    2.0 1111981559
## 23210    3.0 1111980924
## 23211    2.0 1111982099
## 23212    3.5 1111982190
## 23213    3.0 1111482854
## 23215    3.5 1111480525
## 23216    2.5 1111981484
## 23219    2.0 1111982333
## 23220    2.5 1111482645
## 23222    3.0 1111482557
## 23223    3.5 1111480611
## 23224    3.5 1111482824
## 23225    3.5 1111482856
## 23226    3.0 1111981697
## 23227    3.0 1111480633
## 23229    1.0 1111611009
## 23230    3.0 1111982342
## 23231    3.5 1111610567
## 23232    3.0 1111480423
## 23233    2.0 1111981613
## 23234    2.0 1111482554
## 23235    2.5 1111981478
## 23236    3.0 1111479900
## 23238    3.0 1111612047
## 23239    3.0 1111480613
## 23240    3.5 1111482300
## 23241    3.0 1111482850
## 23242    1.5 1111479498
## 23244    3.0 1111479736
## 23246    3.0 1111982109
## 23248    3.5 1111482724
## 23249    3.5 1111982281
## 23250    2.0 1111981315
## 23252    1.0 1111611453
## 23254    3.0 1111482864
## 23258    3.0 1111480609
## 23259    3.0 1111482813
## 23260    3.0 1111612353
## 23261    3.0 1111480631
## 23262    3.5 1111482809
## 23263    1.0 1111482551
## 23264    3.5 1111482370
## 23265    1.5 1111981824
## 23266    3.0 1111482833
## 23267    2.5 1111482822
## 23268    1.0 1112679125
## 23270    2.0 1111981662
## 23271    2.5 1111482731
## 23273    2.5 1111483539
## 23274    2.5 1111981626
## 23275    3.0 1111544586
## 23276    3.0 1111982104
## 23277    3.5 1111482179
## 23279    3.0 1111981968
## 23280    3.0 1111482392
## 23281    3.0 1111982266
## 23282    2.5 1111479916
## 23283    3.0 1111981835
## 23285    2.5 1111610189
## 23287    2.5 1111981773
## 23290    3.5 1111981454
## 23291    3.0 1111981544
## 23292    3.5 1111482290
## 23293    2.0 1111981603
## 23294    3.0 1111609894
## 23295    1.5 1111479962
## 23296    1.0 1111981565
## 23297    3.5 1111479987
## 23299    3.5 1111481917
## 23300    3.0 1111480417
## 23301    2.5 1111482635
## 23302    3.5 1111479101
## 23303    2.5 1111981816
## 23305    2.5 1111480080
## 23307    2.0 1111479020
## 23308    3.0 1111481945
## 23311    2.5 1111544609
## 23312    3.5 1111544605
## 23314    0.5 1111611335
## 23316    2.5 1111481904
## 23318    2.5 1111544615
## 23319    3.0 1111482601
## 23320    2.5 1111482228
## 23321    0.5 1111982007
## 23322    3.5 1111482648
## 23323    2.5 1111609797
## 23324    2.5 1111482168
## 23325    3.0 1111481213
## 23326    3.0 1111479081
## 23327    2.5 1111544629
## 23329    2.5 1111482162
## 23330    1.5 1111544643
## 23331    0.5 1111611428
## 23332    3.0 1111482297
## 23334    3.0 1111482007
## 23335    2.0 1111981828
## 23336    0.5 1111481183
## 23337    1.0 1111482560
## 23339    3.5 1111482502
## 23340    3.0 1111481912
## 23341    2.0 1111982193
## 23342    3.0 1111479764
## 23343    3.5 1111610272
## 23344    3.0 1111482039
## 23345    1.0 1111982294
## 23346    1.5 1111611940
## 23348    3.5 1111982185
## 23349    3.5 1111482007
## 23350    3.0 1112679242
## 23351    3.5 1111482343
## 23352    2.5 1111481937
## 23353    3.5 1111981798
## 23354    3.5 1111479677
## 23355    2.5 1111481863
## 23356    3.0 1111982351
## 23357    2.5 1111612199
## 23359    3.0 1111479052
## 23360    3.0 1111982010
## 23361    2.0 1111479088
## 23362    3.0 1111982307
## 23363    3.0 1111482251
## 23364    3.0 1111612190
## 23365    3.5 1111479770
## 23366    3.0 1111610238
## 23368    2.0 1111980163
## 23369    3.5 1111480641
## 23370    1.0 1111981918
## 23371    3.0 1111481853
## 23372    3.0 1111481929
## 23374    2.0 1111482351
## 23376    3.5 1111482199
## 23379    3.0 1111479385
## 23380    3.0 1111981819
## 23381    3.0 1111610900
## 23382    3.0 1111981837
## 23383    3.0 1111481241
## 23384    0.5 1111981929
## 23385    3.0 1111479056
## 23389    3.5 1111481985
## 23390    2.5 1111482668
## 23391    2.0 1111482591
## 23392    2.5 1111482027
## 23394    3.5 1111481961
## 23395    3.0 1111479011
## 23397    3.5 1111481975
## 23398    0.5 1111482114
## 23399    3.5 1111981451
## 23400    3.0 1111482574
## 23402    3.0 1111981616
## 23404    2.5 1111481181
## 23405    2.5 1111482692
## 23406    3.0 1111610514
## 23407    0.5 1111544698
## 23408    3.5 1111481873
## 23409    1.0 1111982102
## 23410    2.5 1111482060
## 23411    3.0 1111481989
## 23413    3.5 1111482608
## 23415    2.0 1111544701
## 23417    3.0 1111482042
## 23418    3.5 1111609915
## 23421    2.0 1111544716
## 23422    2.0 1111481749
## 23423    2.0 1111482099
## 23424    2.5 1111479106
## 23426    3.5 1111482598
## 23427    3.5 1111981804
## 23428    3.5 1111479715
## 23429    3.0 1111482585
## 23430    2.0 1111479356
## 23431    3.0 1111479931
## 23432    1.5 1111612105
## 23433    3.5 1111482407
## 23434    3.0 1120068354
## 23435    0.5 1111982354
## 23437    3.0 1111611097
## 23439    2.5 1111611103
## 23440    2.5 1111482158
## 23441    3.0 1111481949
## 23442    3.0 1111480425
## 23443    2.0 1111982349
## 23445    3.0 1111982299
## 23446    3.5 1111479902
## 23447    0.5 1111610943
## 23448    2.5 1111982357
## 23449    0.5 1111479113
## 23451    2.0 1111482054
## 23452    2.0 1111982324
## 23453    2.5 1111976030
## 23454    3.0 1111612043
## 23455    3.5 1111612045
## 23456    3.5 1111982301
## 23458    1.5 1111544774
## 23459    2.5 1111982128
## 23460    3.5 1111482367
## 23461    3.5 1111479994
## 23462    1.0 1111544796
## 23463    3.0 1111610539
## 23465    2.0 1111482140
## 23466    2.5 1111980153
## 23467    0.5 1111611914
## 23468    1.0 1111482127
## 23470    1.0 1111609765
## 23471    3.5 1111609772
## 23472    2.5 1111482063
## 23473    1.5 1111479360
## 23474    3.5 1111479094
## 23475    3.5 1111974579
## 23476    3.5 1111612079
## 23477    3.0 1111609926
## 23479    2.5 1120068379
## 23480    3.5 1111479248
## 23482    3.0 1111611899
## 23483    2.0 1111609900
## 23485    2.0 1111482425
## 23486    1.0 1111982123
## 23487    3.5 1111482418
## 23488    2.5 1120068461
## 23491    3.0 1111610138
## 23492    2.5 1111610270
## 23494    2.5 1111544905
## 23495    3.5 1111610250
## 23496    2.5 1111544926
## 23497    2.5 1111482568
## 23498    2.0 1111481171
## 23499    1.5 1111481174
## 23500    3.0 1111544922
## 23501    2.0 1111481159
## 23502    1.0 1111610955
## 23503    3.5 1111479322
## 23504    3.0 1111480753
## 23505    3.0 1112862161
## 23506    1.5 1111544939
## 23507    3.5 1111610361
## 23508    3.0 1111611965
## 23509    2.5 1111609693
## 23510    1.0 1111611733
## 23511    3.0 1111612120
## 23512    3.5 1111479713
## 23513    1.5 1111611419
## 23514    1.0 1111610214
## 23515    3.5 1111480053
## 23516    2.5 1111544956
## 23517    1.5 1111610103
## 23518    3.5 1111611803
## 23519    2.0 1111545166
## 23521    0.5 1111981923
## 23522    1.0 1111544973
## 23523    2.0 1111479893
## 23524    2.0 1111610890
## 23525    3.5 1111479887
## 23526    2.5 1111611144
## 23527    1.0 1111483124
## 23528    3.0 1111545003
## 23530    1.0 1111482454
## 23531    2.5 1111544994
## 23532    1.0 1111611741
## 23533    2.0 1111544998
## 23534    2.0 1111545007
## 23535    3.0 1111612163
## 23537    0.5 1111611730
## 23538    1.5 1111545018
## 23539    1.0 1111479721
## 23540    2.0 1111545012
## 23541    3.0 1111480432
## 23543    3.5 1111609738
## 23545    0.5 1111611312
## 23546    2.0 1111611979
## 23547    2.5 1111545046
## 23548    0.5 1111980416
## 23549    3.5 1111480402
## 23550    2.5 1111482091
## 23553    0.5 1111611889
## 23554    3.5 1111480414
## 23555    3.0 1111479653
## 23556    2.5 1111545061
## 23558    3.0 1112679205
## 23560    2.5 1111611955
## 23561    2.5 1111609912
## 23562    2.0 1111979893
## 23563    0.5 1111479753
## 23565    3.5 1111479877
## 23566    2.0 1111982019
## 23567    1.5 1111610528
## 23568    2.0 1111483520
## 23569    0.5 1111611916
## 23570    3.5 1111482107
## 23571    0.5 1111481156
## 23572    1.5 1111980536
## 23575    2.0 1111481221
## 23576    1.0 1111980432
## 23577    3.0 1111980126
## 23578    0.5 1111610819
## 23580    3.0 1111912447
## 23581    2.5 1111482460
## 23583    1.0 1111482458
## 23584    1.0 1111610395
## 23585    3.5 1111609775
## 23586    3.5 1111610377
## 23587    3.0 1111611208
## 23588    2.5 1111610228
## 23589    3.0 1111980236
## 23591    1.5 1111479295
## 23592    1.5 1111483453
## 23593    3.5 1111479987
## 23594    2.5 1111480374
## 23595    2.0 1111611968
## 23596    1.5 1112176029
## 23599    1.5 1111480042
## 23602    2.5 1111479400
## 23604    3.0 1111610107
## 23605    3.0 1111544466
## 23606    2.5 1111480022
## 23608    1.0 1111611403
## 23609    2.0 1111979070
## 23610    2.0 1112095574
## 23611    1.0 1111611905
## 23612    2.0 1111479699
## 23613    3.5 1112078947
## 23614    2.0 1111912388
## 23615    2.5 1113813088
## 23617    2.5 1111479407
## 23619    3.5 1111479979
## 23620    2.0 1111610219
## 23621    2.5 1111611992
## 23622    3.0 1111479704
## 23623    1.5 1111479377
## 23626    3.5 1111479419
## 23627    1.0 1111479349
## 23628    1.5 1111610198
## 23629    1.5 1111479362
## 23630    0.5 1111479487
## 23631    2.5 1111481229
## 23632    1.0 1111479436
## 23633    0.5 1111479388
## 23634    3.5 1111479342
## 23635    1.5 1111479431
## 23638    2.0 1111912408
## 23639    1.0 1111479466
## 23640    1.5 1111479442
## 23641    2.5 1113813097
## 23642    2.5 1111479446
## 23644    1.0 1111912422
## 23646    3.5 1120068362
## 23647    3.0 1111479242
## 23648    2.5 1112679141
## 23649    1.0 1112862150
## 23651    2.5 1112078957
## 23652    3.0 1111610390
## 23653    2.0 1113411108
## 23655    3.0 1112679214
## 23656    0.5 1111479464
## 23657    3.0 1112679117
## 23658    3.0 1113167865
## 23659    1.0 1120068332
## 23660    2.5 1112982315
## 23661    3.5 1112679197
## 23662    2.0 1111479484
## 23663    2.5 1111479578
## 23664    1.0 1111479503
## 23666    3.5 1120068275
## 23669    3.5 1064888606
## 23674    0.5 1064886959
## 23675    3.5 1064889111
## 23678    3.0 1064888510
## 23679    3.0 1064887021
## 23680    2.0 1064887460
## 23681    2.0 1064888582
## 23686    3.0 1064889007
## 23688    1.0 1064887367
## 23689    3.0 1064887265
## 23696    3.0 1064888661
## 23700    3.0 1064887383
## 23704    2.5 1064888102
## 23706    3.5 1064887933
## 23713    2.5 1064889000
## 23714    3.0 1064888682
## 23716    2.0 1064888685
## 23719    2.5 1064887823
## 23721    2.5 1064887827
## 23722    2.0 1064888366
## 23727    3.0  954114958
## 23735    2.0  954053165
## 23737    2.0  954115062
## 23741    2.0  954114904
## 23742    3.0  954114998
## 23743    3.0  954115524
## 23744    3.0  954114978
## 23748    3.0  848879299
## 23749    2.0  848879311
## 23751    3.0  848866720
## 23754    2.0  848879389
## 23755    3.0  848866642
## 23757    3.0  848879277
## 23758    3.0  848879177
## 23760    3.0  848879076
## 23761    3.0  848866602
## 23762    3.0  848879158
## 23763    3.0  848879389
## 23764    3.0  848866602
## 23765    1.0  848866744
## 23766    3.0  848879449
## 23767    2.0  848879076
## 23768    2.0  848879256
## 23769    3.0  848879090
## 23770    3.0  848879608
## 23771    3.0  848866720
## 23772    2.0  848879167
## 23773    2.0  848879242
## 23775    3.0  848879151
## 23776    3.0  848879090
## 23777    1.0  848879412
## 23778    3.0  848879449
## 23781    3.0  848879874
## 23782    3.0  848866666
## 23783    3.0  848866631
## 23788    3.0  848866631
## 23789    2.0  848879115
## 23791    3.0  848866720
## 23792    2.0  848879527
## 23794    3.0  848879231
## 23796    3.0  848879424
## 23797    3.0  848866570
## 23798    3.0  848879761
## 23799    3.0  848879900
## 23800    3.0  848866683
## 23802    1.0  848879222
## 23803    1.0  848866720
## 23804    3.0  848879364
## 23805    3.0  848879256
## 23806    3.0  848879489
## 23807    3.0  848866744
## 23808    3.0  848866631
## 23810    3.0  848866757
## 23811    3.0  848879489
## 23812    2.0  848879449
## 23813    3.0  848866653
## 23816    2.0  848879115
## 23817    2.0  848879333
## 23819    3.0  848879030
## 23820    2.0  848879570
## 23821    3.0  848866772
## 23822    3.0  848866757
## 23823    2.0  848879661
## 23824    3.0  848879318
## 23826    3.0  848879396
## 23827    1.0  848879299
## 23828    3.0  848879333
## 23829    3.0  848879349
## 23830    3.0  848879389
## 23831    2.0  848879201
## 23833    3.0  848866772
## 23835    3.0  848879585
## 23836    3.0  848866683
## 23839    3.0  848866570
## 23841    3.0  848866683
## 23843    3.0  848879799
## 23844    3.0  848866900
## 23849    3.0  848879822
## 23851    3.0  848879553
## 23856    3.0  848879886
## 23858    2.0  848879730
## 23864    1.5 1234227391
## 23865    3.5 1234228429
## 23866    2.0 1234227686
## 23867    3.5 1234227478
## 23870    3.5 1234228513
## 23871    3.5 1234228764
## 23872    3.0 1234227487
## 23874    3.5 1234228754
## 23876    1.0 1234227572
## 23877    3.5 1234227474
## 23882    3.0 1234228370
## 23883    3.5 1234228773
## 23884    3.5 1234227692
## 23885    2.5 1234227497
## 23888    2.0 1234227463
## 23891    3.5 1234228309
## 23894    3.5 1234228640
## 23897    3.5 1234228295
## 23906    1.0 1234227698
## 23907    3.5 1234227565
## 23911    3.5 1234227812
## 23914    3.0 1234228925
## 23915    2.5 1234227650
## 23917    3.0 1234228162
## 23920    3.0 1234228178
## 23923    3.5 1234228391
## 23924    3.5 1234228341
## 23925    3.0 1234227608
## 23932    3.0 1234228242
## 23934    3.0 1234228944
## 23936    2.0 1234228185
## 23941    2.5 1234229002
## 23948    3.5 1234228981
## 23952    3.5 1234228417
## 23955    3.0 1234228913
## 23957    3.5 1234228263
## 23969    3.5 1234228849
## 23974    3.5 1234228257
## 23975    3.5 1234228939
## 23976    2.5 1220532219
## 23977    2.5 1220532237
## 23978    2.0 1220532233
## 23979    1.0 1220532210
## 23980    2.0 1220532230
## 23981    3.0 1263219169
## 23982    1.0 1263219174
## 23983    3.0 1220532208
## 23984    3.5 1220532234
## 23986    2.0 1263219159
## 23987    3.0 1263219164
## 23989    1.5 1220532200
## 23990    3.0 1220532223
## 23991    2.0 1220532202
## 23992    3.0 1220532233
## 23993    2.5 1263219154
## 23994    2.5 1220532222
## 23995    2.5 1220532231
## 23996    1.5 1220532229
## 23997    3.0 1220532245
## 23998    2.0 1220532233
## 23999    3.0 1220532228
## 24000    3.0 1220532205
## 24001    3.0 1263219135
## 24013    3.0  950556231
## 24014    3.0  950996333
## 24022    3.0  950556329
## 24023    3.0  950996381
## 24032    3.0  950556889
## 24034    3.0  950556611
## 24036    2.0  951139528
## 24041    2.0  950556652
## 24042    3.0  950556751
## 24047    3.0  950556705
## 24048    3.0  950556960
## 24049    3.0  950556231
## 24051    3.0  843290818
## 24052    3.0  843290717
## 24055    3.0  843291407
## 24060    3.0  843290566
## 24061    3.0  843290717
## 24062    3.0  843290752
## 24064    3.0  843290645
## 24067    3.0  843290844
## 24069    3.0  843290496
## 24070    3.0  843290451
## 24071    3.0  843290451
## 24080    3.0  875357448
## 24086    3.0  876821405
## 24088    3.0  876821338
## 24092    3.0  876823420
## 24100    3.0  876821773
## 24101    3.0  876821498
## 24106    3.0  875356096
## 24110    3.0  876822114
## 24113    3.0  876821028
## 24115    1.5 1109621187
## 24117    2.0 1109621197
## 24118    3.5 1109621215
## 24119    1.0 1109621190
## 24120    2.5 1109621247
## 24121    3.5 1109621206
## 24122    3.0 1109621260
## 24124    2.0 1109621184
## 24125    0.5 1109621175
## 24129    2.5 1109621251
## 24130    3.5 1109621233
## 24131    3.0 1109621170
## 24133    3.5 1109621201
## 24134    3.0 1109623540
## 24137    3.0 1052884607
## 24145    2.0 1052836139
## 24147    3.0 1052884351
## 24150    3.0 1052884328
## 24152    3.0 1052835782
## 24153    3.0 1052884580
## 24166    3.0 1052884237
## 24167    3.0 1052835731
## 24169    3.0 1052883909
## 24171    3.0 1052835996
## 24172    3.0 1052884607
## 24175    2.0 1052836139
## 24181    3.0 1052883663
## 24186    1.0 1052835797
## 24192    2.0 1052884607
## 24196    3.0 1052835757
## 24199    2.0 1052835824
## 24202    3.0 1052836299
## 24205    3.0 1052835680
## 24207    2.0 1052836058
## 24213    3.0 1052883579
## 24214    2.0 1052835996
## 24217    2.0 1052883487
## 24218    2.0 1052883562
## 24219    3.0 1052836544
## 24221    3.0 1052836125
## 24222    3.0 1052883600
## 24226    2.0 1052836656
## 24240    2.0 1052836299
## 24245    2.0 1052884713
## 24254    3.0 1052883635
## 24256    3.0 1052836408
## 24257    1.0 1052883562
## 24258    3.0 1052836572
## 24260    2.0 1340720798
## 24261    3.0 1341047637
## 24262    2.0 1340915742
## 24263    2.0 1341001737
## 24264    1.0 1341002026
## 24265    3.0 1341050021
## 24266    2.0 1340720267
## 24269    2.5 1341051741
## 24270    2.0 1340915739
## 24271    3.0 1341048908
## 24272    2.5 1340915680
## 24273    3.0 1364721985
## 24274    2.5 1340717480
## 24275    3.5 1341001015
## 24278    0.5 1341001883
## 24279    2.5 1340916038
## 24280    2.5 1340713490
## 24281    3.5 1341049379
## 24282    2.0 1341048898
## 24284    3.0 1340913798
## 24286    3.0 1340720756
## 24288    0.5 1340715213
## 24289    3.5 1340715420
## 24290    2.0 1340715553
## 24291    3.0 1340720595
## 24292    3.0 1341050757
## 24293    1.5 1340721359
## 24294    2.0 1341047743
## 24295    3.0 1341047497
## 24296    1.5 1341001785
## 24298    3.5 1340713303
## 24299    2.5 1340720372
## 24300    3.0 1340715465
## 24301    2.0 1341000961
## 24302    0.5 1340721274
## 24303    3.5 1341048915
## 24304    3.0 1364722231
## 24305    1.0 1341002141
## 24306    2.5 1341056101
## 24307    2.0 1341050051
## 24308    1.5 1341047061
## 24309    2.0 1341050029
## 24310    3.0 1341049365
## 24311    2.0 1341048783
## 24312    2.0 1341050036
## 24313    2.0 1341048925
## 24314    3.0 1340720823
## 24316    1.5 1341002882
## 24318    2.5 1342857564
## 24319    1.0 1341001087
## 24320    1.0 1341002755
## 24321    1.5 1340713142
## 24322    1.5 1341001492
## 24323    2.5 1340720739
## 24324    3.5 1340912716
## 24325    2.0 1340902346
## 24327    2.0 1340713347
## 24328    1.0 1340721399
## 24330    3.5 1341002809
## 24331    0.5 1340713193
## 24332    0.5 1340721192
## 24333    2.5 1340747831
## 24334    0.5 1341002119
## 24335    2.0 1343335492
## 24337    1.0 1340713554
## 24338    3.5 1340914843
## 24339    3.5 1340916569
## 24341    3.0 1340913211
## 24342    2.0 1340721222
## 24343    2.0 1364722317
## 24344    1.0 1340713233
## 24345    3.5 1340914405
## 24346    1.0 1340914730
## 24347    3.5 1340715834
## 24348    0.5 1341002155
## 24349    3.0 1340715346
## 24351    3.5 1340714662
## 24353    2.5 1340716670
## 24354    0.5 1340713734
## 24355    2.0 1343335570
## 24356    3.0 1340918054
## 24357    3.0 1340715341
## 24359    3.5 1378384744
## 24360    3.0 1341047860
## 24362    3.0 1340713498
## 24363    3.0 1341002040
## 24364    3.5 1340917181
## 24367    3.0 1340715530
## 24369    3.0 1340720444
## 24370    1.5 1341003081
## 24372    3.5 1340917301
## 24373    3.5 1340716737
## 24375    2.0 1340721386
## 24376    2.5 1340720299
## 24377    0.5 1340747921
## 24378    3.5 1340715623
## 24379    2.5 1340917347
## 24380    1.5 1340916972
## 24386    3.5 1340715612
## 24387    2.5 1341055462
## 24388    3.5 1340713901
## 24389    3.5 1341056045
## 24390    3.5 1340715337
## 24391    3.5 1341001212
## 24392    0.5 1340721882
## 24393    3.5 1340914846
## 24394    3.5 1345915332
## 24395    3.0 1341055400
## 24396    1.5 1340746374
## 24398    3.5 1340715128
## 24400    3.5 1340720451
## 24401    1.0 1364722311
## 24403    3.0 1340748665
## 24404    2.5 1340717676
## 24405    3.5 1340914509
## 24408    3.5 1343335486
## 24409    3.5 1340916558
## 24410    2.5 1340720656
## 24411    2.0 1343335392
## 24412    3.5 1340913567
## 24414    2.5 1340811802
## 24415    2.0 1341047338
## 24416    3.0 1340715333
## 24417    2.5 1340748142
## 24418    3.0 1340720952
## 24419    2.0 1342949753
## 24420    3.5 1340715546
## 24423    3.5 1340917675
## 24424    3.0 1343335399
## 24425    2.0 1340914687
## 24426    3.0 1340916181
## 24427    2.0 1344347678
## 24428    3.5 1340748640
## 24434    3.5 1340913756
## 24435    2.0 1343335247
## 24437    3.0 1340747499
## 24438    3.5 1340714267
## 24439    3.5 1340916173
## 24440    2.5 1340748506
## 24441    3.0 1340716832
## 24442    3.5 1340747539
## 24443    3.5 1341002428
## 24444    2.5 1341056232
## 24445    3.0 1340913712
## 24446    3.0 1340915519
## 24447    3.0 1343335280
## 24448    3.5 1345237994
## 24450    2.5 1340912864
## 24451    3.0 1340714650
## 24452    2.0 1340912969
## 24453    3.0 1341056136
## 24455    3.5 1340914801
## 24456    3.5 1368312386
## 24458    3.5 1340916711
## 24459    3.0 1343333689
## 24460    1.0 1340720312
## 24461    2.5 1340747587
## 24462    2.5 1347306212
## 24463    3.0 1340720957
## 24464    1.0 1368307751
## 24465    3.0 1340918200
## 24467    1.5 1344167211
## 24468    3.5 1340916241
## 24469    3.0 1340914244
## 24472    3.5 1343333718
## 24473    2.5 1341047285
## 24474    3.0 1340915442
## 24476    2.0 1366545291
## 24478    2.5 1364722469
## 24480    2.5 1340715537
## 24481    3.0 1341001174
## 24484    3.0 1366545246
## 24485    2.5 1340914719
## 24486    2.5 1378384504
## 24487    3.0 1343334260
## 24488    3.0 1340916679
## 24489    2.5 1340911697
## 24490    2.0 1368307787
## 24493    2.0 1340916326
## 24494    3.0 1340714765
## 24495    3.5 1340911985
## 24496    3.5 1345237982
## 24497    2.5 1340714469
## 24499    2.0 1340917043
## 24500    3.5 1343334119
## 24502    3.5 1340912551
## 24503    2.5 1340717602
## 24504    1.0 1340915855
## 24505    3.0 1340720332
## 24506    3.5 1366545262
## 24507    3.0 1378384538
## 24508    3.0 1368307805
## 24509    3.5 1378384885
## 24511    2.0 1368307727
## 24512    3.5 1384107215
## 24513    3.5 1377799692
## 24514    3.0 1377799432
## 24515    3.0 1384107175
## 24522    3.0  907380781
## 24526    1.0  907380378
## 24528    2.0  907380055
## 24531    3.0  907380964
## 24534    2.0  907380369
## 24541    3.0  907380056
## 24543    3.0  907380056
## 24547    3.0  907381025
## 24549    3.0  907381064
## 24550    3.0  907380138
## 24551    2.0  907380138
## 24552    3.0  907381132
## 24557    3.0  907380138
## 24567    3.0  907380203
## 24568    2.0  907380203
## 24569    2.0  907381096
## 24572    3.0  907380203
## 24574    3.0  907380203
## 24581    3.0  907381132
## 24583    3.0  907380321
## 24585    2.0  907380369
## 24586    3.0  907381218
## 24588    3.0  907380138
## 24589    1.0  907381218
## 24597    3.0  907380369
## 24604    3.0  907380246
## 24610    3.0  907381218
## 24611    3.0  907380138
## 24613    2.0  907380369
## 24614    3.0  907380964
## 24615    3.0  907381264
## 24616    3.0  907380964
## 24618    3.0  907380203
## 24620    3.0  907381243
## 24626    3.0  907380544
## 24642    3.0  907380253
## 24643    3.0  907380321
## 24644    3.0  907380964
## 24648    3.0  907380567
## 24655    3.0  907381025
## 24656    3.0  907381243
## 24658    1.0  907380918
## 24660    2.0  907381064
## 24661    1.0  907381218
## 24663    3.0  907380918
## 24670    1.0  907380246
## 24671    3.0  907380138
## 24674    2.0  907380246
## 24684    3.0  907381064
## 24689    3.0  907380884
## 24690    2.0  907381064
## 24691    3.0  907380203
## 24695    3.0  907380000
## 24696    2.0  907380203
## 24700    2.0  907380246
## 24707    3.0  907380321
## 24709    3.0  907379242
## 24717    3.0  907516093
## 24722    3.0  907380435
## 24723    3.0  907380567
## 24724    3.0  907380544
## 24726    3.0  907379359
## 24728    3.0  907381312
## 24738    3.0  907380544
## 24741    3.5 1437422963
## 24744    3.5 1437422890
## 24747    3.0 1437422880
## 24749    3.5 1437428256
## 24750    3.0 1437428180
## 24752    3.5 1437428338
## 24754    3.0 1437422818
## 24757    3.0 1437424656
## 24758    3.0 1437424660
## 24760    2.5 1437422833
## 24761    3.0 1437428244
## 24762    3.0 1437424756
## 24765    2.5 1437428108
## 24767    3.0 1437422776
## 24769    3.5 1437422824
## 24773    3.0 1437422775
## 24777    3.5 1437424537
## 24778    3.5 1437424542
## 24779    3.0 1437424658
## 24783    3.5 1437424710
## 24784    2.0 1437424514
## 24788    2.5 1437428325
## 24789    3.5 1437428224
## 24790    3.5 1437428238
## 24793    3.5 1437422848
## 24794    2.5 1437428133
## 24797    3.5 1437428222
## 24800    3.5 1437428391
## 24801    3.0 1437425881
## 24803    3.0 1437422802
## 24804    3.0 1437428178
## 24805    1.5 1437424699
## 24811    3.5 1437425865
## 24812    2.5 1437424594
## 24813    3.5 1437428230
## 24814    3.0 1437428385
## 24815    3.0 1437424701
## 24816    1.5 1437428200
## 24817    3.0 1437428141
## 24818    2.5 1437428389
## 24819    3.0 1437424533
## 24820    3.5 1437424506
## 24822    3.5 1437424649
## 24823    2.5 1437425897
## 24824    2.5 1437425829
## 24825    2.5 1437424604
## 24827    2.5 1437428346
## 24828    2.0 1437425794
## 24829    3.5 1437428144
## 24830    2.5 1437425868
## 24832    3.0 1437428365
## 24833    3.0 1437428328
## 24834    3.0 1437425811
## 24835    3.5 1437428168
## 24836    2.5 1437422884
## 24837    3.0 1437424588
## 24839    3.5 1437422956
## 24841    3.0 1437428336
## 24842    3.0 1437424520
## 24845    3.0 1437428208
## 24846    3.0 1437427724
## 24848    3.0 1437422958
## 24849    3.0 1437424530
## 24850    3.5 1437428189
## 24851    3.5 1437428372
## 24853    2.5 1437428278
## 24854    3.5 1437428153
## 24856    2.5 1437424590
## 24858    2.0 1437424624
## 24859    2.0 1437425808
## 24860    3.0 1437424758
## 24861    1.5 1437424684
## 24862    3.0 1437424582
## 24864    2.0 1437424600
## 24865    3.5 1437422854
## 24866    2.5 1437425871
## 24867    3.5 1437425856
## 24869    3.5 1437428138
## 24872    3.0 1436669953
## 24873    3.0 1436670038
## 24874    3.0 1436670351
## 24876    3.0 1436670156
## 24877    2.5 1436670105
## 24878    3.5 1436670189
## 24883    3.5 1436670118
## 24886    3.5 1436670323
## 24887    0.5 1436670174
## 24888    2.5 1436670145
## 24893    3.5 1436670234
## 24894    2.0 1436670152
## 24897    3.5 1436670163
## 24899    3.5 1436670449
## 24907    2.0 1436670023
## 24909    3.0  945446726
## 24912    3.0  945446980
## 24920    3.0  945446829
## 24921    3.0  945446462
## 24922    3.0  945446462
## 24924    2.0  945446804
## 24925    3.0  945446740
## 24927    2.0  945446708
## 24928    2.0  945446845
## 24929    1.0  945446726
## 24934    3.5 1154542675
## 24940    3.0 1154542755
## 24942    3.5 1154542746
## 24944    3.5 1154542815
## 24961    3.0  845745077
## 24965    3.0  845746347
## 24967    3.0  845745917
## 24968    3.0  845744218
## 24969    3.0  845744047
## 24970    1.0  845744316
## 24972    3.0  845744347
## 24973    3.0  845744430
## 24975    3.0  845746546
## 24977    3.0  845745516
## 24978    3.0  845744218
## 24981    3.0  845745742
## 24983    3.0  845745457
## 24986    3.0  845743728
## 24988    3.0  845744976
## 24989    3.0  845745373
## 24991    3.0  845746300
## 24996    3.0  845744545
## 24998    1.0  845743763
## 24999    3.0  845744218
## 25000    3.0  845744603
## 25004    3.0  845746126
## 25005    3.0  845744347
## 25006    3.0  845744141
## 25008    3.0  845745685
## 25011    3.0  845744191
## 25013    3.0  845743924
## 25015    3.0  845743763
## 25017    2.0  845744250
## 25019    3.0  845744805
## 25020    3.0  845745671
## 25021    1.0  845743728
## 25025    3.0  845744575
## 25027    3.0  845744141
## 25028    3.0  845745613
## 25033    3.0  845744545
## 25036    3.0  845744842
## 25038    3.0  845743924
## 25042    3.0  845744864
## 25045    3.0  845744545
## 25046    3.0  845745440
## 25049    3.0  845745289
## 25050    3.0  845744250
## 25052    3.0  845744864
## 25055    3.0  845745077
## 25056    3.0  845744218
## 25057    3.0  845745757
## 25061    3.0  845743728
## 25065    3.0  845745770
## 25069    3.0  845746928
## 25071    3.0  845745742
## 25078    3.0  845746773
## 25080    2.0  845745856
## 25082    3.0  845746155
## 25088    2.0  845745804
## 25089    3.0  845745838
## 25095    3.0  983096240
## 25108    2.0  983096892
## 25111    3.0  983096695
## 25113    3.0  983096806
## 25116    3.0  983096843
## 25125    1.0  983096472
## 25126    3.0  983096370
## 25127    1.0  983096431
## 25128    3.0  983096541
## 25130    3.0  983096505
## 25132    3.0  833524819
## 25134    3.0  833525271
## 25136    3.0  833524803
## 25137    3.0  833524952
## 25138    2.0  833524925
## 25145    2.0  833525355
## 25148    3.0  833525056
## 25151    3.0  833525154
## 25153    3.0  833524768
## 25154    3.0  833525000
## 25155    2.0  833525223
## 25157    3.0  833524818
## 25159    3.0  833524911
## 25163    3.0  833525100
## 25164    2.0  833525330
## 25166    3.0  833525233
## 25169    3.0  833525249
## 25174    3.0  833525212
## 25180    3.0 1019787132
## 25183    3.0 1003524274
## 25184    2.0 1019787488
## 25186    2.0 1003523380
## 25187    2.0 1019787467
## 25188    3.0 1003523818
## 25189    3.0 1003524153
## 25196    3.0 1003523305
## 25198    3.0 1003523129
## 25199    3.0 1003524606
## 25207    3.0 1003523305
## 25209    3.0 1003523305
## 25213    3.0 1003523419
## 25220    3.0 1003523359
## 25221    2.0 1003523752
## 25222    3.0 1003524426
## 25224    3.0 1019787199
## 25225    3.0 1003523597
## 25227    3.0 1003523323
## 25228    3.0 1003523380
## 25229    3.0 1003524590
## 25230    3.0 1019787095
## 25231    3.0 1019787081
## 25232    3.0 1003523404
## 25234    3.0 1019787475
## 25239    2.0 1003524153
## 25245    3.0 1003523115
## 25249    3.0 1003523140
## 25252    3.0 1003524548
## 25257    3.0 1003524369
## 25261    3.0 1019787081
## 25262    2.0 1003524190
## 25264    3.0 1003524299
## 25265    3.0 1003523715
## 25272    2.0 1003523741
## 25273    3.0 1003523338
## 25275    3.0 1003523576
## 25276    2.0 1003523766
## 25278    3.0 1003523404
## 25279    3.0 1003523716
## 25280    3.0 1003523930
## 25282    3.0 1003524699
## 25283    3.0 1003523597
## 25284    2.0 1003524616
## 25289    3.0 1003523622
## 25291    3.0 1003523195
## 25294    3.0 1019787081
## 25295    3.0 1003523646
## 25296    3.0 1003523195
## 25297    3.0 1003523404
## 25298    3.0 1003523767
## 25299    3.0 1003523305
## 25300    3.0 1003523305
## 25301    3.0 1003524637
## 25302    2.0 1003523380
## 25303    3.0 1019787081
## 25306    3.0 1003523788
## 25307    3.0 1003523727
## 25308    3.0 1003523305
## 25309    3.0 1003523848
## 25310    2.0 1003524415
## 25311    3.0 1019787081
## 25312    3.0 1003523323
## 25313    3.0 1019787107
## 25314    3.0 1019787132
## 25316    3.0 1003523848
## 25318    3.0 1019787081
## 25321    3.0 1003524637
## 25323    2.0 1019787502
## 25325    3.0 1019787180
## 25327    3.0 1003524397
## 25328    3.0 1003523891
## 25329    3.0 1003523669
## 25334    3.0 1003524508
## 25335    3.0 1003524753
## 25338    2.0 1003524144
## 25341    3.0 1003523305
## 25346    3.0 1019787143
## 25347    3.0 1003524249
## 25350    3.0 1019787278
## 25351    3.0 1003524691
## 25353    3.0 1003523891
## 25356    3.0 1003523830
## 25357    3.0 1003523863
## 25358    2.0 1019787199
## 25359    3.0 1019787199
## 25362    3.0 1003523634
## 25363    2.0 1019787577
## 25365    3.0 1003523268
## 25366    3.0 1003523658
## 25367    2.0 1003523777
## 25369    3.0 1003524743
## 25370    3.0 1003523848
## 25373    3.0 1003524096
## 25377    2.0 1019787456
## 25379    3.0 1019787132
## 25380    3.0 1276205768
## 25382    1.5 1295458775
## 25384    2.5 1295458745
## 25387    1.0 1276205530
## 25390    2.0 1276205797
## 25391    3.5 1295458819
## 25395    1.0 1295458718
## 25397    3.5 1295460021
## 25400    2.5 1276205604
## 25402    1.5 1276205429
## 25408    2.0 1295460254
## 25412    3.0 1295459509
## 25416    2.0 1276205381
## 25417    3.0 1295459570
## 25418    3.0 1295459523
## 25423    3.0 1237164142
## 25432    2.5 1241388856
## 25434    3.5 1228072708
## 25435    3.0 1228071856
## 25436    2.0 1241225088
## 25437    3.0 1241225489
## 25441    1.0 1228072734
## 25443    3.0 1228072670
## 25445    3.0 1237164136
## 25447    3.5 1228072720
## 25448    3.0 1233449807
## 25450    2.0 1233450000
## 25451    3.5 1233448869
## 25452    3.0 1233449697
## 25454    3.5 1228072634
## 25455    3.5 1228072703
## 25459    2.5 1237164197
## 25460    3.5 1228073327
## 25465    3.5 1233458937
## 25467    3.5 1237164040
## 25469    2.5 1237164098
## 25470    2.5 1233449634
## 25473    3.5 1230417334
## 25475    2.5 1237164243
## 25478    3.0 1230361942
## 25480    3.5 1233449627
## 25481    3.5 1237164038
## 25485    3.5 1233458848
## 25486    3.0 1233449906
## 25487    3.5 1237160042
## 25492    3.5 1228072722
## 25494    3.5 1228072739
## 25495    3.5 1228072190
## 25496    3.0 1233458483
## 25500    0.5 1228083634
## 25502    0.5 1230417324
## 25503    3.5 1237163986
## 25504    3.5 1230417235
## 25505    3.5 1230417226
## 25506    2.0 1233449963
## 25508    3.5 1228073319
## 25511    3.0 1241225002
## 25512    3.5 1233459023
## 25516    3.5 1241388444
## 25523    2.5 1241225070
## 25525    3.5 1233516622
## 25526    3.5 1230417187
## 25527    0.5 1230417281
## 25530    2.5 1230417250
## 25532    3.5 1228071707
## 25534    3.5 1233448914
## 25535    2.5 1233458858
## 25538    3.5 1237164292
## 25540    3.5 1241415892
## 25543    2.5 1228071867
## 25544    3.0 1233449374
## 25546    3.5 1230360941
## 25547    3.0 1241931401
## 25556    1.0 1228072412
## 25561    2.5 1233515950
## 25562    3.5 1230417185
## 25564    2.5 1233516579
## 25568    3.5 1228071763
## 25571    2.5 1230360779
## 25572    3.5 1241388583
## 25573    3.5 1233449591
## 25574    3.0 1233449947
## 25583    3.0 1241388448
## 25588    3.5 1233459015
## 25589    3.0 1233447535
## 25590    0.5 1233459107
## 25591    3.0 1233449767
## 25592    3.0 1230417193
## 25596    2.5 1228073359
## 25598    3.0 1259371717
## 25601    2.0 1233450060
## 25602    3.5 1237164365
## 25607    1.0 1228072764
## 25609    1.0 1230417287
## 25613    3.5 1233516041
## 25614    1.5 1241388829
## 25616    3.0 1241388385
## 25617    2.5 1228083856
## 25623    1.0 1228073314
## 25625    3.5 1228073156
## 25626    2.5 1241388598
## 25631    2.5 1237159334
## 25633    3.0 1228083851
## 25634    0.5 1233515977
## 25637    2.0 1241388736
## 25638    3.0 1230416982
## 25639    3.0 1241388708
## 25640    3.5 1230361184
## 25641    3.5 1241415977
## 25642    3.0 1230360839
## 25643    3.0 1237159319
## 25644    3.5 1241225260
## 25645    0.5 1233516626
## 25647    3.5 1237163983
## 25648    3.0 1228072912
## 25649    3.5 1233447509
## 25650    3.5 1237161336
## 25651    3.5 1230362003
## 25652    1.0 1233515881
## 25656    3.5 1237163844
## 25658    3.0 1230360841
## 25661    3.0 1237162916
## 25663    2.0 1233449745
## 25665    3.5 1233516741
## 25666    3.5 1241388511
## 25668    3.5 1228073344
## 25671    3.0 1233449875
## 25673    3.0 1237162835
## 25674    2.0 1241388789
## 25675    3.5 1233515791
## 25676    3.5 1230361472
## 25678    3.5 1230361622
## 25679    2.5 1230361340
## 25681    3.5 1228072339
## 25682    3.5 1233449779
## 25683    3.5 1230360607
## 25684    3.0 1233459123
## 25685    3.0 1230416400
## 25692    3.5 1241388495
## 25694    1.5 1241388807
## 25695    3.0 1230362102
## 25696    3.5 1233516607
## 25698    3.5 1233516986
## 25700    1.0 1259371730
## 25701    2.0 1241388761
## 25704    2.0 1241225435
## 25706    3.5 1230361530
## 25708    3.0 1230361558
## 25716    2.5 1241388565
## 25717    3.5 1230361482
## 25720    3.5 1230416949
## 25721    3.5 1228071900
## 25722    3.5 1233449569
## 25723    3.0 1233516732
## 25725    3.0 1230360964
## 25726    3.5 1237163378
## 25731    3.0 1233449888
## 25734    2.5 1241388628
## 25736    2.5 1230361868
## 25738    3.0 1259371668
## 25739    3.0 1233516540
## 25743    3.5 1259371684
## 25748    3.0  841064493
## 25752    3.0  841063654
## 25753    3.0  841063606
## 25754    3.0  841063983
## 25756    3.0  841063743
## 25757    3.0  841064610
## 25761    3.0  841063511
## 25762    3.0  841064649
## 25763    3.0  841063654
## 25764    2.0  841063510
## 25765    3.0  841064943
## 25766    3.0  841064894
## 25767    2.0  841063568
## 25769    3.0  841063527
## 25770    3.0  841063568
## 25771    3.0  841064705
## 25772    3.0  841063901
## 25775    3.0  841063550
## 25778    2.0  841063527
## 25779    3.0  841063637
## 25781    3.0  841063550
## 25782    3.0  841063569
## 25785    3.0  841064111
## 25788    3.0  841064171
## 25790    3.0  841063623
## 25792    3.0  841064862
## 25793    3.0  841063623
## 25795    3.0  841063606
## 25796    3.0  841063637
## 25797    3.0  841063691
## 25798    3.0  841063586
## 25799    3.0  841063527
## 25805    3.0  841064089
## 25806    3.0  841064871
## 25808    3.0  841063691
## 25810    3.0  841064601
## 25811    3.0  841064758
## 25817    3.0  841063489
## 25823    3.0  841064202
## 25824    3.0  841064171
## 25826    3.0  841064493
## 25829    3.0  841063954
## 25830    3.0  841064551
## 25832    3.0  841064894
## 25833    3.0  841065073
## 25835    3.0  841065046
## 25836    3.0  841065032
## 25837    3.0  841065015
## 25839    3.0  841065015
## 25840    3.0  841065015
## 25841    3.0  841065046
## 25844    3.0  841065046
## 25845    3.0  841065064
## 25846    2.0  968095049
## 25847    1.0  968095225
## 25848    2.0  968094991
## 25851    2.0  968095164
## 25852    3.0  968095141
## 25856    1.0  968095189
## 25857    2.0  968095141
## 25858    1.0  968095281
## 25859    3.0  968095112
## 25861    3.0  968094971
## 25862    3.0  968093184
## 25863    3.0  968093248
## 25864    1.0  968094971
## 25870    2.0  968094876
## 25874    1.0  968094876
## 25875    2.0  968094946
## 25876    2.0  968092650
## 25877    1.0  968094946
## 25879    2.0  968093299
## 25880    3.0  968093403
## 25883    3.0  968094971
## 25884    2.0  968092938
## 25885    1.0  968093248
## 25886    3.0  968094946
## 25888    1.0  968092883
## 25890    3.0  968092318
## 25891    2.0  968095015
## 25892    2.0  968094991
## 25893    1.0  968092318
## 25895    2.0  968093085
## 25896    3.0  968092976
## 25897    1.0  968094971
## 25898    1.0  968092883
## 25899    1.0  968092913
## 25900    1.0  968093150
## 25901    3.0  968092976
## 25902    2.0  968092883
## 25903    3.0  968093248
## 25905    1.0  968095112
## 25906    1.0  968095189
## 25907    1.0  968095113
## 25908    1.0  968095049
## 25909    2.0  968092913
## 25910    2.0  968093210
## 25912    1.0  968093248
## 25914    2.0  968093248
## 25915    1.0  968095281
## 25916    3.0  968093274
## 25917    2.0  968092976
## 25918    1.0  968095164
## 25919    2.0  968093385
## 25920    3.0  968093150
## 25922    3.0  968093299
## 25923    3.0  968093049
## 25926    1.0  968093332
## 25927    1.0  968093403
## 25928    3.0  968093358
## 25930    3.0  968092795
## 25933    1.0  968093150
## 25934    3.0  968093049
## 25935    1.0  968093085
## 25936    1.0  968093150
## 25937    3.0  968092913
## 25938    2.0  968093299
## 25940    1.0  968092913
## 25942    3.0  968093385
## 25943    2.0  968092827
## 25944    1.0  968092883
## 25945    1.0  968092913
## 25946    3.0  968093211
## 25947    2.0  968093358
## 25948    2.0  968092747
## 25949    1.0  968092795
## 25950    3.0  968093358
## 25953    1.0  968093049
## 25954    1.0  968092938
## 25955    1.0  968093150
## 25956    1.0  968092938
## 25957    3.0  968092976
## 25959    2.0  968093385
## 25960    1.0  968093085
## 25962    2.0  968092318
## 25963    1.0  968092795
## 25964    2.0  968092827
## 25965    3.0  968092913
## 25967    2.0  968092976
## 25968    1.0  968094657
## 25969    2.0  968094603
## 25971    2.0  968093049
## 25973    1.0  968094682
## 25974    1.0  968094603
## 25976    2.0  968094632
## 25979    1.0  968092976
## 25981    2.0  968095113
## 25982    3.0  968093332
## 25983    3.0  968092795
## 25984    3.0  968092827
## 25985    1.0  968094657
## 25986    3.0  968094657
## 25987    3.0  968094657
## 25988    2.0  968094682
## 25989    1.0  968092976
## 25990    2.0  968093049
## 25991    2.0  968095024
## 25992    3.0  968092318
## 25993    2.0  968094632
## 25995    3.0  968093049
## 25996    1.0  968093049
## 25998    3.0  968093211
## 26000    2.0  968093085
## 26001    1.0  968093525
## 26004    3.0  968094971
## 26005    2.0  968095141
## 26006    2.0  968095225
## 26007    3.0  968095257
## 26008    1.0  968094946
## 26009    3.0  968093403
## 26011    2.0  968095281
## 26012    1.0  968094946
## 26013    3.0  968095015
## 26014    1.0  968095049
## 26015    3.0  968094902
## 26016    2.0  968095189
## 26017    2.0  968095113
## 26019    2.0  968093525
## 26021    3.0  968095141
## 26031    3.0  975693159
## 26034    3.0  975694137
## 26036    3.0  975694955
## 26039    3.0  975693787
## 26045    3.0  975695042
## 26047    3.0  975695345
## 26050    3.0  975694648
## 26052    3.0  975693352
## 26059    3.0  975695150
## 26060    3.0  975694759
## 26063    3.0  975693657
## 26065    3.0  975694309
## 26066    3.0  975694030
## 26072    2.0  975693352
## 26074    3.0  978110441
## 26078    3.0  975693657
## 26081    3.0  978110391
## 26082    2.0  839925608
## 26083    2.0  839925667
## 26084    3.0  839925667
## 26085    3.0  839925631
## 26087    2.0  839925540
## 26089    3.0  839925540
## 26090    3.0  839925608
## 26091    3.0  839925608
## 26092    2.0  839925563
## 26093    2.0  839925587
## 26098    1.0  839925540
## 26099    3.0  839925540
## 26101    3.0  839925515
## 26102    2.0  839925587
## 26103    3.0  839925667
## 26105    3.0  839925631
## 26106    2.0  839925540
## 26108    2.0  839925515
## 26110    2.0  839925563
## 26112    3.0  843633899
## 26114    3.0  843633926
## 26115    3.0  843634056
## 26116    3.0  843633842
## 26117    3.0  843634125
## 26119    3.0  843634056
## 26120    3.0  843633946
## 26121    2.0  843634228
## 26122    3.0  843633784
## 26123    2.0  843633809
## 26126    3.0  843634056
## 26129    3.0  843633696
## 26133    3.0  843633967
## 26134    2.0  843634211
## 26138    3.0  843633842
## 26139    3.0  843634211
## 26140    2.0  843634385
## 26141    3.0  843633865
## 26142    3.0  843633612
## 26144    3.0  843633747
## 26145    2.0  843634025
## 26146    3.0  843633842
## 26147    3.0  843634419
## 26149    3.0  843634025
## 26154    3.0  843633926
## 26155    1.0  843634056
## 26160    3.0  843633612
## 26161    3.0  843633696
## 26164    2.0  843633926
## 26165    3.0  843634105
## 26171    3.0  971215907
## 26185    3.0  971215428
## 26186    3.0  971215449
## 26187    3.0  971215624
## 26194    3.0  971216851
## 26197    3.0  971216596
## 26206    3.0  971217336
## 26222    3.0  971215982
## 26226    3.0  971216680
## 26228    3.0  971215849
## 26232    3.0  848098383
## 26234    3.0  848098576
## 26235    3.0  848098479
## 26238    3.0  848098528
## 26239    3.0  848098576
## 26240    3.0  848098427
## 26242    3.0  848098592
## 26243    3.0  848098445
## 26244    3.0  848098500
## 26246    3.0  848098284
## 26248    3.0  848098235
## 26249    3.0  848098310
## 26250    3.0  848098264
## 26251    3.0  848098173
## 26253    3.0  848098427
## 26256    3.0  848098205
## 26258    3.0  848098576
## 26262    3.0  848098555
## 26263    3.0  848098339
## 26265    3.0  848098405
## 26266    3.0  848098445
## 26268    3.0  848098464
## 26269    3.0  848098310
## 26270    3.0  848098205
## 26271    3.0  848098264
## 26272    3.0  848098339
## 26274    3.0  848098555
## 26275    3.0  848098362
## 26279    3.0  848098362
## 26283    3.0  977756074
## 26285    3.0  976288703
## 26286    2.0  975419204
## 26287    2.0  975416589
## 26288    3.0  975418995
## 26289    1.0  976289312
## 26290    3.0  975417183
## 26291    2.0  977743492
## 26292    1.0  977724281
## 26293    3.0  977743614
## 26295    1.0  975418855
## 26296    2.0  978700402
## 26297    1.0  975419204
## 26299    2.0  977724593
## 26300    2.0  975416759
## 26302    3.0  977755886
## 26303    3.0  975417426
## 26304    3.0  977723922
## 26305    2.0  975418810
## 26306    3.0  977725027
## 26307    1.0  976288108
## 26308    3.0  975418706
## 26309    2.0  976289373
## 26310    3.0  975418706
## 26311    3.0  975417396
## 26312    2.0  975419267
## 26313    3.0  975418616
## 26314    1.0  975419407
## 26315    1.0  975419174
## 26316    3.0  978700358
## 26317    2.0  977724768
## 26319    3.0  976289176
## 26321    2.0  975419174
## 26323    3.0  977743659
## 26324    3.0  975416263
## 26325    2.0  976289373
## 26326    3.0  975416970
## 26329    3.0  975748393
## 26330    3.0  976289451
## 26334    2.0  978700358
## 26335    2.0  975419080
## 26336    1.0  975416589
## 26338    3.0  977723786
## 26339    3.0  978700526
## 26340    3.0  978700555
## 26342    3.0  977743568
## 26343    2.0  976288256
## 26347    3.0  976288882
## 26348    2.0  976288064
## 26351    2.0  976288703
## 26357    3.0  977755609
## 26358    3.0  977755742
## 26359    3.0  976287942
## 26360    3.0  977723565
## 26361    2.0  975763311
## 26364    3.0  977755525
## 26366    3.0  977754744
## 26368    3.0  977754812
## 26370    3.0  978700625
## 26371    1.0  975417065
## 26372    3.0  975416496
## 26374    3.0  976288189
## 26375    3.0  976289149
## 26378    3.0  977743706
## 26380    2.0  977755782
## 26381    3.0  975416496
## 26382    2.0  975418661
## 26383    3.0  977754744
## 26385    1.0  976289451
## 26386    1.0  975417321
## 26387    3.0  976287996
## 26389    3.0  977724593
## 26392    3.0  976288064
## 26393    3.0  975416836
## 26395    3.0  975416922
## 26399    3.0  977723922
## 26406    3.0  976288931
## 26407    2.0  977743531
## 26409    3.0  977754695
## 26412    3.0  976288143
## 26413    3.0  975417022
## 26414    2.0  975416922
## 26421    3.0  976288064
## 26422    2.0  976288779
## 26423    3.0  977723884
## 26425    3.0  977743659
## 26426    2.0  976288515
## 26427    3.0  975416263
## 26429    3.0  976288228
## 26431    2.0  975763348
## 26438    3.0  975417065
## 26439    2.0  976288189
## 26441    3.0  977755058
## 26443    3.0  976288703
## 26444    3.0  975418888
## 26446    1.0  975417321
## 26447    2.0  975418706
## 26448    3.0  975417247
## 26449    3.0  975418661
## 26451    3.0  978700656
## 26453    3.0  975418855
## 26454    3.0  977750746
## 26456    2.0  976289485
## 26458    2.0  975418810
## 26459    2.0  975416759
## 26460    1.0  975419080
## 26461    3.0  975418810
## 26463    2.0  976288992
## 26464    3.0  975418810
## 26465    2.0  975416664
## 26466    3.0  976289064
## 26469    1.0  975419245
## 26470    3.0  976289402
## 26471    1.0  975419174
## 26473    3.0  977743706
## 26474    3.0  977754632
## 26476    3.0  977750706
## 26477    3.0  977755525
## 26478    3.0  978700555
## 26479    2.0  977750706
## 26481    3.0  975416970
## 26482    1.0  975417247
## 26483    3.0  977750615
## 26484    1.0  977755569
## 26487    3.0  977755609
## 26488    2.0  977755058
## 26489    2.0  976288779
## 26490    1.0  976288931
## 26491    1.0  975417350
## 26492    1.0  975419021
## 26493    1.0  978700358
## 26494    3.0  975418810
## 26497    2.0  975416545
## 26498    3.0  977724281
## 26501    2.0  975416616
## 26503    3.0  977755671
## 26504    3.0  977755165
## 26505    3.0  977743614
## 26506    2.0  975763348
## 26507    2.0  978700726
## 26508    2.0  978700726
## 26509    2.0  975419107
## 26510    1.0  975416545
## 26512    3.0  975416589
## 26513    3.0  976289269
## 26514    2.0  976289485
## 26515    2.0  976289269
## 26516    3.0  977724281
## 26517    3.0  975417321
## 26518    3.0  976288882
## 26519    3.0  977755058
## 26520    2.0  976289485
## 26521    3.0  978700681
## 26522    3.0  975748444
## 26523    3.0  976289095
## 26524    2.0  976289312
## 26525    2.0  975416496
## 26528    3.0  975416545
## 26529    3.0  975417183
## 26530    3.0  977755480
## 26532    3.0  976288846
## 26533    3.0  977724034
## 26534    3.0  975417022
## 26535    2.0  977756127
## 26537    3.0  976289241
## 26538    3.0  977755569
## 26539    3.0  977755058
## 26540    1.0  978700434
## 26542    3.0  975417426
## 26544    3.0  976288743
## 26546    3.0  975419080
## 26547    3.0  975418941
## 26549    1.0  975419204
## 26550    1.0  975419407
## 26551    1.0  975419141
## 26552    1.0  975417247
## 26553    3.0  976289485
## 26554    1.0  975419174
## 26555    1.0  975419367
## 26556    1.0  975419448
## 26557    2.0  975418763
## 26558    2.0  976289241
## 26559    3.0  975416589
## 26560    1.0  975419292
## 26561    2.0  975418973
## 26562    3.0  976289149
## 26563    3.0  975419141
## 26564    2.0  975417247
## 26565    3.0  975418661
## 26567    3.0  975419049
## 26568    3.0  975419049
## 26569    3.0  975418941
## 26570    1.0  975419351
## 26571    1.0  977724492
## 26572    3.0  976288143
## 26573    3.0  975418973
## 26574    3.0  975418661
## 26575    3.0  975416589
## 26576    2.0  975417396
## 26577    2.0  975418855
## 26578    3.0  978700656
## 26580    2.0  975748444
## 26581    1.0  975419351
## 26582    2.0  976289451
## 26583    1.0  978700274
## 26584    2.0  978700434
## 26585    1.0  975419049
## 26586    3.0  977743492
## 26587    2.0  977755058
## 26588    3.0  976289345
## 26589    3.0  976288883
## 26590    2.0  975418855
## 26591    3.0  976289451
## 26592    3.0  977723661
## 26594    2.0  975416496
## 26595    2.0  977723528
## 26596    3.0  975418763
## 26597    3.0  978700555
## 26599    3.0  976288189
## 26600    3.0  976289064
## 26603    2.0  976288779
## 26604    3.0  975763311
## 26606    1.0  976289027
## 26607    3.0  977755165
## 26608    3.0  978700625
## 26610    2.0  976289241
## 26611    3.0  975417022
## 26612    3.0  975417105
## 26613    3.0  975416496
## 26614    3.0  978700598
## 26615    2.0  975418661
## 26616    2.0  977724465
## 26618    3.0  977756127
## 26619    3.0  975418728
## 26620    2.0  978700402
## 26621    3.0  977725295
## 26626    1.0  976289095
## 26627    2.0  976289149
## 26628    3.0  976288846
## 26631    2.0  976288992
## 26632    3.0  976288649
## 26634    3.0  978700307
## 26637    3.0  977750746
## 26638    2.0  975415188
## 26639    3.0  977750831
## 26641    3.0  975418706
## 26642    3.0  977750661
## 26643    3.0  977755569
## 26644    3.0  977754632
## 26645    3.0  977750706
## 26646    2.0  977755525
## 26648    1.0  975417146
## 26649    3.0  977756127
## 26650    3.0  977743706
## 26651    3.0  975417321
## 26653    3.0  977743614
## 26654    3.0  976289027
## 26655    3.0  976289345
## 26656    1.0  976289118
## 26657    2.0  976289402
## 26659    3.0  975419327
## 26660    3.0  977754867
## 26661    3.0  976288064
## 26664    3.0  977743659
## 26665    2.0  977750706
## 26666    2.0  977755742
## 26667    3.0  977723728
## 26668    2.0  976288228
## 26669    3.0  976288703
## 26671    2.0  976289241
## 26673    3.0  975417065
## 26675    1.0  976288965
## 26676    1.0  977724066
## 26677    1.0  975419431
## 26679    3.0  975419141
## 26680    3.0  976289176
## 26681    3.0  976288550
## 26682    2.0  977755742
## 26686    3.0  976288703
## 26687    3.0  975763408
## 26688    3.0  977754867
## 26690    3.0  976288992
## 26691    3.0  976288743
## 26692    3.0  975418616
## 26693    1.0  976288965
## 26694    3.0  975417105
## 26695    3.0  977724314
## 26696    3.0  976288437
## 26697    3.0  977754974
## 26698    3.0  978700598
## 26699    2.0  976289373
## 26700    3.0  975417247
## 26702    1.0  976289402
## 26703    1.0  976288965
## 26705    3.0  975418810
## 26706    3.0  975417146
## 26707    3.0  975419174
## 26709    3.0  977750746
## 26711    3.0  975419141
## 26712    2.0  975418941
## 26713    2.0  975763348
## 26714    2.0  977724170
## 26715    3.0  975417183
## 26716    1.0  975419431
## 26717    1.0  977724346
## 26718    3.0  977750661
## 26719    3.0  977723922
## 26720    3.0  975417277
## 26721    3.0  977743492
## 26722    1.0  977724206
## 26723    3.0  975748444
## 26724    3.0  975763148
## 26725    2.0  975418888
## 26726    3.0  976289345
## 26727    3.0  975417396
## 26728    2.0  977743614
## 26729    3.0  975417022
## 26730    2.0  975419224
## 26731    3.0  975415696
## 26734    3.0  976289064
## 26735    1.0  975416759
## 26736    3.0  975415658
## 26738    3.0  976288108
## 26739    1.0  978700227
## 26740    3.0  975416174
## 26742    3.0  975415619
## 26743    2.0  978700114
## 26744    3.0  975415799
## 26745    1.0  975418973
## 26746    2.0  978700170
## 26747    1.0  975415731
## 26749    3.0  975417247
## 26750    2.0  978700199
## 26751    3.0  978700170
## 26752    3.0  978700199
## 26753    2.0  975416141
## 26754    2.0  978700170
## 26755    2.0  978700227
## 26757    2.0  978700114
## 26758    3.0  978700227
## 26759    2.0  978700114
## 26760    2.0  978700170
## 26761    2.0  978700170
## 26762    2.0  978700199
## 26763    3.0  978700135
## 26765    2.0  977743741
## 26766    3.0  976288143
## 26771    2.0  958511618
## 26772    3.0  958511618
## 26776    2.0  959224101
## 26779    3.0  959224001
## 26780    2.0  958511618
## 26784    3.0  959223885
## 26785    3.0  959223827
## 26790    3.0  959224001
## 26791    3.0  959224101
## 26794    3.0  959223757
## 26800    2.0  959223636
## 26801    2.0  958511618
## 26804    3.0  959224062
## 26809    3.0  958511826
## 26812    2.0  958511979
## 26813    3.0  958511889
## 26817    3.0  958511889
## 26818    3.0  958511826
## 26826    3.0  958511889
## 26828    3.0  958511738
## 26829    3.0  959224101
## 26831    1.0  959224101
## 26833    3.0  958511979
## 26835    2.0  958511949
## 26837    2.0  959223945
## 26838    2.0  959223469
## 26839    2.0  959223363
## 26848    2.0  959223506
## 26850    3.0  959223271
## 26855    3.0  959223406
## 26856    1.0  959223406
## 26857    1.0  959223406
## 26858    3.0  959223406
## 26864    3.0  959223183
## 26866    3.0  975429339
## 26868    2.0  975428980
## 26869    3.0  975429524
## 26871    3.0  975428956
## 26872    3.0  975429132
## 26880    3.0  975429568
## 26885    3.0  975429133
## 26886    2.0  975429619
## 26889    3.0  975429373
## 26901    3.0  975429391
## 26911    3.0  975429107
## 26912    3.0  975429481
## 26913    3.0  975429453
## 26917    1.0  975428980
## 26921    1.0  975429339
## 26922    3.0  975429133
## 26926    3.0  975429373
## 26927    3.0  975429317
## 26930    3.5 1068822866
## 26934    1.0 1068822226
## 26936    2.0 1068822632
## 26938    3.5 1068822207
## 26939    2.0 1068823363
## 26951    3.5 1068823099
## 26952    2.0 1068822696
## 26954    3.0 1068822233
## 26955    3.0 1068822980
## 26957    2.0 1068822200
## 26958    2.5 1068822968
## 26963    2.5 1068822148
## 26965    2.5 1068823216
## 26966    0.5 1068822629
## 26968    3.0 1068823218
## 26969    3.5 1068822174
## 26971    1.5 1068822131
## 26974    3.5 1068823036
## 26975    3.5 1068822701
## 26981    3.0 1068823004
## 26982    2.0 1068822719
## 26984    3.5 1068822933
## 26985    3.0 1068822149
## 26990    1.5 1068823056
## 26991    2.5 1068823126
## 26993    1.5 1068823188
## 26997    1.0 1068822709
## 26998    3.0 1068823111
## 27001    2.0 1068823353
## 27002    2.0 1068823183
## 27003    3.0 1068822990
## 27005    2.5 1214653475
## 27008    3.5 1214653088
## 27010    3.5 1214668938
## 27017    3.5 1214654817
## 27018    3.5 1214914943
## 27025    3.5 1344870428
## 27027    3.5 1219674129
## 27028    3.5 1214914983
## 27030    3.5 1214913846
## 27033    0.5 1214653017
## 27037    3.5 1398939437
## 27038    3.5 1214914642
## 27041    3.5 1214914176
## 27042    3.0 1214912828
## 27043    3.5 1214653527
## 27048    1.5 1214653422
## 27050    3.5 1214912760
## 27053    3.5 1214912898
## 27059    3.5 1214654850
## 27062    3.0 1214668969
## 27064    3.0 1399348624
## 27065    1.0 1214653024
## 27067    3.0 1214914617
## 27069    3.5 1214916040
## 27072    2.5 1214653125
## 27077    2.5 1214914513
## 27079    3.0 1214652862
## 27080    3.5 1232588864
## 27082    3.0 1214915000
## 27083    3.0 1214914523
## 27084    3.0 1214652997
## 27091    3.5 1214914147
## 27093    3.0 1246110925
## 27096    3.5 1214653082
## 27101    3.5 1232588784
## 27102    3.5 1214914653
## 27104    2.5 1214652894
## 27105    3.5 1242920789
## 27108    3.0 1214914182
## 27118    3.0 1242920809
## 27120    3.0 1228445275
## 27122    2.5 1214916659
## 27124    3.0 1214653145
## 27125    2.5 1214653104
## 27127    3.5 1214654864
## 27128    3.0 1214653162
## 27130    3.5 1244632094
## 27132    3.5 1242920817
## 27133    3.5 1399348891
## 27134    2.5 1244632077
## 27135    3.0 1242921062
## 27136    3.0 1244632053
## 27140    3.5 1244632046
## 27142    3.0 1244632038
## 27143    3.5 1244632033
## 27144    1.5 1242925353
## 27147    3.5 1214916646
## 27149    3.5 1214654473
## 27150    3.0 1214912934
## 27151    3.5 1252359427
## 27152    3.5 1214913137
## 27157    3.0 1214669163
## 27158    2.5 1214654885
## 27160    3.5 1214654560
## 27161    3.0 1214669044
## 27162    3.5 1244319714
## 27163    3.0 1242755992
## 27165    1.0 1214653280
## 27166    3.5 1228344928
## 27167    3.5 1215032354
## 27169    3.0 1399348760
## 27172    2.5 1214654894
## 27173    3.5 1309720217
## 27175    0.5 1214653717
## 27176    3.5 1230436803
## 27177    3.5 1309732737
## 27178    3.5 1215033850
## 27180    2.5 1214654811
## 27181    2.5 1214669134
## 27182    3.5 1242921088
## 27185    3.0 1242943352
## 27186    2.0 1214654439
## 27187    3.0 1214654799
## 27188    1.5 1242925370
## 27190    2.5 1242925364
## 27191    2.0 1214654443
## 27193    3.0 1219265793
## 27194    2.5 1244319357
## 27195    1.5 1244319344
## 27197    3.5 1309733825
## 27202    3.5 1214912837
## 27204    3.5 1214669042
## 27213    3.0 1229285008
## 27216    3.5 1317045321
## 27217    3.5 1214916710
## 27218    3.0 1242517942
## 27219    3.5 1214669077
## 27221    3.0 1304737195
## 27222    3.5 1219674675
## 27223    3.5 1214654578
## 27225    3.0 1228344863
## 27227    2.5 1230436250
## 27230    3.5 1214913769
## 27233    3.5 1228344915
## 27239    3.5 1228446268
## 27240    3.0 1215032108
## 27241    3.0 1242925102
## 27243    3.0 1242925393
## 27245    3.5 1245103026
## 27246    3.0 1230436330
## 27247    3.5 1228543860
## 27248    3.5 1269659223
## 27249    3.0 1400971299
## 27252    3.0 1244317633
## 27255    3.5 1309732614
## 27256    2.5 1244317650
## 27258    3.0 1252238104
## 27259    3.5 1256387894
## 27260    3.5 1214654749
## 27265    3.5 1214916053
## 27266    3.5 1214654411
## 27268    2.5 1244317641
## 27269    3.5 1242942789
## 27272    3.0 1256388498
## 27275    3.0 1214913351
## 27277    3.5 1227994813
## 27279    2.0 1214654359
## 27280    3.5 1228073545
## 27281    3.5 1242925340
## 27282    1.5 1214653266
## 27283    3.5 1248801345
## 27284    3.5 1317123305
## 27285    3.5 1238361169
## 27286    3.5 1317123283
## 27287    3.5 1231600156
## 27288    3.5 1230436294
## 27289    3.5 1252359503
## 27292    3.5 1256387874
## 27293    2.0 1256388597
## 27294    3.5 1248801342
## 27296    3.0 1256388477
## 27297    3.5 1340544965
## 27298    3.5 1317045887
## 27299    2.0 1256251935
## 27300    2.0 1256251907
## 27303    3.5 1309387306
## 27304    3.5 1309730663
## 27305    3.5 1256251926
## 27306    3.5 1265915291
## 27307    3.5 1256251923
## 27309    3.5 1263236080
## 27310    2.0 1256251949
## 27311    3.5 1265915315
## 27312    3.5 1256388120
## 27313    3.5 1258846542
## 27314    3.5 1400971273
## 27317    3.5 1264729899
## 27319    3.5 1260228448
## 27320    3.0 1272842839
## 27322    3.5 1317509465
## 27323    3.5 1268000977
## 27324    3.5 1283388975
## 27325    3.0 1269640369
## 27326    3.5 1282429810
## 27328    3.5 1272841758
## 27329    3.0 1283388485
## 27330    3.5 1283389030
## 27331    3.0 1283387901
## 27332    3.5 1310045044
## 27334    3.0 1310045181
## 27336    3.0 1283389041
## 27338    3.5 1317045882
## 27339    3.5 1309744461
## 27342    3.5 1282419759
## 27344    3.5 1310044703
## 27346    3.5 1286975960
## 27347    3.5 1340544998
## 27348    3.0 1286976021
## 27350    3.5 1309732970
## 27352    3.5 1310044387
## 27353    3.0 1291652381
## 27355    3.5 1309387345
## 27358    3.5 1309194331
## 27359    3.5 1309194348
## 27360    3.0 1309194435
## 27362    3.5 1310044279
## 27366    3.5 1309194419
## 27367    2.5 1303586336
## 27368    3.5 1309194343
## 27369    3.0 1317045017
## 27370    3.5 1309387767
## 27371    3.5 1309194365
## 27372    3.5 1309194439
## 27373    3.5 1304654795
## 27374    3.5 1304654784
## 27375    3.5 1309696063
## 27379    3.5 1309194324
## 27385    3.5 1314452550
## 27387    3.5 1398939852
## 27388    3.5 1317045456
## 27389    3.5 1320000245
## 27390    3.5 1320000267
## 27391    3.5 1320357301
## 27394    3.5 1327437812
## 27395    3.5 1399348480
## 27396    3.5 1327437822
## 27399    3.5 1327437817
## 27400    3.5 1340543452
## 27401    3.5 1340543463
## 27403    3.5 1340543440
## 27405    3.5 1398939563
## 27416    3.5 1399349123
## 27419    3.5 1401463668
## 27422    3.5 1398939846
## 27423    3.5 1398939907
## 27424    3.5 1398939855
## 27425    2.0 1403615167
## 27426    3.0 1437932719
## 27427    3.5 1457721108
## 27429    3.5 1438019199
## 27432    2.0 1438020091
## 27436    2.0 1438020132
## 27437    3.0 1438020001
## 27438    3.0 1457721047
## 27439    3.5 1438019501
## 27441    3.0 1438019776
## 27442    3.5 1438019480
## 27445    3.5 1438019530
## 27446    1.5 1438020304
## 27448    1.0 1438022848
## 27450    3.5 1438019541
## 27451    2.5 1457720765
## 27453    0.5 1438020533
## 27454    1.0 1438020434
## 27456    3.0 1438026859
## 27457    1.5 1438019794
## 27463    1.5 1457720512
## 27464    2.5 1438023863
## 27465    2.5 1438024193
## 27466    3.0 1438019687
## 27468    2.0 1438020073
## 27469    3.5 1438019190
## 27470    2.5 1438024517
## 27474    3.0 1438019694
## 27475    2.0 1438025229
## 27476    1.5 1438025258
## 27477    3.0 1438024391
## 27484    0.5 1457720591
## 27485    2.5 1438024000
## 27486    3.5 1438025534
## 27487    3.0 1438019650
## 27493    3.0 1438019826
## 27494    1.5 1438022681
## 27495    1.5 1438020327
## 27496    1.0 1438023546
## 27497    1.5 1438024902
## 27498    2.5 1438019988
## 27501    3.0 1438021867
## 27503    3.0 1438019677
## 27505    3.0 1438021130
## 27506    3.0 1438019610
## 27507    3.0 1438021228
## 27508    0.5 1438020482
## 27509    2.5 1438021572
## 27510    3.0 1438021425
## 27511    1.0 1438022765
## 27512    2.0 1438020041
## 27513    1.0 1438020390
## 27514    3.0 1438019702
## 27515    3.0 1438019663
## 27519    3.5 1438019300
## 27521    3.0 1438021180
## 27522    2.0 1438020103
## 27523    3.5 1438019437
## 27524    3.5 1438021327
## 27525    2.5 1438021196
## 27526    0.5 1438020494
## 27527    2.5 1438023811
## 27528    3.0 1438019763
## 27529    2.5 1438019912
## 27530    2.5 1438019883
## 27533    2.5 1438021417
## 27541    3.5 1438019427
## 27543    1.5 1438020284
## 27544    1.0 1438024335
## 27545    3.5 1438019509
## 27546    2.5 1438021323
## 27548    3.5 1438019420
## 27550    2.0 1438019621
## 27556    2.5 1438019902
## 27557    3.5 1438022656
## 27558    1.0 1437933444
## 27559    3.0 1438023475
## 27561    3.0 1437934203
## 27562    3.0 1438019736
## 27563    3.5 1438019343
## 27565    2.5 1438021370
## 27567    2.5 1438021349
## 27568    3.5 1438019285
## 27569    2.5 1438019943
## 27570    1.5 1438020315
## 27571    3.5 1437933517
## 27574    1.0 1438020444
## 27575    3.5 1438019161
## 27576    3.0 1438021109
## 27577    3.0 1438019594
## 27578    3.5 1438019333
## 27579    2.0 1438020152
## 27580    2.0 1438020062
## 27581    1.0 1438019854
## 27582    3.5 1459700798
## 27583    2.5 1438021386
## 27584    2.5 1438019979
## 27585    2.5 1438020017
## 27587    2.5 1438019970
## 27588    3.0 1438019744
## 27589    3.0 1438019713
## 27590    2.0 1438026597
## 27591    1.0 1438020362
## 27593    3.5 1438021715
## 27594    3.5 1438019312
## 27595    3.5 1438019394
## 27596    3.0 1438019808
## 27598    3.0 1438019273
## 27599    3.5 1438019470
## 27600    3.0 1438019838
## 27601    1.0 1438020402
## 27604    1.5 1438023151
## 27605    3.5 1438019237
## 27607    3.0 1438019818
## 27610    1.0 1438020422
## 27611    3.5 1438021635
## 27613    2.0 1438020116
## 27615    2.0 1438021378
## 27616    0.5 1438020523
## 27624    1.5 1457720604
## 27625    2.5 1438021457
## 27626    3.5 1451158627
## 27627    1.0 1438020378
## 27630    2.5 1438020010
## 27632    2.0 1438020183
## 27633    1.5 1451152938
## 27634    3.0 1438021219
## 27635    3.5 1438019495
## 27637    3.5 1438019382
## 27638    3.5 1457720434
## 27641    1.0 1438021278
## 27644    2.0 1438020053
## 27645    3.5 1438020823
## 27646    3.5 1457720880
## 27647    3.0 1457727550
## 27648    3.5 1438019548
## 27649    1.5 1460208561
## 27651    3.5 1438024241
## 27653    3.5 1438019406
## 27654    3.5 1438019180
## 27656    3.0 1451143950
## 27658    1.5 1438020234
## 27664    3.0 1459713788
## 27665    2.0 1438026480
## 27666    3.5 1457720927
## 27667    3.0 1438019599
## 27669    2.5 1457720226
## 27670    3.5 1438019151
## 27671    3.5 1438022807
## 27672    3.0 1438022132
## 27674    3.5 1438025417
## 27678    1.5 1438020227
## 27686    3.0 1110498315
## 27691    3.0 1110421287
## 27692    1.0 1110421168
## 27705    3.0 1110498312
## 27730    3.0 1110498492
## 27735    3.0 1110498479
## 27736    3.0 1110498317
## 27739    3.0 1110498433
## 27740    3.0 1110498308
## 27742    2.0 1110421795
## 27760    3.0 1110498495
## 27769    1.0 1110421747
## 27774    3.0 1110497605
## 27779    0.5 1110421498
## 27786    3.0 1110497762
## 27791    0.5 1110421623
## 27800    3.0 1110498310
## 27804    2.0 1046145872
## 27805    2.0 1046144383
## 27816    3.0 1046144150
## 27822    2.0 1046144283
## 27826    3.0 1046146457
## 27830    2.0 1046145496
## 27831    2.0 1046146097
## 27832    3.0 1046145518
## 27833    3.0 1046144576
## 27840    3.0 1046144087
## 27841    3.0 1046145724
## 27844    2.0 1046145613
## 27848    3.0 1046145766
## 27851    2.0 1046145766
## 27852    3.0 1046145833
## 27856    3.0 1046144310
## 27857    2.0 1046146200
## 27860    3.0 1046144468
## 27862    3.0 1046146054
## 27864    2.0 1046144283
## 27866    2.0 1046145496
## 27867    3.0 1046145833
## 27871    3.0 1046145766
## 27873    3.0 1046144059
## 27874    3.0 1046146311
## 27875    1.0 1046144205
## 27877    3.5 1226321189
## 27885    2.5 1226321225
## 27886    3.5 1226321147
## 27890    3.5 1226321950
## 27892    3.5 1226321471
## 27893    2.5 1226321160
## 27896    2.0 1226321078
## 27898    3.0 1226321175
## 27900    3.5 1226321071
## 27901    2.5 1226321194
## 27907    3.0 1226321171
## 27910    3.5 1226321658
## 27912    3.5 1226321680
## 27915    2.5 1096531266
## 27916    2.5 1096531212
## 27917    3.0 1096531207
## 27918    1.5 1096531189
## 27920    2.5 1096531463
## 27921    3.0 1096531447
## 27923    3.5 1096531281
## 27924    2.0 1096531241
## 27927    2.5 1096531246
## 27928    3.5 1096531218
## 27929    3.0 1096531273
## 27933    3.0 1096531254
## 27936    3.5 1096531277
## 27937    0.5 1096531676
## 27938    1.0 1096531631
## 27940    3.0 1096531444
## 27943    3.0 1096531437
## 27946    3.5 1442136824
## 27949    3.0 1442148308
## 27950    3.0 1442136902
## 27951    2.5 1442148305
## 27953    2.5 1442148495
## 27954    3.5 1442887009
## 27955    1.0 1442148501
## 27957    1.0 1442146219
## 27959    3.0 1442148413
## 27960    2.5 1442886992
## 27961    1.0 1442146198
## 27962    3.0 1442136904
## 27964    3.5 1442137496
## 27965    3.0 1442148354
## 27966    2.0 1442137072
## 27967    3.5 1442137491
## 27968    1.0 1442137206
## 27971    3.5 1442148357
## 27973    2.5 1442886844
## 27976    2.5 1442890213
## 27977    3.0 1442886871
## 27981    3.0 1442887018
## 27983    3.5 1442886850
## 27985    3.0 1442890297
## 27988    3.5 1442886842
## 27989    3.0 1442890231
## 27990    3.0 1442890292
## 27993    3.5 1442148664
## 27995    0.5 1442152615
## 27996    3.5 1442152212
## 27997    2.5 1442152533
## 27999    3.5 1442152274
## 28001    3.0 1442152434
## 28002    3.0 1442152668
## 28004    3.0 1442152295
## 28007    3.0 1442152221
## 28008    2.5 1442152658
## 28009    2.0 1442152205
## 28010    3.0 1442152464
## 28011    3.5 1442152387
## 28015    0.5 1442152372
## 28016    3.5 1442152678
## 28017    1.5 1442152333
## 28018    2.0 1442152633
## 28022    2.5 1442152486
## 28023    0.5 1442152472
## 28024    1.5 1442152594
## 28025    2.5 1442152349
## 28027    3.5 1442152326
## 28029    1.5 1442152495
## 28031    2.5 1442152542
## 28032    3.5 1442152374
## 28033    2.5 1442152291
## 28035    3.5 1442152596
## 28037    2.0 1442152448
## 28038    3.0 1442152355
## 28039    0.5 1442152600
## 28040    2.5 1442152210
## 28041    3.5 1442137089
## 28042    3.0 1442146184
## 28044    0.5 1442152465
## 28045    3.0 1442152621
## 28046    3.5 1442152179
## 28051    3.5 1442152483
## 28054    3.5 1442152421
## 28056    3.5 1442152262
## 28057    3.0 1442152247
## 28058    3.0 1442152396
## 28059    2.0 1442152403
## 28061    2.0 1442152480
## 28062    1.0 1442152636
## 28065    2.5 1442137180
## 28069    3.5 1442152485
## 28070    3.0 1442152494
## 28071    0.5 1442152640
## 28072    3.5 1442152645
## 28077    3.5 1442152190
## 28080    2.5 1442152301
## 28082    3.5 1442152378
## 28084    3.5 1442152604
## 28085    3.0 1442152418
## 28086    3.5 1442152619
## 28087    3.0 1442136802
## 28091    3.0 1442152264
## 28093    3.0 1442152527
## 28094    3.0 1442152545
## 28095    3.5 1442152339
## 28096    3.5 1442137080
## 28097    2.5 1442152312
## 28098    3.0 1442152441
## 28099    3.5 1442152507
## 28100    3.5 1442152303
## 28101    3.5 1442152277
## 28102    3.0 1442152587
## 28103    2.0 1442152590
## 28104    3.0 1442152310
## 28106    1.0 1442152368
## 28110    3.5 1442148329
## 28113    0.5 1442152558
## 28114    2.5 1442890229
## 28115    3.0 1442137446
## 28116    3.0 1442890222
## 28117    3.5 1442890281
## 28119    3.0 1442148370
## 28120    2.0 1442136916
## 28122    2.0 1442137442
## 28125    3.5 1442887011
## 28128    3.0 1442137155
## 28132    3.0 1442887273
## 28134    3.0 1442890241
## 28136    3.0 1442886996
## 28137    3.0 1442137370
## 28143    3.5 1442137390
## 28144    1.5 1442137409
## 28147    3.0 1442137383
## 28148    1.5 1442137397
## 28149    3.5 1442137354
## 28150    2.0 1442137400
## 28151    3.0  900784430
## 28152    3.0  900784342
## 28153    2.0  900784430
## 28156    2.0  900784384
## 28160    3.0  900784342
## 28163    3.0  900784097
## 28164    3.0  900784317
## 28166    3.0  900784282
## 28168    3.0  900784209
## 28170    3.0  900784317
## 28171    3.0  900784241
## 28172    3.0  900784476
## 28173    3.0  900784430
## 28174    3.0  900784430
## 28175    3.0  900784430
## 28177    3.0  900783718
## 28178    3.0  900783691
## 28181    3.0  900784384
## 28183    3.0  900784209
## 28184    3.0  900784209
## 28185    3.0  900784209
## 28186    3.0  900784317
## 28187    3.0  900784430
## 28188    3.0  900784137
## 28189    3.0  900784137
## 28190    0.5 1258439884
## 28191    0.5 1258439788
## 28193    3.0 1258439864
## 28195    3.0 1258439794
## 28196    0.5 1258439904
## 28198    0.5 1258439834
## 28199    0.5 1258440296
## 28200    0.5 1258439859
## 28201    0.5 1258439839
## 28202    0.5 1258439799
## 28203    0.5 1258439844
## 28204    0.5 1258439899
## 28205    3.0 1258439879
## 28207    0.5 1258440481
## 28208    0.5 1258439894
## 28211    0.5 1258440369
## 28212    0.5 1258439869
## 28213    2.5 1258439914
## 28214    3.5 1258439804
## 28215    0.5 1258439889
## 28216    0.5 1258440374
## 28217    0.5 1258439874
## 28218    0.5 1258440344
## 28219    2.0 1258439909
## 28220    2.0 1258439926
## 28221    3.0 1258439933
## 28222    0.5 1258440380
## 28223    0.5 1258440290
## 28226    3.5 1258440769
## 28227    0.5 1258440271
## 28228    0.5 1258440351
## 28229    0.5 1258440364
## 28230    3.0 1258440219
## 28232    0.5 1258440315
## 28233    0.5 1258440285
## 28234    0.5 1258440240
## 28235    0.5 1258440256
## 28240    3.5 1407812968
## 28244    2.0 1402191181
## 28247    2.0 1407896569
## 28250    3.5 1402191040
## 28254    3.0 1402190825
## 28256    3.0 1402598466
## 28259    3.0 1402601089
## 28261    3.0 1407896581
## 28263    2.5 1407896571
## 28273    3.0 1407896565
## 28275    3.0 1425253353
## 28285    2.0 1265780108
## 28286    3.0 1265780086
## 28287    2.0 1265780046
## 28288    3.0 1265780055
## 28290    3.0 1265780091
## 28291    3.0 1265780116
## 28292    3.0 1265780039
## 28293    3.0 1265780144
## 28295    3.0 1265780071
## 28296    2.0 1265780019
## 28297    1.0 1265780172
## 28299    3.0 1265780098
## 28300    2.0 1265780160
## 28301    3.0 1265780062
## 28302    2.0 1265780081
## 28303    3.0 1265780009
## 28304    2.5 1070591352
## 28305    2.5 1070591483
## 28306    2.5 1070591317
## 28307    3.5 1070591308
## 28308    3.5 1070591443
## 28309    2.5 1070591346
## 28310    3.0 1070591354
## 28311    3.0 1070591342
## 28312    2.5 1070591327
## 28314    3.0 1070591456
## 28315    2.5 1070591427
## 28317    3.5 1070591382
## 28318    3.0 1070591572
## 28319    3.0 1070591432
## 28320    3.0 1070591334
## 28321    2.5 1070591449
## 28322    2.5 1070591319
## 28323    2.5 1070591373
## 28324    2.5 1070591357
## 28325    2.5 1070591368
## 28326    3.5 1070591325
## 28327    2.0 1070591532
## 28328    2.5 1070591445
## 28329    2.5 1070591364
## 28330    3.5 1070591338
## 28331    2.5 1070591511
## 28332    2.5 1070591538
## 28333    2.5 1070591536
## 28343    3.0 1460811622
## 28380    3.0 1460811345
## 28381    2.0 1460811200
## 28384    3.0 1460811915
## 28387    3.0 1460810974
## 28391    3.0 1218405007
## 28392    3.0 1218404003
## 28393    2.5 1218955060
## 28394    3.5 1218403807
## 28396    3.5 1228789756
## 28397    1.5 1218404015
## 28399    3.5 1254008544
## 28400    3.0 1218402042
## 28402    2.0 1218403872
## 28403    2.0 1260705118
## 28404    3.5 1218399790
## 28405    3.5 1218954970
## 28406    3.5 1228783190
## 28407    3.5 1218403885
## 28408    3.0 1218404119
## 28410    2.5 1260705114
## 28411    2.0 1228784984
## 28413    3.0 1218955011
## 28414    2.5 1218404711
## 28415    3.0 1218955077
## 28416    2.5 1218410254
## 28417    3.0 1227937953
## 28418    3.0 1218955124
## 28419    2.0 1260705034
## 28420    1.5 1218954991
## 28421    3.5 1228788958
## 28422    3.0 1218407304
## 28423    2.5 1218408337
## 28424    1.0 1218403841
## 28425    3.0 1227938587
## 28427    3.0 1227938321
## 28428    1.0 1218403790
## 28432    2.5 1228789183
## 28434    3.5 1218403822
## 28436    2.5 1218403969
## 28437    3.0 1218955383
## 28438    3.0 1218404202
## 28440    2.0 1218955809
## 28441    3.5 1218404165
## 28442    3.5 1218401641
## 28443    3.5 1218402777
## 28444    1.0 1218403754
## 28445    2.5 1218403136
## 28446    3.0 1260704788
## 28448    2.5 1218403826
## 28450    1.0 1218403792
## 28451    3.5 1218402737
## 28452    1.5 1218408333
## 28453    3.0 1227938492
## 28454    1.5 1218408458
## 28456    1.5 1218399009
## 28457    0.5 1218408383
## 28458    1.5 1260704800
## 28459    2.5 1260704021
## 28460    3.5 1228789202
## 28461    1.5 1227938061
## 28462    2.5 1227938597
## 28463    3.0 1218403664
## 28464    2.5 1228789067
## 28465    3.0 1218403623
## 28466    3.0 1218401907
## 28467    3.0 1218954867
## 28468    2.5 1218403787
## 28473    2.5 1218401241
## 28474    1.0 1218408479
## 28476    2.5 1218955161
## 28477    3.0 1218955112
## 28478    2.5 1218403867
## 28479    2.5 1218403811
## 28480    3.0 1218407218
## 28481    3.0 1218405143
## 28482    2.0 1218404771
## 28483    3.0 1218403706
## 28485    3.0 1218401253
## 28486    3.5 1218401003
## 28487    3.0 1218401957
## 28488    3.5 1218403778
## 28489    3.0 1228789330
## 28490    3.0 1218403759
## 28491    2.0 1228788753
## 28492    2.5 1218954782
## 28493    3.0 1227936989
## 28494    2.5 1253930188
## 28495    3.0 1218405291
## 28496    3.5 1218399346
## 28497    2.5 1218955732
## 28499    3.0 1218403727
## 28500    3.5 1218955418
## 28501    1.5 1218408385
## 28502    3.5 1227938232
## 28503    2.0 1218398895
## 28504    3.5 1218401491
## 28507    3.0 1227938309
## 28508    3.5 1227936983
## 28509    3.0 1218954935
## 28511    3.0 1254009228
## 28512    3.5 1218399029
## 28513    3.5 1218403980
## 28514    3.5 1218402653
## 28515    3.5 1227938077
## 28516    3.0 1218401138
## 28517    3.0 1218407459
## 28520    3.0 1218402149
## 28521    3.0 1228798783
## 28522    2.0 1218402317
## 28523    3.0 1218401208
## 28524    3.0 1218400944
## 28525    3.0 1218401992
## 28527    3.0 1218401487
## 28528    3.0 1218402033
## 28530    3.0 1218403860
## 28532    3.5 1218955782
## 28535    3.0 1218399632
## 28536    3.5 1218955664
## 28538    3.0 1218954790
## 28539    3.0 1218955372
## 28540    3.0 1218404037
## 28542    3.5 1218398950
## 28543    3.5 1218399629
## 28544    3.5 1260704851
## 28545    2.5 1218399700
## 28547    2.5 1218399677
## 28549    3.0 1218399748
## 28550    3.0 1260704783
## 28551    3.0 1218399417
## 28552    3.5 1218955696
## 28553    3.0 1218954979
## 28554    3.5 1218399293
## 28556    3.5 1218399201
## 28557    0.5 1218403266
## 28558    3.0 1218404073
## 28561    2.5 1228791147
## 28564    3.5 1218403814
## 28567    3.0 1218399423
## 28568    2.5 1228792019
## 28569    3.5 1227936978
## 28570    3.0 1218404048
## 28571    1.0 1227938686
## 28572    3.0 1218399439
## 28573    2.0 1218403838
## 28574    3.0 1218954889
## 28575    3.0 1218403561
## 28580    3.5 1227938478
## 28581    3.5 1218401260
## 28582    3.0 1218399488
## 28584    3.5 1218955118
## 28586    2.5 1218403985
## 28587    3.5 1227938591
## 28588    2.5 1218954862
## 28589    2.5 1218954975
## 28591    3.0 1218404023
## 28592    3.0 1218404250
## 28594    2.0 1227938069
## 28595    3.5 1218954892
## 28599    3.5 1218955584
## 28600    2.0 1218404208
## 28601    3.5 1270703248
## 28602    1.5 1218403299
## 28603    3.0 1260704117
## 28604    2.5 1218955589
## 28605    3.0 1218399067
## 28606    3.0 1218955343
## 28607    3.0 1218404181
## 28608    1.5 1218402257
## 28609    2.5 1228785044
## 28610    3.0 1253930686
## 28611    2.5 1218955043
## 28612    3.0 1260704070
## 28613    3.5 1218404008
## 28614    3.5 1218402361
## 28616    2.5 1227938713
## 28618    3.0 1228793816
## 28619    3.0 1218954785
## 28622    1.5 1218408353
## 28623    2.5 1218403801
## 28624    2.5 1218954814
## 28625    3.5 1253929366
## 28626    3.5 1228789417
## 28627    2.5 1218403271
## 28630    3.5 1218400972
## 28631    3.0 1218404021
## 28632    2.5 1218408312
## 28633    2.0 1218403962
## 28634    2.0 1218399167
## 28635    2.5 1228786974
## 28637    2.5 1218399598
## 28638    3.0 1218402839
## 28639    3.0 1227938183
## 28640    2.5 1228788452
## 28641    2.5 1228785018
## 28642    3.0 1228792393
## 28644    3.0 1218955612
## 28646    3.5 1218404219
## 28647    2.5 1218408176
## 28648    3.0 1253929766
## 28649    2.5 1229146351
## 28650    3.0 1218409983
## 28652    2.5 1218404169
## 28653    2.5 1218404097
## 28654    3.5 1227938635
## 28655    2.5 1218954953
## 28657    2.5 1218405004
## 28658    2.5 1218955449
## 28659    3.0 1218401037
## 28660    2.0 1228789218
## 28661    2.5 1218400982
## 28663    3.0 1218398999
## 28664    2.0 1218954729
## 28665    3.0 1260704942
## 28666    2.5 1228798687
## 28667    3.0 1218404116
## 28668    3.0 1218409955
## 28669    3.5 1228789115
## 28671    2.5 1218399052
## 28672    3.0 1253932400
## 28673    2.0 1218399037
## 28674    3.5 1270703235
## 28675    3.5 1218401981
## 28676    3.0 1218398900
## 28677    3.0 1218401934
## 28678    3.0 1218955346
## 28679    2.5 1218404076
## 28680    2.5 1260705000
## 28682    2.5 1218401235
## 28684    3.5 1218401589
## 28685    3.5 1218955174
## 28686    3.5 1218404162
## 28687    2.5 1218955199
## 28688    1.0 1218408016
## 28689    3.0 1218405425
## 28690    2.0 1228788637
## 28694    3.0 1218955558
## 28695    3.0 1218402519
## 28696    2.5 1218401720
## 28697    3.5 1253930047
## 28698    0.5 1218408476
## 28699    3.0 1228789780
## 28700    3.5 1228789729
## 28701    3.0 1228798125
## 28702    2.0 1218401966
## 28703    2.5 1218410207
## 28704    3.5 1218955760
## 28705    2.0 1253932268
## 28706    2.5 1218954837
## 28708    2.5 1253932306
## 28710    2.0 1260704992
## 28711    1.0 1218955052
## 28712    1.5 1218408359
## 28713    3.5 1260705039
## 28714    3.5 1227938730
## 28715    1.5 1218399669
## 28716    2.5 1218954964
## 28717    3.0 1218955244
## 28718    3.5 1218955728
## 28723    2.5 1227938706
## 28724    3.0 1218955026
## 28725    3.0 1218955497
## 28726    3.0 1218955209
## 28727    3.5 1218403836
## 28728    3.0 1218404959
## 28729    2.5 1253930414
## 28730    2.0 1228087088
## 28731    3.0 1218405307
## 28732    3.0 1218401936
## 28733    2.5 1218403960
## 28735    3.0 1253930511
## 28737    3.5 1218955279
## 28738    2.0 1260703978
## 28739    2.0 1218408481
## 28740    2.5 1218404000
## 28741    3.0 1218404090
## 28742    2.5 1218403888
## 28743    2.0 1218408266
## 28744    2.5 1253933128
## 28745    1.0 1227938612
## 28746    3.0 1218955564
## 28747    3.0 1228792230
## 28748    3.5 1227938642
## 28749    3.5 1227938032
## 28750    2.0 1218404192
## 28751    2.5 1218402054
## 28752    3.0 1218399280
## 28753    3.5 1228113385
## 28756    3.0 1218407484
## 28757    3.0 1218408077
## 28759    3.0 1218955438
## 28761    3.0 1218955789
## 28762    2.0 1218408397
## 28764    2.5 1218403988
## 28765    2.0 1227937089
## 28767    3.0 1253930439
## 28768    3.5 1218955272
## 28769    3.0 1218408159
## 28770    3.0 1218401584
## 28772    2.0 1228113377
## 28773    2.5 1218955016
## 28776    3.0 1218955314
## 28777    2.0 1253932411
## 28778    2.5 1228113256
## 28779    2.5 1228798064
## 28780    3.5 1218955427
## 28781    2.5 1218404018
## 28783    3.0 1218399442
## 28785    3.5 1218401107
## 28786    3.0 1228794509
## 28787    2.0 1260704012
## 28788    3.5 1218405309
## 28792    0.5 1218408394
## 28793    2.5 1228784385
## 28794    2.0 1218955724
## 28796    1.5 1218408381
## 28797    3.5 1218401457
## 28798    3.5 1218409693
## 28799    2.0 1253930535
## 28800    1.0 1218408370
## 28801    2.5 1228113367
## 28802    2.5 1218398992
## 28804    3.5 1253929903
## 28805    3.0 1253929789
## 28806    1.5 1218398958
## 28807    2.5 1218955472
## 28808    3.0 1218955793
## 28809    2.5 1218955485
## 28810    3.5 1218401770
## 28811    2.5 1227938253
## 28812    1.5 1218403236
## 28813    3.0 1218954772
## 28814    2.0 1227937069
## 28818    2.5 1218410080
## 28820    3.5 1218402179
## 28821    1.0 1218955135
## 28825    1.0 1218408348
## 28826    3.0 1218405030
## 28827    2.0 1218398904
## 28828    2.5 1218954775
## 28829    3.0 1218955023
## 28830    2.5 1218408887
## 28831    3.0 1218404819
## 28832    2.0 1260705006
## 28833    3.5 1218402875
## 28834    1.5 1218408351
## 28837    2.5 1253931197
## 28838    1.5 1218408215
## 28839    1.5 1218408331
## 28840    2.0 1253932869
## 28841    1.0 1229149491
## 28843    3.5 1218955225
## 28844    2.5 1228788649
## 28845    3.5 1218402747
## 28846    3.0 1218955255
## 28848    2.5 1218956840
## 28849    3.0 1218955743
## 28850    3.5 1218403966
## 28851    3.0 1260704969
## 28854    0.5 1218408391
## 28856    2.5 1218954925
## 28858    2.5 1218404830
## 28859    3.0 1218954850
## 28860    2.5 1218404802
## 28862    3.5 1218401568
## 28863    2.0 1228113530
## 28864    2.5 1253933889
## 28865    2.5 1228798710
## 28866    3.5 1228791761
## 28868    2.5 1253932200
## 28869    2.0 1228113519
## 28870    2.5 1218409777
## 28871    3.0 1218404408
## 28875    2.5 1218407891
## 28876    2.5 1218408326
## 28881    2.5 1260705071
## 28882    2.0 1228787611
## 28883    2.5 1218955606
## 28884    3.0 1218955127
## 28887    3.0 1228113510
## 28888    1.5 1218408460
## 28889    3.0 1228797160
## 28890    2.5 1218408315
## 28892    1.0 1218408367
## 28893    1.0 1218402512
## 28894    3.5 1218401890
## 28895    2.5 1260704980
## 28896    3.0 1228794614
## 28897    3.5 1218954747
## 28898    3.5 1218955688
## 28899    2.5 1260705010
## 28901    3.5 1218955359
## 28902    1.0 1229149482
## 28903    3.0 1218955171
## 28904    2.0 1218408004
## 28905    3.0 1227937025
## 28906    3.0 1218955641
## 28911    3.0 1227936446
## 28912    2.5 1218401159
## 28913    3.0 1218955364
## 28915    3.5 1218399180
## 28920    3.5 1218409554
## 28921    3.5 1227937020
## 28922    3.5 1218955712
## 28923    3.0 1228798876
## 28924    0.5 1218408441
## 28925    2.5 1228798654
## 28928    3.5 1227936287
## 28929    3.0 1228788778
## 28931    3.0 1253930577
## 28932    2.5 1218955741
## 28933    3.0 1260704868
## 28934    1.5 1218408464
## 28935    3.5 1218401197
## 28936    1.5 1218408364
## 28937    3.5 1218401767
## 28939    3.5 1228789865
## 28941    3.0 1218404733
## 28942    2.0 1260704974
## 28943    3.5 1218408878
## 28944    3.0 1227937018
## 28946    3.5 1228784651
## 28947    3.0 1218402230
## 28949    2.0 1218408296
## 28950    3.0 1253933167
## 28951    2.5 1253928645
## 28952    3.0 1227936946
## 28953    2.0 1253930330
## 28954    3.5 1227936195
## 28955    3.5 1228113759
## 28957    3.0 1218402980
## 28958    1.0 1218404871
## 28959    3.5 1260704173
## 28960    2.5 1228786347
## 28961    3.0 1218955647
## 28962    2.5 1218401155
## 28963    2.5 1218955155
## 28964    2.5 1228788465
## 28966    1.5 1218408243
## 28967    3.0 1218955083
## 28968    3.5 1228787560
## 28970    3.0 1260704859
## 28971    3.5 1227938227
## 28972    2.0 1228794021
## 28973    3.5 1228789810
## 28975    3.0 1218402334
##  [ reached 'max' / getOption("max.print") -- omitted 34151 rows ]
print(df_peliculas_rating_bajo)
##       movieId
## 1          31
## 2        1029
## 3        1061
## 4        1129
## 6        1263
## 7        1287
## 8        1293
## 9        1339
## 10       1343
## 11       1371
## 12       1405
## 15       2150
## 16       2193
## 17       2294
## 18       2455
## 19       2968
## 20       3671
## 26         52
## 27         62
## 29        144
## 32        161
## 33        165
## 34        168
## 35        185
## 36        186
## 37        208
## 39        223
## 40        225
## 41        235
## 42        248
## 47        272
## 49        292
## 51        300
## 53        317
## 54        319
## 55        339
## 58        356
## 59        357
## 60        364
## 61        367
## 62        370
## 63        371
## 64        372
## 65        377
## 66        382
## 67        405
## 68        410
## 70        457
## 72        474
## 74        485
## 75        497
## 82        539
## 83        550
## 85        552
## 87        586
## 88        587
## 89        588
## 93        593
## 94        616
## 97         60
## 99        247
## 100       267
## 103       355
## 105       377
## 106       527
## 107       588
## 108       592
## 109       593
## 110       595
## 111       736
## 113       866
## 115      1210
## 117      1271
## 119      1580
## 124      2513
## 125      2694
## 126      2702
## 127      2716
## 128      2762
## 132      3243
## 135      5349
## 136      5669
## 137      6377
## 138      7153
## 139      7361
## 140      8622
## 141      8636
## 142     27369
## 143     44191
## 146     58559
## 153       173
## 154       185
## 158       329
## 164       380
## 165       410
## 166       431
## 168       435
## 176       590
## 236      1372
## 238      1376
## 239      1377
## 244      1544
## 248      1805
## 251      1918
## 255      1967
## 259      2002
## 260      2003
## 269      2054
## 284      2110
## 294      2193
## 297      2263
## 308      2616
## 311      2659
## 317      2770
## 323      2822
## 324      2867
## 327      2902
## 328      2903
## 332      2986
## 335      3016
## 345      3208
## 349      3263
## 351      4006
## 357       231
## 359       344
## 367       588
## 370       788
## 371       858
## 372       903
## 376      1193
## 377      1221
## 381      1393
## 383      1544
## 391      1997
## 392      2023
## 396      2355
## 398      2502
## 402      2762
## 403      2770
## 404      2918
## 405      2997
## 406      3114
## 407      3176
## 409      3753
## 411      3948
## 414      4022
## 416      4306
## 417      4308
## 419      4718
## 420      4963
## 422      5266
## 426      5669
## 428      5816
## 430      6218
## 434      6711
## 438      8622
## 443     30793
## 453       158
## 454       173
## 463      1358
## 464      1639
## 465      1687
## 466      1747
## 467      1876
## 468      1909
## 469      2001
## 473      2502
## 474      2528
## 476      2571
## 477      2657
## 479      2723
## 481      2890
## 482      3052
## 484      3300
## 485      3751
## 486      4641
## 487      4975
## 489      7090
## 492      8368
## 494      8784
## 496         1
## 497        10
## 498        21
## 499        31
## 502       104
## 507       198
## 508       207
## 510       272
## 511       316
## 513       329
## 514       333
## 515       345
## 516       355
## 517       356
## 518       357
## 519       364
## 520       367
## 521       377
## 524       500
## 526       539
## 530       589
## 532       592
## 534       595
## 535       610
## 537       708
## 539       724
## 540       736
## 541       737
## 543       780
## 544       786
## 546      1036
## 547      1073
## 550      1097
## 551      1125
## 552      1129
## 556      1197
## 565      1270
## 567      1278
## 570      1291
## 571      1298
## 573      1307
## 574      1353
## 575      1371
## 576      1372
## 577      1373
## 579      1375
## 580      1376
## 581      1394
## 583      1408
## 585        45
## 589       260
## 590       282
## 595       520
## 596       524
## 602       805
## 604      1196
## 612      1265
## 615      1302
## 616      1358
## 618      1393
## 620      1552
## 621      1617
## 625      1754
## 627      1876
## 630      2100
## 631      2139
## 636      2353
## 637      2423
## 640      2716
## 642      2770
## 644      2797
## 645      2804
## 646      2841
## 652      3916
## 656      4019
## 660      4448
## 661      4886
## 662      4896
## 665      4993
## 666      4995
## 668      5378
## 673      5669
## 675      5989
## 677      6378
## 680      6879
## 681      7143
## 685      8533
## 688      8874
## 689     32587
## 693     34162
## 694     40583
## 695     40819
## 696     42007
## 697     43556
## 698     43871
## 699     44004
## 702        26
## 704        47
## 712       733
## 714      1177
## 717      1411
## 718      1541
## 723      1721
## 729      2268
## 730      2273
## 733      2294
## 737      2427
## 738      2490
## 740      2539
## 742      2628
## 748       344
## 750       592
## 752      1036
## 753      1089
## 754      1101
## 761      1220
## 766      1459
## 767      1499
## 769      1690
## 772      1887
## 774      2108
## 777      2410
## 781      2827
## 782      2840
## 784      2881
## 786      2907
## 788      2995
## 789      3005
## 792        70
## 794       169
## 797       785
## 802      1918
## 803      2042
## 805      2762
## 806      3424
## 807      5669
## 813     71211
## 817     80906
## 819     81562
## 829       253
## 830       529
## 831       538
## 832       608
## 833       673
## 835       737
## 836      1028
## 837      1032
## 838      1077
## 839      1197
## 842      1230
## 844      1295
## 845      1374
## 847      1639
## 848      1732
## 849      2259
## 850      2355
## 852      2529
## 853      2668
## 855      3146
## 856      3148
## 857      3176
## 858      3179
## 860      3324
## 863      3770
## 864      3773
## 865      3780
## 866      3791
## 868      3794
## 870      3799
## 871      3801
## 872      3809
## 874      3827
## 875      3829
## 877      3841
## 878      3844
## 879      3861
## 881      3864
## 883      3869
## 884      3871
## 885      3873
## 887      3885
## 888      3886
## 891        47
## 894       296
## 898       480
## 899       524
## 902       587
## 905       919
## 906      1027
## 908      1265
## 909      1918
## 912      2571
## 913      2572
## 915      2762
## 916      2804
## 917      2908
## 918      2918
## 919      3114
## 921      3255
## 922      3396
## 923      3624
## 926      4321
## 927      4718
## 929      4886
## 935     54286
## 942     93363
## 943       594
## 945      1721
## 946      2038
## 947      2355
## 948      2394
## 949      2628
## 950      2683
## 951      2716
## 952      2720
## 953      2724
## 954      2861
## 956      3157
## 958      3354
## 959      3623
## 961      3986
## 963         1
## 964         2
## 967        10
## 968        11
## 969        14
## 970        16
## 971        17
## 972        19
## 974        22
## 975        25
## 977        34
## 978        36
## 979        39
## 980        44
## 983        52
## 984        62
## 985        70
## 987        94
## 988        95
## 990       104
## 991       107
## 992       110
## 994       112
## 996       125
## 997       145
## 999       150
## 1000      153
## 1001      157
## 1002      160
## 1003      161
## 1005      163
## 1007      165
## 1008      170
## 1009      172
## 1012      180
## 1013      185
## 1014      193
## 1015      196
## 1016      198
## 1017      208
## 1018      214
## 1020      216
## 1022      225
## 1023      230
## 1024      231
## 1028      237
## 1030      247
## 1031      252
## 1032      253
## 1034      265
## 1035      288
## 1036      292
## 1043      316
## 1044      317
## 1045      318
## 1046      322
## 1047      329
## 1048      335
## 1049      339
## 1050      342
## 1051      344
## 1052      349
## 1053      353
## 1054      355
## 1055      356
## 1056      357
## 1058      367
## 1059      370
## 1060      371
## 1061      372
## 1062      373
## 1065      382
## 1066      429
## 1068      434
## 1069      435
## 1070      440
## 1072      442
## 1073      454
## 1075      466
## 1076      471
## 1077      474
## 1078      480
## 1079      481
## 1080      483
## 1081      485
## 1083      500
## 1084      508
## 1085      509
## 1086      520
## 1087      524
## 1089      535
## 1090      539
## 1091      540
## 1093      543
## 1095      551
## 1097      556
## 1098      562
## 1099      574
## 1100      586
## 1101      587
## 1102      588
## 1104      590
## 1107      594
## 1108      597
## 1110      610
## 1111      628
## 1112      647
## 1114      663
## 1115      665
## 1116      674
## 1117      680
## 1118      708
## 1119      720
## 1120      724
## 1121      733
## 1122      736
## 1123      745
## 1124      748
## 1126      762
## 1128      780
## 1129      784
## 1130      785
## 1131      786
## 1132      788
## 1133      799
## 1135      802
## 1137      804
## 1138      832
## 1139      836
## 1148      910
## 1152      914
## 1153      916
## 1154      919
## 1155      920
## 1156      922
## 1159      926
## 1160      931
## 1161      953
## 1163     1020
## 1164     1035
## 1167     1047
## 1168     1059
## 1170     1073
## 1172     1084
## 1173     1088
## 1175     1092
## 1176     1093
## 1180     1100
## 1181     1101
## 1182     1120
## 1184     1131
## 1185     1136
## 1186     1147
## 1187     1148
## 1189     1173
## 1191     1178
## 1193     1183
## 1195     1189
## 1198     1197
## 1200     1199
## 1202     1201
## 1204     1204
## 1206     1207
## 1210     1211
## 1211     1212
## 1212     1213
## 1214     1215
## 1215     1217
## 1217     1219
## 1218     1220
## 1224     1230
## 1226     1233
## 1228     1235
## 1229     1240
## 1230     1243
## 1232     1246
## 1234     1248
## 1235     1249
## 1237     1251
## 1239     1254
## 1241     1259
## 1242     1260
## 1243     1262
## 1245     1264
## 1250     1272
## 1251     1276
## 1252     1280
## 1253     1281
## 1254     1283
## 1255     1284
## 1256     1287
## 1259     1290
## 1263     1302
## 1264     1303
## 1265     1304
## 1267     1320
## 1268     1333
## 1269     1334
## 1270     1339
## 1271     1342
## 1272     1356
## 1273     1358
## 1274     1361
## 1275     1370
## 1276     1377
## 1277     1380
## 1278     1385
## 1280     1391
## 1281     1393
## 1284     1405
## 1289     1476
## 1290     1479
## 1291     1483
## 1292     1484
## 1293     1485
## 1294     1500
## 1295     1502
## 1296     1503
## 1297     1513
## 1298     1517
## 1299     1527
## 1300     1529
## 1301     1544
## 1303     1552
## 1304     1556
## 1305     1562
## 1306     1569
## 1310     1589
## 1311     1597
## 1312     1608
## 1313     1610
## 1314     1615
## 1315     1616
## 1320     1644
## 1321     1645
## 1322     1649
## 1323     1653
## 1324     1663
## 1325     1673
## 1327     1680
## 1328     1682
## 1330     1690
## 1331     1694
## 1335     1721
## 1336     1722
## 1337     1729
## 1338     1732
## 1339     1735
## 1340     1747
## 1342     1752
## 1343     1753
## 1344     1754
## 1345     1777
## 1346     1779
## 1347     1784
## 1348     1792
## 1349     1805
## 1350     1807
## 1351     1810
## 1352     1816
## 1354     1831
## 1355     1834
## 1356     1836
## 1360     1862
## 1361     1876
## 1362     1882
## 1364     1889
## 1365     1895
## 1366     1897
## 1367     1904
## 1368     1909
## 1370     1914
## 1371     1917
## 1375     1950
## 1376     1952
## 1377     1953
## 1378     1954
## 1381     1961
## 1382     1962
## 1383     1964
## 1385     1994
## 1387     2000
## 1388     2003
## 1391     2010
## 1392     2011
## 1393     2012
## 1394     2018
## 1396     2020
## 1397     2025
## 1398     2028
## 1399     2041
## 1400     2054
## 1401     2058
## 1402     2060
## 1404     2076
## 1405     2100
## 1409     2124
## 1410     2126
## 1411     2133
## 1412     2134
## 1413     2140
## 1414     2145
## 1415     2150
## 1416     2160
## 1417     2161
## 1418     2167
## 1420     2186
## 1422     2231
## 1425     2248
## 1426     2268
## 1427     2269
## 1428     2273
## 1429     2278
## 1430     2282
## 1431     2288
## 1433     2291
## 1434     2294
## 1435     2302
## 1436     2303
## 1437     2311
## 1438     2313
## 1440     2321
## 1441     2324
## 1442     2329
## 1443     2333
## 1444     2334
## 1445     2336
## 1446     2340
## 1447     2351
## 1448     2353
## 1449     2355
## 1450     2357
## 1451     2360
## 1452     2366
## 1453     2369
## 1454     2371
## 1455     2378
## 1456     2387
## 1457     2391
## 1459     2396
## 1460     2405
## 1461     2406
## 1462     2407
## 1464     2424
## 1465     2427
## 1466     2428
## 1467     2439
## 1468     2447
## 1469     2455
## 1470     2467
## 1472     2490
## 1473     2501
## 1475     2505
## 1476     2528
## 1477     2539
## 1478     2541
## 1479     2542
## 1480     2560
## 1481     2568
## 1484     2574
## 1485     2575
## 1486     2579
## 1487     2580
## 1488     2581
## 1489     2585
## 1491     2598
## 1492     2599
## 1493     2600
## 1494     2605
## 1495     2617
## 1496     2624
## 1497     2628
## 1499     2648
## 1500     2657
## 1502     2678
## 1503     2683
## 1504     2686
## 1505     2692
## 1506     2699
## 1507     2700
## 1508     2701
## 1509     2702
## 1510     2706
## 1511     2707
## 1512     2709
## 1513     2710
## 1515     2713
## 1517     2717
## 1518     2718
## 1519     2722
## 1520     2723
## 1521     2726
## 1522     2729
## 1523     2759
## 1524     2761
## 1525     2762
## 1526     2763
## 1527     2769
## 1530     2795
## 1532     2803
## 1533     2819
## 1534     2840
## 1535     2841
## 1538     2881
## 1541     2908
## 1543     2915
## 1549     2952
## 1552     2976
## 1554     2985
## 1556     2990
## 1560     3004
## 1561     3005
## 1563     3007
## 1564     3008
## 1566     3019
## 1567     3020
## 1571     3044
## 1572     3052
## 1574     3077
## 1575     3081
## 1576     3082
## 1578     3089
## 1581     3107
## 1583     3113
## 1584     3114
## 1586     3129
## 1587     3134
## 1588     3146
## 1589     3147
## 1590     3148
## 1591     3150
## 1592     3152
## 1593     3157
## 1594     3160
## 1595     3168
## 1596     3173
## 1597     3174
## 1599     3176
## 1600     3181
## 1601     3182
## 1602     3185
## 1604     3219
## 1605     3225
## 1607     3250
## 1608     3253
## 1609     3255
## 1610     3256
## 1612     3262
## 1615     3267
## 1616     3272
## 1617     3273
## 1618     3275
## 1619     3285
## 1620     3286
## 1624     3307
## 1625     3316
## 1627     3318
## 1630     3358
## 1631     3361
## 1632     3362
## 1633     3386
## 1634     3390
## 1635     3408
## 1637     3418
## 1638     3421
## 1639     3429
## 1640     3435
## 1641     3448
## 1642     3461
## 1643     3462
## 1646     3477
## 1648     3484
## 1649     3489
## 1650     3499
## 1653     3510
## 1654     3512
## 1655     3527
## 1656     3534
## 1657     3535
## 1659     3538
## 1660     3543
## 1661     3552
## 1662     3555
## 1663     3556
## 1664     3566
## 1667     3577
## 1668     3578
## 1669     3598
## 1671     3618
## 1672     3623
## 1673     3624
## 1674     3626
## 1676     3634
## 1677     3635
## 1678     3638
## 1679     3639
## 1680     3671
## 1683     3717
## 1686     3735
## 1687     3742
## 1688     3745
## 1689     3747
## 1690     3751
## 1691     3752
## 1692     3755
## 1693     3763
## 1694     3783
## 1696     3786
## 1697     3787
## 1698     3788
## 1699     3793
## 1701     3798
## 1702     3800
## 1703     3801
## 1704     3823
## 1705     3825
## 1706     3826
## 1707     3827
## 1708     3852
## 1709     3854
## 1710     3861
## 1711     3863
## 1714     3892
## 1715     3893
## 1716     3896
## 1717     3897
## 1718     3910
## 1719     3911
## 1721     3943
## 1725     3956
## 1726     3967
## 1727     3968
## 1728     3969
## 1729     3977
## 1730     3979
## 1731     3981
## 1734     3986
## 1736     3988
## 1737     3989
## 1738     3990
## 1739     3993
## 1742     3998
## 1743     3999
## 1744     4005
## 1745     4006
## 1746     4007
## 1747     4010
## 1748     4011
## 1749     4014
## 1752     4018
## 1753     4019
## 1754     4020
## 1755     4021
## 1756     4022
## 1757     4023
## 1758     4025
## 1759     4027
## 1761     4030
## 1764     4036
## 1765     4037
## 1766     4052
## 1767     4055
## 1771     4082
## 1772     4085
## 1773     4121
## 1775     4148
## 1776     4149
## 1777     4158
## 1778     4161
## 1779     4167
## 1780     4168
## 1782     4223
## 1783     4225
## 1785     4232
## 1787     4238
## 1788     4239
## 1789     4246
## 1790     4247
## 1791     4262
## 1792     4270
## 1794     4299
## 1796     4306
## 1797     4308
## 1798     4310
## 1799     4321
## 1801     4343
## 1802     4344
## 1803     4351
## 1805     4367
## 1806     4369
## 1807     4370
## 1808     4372
## 1809     4378
## 1810     4380
## 1811     4381
## 1812     4383
## 1813     4386
## 1814     4388
## 1815     4410
## 1817     4447
## 1818     4448
## 1819     4450
## 1820     4451
## 1822     4546
## 1823     4571
## 1824     4621
## 1826     4638
## 1827     4639
## 1828     4641
## 1829     4642
## 1830     4643
## 1831     4654
## 1832     4658
## 1833     4666
## 1834     4675
## 1836     4679
## 1837     4700
## 1838     4701
## 1841     4719
## 1842     4720
## 1843     4723
## 1844     4727
## 1847     4734
## 1848     4738
## 1849     4744
## 1850     4776
## 1851     4816
## 1852     4823
## 1853     4844
## 1854     4848
## 1857     4881
## 1859     4888
## 1860     4890
## 1861     4896
## 1863     4902
## 1866     4958
## 1868     4973
## 1869     4974
## 1870     4975
## 1872     4992
## 1874     4995
## 1875     5000
## 1876     5008
## 1878     5013
## 1879     5015
## 1880     5026
## 1881     5060
## 1882     5066
## 1884     5074
## 1886     5110
## 1887     5120
## 1888     5128
## 1890     5170
## 1891     5171
## 1892     5218
## 1893     5219
## 1894     5220
## 1895     5222
## 1896     5225
## 1897     5254
## 1898     5266
## 1900     5279
## 1901     5283
## 1902     5291
## 1903     5293
## 1904     5296
## 1905     5298
## 1906     5299
## 1907     5308
## 1908     5313
## 1909     5319
## 1910     5339
## 1911     5346
## 1912     5349
## 1913     5363
## 1914     5364
## 1916     5378
## 1917     5388
## 1918     5391
## 1919     5400
## 1920     5410
## 1921     5416
## 1922     5418
## 1923     5419
## 1924     5444
## 1926     5449
## 1927     5458
## 1928     5459
## 1929     5463
## 1930     5464
## 1932     5478
## 1933     5481
## 1935     5502
## 1936     5504
## 1937     5507
## 1938     5508
## 1940     5524
## 1941     5528
## 1942     5541
## 1943     5553
## 1944     5568
## 1945     5577
## 1946     5617
## 1947     5618
## 1948     5620
## 1949     5630
## 1950     5650
## 1953     5673
## 1955     5791
## 1957     5809
## 1958     5816
## 1959     5872
## 1960     5878
## 1963     5903
## 1964     5909
## 1965     5945
## 1967     5954
## 1968     5956
## 1970     5959
## 1971     5968
## 1972     5989
## 1973     5991
## 1975     6003
## 1976     6016
## 1977     6025
## 1978     6037
## 1979     6059
## 1980     6155
## 1981     6157
## 1982     6180
## 1983     6188
## 1984     6203
## 1985     6218
## 1987     6281
## 1988     6283
## 1989     6287
## 1990     6296
## 1991     6299
## 1992     6303
## 1994     6331
## 1995     6333
## 1996     6365
## 1997     6373
## 1998     6377
## 1999     6378
## 2000     6380
## 2001     6385
## 2002     6433
## 2003     6440
## 2004     6442
## 2005     6464
## 2006     6502
## 2007     6503
## 2008     6534
## 2009     6537
## 2010     6539
## 2011     6547
## 2012     6552
## 2013     6586
## 2014     6593
## 2015     6620
## 2017     6650
## 2018     6708
## 2019     6711
## 2020     6754
## 2021     6773
## 2022     6783
## 2025     6820
## 2026     6863
## 2027     6867
## 2028     6870
## 2029     6873
## 2030     6874
## 2031     6875
## 2032     6879
## 2033     6885
## 2035     6934
## 2036     6936
## 2037     6942
## 2039     6947
## 2040     6953
## 2042     6961
## 2044     6978
## 2045     6979
## 2046     6989
## 2047     7003
## 2048     7004
## 2049     7008
## 2050     7010
## 2051     7028
## 2053     7090
## 2054     7123
## 2055     7132
## 2056     7143
## 2057     7147
## 2058     7153
## 2059     7156
## 2060     7162
## 2061     7173
## 2062     7199
## 2063     7254
## 2064     7265
## 2065     7293
## 2066     7317
## 2067     7323
## 2068     7325
## 2069     7327
## 2070     7346
## 2071     7348
## 2073     7371
## 2074     7373
## 2075     7438
## 2076     7444
## 2077     7445
## 2078     7451
## 2079     7458
## 2081     7487
## 2082     7560
## 2083     7569
## 2084     7573
## 2085     7698
## 2086     7792
## 2087     7925
## 2088     8011
## 2090     8360
## 2092     8366
## 2093     8368
## 2094     8376
## 2095     8464
## 2096     8528
## 2097     8529
## 2098     8531
## 2099     8581
## 2100     8582
## 2101     8622
## 2102     8623
## 2103     8636
## 2105     8641
## 2106     8644
## 2107     8645
## 2108     8665
## 2109     8781
## 2110     8784
## 2111     8798
## 2112     8807
## 2113     8865
## 2114     8874
## 2115     8910
## 2118     8930
## 2119     8948
## 2121     8950
## 2122     8957
## 2123     8958
## 2124     8961
## 2125     8970
## 2126     8972
## 2127     8974
## 2128     8984
## 2133    26810
## 2134    27020
## 2135    27478
## 2137    27773
## 2138    27821
## 2140    27904
## 2141    30707
## 2142    30749
## 2143    30810
## 2144    30812
## 2145    30825
## 2146    31685
## 2147    31696
## 2148    32587
## 2149    33004
## 2150    33154
## 2151    33166
## 2153    33679
## 2155    34048
## 2156    34072
## 2157    34150
## 2158    34162
## 2159    34319
## 2160    34334
## 2161    34405
## 2162    34542
## 2163    35836
## 2164    35957
## 2165    36517
## 2166    36529
## 2167    37386
## 2168    37729
## 2169    37741
## 2171    38886
## 2173    40583
## 2174    40815
## 2175    41997
## 2177    44004
## 2178    44191
## 2179    44195
## 2181    44555
## 2182    44597
## 2183    44665
## 2184    44761
## 2186    45186
## 2187    45447
## 2188    45499
## 2189    45517
## 2191    45672
## 2192    45720
## 2193    45722
## 2194    45728
## 2195    45950
## 2196    46530
## 2197    46578
## 2198    46723
## 2199    46970
## 2200    46972
## 2201    46976
## 2202    47610
## 2203    47999
## 2204    48043
## 2205    48082
## 2207    48394
## 2208    48516
## 2212    49278
## 2213    49286
## 2214    50851
## 2215    50872
## 2217    51255
## 2219    51662
## 2220    52245
## 2221    52328
## 2222    52604
## 2223    52722
## 2224    52973
## 2225    53322
## 2226    53464
## 2227    53894
## 2228    53972
## 2230    54001
## 2231    54272
## 2232    54286
## 2234    54503
## 2236    55247
## 2237    55269
## 2238    55276
## 2239    55442
## 2240    55765
## 2241    55820
## 2242    55830
## 2243    56174
## 2244    56367
## 2246    56775
## 2247    56782
## 2248    57368
## 2250    57669
## 2251    58025
## 2252    58295
## 2254    58998
## 2257    59369
## 2258    59519
## 2259    59615
## 2260    59784
## 2261    59900
## 2262    60037
## 2263    60040
## 2265    60072
## 2266    60074
## 2267    60126
## 2268    60295
## 2270    60766
## 2271    61024
## 2272    61132
## 2273    61323
## 2274    61394
## 2275    62374
## 2276    62434
## 2278    63082
## 2279    63113
## 2280    63131
## 2281    63859
## 2282    64620
## 2283    64839
## 2284    64957
## 2286    65802
## 2287    66097
## 2288    66130
## 2289    66203
## 2290    66596
## 2291    66665
## 2292    66934
## 2293    67087
## 2294    67193
## 2295    67665
## 2296    67734
## 2298    68157
## 2300    68237
## 2301    68319
## 2302    68324
## 2305    68793
## 2306    68954
## 2307    69122
## 2308    69306
## 2309    69406
## 2310    69436
## 2313    69526
## 2315    70293
## 2317    70697
## 2318    70862
## 2319    71211
## 2320    71264
## 2321    71282
## 2322    71462
## 2323    71464
## 2324    71535
## 2325    71838
## 2326    72011
## 2327    72226
## 2328    72378
## 2330    73017
## 2331    73344
## 2332    74458
## 2334    74795
## 2335    74851
## 2336    76077
## 2338    76251
## 2339    76293
## 2340    76738
## 2341    77364
## 2343    77561
## 2344    78209
## 2345    78469
## 2346    78499
## 2348    79057
## 2350    79185
## 2351    79242
## 2352    79293
## 2353    79428
## 2354    79695
## 2355    79702
## 2356    80126
## 2357    80185
## 2358    80463
## 2360    80862
## 2362    81158
## 2363    81191
## 2364    81229
## 2365    81591
## 2366    81782
## 2367    81834
## 2368    81845
## 2369    81847
## 2370    81932
## 2371    82461
## 2372    82854
## 2373    83270
## 2374    83293
## 2375    83349
## 2376    83613
## 2378    84152
## 2379    84374
## 2380    84392
## 2381    84954
## 2384    86190
## 2385    86332
## 2386    86644
## 2389    86882
## 2390    86898
## 2391    86911
## 2393    87232
## 2394    87304
## 2395    87306
## 2396    87430
## 2397    87485
## 2399    87869
## 2400    87930
## 2401    88125
## 2402    88129
## 2403    88140
## 2404    88163
## 2405    88356
## 2407    88950
## 2408    89090
## 2409    89337
## 2410    89470
## 2412    89745
## 2413    89840
## 2414    90249
## 2415    90266
## 2417    90439
## 2419    90600
## 2420    90603
## 2421    90647
## 2422    90746
## 2423    90866
## 2424    90870
## 2425    91500
## 2426    91505
## 2427    91529
## 2428    91535
## 2429    91542
## 2430    91630
## 2433    91842
## 2434    91869
## 2435    92420
## 2436    92507
## 2437    93326
## 2438    93363
## 2439    93510
## 2440    93721
## 2441    93831
## 2442    93840
## 2443    94015
## 2444    94018
## 2445    94478
## 2447    94777
## 2448    94780
## 2449    94833
## 2450    94864
## 2451    94959
## 2452    95105
## 2453    95167
## 2454    95199
## 2455    95311
## 2456    95443
## 2457    95510
## 2458    95558
## 2459    95875
## 2460    96079
## 2461    96150
## 2462    96488
## 2463    96610
## 2464    96667
## 2465    96737
## 2466    97304
## 2467    97393
## 2468    97866
## 2469    97913
## 2470    97923
## 2471    97938
## 2472    98122
## 2473    98154
## 2474    98809
## 2475    98961
## 2476    99007
## 2477    99112
## 2478    99114
## 2479    99149
## 2480    99468
## 2482   100032
## 2483   100083
## 2484   100365
## 2485   100383
## 2486   100517
## 2488   100581
## 2489   100714
## 2490   100745
## 2491   101076
## 2492   101112
## 2493   101362
## 2494   101864
## 2495   101895
## 2496   102123
## 2497   102125
## 2498   102445
## 2499   102800
## 2500   102880
## 2501   102903
## 2502   103042
## 2504   103249
## 2505   103253
## 2506   103372
## 2507   103810
## 2508   104211
## 2509   104241
## 2510   104272
## 2511   104726
## 2512   104841
## 2514   105504
## 2515   106072
## 2516   106111
## 2517   106332
## 2518   106489
## 2519   106782
## 2520   106916
## 2522   107348
## 2525   108188
## 2526   108190
## 2527   108689
## 2528   108729
## 2529   108932
## 2530   108945
## 2531   109187
## 2532   109374
## 2533   109487
## 2534   109673
## 2535   109687
## 2536   109848
## 2538   110127
## 2539   110553
## 2540   110730
## 2541   110771
## 2542   111228
## 2543   111360
## 2544   111362
## 2550   112138
## 2551   112171
## 2552   112183
## 2553   112370
## 2554   112552
## 2557   112788
## 2559   112940
## 2560   113345
## 2561   113348
## 2562   113378
## 2563   113741
## 2564   114180
## 2567   115502
## 2569   115617
## 2570   115713
## 2571   116161
## 2572   116797
## 2573   116799
## 2574   116823
## 2576   117176
## 2578   117533
## 2579   118696
## 2580   119141
## 2581   119145
## 2582   120466
## 2583   120799
## 2584   121171
## 2586   122882
## 2587   122886
## 2588   122890
## 2589   122892
## 2590   122900
## 2591   122902
## 2592   122904
## 2593   122920
## 2594   122924
## 2595   127136
## 2596   128360
## 2597   129937
## 2598   130452
## 2599   130490
## 2600   130576
## 2601   130634
## 2602   131013
## 2603   132046
## 2604   132480
## 2605   132796
## 2606   132961
## 2607   134130
## 2610   134853
## 2611   135133
## 2612   135436
## 2613   135567
## 2614   135569
## 2615   136020
## 2616   136562
## 2617   136864
## 2618   137337
## 2619   137857
## 2620   138036
## 2621   139385
## 2622   139644
## 2623   139757
## 2624   139855
## 2625   140110
## 2628   140711
## 2629   140928
## 2630   142488
## 2631   142507
## 2632   143385
## 2633   145839
## 2634   145935
## 2635   146656
## 2636   148626
## 2637   149352
## 2638   149354
## 2640   152057
## 2641   152077
## 2642   152079
## 2643   152081
## 2644   155820
## 2645   156607
## 2646   156609
## 2647   157200
## 2648   157296
## 2649   157667
## 2650   158238
## 2651   158528
## 2652   159093
## 2653   159690
## 2654   159755
## 2656   159972
## 2657   160080
## 2658   160271
## 2659   160563
## 2660   160565
## 2662   161155
## 2670     1961
## 2672     2278
## 2675     2797
## 2678     4014
## 2686     5349
## 2690     6874
## 2701      172
## 2702      185
## 2705      223
## 2707      247
## 2708      260
## 2709      288
## 2712      307
## 2714      348
## 2715      356
## 2716      377
## 2718      480
## 2719      482
## 2724      590
## 2726      608
## 2729      736
## 2736      910
## 2743      930
## 2745      942
## 2746      965
## 2747     1036
## 2749     1079
## 2752     1095
## 2753     1104
## 2755     1173
## 2760     1210
## 2770     1240
## 2771     1241
## 2776     1249
## 2777     1251
## 2779     1255
## 2780     1258
## 2786     1333
## 2788     1396
## 2792     1517
## 2793     1570
## 2794     1580
## 2795     1597
## 2799     1645
## 2804     1721
## 2805     1729
## 2808     1809
## 2812     1923
## 2817     2021
## 2819     2028
## 2823     2110
## 2826     2159
## 2828     2167
## 2831     2278
## 2834     2353
## 2839     2502
## 2840     2539
## 2846     2606
## 2847     2657
## 2848     2672
## 2850     2683
## 2852     2707
## 2853     2710
## 2854     2712
## 2857     2791
## 2859     2892
## 2861     2918
## 2862     2952
## 2869     3160
## 2870     3253
## 2875     3408
## 2879     3504
## 2884     3730
## 2887     3785
## 2889     3863
## 2891     3977
## 2894     4027
## 2897     4210
## 2899     4239
## 2900     4246
## 2902     4306
## 2911     4886
## 2912     4896
## 2918     4995
## 2922     5060
## 2924     5072
## 2927     5254
## 2928     5266
## 2929     5299
## 2930     5316
## 2931     5349
## 2933     5418
## 2936     5502
## 2937     5574
## 2942     5686
## 2944     5809
## 2945     5853
## 2948     5893
## 2949     5903
## 2953     6059
## 2956     6214
## 2958     6281
## 2959     6287
## 2960     6294
## 2961     6322
## 2962     6323
## 2963     6365
## 2964     6378
## 2965     6383
## 2967     6502
## 2968     6503
## 2971     6584
## 2974     6708
## 2975     6711
## 2979     6790
## 2980     6858
## 2983     6975
## 2984     6979
## 2988     7013
## 2990     7044
## 2993     7084
## 3000     7163
## 3006     7445
## 3014     7982
## 3015     7991
## 3016     8195
## 3018     8360
## 3019     8370
## 3022     8620
## 3023     8622
## 3024     8644
## 3025     8665
## 3026     8690
## 3027     8781
## 3028     8783
## 3030     8865
## 3031     8874
## 3033     8928
## 3035     8957
## 3037     8973
## 3038     8983
## 3039    27266
## 3041    27604
## 3044    27788
## 3047    31878
## 3050    33004
## 3051    33615
## 3052    33683
## 3053    34048
## 3055        5
## 3057        7
## 3058        9
## 3059       14
## 3061       18
## 3064       36
## 3065       52
## 3067       74
## 3068       76
## 3069       79
## 3070       81
## 3073       92
## 3074       95
## 3076      140
## 3078      260
## 3079      376
## 3080      494
## 3083      640
## 3084      648
## 3086      707
## 3088      719
## 3090      736
## 3091      743
## 3092      748
## 3093      762
## 3094      765
## 3095      780
## 3098      788
## 3101      818
## 3102      832
## 3104      852
## 3105      880
## 3106        1
## 3107        2
## 3108        3
## 3109        4
## 3110        6
## 3111        7
## 3112        9
## 3113       10
## 3114       11
## 3117       21
## 3118       22
## 3119       23
## 3120       25
## 3121       29
## 3122       32
## 3124       35
## 3125       36
## 3126       39
## 3127       42
## 3128       45
## 3130       48
## 3132       52
## 3133       57
## 3134       58
## 3135       63
## 3136       64
## 3138       74
## 3139       89
## 3140       94
## 3141       95
## 3143      101
## 3144      105
## 3145      110
## 3147      112
## 3148      122
## 3149      125
## 3150      141
## 3152      150
## 3153      153
## 3158      165
## 3159      166
## 3160      172
## 3162      177
## 3163      179
## 3164      180
## 3166      196
## 3167      198
## 3168      202
## 3169      206
## 3170      208
## 3171      209
## 3172      215
## 3176      231
## 3177      235
## 3180      249
## 3181      253
## 3185      266
## 3186      269
## 3187      276
## 3188      281
## 3189      283
## 3194      300
## 3198      316
## 3202      329
## 3203      332
## 3204      333
## 3206      337
## 3208      340
## 3209      344
## 3210      345
## 3211      346
## 3213      349
## 3214      350
## 3215      353
## 3216      354
## 3220      364
## 3221      365
## 3222      366
## 3223      367
## 3224      369
## 3225      371
## 3226      372
## 3228      376
## 3229      377
## 3230      379
## 3231      380
## 3232      382
## 3233      383
## 3234      407
## 3235      412
## 3236      423
## 3237      428
## 3240      434
## 3241      440
## 3242      441
## 3243      445
## 3244      448
## 3245      450
## 3246      451
## 3247      454
## 3253      471
## 3254      474
## 3255      475
## 3256      479
## 3258      481
## 3259      482
## 3260      485
## 3261      491
## 3263      494
## 3264      500
## 3266      504
## 3267      507
## 3268      508
## 3270      513
## 3272      517
## 3273      519
## 3274      520
## 3275      522
## 3277      529
## 3281      537
## 3284      550
## 3286      555
## 3287      562
## 3288      580
## 3289      586
## 3290      588
## 3291      589
## 3292      590
## 3294      593
## 3298      597
## 3302      612
## 3303      628
## 3304      648
## 3305      653
## 3307      662
## 3310      703
## 3311      724
## 3312      733
## 3313      736
## 3314      748
## 3316      780
## 3317      784
## 3318      785
## 3319      786
## 3320      788
## 3321      799
## 3322      800
## 3323      802
## 3324      805
## 3326      880
## 3327      891
## 3329      902
## 3334      912
## 3336      914
## 3346      931
## 3347      933
## 3359     1013
## 3363     1028
## 3368     1042
## 3370     1061
## 3372     1077
## 3374     1080
## 3375     1082
## 3378     1088
## 3381     1091
## 3382     1092
## 3383     1093
## 3387     1101
## 3390     1124
## 3391     1126
## 3392     1127
## 3394     1129
## 3398     1161
## 3399     1171
## 3400     1175
## 3404     1183
## 3408     1197
## 3424     1216
## 3432     1227
## 3442     1246
## 3443     1247
## 3452     1259
## 3460     1268
## 3463     1271
## 3464     1272
## 3466     1275
## 3472     1285
## 3476     1290
## 3477     1291
## 3480     1298
## 3482     1302
## 3483     1304
## 3484     1306
## 3485     1307
## 3486     1320
## 3487     1321
## 3488     1327
## 3489     1332
## 3491     1334
## 3492     1336
## 3493     1339
## 3494     1342
## 3498     1347
## 3500     1350
## 3502     1356
## 3506     1372
## 3507     1373
## 3508     1374
## 3510     1376
## 3511     1377
## 3512     1378
## 3513     1380
## 3514     1381
## 3515     1382
## 3516     1385
## 3518     1388
## 3519     1389
## 3520     1391
## 3521     1393
## 3523     1396
## 3524     1405
## 3525     1408
## 3526     1441
## 3527     2019
## 3529        1
## 3530       32
## 3531       34
## 3532      107
## 3533      110
## 3534      150
## 3536      207
## 3537      231
## 3538      260
## 3539      296
## 3540      316
## 3542      344
## 3543      356
## 3544      364
## 3545      367
## 3548      480
## 3550      500
## 3551      527
## 3552      588
## 3553      590
## 3555      593
## 3558      608
## 3561      736
## 3565      858
## 3566      904
## 3567      905
## 3568      912
## 3569     1019
## 3570     1097
## 3574     1196
## 3578     1210
## 3579     1247
## 3581     1270
## 3582     1293
## 3583     1378
## 3584     1441
## 3589     2013
## 3593     2762
## 3594     2908
## 3595     2959
## 3596     3148
## 3597     3196
## 3599     3555
## 3600     3809
## 3603     5618
## 3611     7841
## 3613     8493
## 3614     8611
## 3615     8970
## 3620    47721
## 3624    58299
## 3627       10
## 3628       21
## 3631       36
## 3632       44
## 3634       95
## 3637      181
## 3638      196
## 3639      208
## 3640      260
## 3641      266
## 3642      273
## 3643      288
## 3644      296
## 3645      316
## 3646      329
## 3647      333
## 3648      344
## 3651      379
## 3652      380
## 3653      393
## 3654      442
## 3655      457
## 3656      466
## 3657      480
## 3658      485
## 3661      541
## 3662      543
## 3663      551
## 3664      553
## 3665      586
## 3668      592
## 3670      594
## 3671      595
## 3672      597
## 3673      610
## 3674      648
## 3675      733
## 3677      780
## 3678      849
## 3680      899
## 3681      908
## 3682      910
## 3692      945
## 3693      948
## 3694      952
## 3698     1012
## 3699     1019
## 3700     1022
## 3701     1028
## 3702     1031
## 3703     1032
## 3706     1079
## 3707     1080
## 3708     1088
## 3709     1089
## 3711     1091
## 3712     1097
## 3713     1103
## 3716     1127
## 3717     1129
## 3718     1135
## 3723     1193
## 3734     1221
## 3735     1222
## 3739     1231
## 3740     1234
## 3744     1252
## 3745     1253
## 3747     1256
## 3750     1265
## 3751     1266
## 3753     1275
## 3755     1282
## 3761     1295
## 3763     1297
## 3764     1298
## 3765     1301
## 3768     1320
## 3770     1327
## 3771     1334
## 3772     1345
## 3773     1346
## 3774     1350
## 3775     1370
## 3776     1371
## 3777     1372
## 3778     1373
## 3780     1375
## 3781     1376
## 3782     1380
## 3783     1387
## 3784     1388
## 3786     1395
## 3787     1427
## 3788     5060
## 3790       44
## 3791       47
## 3792       48
## 3793       70
## 3794      153
## 3795      158
## 3797      173
## 3798      208
## 3799      231
## 3800      235
## 3803      267
## 3805      315
## 3806      355
## 3807      356
## 3808      442
## 3811      485
## 3814      552
## 3816      586
## 3817      588
## 3822      784
## 3823      785
## 3825     1080
## 3827     1097
## 3828     1101
## 3829     1148
## 3833     1201
## 3834     1208
## 3836     1214
## 3840     1263
## 3843     1320
## 3846     1371
## 3848     1374
## 3853     1391
## 3855     1544
## 3857     1608
## 3858     1625
## 3859     1641
## 3860     1645
## 3861     1682
## 3862     1693
## 3863     1721
## 3864     1722
## 3865     1769
## 3867     1876
## 3869     1909
## 3870     1917
## 3871     1923
## 3872     1997
## 3873     2006
## 3874     2011
## 3875     2023
## 3876     2081
## 3877     2115
## 3879     2232
## 3882     2301
## 3883     2340
## 3884     2402
## 3885     2431
## 3887     2502
## 3890     2605
## 3891     2616
## 3892     2617
## 3893     2657
## 3894     2672
## 3895     2683
## 3896     2700
## 3897     2701
## 3898     2710
## 3900     2716
## 3901     2717
## 3902     2723
## 3904     2763
## 3906     2881
## 3907     2953
## 3909     2985
## 3911     2990
## 3913     3052
## 3915     3082
## 3916     3147
## 3917     3176
## 3919     3253
## 3920     3285
## 3921     3300
## 3922     3354
## 3924     3408
## 3925     3438
## 3928     3578
## 3929     3623
## 3930     3697
## 3931     3751
## 3933     3809
## 3934     3826
## 3936     3977
## 3937     3994
## 3938     3996
## 3939     3999
## 3941     4015
## 3942     4027
## 3945     4239
## 3946     4262
## 3948     4370
## 3949     4383
## 3950     4643
## 3952     4720
## 3953     4776
## 3955     4896
## 3956     4963
## 3959     5010
## 3961     5219
## 3962     5266
## 3964     5400
## 3966     5459
## 3967     5464
## 3970     5816
## 3971     5872
## 3974     5989
## 3977     6365
## 3978     6373
## 3979     6502
## 3981     6541
## 3982     6754
## 3984     6893
## 3985     6934
## 3989     7360
## 3990     7373
## 3992     7454
## 3994     8360
## 3995     8368
## 3997     8798
## 3998     8947
## 4001     8961
## 4006    33493
## 4007    33794
## 4009        1
## 4010        6
## 4011       11
## 4013       19
## 4014       20
## 4015       24
## 4017       34
## 4020       58
## 4023      104
## 4024      110
## 4026      150
## 4027      153
## 4029      172
## 4030      185
## 4037      253
## 4040      265
## 4041      292
## 4045      306
## 4046      307
## 4047      316
## 4051      344
## 4055      425
## 4056      431
## 4057      442
## 4058      457
## 4059      465
## 4060      471
## 4061      480
## 4062      485
## 4067      527
## 4068      532
## 4070      539
## 4071      541
## 4072      586
## 4074      589
## 4075      590
## 4076      592
## 4079      597
## 4083      653
## 4089      780
## 4090      788
## 4091      802
## 4092      805
## 4097      900
## 4098      903
## 4102      909
## 4107      914
## 4108      920
## 4111      924
## 4116      933
## 4118      948
## 4119      949
## 4120      952
## 4123      955
## 4124      965
## 4125      969
## 4126      971
## 4127     1035
## 4128     1036
## 4131     1061
## 4136     1089
## 4138     1096
## 4140     1101
## 4145     1175
## 4146     1176
## 4149     1185
## 4155     1199
## 4161     1207
## 4164     1211
## 4165     1212
## 4168     1218
## 4171     1222
## 4173     1227
## 4178     1233
## 4179     1234
## 4180     1235
## 4182     1240
## 4183     1241
## 4184     1243
## 4185     1244
## 4192     1254
## 4193     1256
## 4194     1258
## 4197     1263
## 4199     1266
## 4203     1272
## 4204     1277
## 4206     1281
## 4209     1288
## 4210     1291
## 4215     1333
## 4217     1348
## 4219     1356
## 4220     1377
## 4221     1380
## 4222     1387
## 4223     1391
## 4226     1408
## 4227     1411
## 4228     1438
## 4229     1464
## 4230     1499
## 4232     1515
## 4233     1527
## 4234     1544
## 4235     1552
## 4236     1556
## 4237     1562
## 4238     1580
## 4240     1608
## 4246     1704
## 4248     1722
## 4252     1792
## 4253     1797
## 4254     1835
## 4256     1873
## 4257     1876
## 4258     1900
## 4259     1907
## 4260     1917
## 4261     1927
## 4263     1932
## 4265     1941
## 4270     1949
## 4272     1951
## 4274     1953
## 4275     1954
## 4277     1956
## 4278     1957
## 4279     1958
## 4280     1959
## 4281     1960
## 4283     1962
## 4284     1997
## 4285     2002
## 4286     2010
## 4291     2023
## 4292     2027
## 4294     2067
## 4297     2126
## 4299     2143
## 4300     2174
## 4302     2178
## 4304     2183
## 4306     2194
## 4308     2205
## 4309     2231
## 4310     2248
## 4311     2273
## 4315     2313
## 4317     2324
## 4318     2329
## 4319     2333
## 4320     2334
## 4321     2336
## 4323     2353
## 4325     2360
## 4327     2394
## 4330     2424
## 4332     2474
## 4335     2539
## 4336     2542
## 4338     2575
## 4339     2580
## 4340     2599
## 4342     2617
## 4343     2628
## 4345     2644
## 4347     2657
## 4349     2699
## 4352     2716
## 4353     2721
## 4354     2724
## 4357     2729
## 4361     2746
## 4363     2805
## 4364     2858
## 4365     2871
## 4368     2908
## 4371     2947
## 4372     2952
## 4373     2953
## 4374     2959
## 4377     2987
## 4380     3019
## 4381     3020
## 4382     3052
## 4383     3053
## 4385     3081
## 4386     3082
## 4388     3088
## 4390     3095
## 4391     3100
## 4392     3114
## 4393     3147
## 4394     3152
## 4395     3155
## 4400     3201
## 4403     3248
## 4405     3267
## 4409     3365
## 4410     3371
## 4412     3405
## 4414     3415
## 4419     3468
## 4421     3475
## 4422     3481
## 4423     3489
## 4425     3503
## 4426     3504
## 4427     3510
## 4430     3559
## 4431     3569
## 4433     3618
## 4434     3623
## 4436     3668
## 4437     3671
## 4438     3681
## 4439     3730
## 4441     3741
## 4443     3753
## 4445     3801
## 4446     3844
## 4447     3871
## 4453     3992
## 4459     4014
## 4460     4022
## 4461     4027
## 4462     4034
## 4463     4037
## 4464     4103
## 4465     4148
## 4466     4167
## 4467     4223
## 4472     4278
## 4473     4282
## 4474     4297
## 4476     4310
## 4477     4312
## 4478     4343
## 4479     4344
## 4480     4359
## 4481     4370
## 4483     4432
## 4484     4447
## 4485     4458
## 4486     4564
## 4487     4571
## 4490     4816
## 4493     4857
## 4494     4865
## 4495     4878
## 4496     4881
## 4497     4886
## 4498     4896
## 4499     4901
## 4504     4975
## 4505     4976
## 4511     5014
## 4512     5015
## 4513     5060
## 4514     5073
## 4515     5096
## 4524     5299
## 4525     5304
## 4526     5348
## 4527     5349
## 4529     5373
## 4530     5377
## 4531     5378
## 4532     5385
## 4533     5388
## 4534     5445
## 4536     5463
## 4537     5464
## 4538     5470
## 4539     5489
## 4541     5599
## 4542     5618
## 4546     5679
## 4547     5682
## 4549     5816
## 4552     5882
## 4557     5954
## 4558     5956
## 4561     5991
## 4565     6008
## 4567     6162
## 4568     6197
## 4569     6214
## 4573     6323
## 4574     6333
## 4576     6377
## 4577     6404
## 4578     6415
## 4579     6440
## 4580     6537
## 4582     6552
## 4584     6599
## 4586     6620
## 4587     6641
## 4589     6666
## 4591     6708
## 4592     6709
## 4593     6711
## 4596     6796
## 4597     6807
## 4598     6867
## 4599     6870
## 4606     6934
## 4607     6944
## 4608     6947
## 4609     6953
## 4610     6954
## 4612     6981
## 4613     6982
## 4616     6993
## 4617     7004
## 4618     7008
## 4621     7042
## 4627     7104
## 4628     7132
## 4630     7139
## 4633     7160
## 4634     7161
## 4635     7162
## 4639     7347
## 4642     7419
## 4643     7438
## 4644     7458
## 4645     7569
## 4647     7713
## 4648     7748
## 4649     7759
## 4652     7942
## 4653     8019
## 4656     8154
## 4657     8195
## 4658     8239
## 4659     8338
## 4662     8464
## 4663     8507
## 4664     8529
## 4665     8636
## 4666     8656
## 4669     8949
## 4672     8966
## 4675     8984
## 4676    25753
## 4678    25805
## 4683    27266
## 4684    27317
## 4685    27721
## 4687    30707
## 4689    30793
## 4690    30812
## 4693    31658
## 4694    32587
## 4696    33162
## 4699    33794
## 4700    33903
## 4701    34048
## 4702    34143
## 4704    34437
## 4705    36517
## 4706    36529
## 4708    37733
## 4709    37736
## 4716    40278
## 4719    40815
## 4720    40819
## 4722    41569
## 4723    41571
## 4724    41863
## 4727    42418
## 4728    42734
## 4731    45186
## 4732    45447
## 4733    45722
## 4734    48385
## 4736       36
## 4738       95
## 4739      150
## 4742      316
## 4746      588
## 4748      592
## 4749      610
## 4751      736
## 4754     1034
## 4756        3
## 4758       78
## 4761      494
## 4762      608
## 4763      653
## 4764      663
## 4765      707
## 4768      784
## 4769      786
## 4770      788
## 4772      832
## 4773      842
## 4775     1354
## 4776     1356
## 4778     1391
## 4779     1405
## 4780     1409
## 4781     1483
## 4786       63
## 4788      153
## 4789      165
## 4790      260
## 4791      296
## 4792      316
## 4794      344
## 4796      367
## 4797      377
## 4798      380
## 4799      457
## 4800      480
## 4801      500
## 4802      555
## 4804      593
## 4805      608
## 4806      648
## 4807      720
## 4808      733
## 4810      780
## 4812     1036
## 4813     1089
## 4814     1196
## 4816     1210
## 4817     1405
## 4819     1580
## 4820     1653
## 4821     1687
## 4823     1753
## 4824     1831
## 4826     2028
## 4834     3108
## 4836     3147
## 4838     3481
## 4839     3578
## 4843     4027
## 4844     4161
## 4846     4262
## 4849     4844
## 4851     4963
## 4852     4973
## 4854     4995
## 4855     5010
## 4860     5617
## 4861     5903
## 4863     5954
## 4864     5989
## 4866     6333
## 4867     6539
## 4868     6708
## 4870     6870
## 4873     7361
## 4874     7438
## 4876     8368
## 4878     8784
## 4880     8874
## 4882    27376
## 4884    30810
## 4885    31410
## 4889    34437
## 4891    37731
## 4892    37741
## 4893    38038
## 4899    44665
## 4903    48774
## 4906    49278
## 4908    50851
## 4910    51255
## 4915    53972
## 4917    54503
## 4918    55118
## 4919    55167
## 4921    55276
## 4922    55280
## 4923    55765
## 4924    55820
## 4925    56782
## 4926    57669
## 4928    59315
## 4930    59387
## 4932    60069
## 4934    61024
## 4935    61323
## 4937    63082
## 4939    67997
## 4940    68157
## 4941    68358
## 4942    68954
## 4943    69122
## 4944    70533
## 4945    71464
## 4946    72998
## 4947    73017
## 4949    79132
## 4950    80489
## 4952    91542
## 4966     1721
## 4968     2356
## 4969     2391
## 4970     2396
## 4973     2710
## 4984      903
## 4993      953
## 5010     1831
## 5014     1962
## 5015     2019
## 5016     2028
## 5022     2406
## 5028     1569
## 5029     1681
## 5030     1717
## 5031     2065
## 5032     2367
## 5033     2384
## 5034     2459
## 5035     2513
## 5037     2713
## 5038     2717
## 5039     2942
## 5041     5065
## 5042     6365
## 5044     6934
## 5048    73268
## 5050        2
## 5056       18
## 5060       32
## 5062       42
## 5063       45
## 5067       60
## 5069       78
## 5073      118
## 5076      158
## 5078      162
## 5081      196
## 5082      203
## 5083      208
## 5084      209
## 5086      227
## 5087      228
## 5090      254
## 5096      288
## 5102      344
## 5108      364
## 5110      369
## 5117      413
## 5118      419
## 5121      426
## 5123      432
## 5145      518
## 5146      523
## 5148      531
## 5149      532
## 5153      539
## 5159      581
## 5161      587
## 5167      594
## 5173      640
## 5175      661
## 5176      707
## 5179      750
## 5180      762
## 5181      765
## 5184      782
## 5187      806
## 5190      869
## 5212      996
## 5214     1010
## 5215     1012
## 5217     1017
## 5218     1018
## 5220     1027
## 5225     1061
## 5226     1073
## 5227     1078
## 5236     1091
## 5238     1093
## 5245     1114
## 5248     1126
## 5249     1129
## 5250     1135
## 5251     1171
## 5255     1189
## 5258     1197
## 5260     1200
## 5261     1206
## 5265     1212
## 5278     1235
## 5298     1278
## 5301     1286
## 5308     1320
## 5316     1345
## 5323     1377
## 5326     1385
## 5328     1388
## 5329     1390
## 5334     1399
## 5336     1438
## 5337     1440
## 5344     1517
## 5347     1562
## 5351     1588
## 5352     1589
## 5356     1611
## 5357     1614
## 5361     1625
## 5368     1690
## 5374     1726
## 5376     1732
## 5382     1798
## 5384     1810
## 5386     1864
## 5389     1882
## 5390     1884
## 5395     1943
## 5405     1958
## 5411     1982
## 5416     2002
## 5417     2003
## 5418     2009
## 5420     2012
## 5421     2013
## 5422     2015
## 5424     2024
## 5427     2054
## 5432     2078
## 5434     2082
## 5436     2088
## 5438     2105
## 5440     2109
## 5441     2112
## 5444     2116
## 5445     2117
## 5448     2121
## 5449     2122
## 5452     2136
## 5453     2144
## 5454     2145
## 5456     2148
## 5457     2159
## 5463     2188
## 5464     2193
## 5467     2236
## 5474     2253
## 5475     2255
## 5476     2259
## 5477     2263
## 5478     2264
## 5482     2278
## 5483     2286
## 5486     2296
## 5491     2311
## 5495     2329
## 5496     2334
## 5498     2346
## 5499     2347
## 5503     2367
## 5505     2371
## 5506     2374
## 5508     2389
## 5512     2402
## 5513     2403
## 5519     2417
## 5520     2418
## 5521     2420
## 5523     2427
## 5526     2435
## 5530     2468
## 5534     2505
## 5535     2513
## 5536     2517
## 5537     2518
## 5539     2521
## 5540     2523
## 5542     2528
## 5544     2530
## 5545     2531
## 5546     2532
## 5547     2533
## 5550     2551
## 5552     2571
## 5553     2574
## 5554     2577
## 5559     2616
## 5560     2617
## 5564     2642
## 5565     2664
## 5569     2701
## 5570     2702
## 5571     2707
## 5576     2738
## 5582     2757
## 5585     2770
## 5588     2790
## 5589     2791
## 5590     2793
## 5591     2794
## 5601     2851
## 5617     2942
## 5620     2950
## 5628     2976
## 5629     2977
## 5635     3015
## 5636     3019
## 5642     3044
## 5644     3063
## 5649     3081
## 5650     3082
## 5651     3087
## 5652     3095
## 5659     3108
## 5663     3130
## 5664     3138
## 5666     3144
## 5672     3169
## 5673     3173
## 5676     3185
## 5682     3218
## 5686     3247
## 5692     3257
## 5693     3258
## 5695     3269
## 5697     3286
## 5701     3316
## 5711     3385
## 5713     3391
## 5714     3394
## 5721     3441
## 5722     3445
## 5726     3476
## 5728     3483
## 5730     3494
## 5736     3506
## 5739     3524
## 5741     3528
## 5743     3535
## 5754     3566
## 5767     3688
## 5768     3701
## 5770     3704
## 5778     3763
## 5781     3804
## 5782     3812
## 5793     3957
## 5802     4012
## 5806     4025
## 5812     4039
## 5817     4063
## 5821     4090
## 5827     4132
## 5828     4146
## 5830     4167
## 5833     4214
## 5834     4226
## 5835     4228
## 5842     4291
## 5847     4316
## 5852     4333
## 5855     4352
## 5859     4378
## 5860     4396
## 5862     4409
## 5867     4474
## 5870     4487
## 5871     4488
## 5873     4491
## 5874     4495
## 5881     4526
## 5882     4528
## 5888     4615
## 5890     4621
## 5891     4627
## 5893     4629
## 5897     4681
## 5901     4713
## 5902     4714
## 5903     4728
## 5911     4832
## 5916     4890
## 5919     4929
## 5921     4941
## 5922     4951
## 5929     4993
## 5932     5027
## 5933     5043
## 5935     5060
## 5936     5061
## 5941     5125
## 5942     5127
## 5947     5193
## 5950     5214
## 5952     5247
## 5954     5269
## 5956     5277
## 5960     5303
## 5961     5307
## 5963     5309
## 5965     5335
## 5969     5366
## 5970     5382
## 5975     5452
## 5977     5471
## 5978     5502
## 5984     5564
## 5985     5581
## 5988     5655
## 5990     5679
## 5993     5694
## 5996     5703
## 6001     5729
## 6005     5773
## 6011     5857
## 6012     5859
## 6014     5900
## 6016     5923
## 6017     5926
## 6021     5940
## 6024     5959
## 6027     5962
## 6033     6084
## 6034     6096
## 6035     6101
## 6036     6103
## 6037     6115
## 6039     6180
## 6040     6186
## 6041     6212
## 6042     6233
## 6043     6234
## 6046     6240
## 6047     6263
## 6050     6318
## 6052     6413
## 6062       50
## 6067      372
## 6071      778
## 6075     1091
## 6076     1186
## 6084     1416
## 6095     3072
## 6096     3087
## 6102     4979
## 6106     5995
## 6107     6539
## 6127    76093
## 6130       19
## 6132       44
## 6136      158
## 6138      168
## 6139      173
## 6142      225
## 6144      252
## 6146      266
## 6148      296
## 6149      300
## 6150      316
## 6151      317
## 6152      333
## 6156      350
## 6158      364
## 6161      380
## 6162      410
## 6163      420
## 6164      428
## 6165      432
## 6166      434
## 6172      588
## 6176      595
## 6177       19
## 6178       88
## 6179      157
## 6180      231
## 6182      377
## 6186      851
## 6192     1196
## 6200     1347
## 6201     1359
## 6202     1394
## 6204     1717
## 6205     1760
## 6207     1967
## 6208     1974
## 6211     1984
## 6215     2060
## 6217     2088
## 6218     2107
## 6220     2170
## 6221     2193
## 6224     2395
## 6227     2507
## 6230     2617
## 6231     2689
## 6232     2706
## 6234     2793
## 6236     2888
## 6237     2891
## 6240     2926
## 6244     3157
## 6245     3273
## 6247     3317
## 6248     3408
## 6249     3481
## 6250     3552
## 6251     3566
## 6252     3568
## 6255     3747
## 6256     3752
## 6257     3785
## 6260     3858
## 6261     3865
## 6263     3893
## 6264     3897
## 6265     3910
## 6269     4027
## 6271     4247
## 6272     4248
## 6276     4378
## 6277     4388
## 6278     4447
## 6280     4452
## 6282     4488
## 6283     4502
## 6285     4558
## 6287     4622
## 6288     4641
## 6289     4643
## 6293     4678
## 6296     4728
## 6297     4809
## 6302     4956
## 6303     4963
## 6304     4974
## 6306     4988
## 6309     5106
## 6315        6
## 6318       39
## 6324      198
## 6332      377
## 6333      407
## 6334      442
## 6345      599
## 6354      919
## 6364     1097
## 6367     1120
## 6369     1130
## 6372     1179
## 6374     1196
## 6384     1215
## 6386     1220
## 6390     1234
## 6402     1270
## 6406     1298
## 6408     1320
## 6411     1340
## 6413     1387
## 6416     1464
## 6417     1527
## 6418     1580
## 6420     1597
## 6423     1645
## 6425     1676
## 6426     1690
## 6427     1754
## 6430     1952
## 6431     1954
## 6432     1965
## 6442     2338
## 6443     2353
## 6446     2407
## 6448     2528
## 6450     2553
## 6457     2716
## 6459     2793
## 6460     2797
## 6468     2944
## 6469     2949
## 6472     2985
## 6477     3066
## 6481     3256
## 6482     3286
## 6485     3418
## 6501     5060
## 6502       24
## 6503      230
## 6504      247
## 6506      724
## 6508      914
## 6509     1029
## 6510     1047
## 6511     1188
## 6512     1231
## 6513     1249
## 6514     1267
## 6515     2105
## 6517     2289
## 6518     2336
## 6519     2968
## 6521     3755
## 6522        6
## 6523       16
## 6525       21
## 6527       31
## 6530       41
## 6533       52
## 6540      145
## 6541      147
## 6542      151
## 6543      165
## 6544      216
## 6547      236
## 6550      248
## 6552      252
## 6554      256
## 6559      273
## 6560      277
## 6561      282
## 6569      312
## 6575      348
## 6576      350
## 6577      356
## 6580      368
## 6581      372
## 6582      381
## 6583      382
## 6585      420
## 6587      432
## 6588      434
## 6589      440
## 6590      454
## 6591      457
## 6594      480
## 6596      491
## 6599      515
## 6601      524
## 6604      532
## 6606      539
## 6607      540
## 6608      543
## 6609      551
## 6610      586
## 6611      587
## 6612      588
## 6613      590
## 6614      592
## 6616      597
## 6617      640
## 6620      788
## 6622     1036
## 6623     1150
## 6625     1367
## 6629      902
## 6632      940
## 6634     1196
## 6641     2273
## 6647     3751
## 6649     3977
## 6651     4011
## 6653     4015
## 6656     4054
## 6668      367
## 6671      590
## 6686     1704
## 6687     2000
## 6688     2025
## 6691     2092
## 6693     2194
## 6707     4862
## 6708     4936
## 6716     6365
## 6727     7438
## 6740    55247
## 6756   101070
## 6772       21
## 6774       31
## 6776       50
## 6777       69
## 6779       73
## 6780       76
## 6782      145
## 6784      153
## 6785      160
## 6788      168
## 6789      170
## 6790      175
## 6793      188
## 6799      273
## 6807      330
## 6808      332
## 6809      333
## 6810      338
## 6813      366
## 6815      426
## 6820      588
## 6821      590
## 6822      592
## 6823      593
## 6824      595
## 6859    74458
## 6874        2
## 6879      172
## 6881      196
## 6887      316
## 6892      356
## 6895      426
## 6897      442
## 6901      610
## 6905      748
## 6911      986
## 6912     1037
## 6916     1127
## 6920     1206
## 6928     1302
## 6930     1333
## 6932     1371
## 6941     1552
## 6947     1747
## 6950     1779
## 6951     1876
## 6954     1965
## 6956     2001
## 6957     2003
## 6960     2012
## 6965     2232
## 6967     2322
## 6968     2454
## 6969     2455
## 6970     2520
## 6971     2521
## 6975     2530
## 6976     2531
## 6977     2532
## 6978     2536
## 6981     2600
## 6983     2641
## 6984     2642
## 6985     2729
## 6986     2746
## 6990     2916
## 6996     3253
## 6998     3354
## 7003     3638
## 7004     3698
## 7005     3699
## 7009     3745
## 7011     3802
## 7012     3863
## 7014     3937
## 7015     3986
## 7020     4443
## 7023     4625
## 7025     4691
## 7028     4874
## 7031     5349
## 7033     5459
## 7034     5463
## 7035     5490
## 7039     5694
## 7041     5881
## 7046     6264
## 7052     6502
## 7053     6537
## 7056     6678
## 7066     7817
## 7074      165
## 7080      380
## 7083      508
## 7088      733
## 7097     1320
## 7098     1370
## 7100     1573
## 7104     2571
## 7107     3793
## 7108     3996
## 7117    33794
## 7118    40815
## 7124    63082
## 7125    68358
## 7129    74458
## 7134    91529
## 7135    98809
## 7136   106489
## 7139   111759
## 7140   112852
## 7142   134853
## 7146       70
## 7147      104
## 7149      216
## 7150      223
## 7151      231
## 7155      500
## 7156      524
## 7158      585
## 7159      588
## 7160      589
## 7165     1210
## 7166     1380
## 7167     1457
## 7170     1517
## 7171     1544
## 7175     1673
## 7176     1726
## 7177     1777
## 7178     1806
## 7179     1821
## 7180     1883
## 7181     1895
## 7182     1907
## 7184     1968
## 7186     2000
## 7187     2003
## 7188     2004
## 7189     2054
## 7191     2082
## 7192     2109
## 7193     2144
## 7194     2150
## 7195     2160
## 7196     2291
## 7200     2390
## 7201     2395
## 7203     2447
## 7204     2454
## 7205     2455
## 7206     2496
## 7207     2539
## 7208     2622
## 7210     2683
## 7211     2688
## 7213     2700
## 7215     2723
## 7216     2770
## 7217     2791
## 7219     2836
## 7222     2978
## 7224     3005
## 7225     3052
## 7227     3156
## 7229     3173
## 7231     3247
## 7232     3254
## 7233     3255
## 7234     3286
## 7235     3301
## 7237     3450
## 7238     3481
## 7241     3525
## 7242     3535
## 7243     3555
## 7244     3624
## 7245     3712
## 7247     3773
## 7248     3868
## 7249     3869
## 7250     3917
## 7251     3948
## 7255        5
## 7256        6
## 7257       17
## 7258       25
## 7259       32
## 7261       95
## 7264      141
## 7265      260
## 7266      494
## 7267      628
## 7268      637
## 7269      648
## 7273      786
## 7274      788
## 7275      802
## 7277     1047
## 7278      520
## 7283     1639
## 7286     2572
## 7288     2699
## 7289     3052
## 7292     3753
## 7294     4246
## 7295     4995
## 7342       39
## 7344       95
## 7348      160
## 7352      208
## 7353      231
## 7355      253
## 7356      266
## 7360      300
## 7364      344
## 7367      410
## 7368      420
## 7370      442
## 7373      592
## 7375      595
## 7377        2
## 7378       34
## 7380      111
## 7381      158
## 7382      163
## 7383      223
## 7384      231
## 7385      288
## 7388      344
## 7391      367
## 7392      480
## 7393      501
## 7396      562
## 7397      593
## 7398      595
## 7399      648
## 7400      673
## 7403      784
## 7406     1097
## 7407     1127
## 7408     1148
## 7411     1206
## 7412     1214
## 7413     1222
## 7414     1240
## 7416     1270
## 7417     1274
## 7419     1407
## 7420     1485
## 7421     1499
## 7422     1527
## 7423     1544
## 7424     1580
## 7425     1591
## 7426     1676
## 7427     1682
## 7429     1732
## 7431     1882
## 7433     1917
## 7435     1923
## 7436     1997
## 7437     2006
## 7438     2167
## 7439     2232
## 7440     2288
## 7442     2294
## 7443     2318
## 7446     2355
## 7447     2455
## 7448     2542
## 7450     2617
## 7451     2692
## 7452     2700
## 7453     2706
## 7454     2710
## 7455     2722
## 7456     2762
## 7457     2840
## 7459     2987
## 7460     2997
## 7462     3114
## 7464     3527
## 7467     3717
## 7468     3745
## 7469     3751
## 7470     3793
## 7472     3968
## 7474     4016
## 7475     4022
## 7476     4226
## 7477     4270
## 7479     4369
## 7480     4446
## 7481     4720
## 7483     4886
## 7484     4902
## 7486     4975
## 7492     5225
## 7493     5349
## 7494     5459
## 7495     5502
## 7496     5570
## 7499     5679
## 7502     5903
## 7507     6214
## 7508     6223
## 7509     6242
## 7510     6283
## 7511     6291
## 7513     6365
## 7517     6711
## 7518     6857
## 7519     6890
## 7520     6934
## 7521     6953
## 7523     7147
## 7525     7235
## 7528     7360
## 7530     7373
## 7531     7382
## 7534     8157
## 7535     8360
## 7536     8376
## 7539     8645
## 7543     8906
## 7544     8907
## 7546     8957
## 7547     8961
## 7548     8965
## 7552    27523
## 7553    27660
## 7555    27722
## 7557    27773
## 7558    27800
## 7559    27801
## 7560    27838
## 7562    27850
## 7564    30793
## 7569    31878
## 7570    32031
## 7571    32554
## 7575    33166
## 7576    33615
## 7577    33679
## 7578    34323
## 7579    34405
## 7580    36276
## 7581    36535
## 7582    37729
## 7583    37830
## 7584    38038
## 7586    41569
## 7587    41769
## 7588    42723
## 7589    44022
## 7590    44191
## 7591    44397
## 7594    44828
## 7595    44974
## 7598    45720
## 7600    46578
## 7601    46948
## 7602    46976
## 7603    47099
## 7604    47124
## 7608    48043
## 7610    48385
## 7612    48414
## 7613    48774
## 7614    48780
## 7615    48982
## 7617    49278
## 7618    50583
## 7620    50872
## 7621    51255
## 7622    51540
## 7624    52281
## 7625    52287
## 7627    52328
## 7628    52458
## 7629    52722
## 7630    53121
## 7631    53326
## 7632    53460
## 7633    53519
## 7636    53996
## 7637    54272
## 7638    54503
## 7644    55768
## 7646    55908
## 7647    55995
## 7648    56069
## 7649    56095
## 7650    56145
## 7651    56174
## 7653    56367
## 7655    56757
## 7656    56782
## 7658    57274
## 7660    57453
## 7662    57640
## 7664    57980
## 7665    58299
## 7666    58347
## 7667    58554
## 7670    59141
## 7674    59784
## 7676    60126
## 7677    60161
## 7679    60684
## 7680    60763
## 7682    61323
## 7684    62250
## 7685    62956
## 7686    62999
## 7687    63082
## 7688    63131
## 7689    63808
## 7690    63859
## 7693    64957
## 7694    64969
## 7695    64983
## 7698    65261
## 7700    66097
## 7701    66371
## 7702    67197
## 7704    67408
## 7705    67734
## 7708    68358
## 7709    68945
## 7712    69526
## 7713    69644
## 7714    69712
## 7721    71057
## 7722    71264
## 7723    71282
## 7726    71468
## 7727    71520
## 7728    71535
## 7729    71579
## 7731    72104
## 7732    72209
## 7733    72393
## 7734    72731
## 7735    72741
## 7738    73268
## 7739    73321
## 7740    73392
## 7741    73664
## 7743    74228
## 7745    74789
## 7748    76251
## 7750    77427
## 7751    77561
## 7757    79357
## 7759    79868
## 7761    80586
## 7762    80831
## 7763    80862
## 7765    81018
## 7766    81562
## 7767    81564
## 7769    81845
## 7770    81847
## 7771    82461
## 7772    82667
## 7773    83132
## 7774    83134
## 7775    83803
## 7778    84772
## 7781    85412
## 7783    85510
## 7786    85788
## 7787    85796
## 7789    86332
## 7790    86347
## 7791    86721
## 7794    87306
## 7795    87430
## 7796    87520
## 7797    88140
## 7798    88744
## 7799    89745
## 7800    89837
## 7801    90469
## 7802    90531
## 7803    90647
## 7804    90746
## 7805    91414
## 7806    91529
## 7807    91542
## 7808    92058
## 7809    92420
## 7810    93272
## 7811    93838
## 7812    93840
## 7815    95375
## 7816    95510
## 7817    95543
## 7819    95875
## 7820    96281
## 7821    96606
## 7822    96610
## 7825    97188
## 7826    97225
## 7828    97913
## 7829    97921
## 7830    97938
## 7832    98056
## 7833    98243
## 7838   101142
## 7839   102125
## 7841   103042
## 7842   103228
## 7843   103249
## 7844   103253
## 7845   103299
## 7846   103335
## 7847   103688
## 7848   104841
## 7849   106002
## 7850   106072
## 7851   106204
## 7853   106696
## 7854   107406
## 7855   107769
## 7856   107953
## 7857   108190
## 7858   108945
## 7859   109487
## 7860   109578
## 7861   109673
## 7862   109846
## 7863   109848
## 7864   109850
## 7865   110102
## 7866   110127
## 7867   110501
## 7868   110553
## 7869   110591
## 7870   110655
## 7871   110730
## 7872   111362
## 7873   111364
## 7874   111659
## 7876   112175
## 7877   112370
## 7878   112515
## 7879   112623
## 7880   112852
## 7881   113741
## 7882   114180
## 7883   114935
## 7884   115149
## 7885   115534
## 7886   115617
## 7887   115624
## 7888   118696
## 7890       60
## 7892      173
## 7893      258
## 7894      303
## 7895      329
## 7897      421
## 7899      524
## 7900      590
## 7901      592
## 7903      674
## 7904      688
## 7905      733
## 7913      952
## 7916     1017
## 7920     1129
## 7926     1210
## 7933     1374
## 7936     1391
## 7937     1580
## 7938     1676
## 7940     2013
## 7941     2054
## 7942     2088
## 7943     2094
## 7944     2105
## 7949     2366
## 7950     2402
## 7952     2414
## 7955     2524
## 7956     2537
## 7958     2669
## 7959     2748
## 7960     2815
## 7961     2816
## 7962     2817
## 7963     2871
## 7964     2941
## 7969     3066
## 7971     3247
## 7972     3269
## 7974     3412
## 7976     3441
## 7977     3461
## 7978     3519
## 7982     3836
## 7983     3927
## 7985     4042
## 7989       21
## 7990       39
## 7991       47
## 7992       95
## 7994      150
## 7995      160
## 7998      185
## 7999      208
## 8000      231
## 8001      253
## 8002      282
## 8005      315
## 8006      316
## 8007      337
## 8009      344
## 8010      349
## 8015      377
## 8016      380
## 8017      420
## 8018      434
## 8020      442
## 8021      454
## 8022      457
## 8024      509
## 8026      539
## 8027      553
## 8028      587
## 8030      590
## 8031      597
## 8033      786
## 8035     1636
## 8036     1888
## 8040     2369
## 8041     2396
## 8047     2701
## 8050     2724
## 8051     2734
## 8056     2840
## 8066      365
## 8067      461
## 8072     1639
## 8074     1969
## 8075     2338
## 8077     2408
## 8078     2806
## 8082     3793
## 8085     3987
## 8088     4228
## 8092     5222
## 8093     5296
## 8101     6058
## 8104     6539
## 8105     6776
## 8111     8781
## 8112     8918
## 8114     8983
## 8117    30825
## 8119    37727
## 8120    38886
## 8123    41571
## 8126    45447
## 8127    50872
## 8128    51094
## 8132    60950
## 8135      238
## 8136      392
## 8137      420
## 8138      421
## 8139      484
## 8142     1370
## 8143     1580
## 8146     1911
## 8148     1995
## 8149     2002
## 8150     2093
## 8152     2368
## 8153     2394
## 8155     2412
## 8160     2700
## 8161     2709
## 8162     2710
## 8163     2716
## 8164     2717
## 8165     2720
## 8166     2761
## 8168     2840
## 8169     2912
## 8171     2987
## 8172     2997
## 8174     3114
## 8175     3160
## 8184     1333
## 8187     2471
## 8188     2571
## 8189     2991
## 8191     3462
## 8194     4467
## 8200    26160
## 8202    30749
## 8203    33794
## 8207    48660
## 8209    48997
## 8211    55820
## 8216    69640
## 8220    79132
## 8221    91355
## 8223        1
## 8224        5
## 8226        7
## 8227        9
## 8230       74
## 8231       79
## 8232       95
## 8233      100
## 8235      112
## 8239      494
## 8240      608
## 8241      609
## 8245      707
## 8246      708
## 8250      736
## 8251      737
## 8252      761
## 8254      784
## 8257      802
## 8260     1073
## 8264       21
## 8272      147
## 8273      160
## 8277      231
## 8280      260
## 8281      292
## 8285      333
## 8287      342
## 8291      442
## 8300      673
## 8301      750
## 8307      924
## 8309      942
## 8316     1094
## 8319     1120
## 8321     1172
## 8323     1196
## 8331     1210
## 8337     1230
## 8339     1240
## 8340     1244
## 8341     1247
## 8347     1263
## 8356     1304
## 8357     1307
## 8367     1676
## 8372     1784
## 8376     1952
## 8380     1958
## 8381     1961
## 8383     2000
## 8386     2011
## 8388     2042
## 8391     2072
## 8392     2082
## 8396     2194
## 8398     2253
## 8401     2324
## 8407     2572
## 8412     2716
## 8422     2947
## 8423     2951
## 8427     3039
## 8432     3098
## 8433     3104
## 8435     3152
## 8437     3210
## 8439     3255
## 8440     3268
## 8442     3361
## 8446     3468
## 8448     3489
## 8450     3552
## 8452     3608
## 8460     3897
## 8461     3916
## 8462     3972
## 8463     3988
## 8469     4085
## 8471     4102
## 8473     4262
## 8476     4406
## 8481     4776
## 8482     4816
## 8485     4881
## 8500     5970
## 8502     6003
## 8504     6188
## 8505     6373
## 8507     6618
## 8512     6870
## 8513     6873
## 8517     6942
## 8518     6978
## 8519     7018
## 8520     7022
## 8521     7036
## 8533     8528
## 8536     8784
## 8539     8914
## 8542     8972
## 8544    26471
## 8548    32598
## 8549    33166
## 8553    33880
## 8557    37733
## 8566    44199
## 8570    47099
## 8580    51662
## 8584    53125
## 8590    55052
## 8591    55118
## 8592    55247
## 8593    55765
## 8596    56174
## 8601    57532
## 8603    58025
## 8606    59315
## 8607    59369
## 8608    60684
## 8614    63113
## 8617    64983
## 8625    69306
## 8637    72720
## 8657    83086
## 8664    86911
## 8665    87232
## 8667    87522
## 8668    87869
## 8671    88810
## 8672    88812
## 8680    91529
## 8682    93270
## 8691    95441
## 8694    96110
## 8700    97836
## 8702    97921
## 8703    97923
## 8706    99117
## 8708    99917
## 8711   101577
## 8718   103688
## 8722   105715
## 8724   106062
## 8729   106916
## 8731   107141
## 8734   108156
## 8737   111362
## 8738   111617
## 8744   112556
## 8745   112852
## 8747   113453
## 8748   113705
## 8751   114074
## 8757   122886
## 8761   127206
## 8766   134170
## 8768   136864
## 8772   140715
## 8777   148626
## 8790      164
## 8796      350
## 8797      356
## 8809      592
## 8812      648
## 8818     1007
## 8828     1091
## 8829     1092
## 8836     1128
## 8837     1129
## 8849     1200
## 8850     1208
## 8851     1214
## 8859     1240
## 8868     1270
## 8869     1272
## 8870     1275
## 8873     1288
## 8880     1323
## 8881     1326
## 8895     1422
## 8898     1587
## 8902     1625
## 8909     1721
## 8910     1732
## 8911     1754
## 8914     1909
## 8916     1917
## 8917     1918
## 8930     1967
## 8932     1974
## 8933     1975
## 8934     1977
## 8935     1978
## 8936     1979
## 8937     1981
## 8939     1983
## 8940     1984
## 8941     1987
## 8943     1995
## 8944     1996
## 8948     2003
## 8949     2005
## 8951     2009
## 8954     2027
## 8957     2044
## 8958     2054
## 8960     2088
## 8961     2097
## 8965     2111
## 8968     2118
## 8969     2121
## 8970     2122
## 8973     2143
## 8974     2144
## 8975     2153
## 8976     2161
## 8977     2163
## 8987     2300
## 8988     2301
## 8993       19
## 8995      344
## 8996      410
## 8997      415
## 9000      909
## 9002      940
## 9003      952
## 9006      999
## 9007     1007
## 9010     1127
## 9015     1230
## 9017     1320
## 9021     1499
## 9022     1517
## 9025     1784
## 9028     2015
## 9029     2016
## 9030     2072
## 9031     2085
## 9032     2124
## 9034     2153
## 9039     2475
## 9041     2520
## 9042     2522
## 9043     2551
## 9044     2683
## 9048     2817
## 9049     2827
## 9052     3153
## 9058     3535
## 9060     3649
## 9061     3672
## 9064     3710
## 9065       11
## 9068      111
## 9070      223
## 9071      231
## 9072      292
## 9075      318
## 9076      367
## 9077      380
## 9078      410
## 9083      586
## 9084      590
## 9085      593
## 9090      919
## 9093     1193
## 9094     1213
## 9096     1356
## 9098     1722
## 9099     1923
## 9100     1961
## 9101     1968
## 9102     2028
## 9103     2105
## 9104     2161
## 9106     2193
## 9107     2194
## 9108     2302
## 9110     2396
## 9111     2470
## 9112     2542
## 9114     2640
## 9115     2671
## 9116     2683
## 9118     2716
## 9119     2763
## 9120     2797
## 9123     2997
## 9126     3623
## 9128     3911
## 9129     3948
## 9130     4306
## 9132     5060
## 9133     5349
## 9140    26695
## 9141    33794
## 9144       21
## 9147      173
## 9152      653
## 9154      745
## 9162     1380
## 9163     1485
## 9168     2115
## 9174     3018
## 9175     3160
## 9177     3726
## 9184     5952
## 9189     6957
## 9195    27801
## 9198        2
## 9199       34
## 9200       48
## 9203      158
## 9205      317
## 9206      364
## 9208      551
## 9209      585
## 9210      586
## 9212      588
## 9214      593
## 9215      594
## 9216      595
## 9217      596
## 9218      616
## 9219      661
## 9220      673
## 9221      801
## 9222      919
## 9223      953
## 9224     1010
## 9225     1022
## 9226     1028
## 9227     1029
## 9229     1059
## 9230     1073
## 9231     1097
## 9234     1207
## 9235     1220
## 9236     1367
## 9237     1380
## 9239     1580
## 9240     1777
## 9242     1954
## 9244     2018
## 9245     2054
## 9246     2078
## 9247     2080
## 9248     2081
## 9249     2085
## 9250     2087
## 9251     2123
## 9252     2144
## 9253     2161
## 9254     2174
## 9255     2273
## 9257     2355
## 9258     2384
## 9262     2716
## 9263     2761
## 9264     2804
## 9267     2953
## 9268     3114
## 9269     3668
## 9270     3751
## 9271     3988
## 9272     4016
## 9273     4025
## 9274     4232
## 9275     4246
## 9276     4306
## 9278     4701
## 9279     4886
## 9280     4890
## 9281     4896
## 9283     5299
## 9285     5444
## 9286     5449
## 9287     5459
## 9288     5481
## 9290     5693
## 9291     5816
## 9294     6218
## 9296     6373
## 9297     6377
## 9298     6539
## 9299     6743
## 9301     6936
## 9304     7161
## 9306     8360
## 9307     8368
## 9308     8376
## 9309     8464
## 9310     8544
## 9312     8970
## 9314    27706
## 9315    30793
## 9316    33004
## 9317    33615
## 9318    33660
## 9321    34150
## 9323    40629
## 9325    41566
## 9328    45431
## 9329    45517
## 9331    45722
## 9335    46976
## 9336    47610
## 9341    53121
## 9342    53125
## 9344    53464
## 9346    54001
## 9347    54272
## 9349    55830
## 9350    56030
## 9354    56757
## 9355    57640
## 9357    58025
## 9362    60074
## 9366      318
## 9378    49530
## 9383    69481
## 9389    91535
## 9390    92259
## 9392   101864
## 9393   101947
## 9401   112183
## 9404   114662
## 9405   115149
## 9406   115569
## 9409   120637
## 9411   122900
## 9418       11
## 9420       58
## 9421      112
## 9423      151
## 9424      246
## 9426      315
## 9428      380
## 9430      457
## 9432      515
## 9433      520
## 9437      832
## 9438     1015
## 9441     1105
## 9446     1230
## 9447     1234
## 9450     1307
## 9452     1372
## 9454     1376
## 9456     1474
## 9457     1513
## 9462     1641
## 9465     1961
## 9468     2116
## 9469     2174
## 9471     2302
## 9478     2762
## 9489     3408
## 9493     3751
## 9499     4022
## 9509     6541
## 9513     7318
## 9515      150
## 9517      165
## 9518      168
## 9519      231
## 9525      344
## 9534      595
## 9538      920
## 9543     1210
## 9546     1238
## 9548     1270
## 9550     1288
## 9555     1956
## 9563       22
## 9564      105
## 9583     1200
## 9588     1275
## 9589     1573
## 9590     1580
## 9592     1732
## 9599     2391
## 9600     2455
## 9601     2456
## 9602     2571
## 9607     3527
## 9610     3957
## 9611        1
## 9613       12
## 9619       42
## 9622       62
## 9624       88
## 9625       94
## 9626       95
## 9627      104
## 9628      107
## 9630      112
## 9631      141
## 9634      238
## 9637      266
## 9645      294
## 9648      316
## 9651      350
## 9654      362
## 9656      368
## 9660      434
## 9662      454
## 9664      474
## 9671      524
## 9676      587
## 9679      592
## 9683      609
## 9687      628
## 9688      631
## 9689      637
## 9690      648
## 9692      653
## 9693      664
## 9694      694
## 9696      708
## 9698      711
## 9699      719
## 9700      724
## 9703      743
## 9705      784
## 9706      788
## 9707      849
## 9708      852
## 9710     1035
## 9715        2
## 9716       11
## 9718      260
## 9719      317
## 9722      367
## 9726      468
## 9729      527
## 9730      539
## 9731      541
## 9732      586
## 9734      590
## 9735      592
## 9736      597
## 9737      778
## 9738      780
## 9743      933
## 9744      934
## 9747     1073
## 9749     1185
## 9751     1197
## 9753     1200
## 9763     1409
## 9766     1721
## 9771     2384
## 9772     2420
## 9774     2469
## 9776     2746
## 9778     2779
## 9779     2791
## 9780     2797
## 9782     2968
## 9783     3072
## 9784     3148
## 9785     3247
## 9787     3578
## 9789     3755
## 9792     4886
## 9793     4963
## 9794     4992
## 9797     5218
## 9798     5299
## 9800     5418
## 9804     5995
## 9805     6218
## 9806     6297
## 9807     6373
## 9808     6377
## 9810     6863
## 9811     6874
## 9812     7147
## 9814     7361
## 9816     8529
## 9819     8865
## 9822    26025
## 9824    30707
## 9825    30749
## 9826    30812
## 9828    31658
## 9830    33004
## 9831    45431
## 9832    45517
## 9833    45668
## 9834    46976
## 9835    54259
## 9838        2
## 9845      158
## 9848      296
## 9854      374
## 9855      410
## 9856      500
## 9861      596
## 9863      788
## 9867     1028
## 9873     1513
## 9877     1954
## 9882     2054
## 9883     2059
## 9884     2136
## 9889     2379
## 9895     3668
## 9897     3821
## 9898     3948
## 9899     3977
## 9900     4254
## 9902     4878
## 9907     5349
## 9915    58047
## 9921        7
## 9922        9
## 9923       12
## 9924       14
## 9935       65
## 9941       88
## 9945      104
## 9951      494
## 9957      637
## 9958      640
## 9959      648
## 9962      663
## 9964      671
## 9965      673
## 9972      724
## 9975      737
## 9976      743
## 9978      748
## 9979      761
## 9982      784
## 9989      810
## 10002     589
## 10014    3422
## 10021    3963
## 10024       1
## 10025       2
## 10026      47
## 10028     110
## 10029     150
## 10030     260
## 10034     480
## 10037     593
## 10041     912
## 10043    1036
## 10044    1196
## 10045    1200
## 10051    1246
## 10053    1270
## 10054    1682
## 10055    1961
## 10056    2006
## 10057    2028
## 10059    2395
## 10060    2571
## 10061    2628
## 10062    2692
## 10065    2918
## 10067    3114
## 10068    3481
## 10069    3578
## 10070    3717
## 10071    3753
## 10072    3793
## 10073    3897
## 10074    3949
## 10075    3996
## 10076    4011
## 10077    4018
## 10079    4025
## 10080    4027
## 10082    4246
## 10084    4306
## 10085    4447
## 10086    4720
## 10088    4886
## 10089    4963
## 10090    4973
## 10091    4979
## 10092    4993
## 10093    4995
## 10094    5218
## 10095    5349
## 10096    5378
## 10097    5418
## 10098    5445
## 10099    5679
## 10100    5903
## 10101    5952
## 10102    5989
## 10103    5995
## 10104    6333
## 10105    6377
## 10106    6502
## 10107    6539
## 10109    6863
## 10110    6874
## 10111    6934
## 10112    7143
## 10113    7147
## 10114    7153
## 10115    7254
## 10116    7361
## 10117    7438
## 10118    7458
## 10119    7502
## 10120    8644
## 10121    8874
## 10122    8950
## 10123    8961
## 10124   31696
## 10125   33794
## 10126   36529
## 10127   41566
## 10128   44191
## 10129   44195
## 10130   45447
## 10131   46578
## 10132   47610
## 10133   48385
## 10134   48394
## 10135   48516
## 10136   49272
## 10138   51255
## 10139   51540
## 10140   51662
## 10141   52281
## 10142   52722
## 10143   52973
## 10144   53000
## 10145   53125
## 10146   53322
## 10147   53519
## 10148   53972
## 10149   53996
## 10150   54001
## 10151   54259
## 10152   54272
## 10153   54286
## 10154   54503
## 10155   54997
## 10156   55247
## 10157   55269
## 10158   55765
## 10160   56174
## 10162   56757
## 10164   58559
## 10165   59315
## 10167   61323
## 10168   64957
## 10169   68157
## 10170   68319
## 10171   68358
## 10173   69122
## 10174   72998
## 10175   74458
## 10176   79132
## 10177   79702
## 10178   81562
## 10179   81591
## 10180   82459
## 10181   86882
## 10182   88140
## 10183   88744
## 10184   89492
## 10185   89745
## 10186   91529
## 10189   97752
## 10190   97938
## 10191   99114
## 10192  102445
## 10193  103249
## 10194  104374
## 10195  104841
## 10196  105844
## 10197  106100
## 10199  109487
## 10200  112552
## 10201  112852
## 10202  114662
## 10203  115713
## 10204  116797
## 10205  117176
## 10207  122886
## 10208  122904
## 10209  122920
## 10210  134130
## 10211  136864
## 10212  139385
## 10213  142488
## 10214  156607
## 10216       2
## 10218      10
## 10219      15
## 10221      19
## 10222      21
## 10224      31
## 10226      34
## 10229      44
## 10231      48
## 10233      60
## 10234      63
## 10235      65
## 10237      70
## 10238      98
## 10239     101
## 10240     104
## 10241     107
## 10243     111
## 10244     112
## 10245     145
## 10247     150
## 10248     153
## 10249     158
## 10250     160
## 10251     163
## 10252     165
## 10253     168
## 10254     169
## 10255     172
## 10256     173
## 10258     177
## 10259     180
## 10260     185
## 10261     193
## 10263     208
## 10267     231
## 10270     239
## 10273     253
## 10274     256
## 10275     258
## 10278     267
## 10279     288
## 10280     292
## 10284     316
## 10288     327
## 10289     333
## 10290     337
## 10291     338
## 10292     344
## 10293     349
## 10294     352
## 10298     367
## 10299     368
## 10300     374
## 10301     377
## 10302     380
## 10303     407
## 10304     409
## 10305     410
## 10306     413
## 10308     431
## 10309     435
## 10310     441
## 10311     442
## 10314     466
## 10316     474
## 10318     481
## 10320     485
## 10322     497
## 10323     500
## 10324     502
## 10325     507
## 10327     510
## 10328     514
## 10330     522
## 10333     551
## 10336     575
## 10337     585
## 10338     586
## 10340     589
## 10344     594
## 10346     596
## 10347     597
## 10349     610
## 10351     631
## 10352     648
## 10353     653
## 10354     673
## 10355     694
## 10356     704
## 10357     708
## 10358     719
## 10359     733
## 10361     736
## 10362     737
## 10364     742
## 10366     748
## 10367     761
## 10369     780
## 10370     784
## 10371     785
## 10372     786
## 10373     788
## 10374     799
## 10375     802
## 10376     832
## 10377     849
## 10379     880
## 10383     924
## 10386    1015
## 10387    1020
## 10388    1022
## 10389    1025
## 10390    1027
## 10391    1029
## 10392    1032
## 10393    1033
## 10395    1049
## 10396    1059
## 10400    1089
## 10402    1093
## 10403    1094
## 10405    1101
## 10406    1120
## 10409    1136
## 10412    1186
## 10430    1220
## 10433    1225
## 10437    1242
## 10439    1246
## 10444    1259
## 10454    1285
## 10455    1288
## 10458    1298
## 10459    1299
## 10460    1302
## 10461    1320
## 10462    1321
## 10463    1339
## 10464    1342
## 10467    1347
## 10468    1350
## 10469    1356
## 10471    1359
## 10472    1367
## 10473    1370
## 10474    1372
## 10476    1377
## 10479    1391
## 10483    1405
## 10485    1408
## 10486    1438
## 10487    1456
## 10488    1464
## 10490    1479
## 10491    1485
## 10492    1499
## 10494    1515
## 10495    1517
## 10496    1527
## 10497    1544
## 10498    1552
## 10499    1562
## 10501    1573
## 10502    1580
## 10503    1584
## 10506    1591
## 10507    1595
## 10508    1597
## 10509    1599
## 10510    1603
## 10511    1608
## 10514    1639
## 10515    1644
## 10516    1645
## 10517    1653
## 10519    1674
## 10520    1676
## 10521    1681
## 10523    1690
## 10525    1707
## 10526    1721
## 10527    1729
## 10530    1752
## 10532    1760
## 10533    1762
## 10534    1777
## 10535    1779
## 10537    1785
## 10538    1792
## 10539    1826
## 10540    1840
## 10541    1858
## 10542    1862
## 10543    1876
## 10544    1882
## 10545    1884
## 10546    1909
## 10547    1911
## 10550    1917
## 10551    1920
## 10552    1923
## 10553    1953
## 10556    1965
## 10559    1974
## 10561    1991
## 10568    2006
## 10571    2012
## 10573    2021
## 10574    2023
## 10576    2033
## 10577    2052
## 10578    2054
## 10579    2058
## 10580    2060
## 10583    2080
## 10584    2081
## 10585    2082
## 10586    2087
## 10587    2089
## 10588    2090
## 10590    2096
## 10591    2105
## 10594    2124
## 10599    2142
## 10600    2143
## 10602    2148
## 10603    2150
## 10604    2159
## 10605    2161
## 10606    2164
## 10607    2167
## 10611    2195
## 10614    2248
## 10616    2273
## 10620    2291
## 10621    2294
## 10622    2302
## 10624    2315
## 10626    2321
## 10627    2324
## 10628    2327
## 10630    2335
## 10631    2340
## 10632    2353
## 10633    2355
## 10635    2378
## 10636    2387
## 10637    2391
## 10638    2394
## 10641    2402
## 10642    2403
## 10643    2404
## 10644    2406
## 10646    2410
## 10647    2411
## 10648    2412
## 10651    2422
## 10652    2424
## 10654    2428
## 10655    2429
## 10657    2451
## 10660    2460
## 10662    2470
## 10663    2490
## 10664    2495
## 10666    2528
## 10668    2541
## 10670    2551
## 10671    2555
## 10674    2572
## 10676    2582
## 10679    2605
## 10680    2606
## 10681    2617
## 10682    2628
## 10683    2657
## 10684    2671
## 10685    2683
## 10688    2694
## 10689    2699
## 10690    2700
## 10691    2701
## 10692    2706
## 10694    2710
## 10696    2713
## 10698    2717
## 10699    2720
## 10700    2722
## 10701    2723
## 10702    2724
## 10704    2734
## 10705    2746
## 10706    2761
## 10708    2770
## 10709    2791
## 10710    2797
## 10711    2798
## 10713    2808
## 10716    2860
## 10717    2862
## 10720    2872
## 10721    2879
## 10722    2890
## 10723    2900
## 10724    2901
## 10725    2915
## 10734    2953
## 10736    2968
## 10737    2974
## 10739    2987
## 10742    3013
## 10744    3018
## 10747    3033
## 10750    3052
## 10751    3070
## 10752    3081
## 10753    3082
## 10754    3101
## 10757    3113
## 10759    3146
## 10760    3147
## 10762    3160
## 10763    3173
## 10765    3175
## 10767    3210
## 10770    3253
## 10771    3254
## 10772    3255
## 10773    3256
## 10776    3267
## 10777    3273
## 10778    3275
## 10780    3300
## 10782    3360
## 10783    3361
## 10787    3426
## 10788    3438
## 10789    3439
## 10790    3440
## 10791    3448
## 10792    3471
## 10796    3489
## 10798    3527
## 10801    3554
## 10802    3555
## 10803    3573
## 10804    3574
## 10807    3593
## 10808    3617
## 10809    3623
## 10810    3671
## 10812    3687
## 10813    3688
## 10816    3702
## 10817    3703
## 10818    3704
## 10820    3717
## 10821    3727
## 10824    3740
## 10825    3745
## 10826    3751
## 10827    3752
## 10828    3753
## 10829    3755
## 10831    3785
## 10832    3793
## 10833    3821
## 10834    3826
## 10836    3852
## 10837    3861
## 10838    3882
## 10840    3916
## 10841    3917
## 10844    3950
## 10845    3955
## 10846    3961
## 10847    3962
## 10848    3967
## 10851    3977
## 10852    3979
## 10853    3986
## 10854    3994
## 10855    3996
## 10856    4002
## 10861    4015
## 10862    4018
## 10863    4019
## 10864    4022
## 10865    4025
## 10868    4054
## 10869    4069
## 10870    4085
## 10873    4128
## 10874    4135
## 10875    4148
## 10876    4214
## 10877    4223
## 10879    4232
## 10881    4246
## 10882    4255
## 10884    4270
## 10886    4299
## 10888    4308
## 10889    4310
## 10890    4340
## 10891    4343
## 10892    4344
## 10895    4367
## 10897    4370
## 10898    4378
## 10899    4388
## 10900    4415
## 10901    4437
## 10903    4441
## 10906    4447
## 10907    4448
## 10908    4454
## 10910    4488
## 10912    4533
## 10914    4571
## 10916    4614
## 10917    4618
## 10918    4619
## 10919    4621
## 10921    4638
## 10924    4643
## 10925    4697
## 10926    4701
## 10928    4718
## 10929    4720
## 10930    4728
## 10931    4734
## 10932    4744
## 10933    4775
## 10934    4776
## 10936    4816
## 10937    4823
## 10939    4848
## 10941    4865
## 10945    4886
## 10946    4890
## 10947    4896
## 10948    4899
## 10949    4915
## 10950    4963
## 10951    4974
## 10952    4975
## 10954    4980
## 10955    4987
## 10956    4989
## 10961    5025
## 10962    5040
## 10963    5055
## 10965    5094
## 10967    5110
## 10968    5139
## 10970    5151
## 10971    5152
## 10974    5205
## 10975    5210
## 10976    5218
## 10977    5219
## 10979    5266
## 10980    5283
## 10981    5294
## 10982    5299
## 10983    5313
## 10986    5378
## 10987    5388
## 10988    5401
## 10989    5418
## 10990    5445
## 10991    5449
## 10992    5452
## 10993    5459
## 10994    5463
## 10995    5464
## 10996    5481
## 10997    5502
## 10998    5504
## 10999    5507
## 11000    5524
## 11002    5541
## 11003    5572
## 11004    5574
## 11005    5585
## 11006    5617
## 11008    5621
## 11009    5630
## 11013    5679
## 11015    5691
## 11016    5734
## 11017    5735
## 11018    5736
## 11019    5737
## 11021    5810
## 11022    5816
## 11023    5882
## 11026    5942
## 11027    5943
## 11030    5955
## 11031    5956
## 11034    5991
## 11037    6155
## 11038    6156
## 11039    6157
## 11040    6188
## 11041    6212
## 11042    6213
## 11043    6218
## 11045    6281
## 11046    6287
## 11047    6298
## 11048    6303
## 11050    6333
## 11051    6338
## 11052    6365
## 11053    6373
## 11055    6378
## 11056    6379
## 11057    6383
## 11059    6502
## 11060    6503
## 11061    6534
## 11062    6537
## 11064    6548
## 11066    6564
## 11067    6565
## 11068    6566
## 11069    6582
## 11070    6586
## 11071    6593
## 11072    6595
## 11073    6602
## 11074    6615
## 11076    6664
## 11077    6695
## 11078    6707
## 11082    6754
## 11084    6774
## 11087    6807
## 11089    6820
## 11090    6857
## 11091    6863
## 11094    6887
## 11095    6888
## 11096    6902
## 11097    6934
## 11098    6936
## 11099    6947
## 11100    6952
## 11101    6953
## 11102    6957
## 11103    6977
## 11107    7036
## 11108    7045
## 11109    7046
## 11113    7117
## 11115    7143
## 11116    7147
## 11118    7161
## 11120    7254
## 11122    7293
## 11123    7308
## 11125    7318
## 11126    7324
## 11127    7325
## 11128    7346
## 11129    7360
## 11131    7367
## 11132    7373
## 11133    7387
## 11134    7411
## 11137    7445
## 11138    7454
## 11139    7458
## 11143    7701
## 11144    7743
## 11146    7842
## 11148    7845
## 11149    7846
## 11150    7915
## 11152    7984
## 11153    7987
## 11156    8360
## 11157    8361
## 11158    8363
## 11159    8368
## 11160    8371
## 11161    8372
## 11162    8373
## 11163    8376
## 11164    8507
## 11165    8526
## 11166    8528
## 11168    8531
## 11169    8622
## 11170    8636
## 11172    8640
## 11174    8644
## 11175    8665
## 11176    8783
## 11178    8798
## 11179    8807
## 11180    8810
## 11181    8811
## 11182    8854
## 11183    8859
## 11184    8861
## 11188    8914
## 11189    8917
## 11190    8928
## 11191    8947
## 11192    8949
## 11195    8961
## 11196    8972
## 11197    8984
## 11200   26403
## 11201   26480
## 11203   26585
## 11204   26603
## 11206   26684
## 11208   26729
## 11211   27002
## 11216   27369
## 11217   27478
## 11220   27611
## 11223   27704
## 11224   27706
## 11225   27772
## 11227   27778
## 11228   27793
## 11229   27800
## 11231   27808
## 11233   27904
## 11237   30812
## 11238   30820
## 11239   30825
## 11241   31225
## 11242   31290
## 11243   31422
## 11244   31431
## 11246   31685
## 11247   31696
## 11248   31878
## 11249   32352
## 11252   32596
## 11253   33004
## 11255   33164
## 11258   33493
## 11259   33679
## 11261   33834
## 11262   34048
## 11263   34150
## 11264   34162
## 11265   34319
## 11266   34405
## 11267   34437
## 11268   34530
## 11269   35836
## 11270   36519
## 11271   36529
## 11272   36708
## 11273   37386
## 11276   38061
## 11277   39381
## 11278   39446
## 11279   40278
## 11280   40574
## 11281   40629
## 11283   40815
## 11284   41285
## 11285   41566
## 11286   41569
## 11288   42011
## 11289   42723
## 11290   42725
## 11291   43838
## 11292   43919
## 11294   43936
## 11296   44195
## 11299   44397
## 11302   44972
## 11304   45183
## 11305   45186
## 11306   45447
## 11308   45666
## 11309   45672
## 11310   45722
## 11311   45726
## 11312   45728
## 11314   46335
## 11315   46337
## 11316   46578
## 11317   46865
## 11318   46965
## 11319   46970
## 11320   46972
## 11322   47099
## 11323   47200
## 11325   47640
## 11326   47815
## 11328   48043
## 11329   48304
## 11330   48385
## 11331   48394
## 11333   48591
## 11335   48744
## 11338   48877
## 11340   49278
## 11341   49526
## 11342   49528
## 11343   49530
## 11344   49649
## 11345   49651
## 11348   50651
## 11349   50794
## 11350   50798
## 11351   50806
## 11352   50872
## 11353   51255
## 11356   51662
## 11358   51937
## 11359   52245
## 11360   52281
## 11361   52328
## 11362   52458
## 11363   52462
## 11365   52722
## 11367   52973
## 11368   53000
## 11369   53121
## 11370   53125
## 11372   53322
## 11374   53519
## 11376   53972
## 11377   53996
## 11378   54001
## 11379   54190
## 11380   54272
## 11381   54286
## 11382   54290
## 11385   54648
## 11386   54745
## 11387   54995
## 11392   55232
## 11393   55245
## 11395   55269
## 11397   55577
## 11399   55765
## 11400   55805
## 11402   55830
## 11403   55995
## 11404   56003
## 11406   56174
## 11407   56251
## 11408   56367
## 11409   56587
## 11410   56757
## 11411   56775
## 11413   56801
## 11414   57368
## 11415   57528
## 11416   57532
## 11417   57640
## 11419   58025
## 11420   58146
## 11421   58293
## 11422   58295
## 11424   58315
## 11427   58627
## 11428   58803
## 11429   58975
## 11430   58998
## 11431   59014
## 11432   59022
## 11433   59315
## 11434   59369
## 11435   59387
## 11436   59615
## 11437   59784
## 11438   59900
## 11440   60037
## 11441   60069
## 11442   60072
## 11443   60074
## 11444   60126
## 11447   60487
## 11449   60684
## 11450   60753
## 11452   61024
## 11453   61132
## 11454   61248
## 11455   61323
## 11456   61348
## 11457   61394
## 11458   62394
## 11459   62434
## 11461   62912
## 11462   62956
## 11463   63072
## 11465   63113
## 11466   63131
## 11467   63540
## 11468   63826
## 11470   63992
## 11472   64508
## 11478   64983
## 11480   65310
## 11482   65982
## 11483   66066
## 11485   66297
## 11486   66335
## 11488   67252
## 11490   67665
## 11491   67695
## 11492   67734
## 11493   67923
## 11498   68319
## 11499   68358
## 11500   68444
## 11501   68554
## 11502   68901
## 11503   68952
## 11505   68959
## 11506   68965
## 11507   69122
## 11508   69306
## 11510   69640
## 11511   69685
## 11512   69746
## 11514   69844
## 11515   70286
## 11517   70946
## 11518   71057
## 11521   71248
## 11522   71379
## 11526   71533
## 11528   71745
## 11529   71838
## 11531   72171
## 11533   72603
## 11538   73268
## 11539   73321
## 11544   74851
## 11545   74944
## 11547   75813
## 11548   76060
## 11549   76077
## 11552   76272
## 11553   77561
## 11554   77800
## 11555   77837
## 11556   77866
## 11557   78209
## 11558   78266
## 11559   78349
## 11560   78469
## 11562   78574
## 11563   78772
## 11565   79057
## 11568   79242
## 11569   79251
## 11572   79553
## 11573   79695
## 11575   79720
## 11576   79879
## 11577   80083
## 11582   80831
## 11583   80846
## 11584   81083
## 11585   81562
## 11588   81660
## 11592   82041
## 11597   83613
## 11599   84772
## 11605   85881
## 11607   86644
## 11612   87298
## 11614   87869
## 11617   88129
## 11618   88140
## 11620   88744
## 11621   89039
## 11623   89343
## 11624   89470
## 11627   89864
## 11628   90376
## 11629   90430
## 11630   90439
## 11632   91485
## 11637   91976
## 11638   92309
## 11640   93363
## 11641   93443
## 11643   93831
## 11647   94018
## 11650   94833
## 11654   95147
## 11655   95165
## 11656   95182
## 11658   95473
## 11662   95558
## 11663   95780
## 11664   95782
## 11665   95875
## 11666   95963
## 11669   96007
## 11671   96110
## 11672   96281
## 11673   96432
## 11674   96588
## 11676   96737
## 11681   97860
## 11682   97913
## 11684   97923
## 11686   98607
## 11690   99112
## 11693   99728
## 11698  101864
## 11699  102033
## 11703  102407
## 11705  102716
## 11707  103042
## 11709  103228
## 11710  103249
## 11711  103253
## 11712  103384
## 11713  103624
## 11714  103688
## 11715  103772
## 11719  105213
## 11721  106002
## 11724  106487
## 11725  106489
## 11726  106491
## 11729  106918
## 11731  107069
## 11732  107348
## 11734  107953
## 11735  107999
## 11736  108090
## 11737  108190
## 11740  108981
## 11744  109850
## 11745  109895
## 11746  110127
## 11749  110882
## 11750  111360
## 11752  111364
## 11753  111624
## 11754  111659
## 11756  111781
## 11759  112290
## 11760  112515
## 11763  112623
## 11764  112818
## 11767  113348
## 11768  113573
## 11770  114180
## 11772  114670
## 11775  115149
## 11779  115877
## 11780  115881
## 11781  116397
## 11783  116823
## 11784  117123
## 11786  117529
## 11787  118082
## 11788  118696
## 11789  119145
## 11790  120466
## 11791  121231
## 11795  122900
## 11797  122924
## 11798  126006
## 11799  127198
## 11801  130642
## 11802  130682
## 11803  133771
## 11805  135887
## 11806  137857
## 11809  139644
## 11810  140267
## 11812  141718
## 11815  148626
## 11816  152077
## 11817  152091
## 11819  156726
## 11821  159462
## 11822  159858
## 11823  161594
## 11826      16
## 11835     612
## 11838    1080
## 11839    1097
## 11849    1721
## 11851    1876
## 11854    1954
## 11861    2188
## 11866    2549
## 11870    2640
## 11874       1
## 11875       3
## 11880     316
## 11882     350
## 11885     368
## 11887     379
## 11888     442
## 11889     480
## 11890     509
## 11891     520
## 11895     592
## 11897     786
## 11898     800
## 11899     858
## 11900     880
## 11901     899
## 11908    1080
## 11909    1127
## 11911    1197
## 11913    1201
## 11914    1207
## 11915    1208
## 11918    1221
## 11919    1225
## 11920    1234
## 11921    1240
## 11925    1265
## 11931    1297
## 11932    1356
## 11933    1358
## 11934    1376
## 11935    1441
## 11936    1517
## 11937    1580
## 11940    1721
## 11941    1917
## 11942    1967
## 11943    1994
## 11944    2003
## 11945    2005
## 11947    2012
## 11948    2115
## 11949    2134
## 11951    2167
## 11952    2174
## 11954    2231
## 11957    2311
## 11958    2355
## 11959    2371
## 11961    2424
## 11965    2600
## 11967    2707
## 11968    2710
## 11969    2797
## 11971    2916
## 11972    2959
## 11973    2991
## 11975    3020
## 11977    3087
## 11978    3147
## 11979    3252
## 11981    3510
## 11983    3793
## 11984    3948
## 11986    4223
## 11988    4306
## 11989    4571
## 11994    4980
## 11996    5054
## 11997    5171
## 12001    6323
## 12002    6537
## 12007    7743
## 12011    8985
## 12012   27788
## 12018   44397
## 12020     303
## 12021     531
## 12025    1185
## 12026    1269
## 12029    2087
## 12032    3671
## 12034    3988
## 12037   49530
## 12038   54259
## 12040       6
## 12041      10
## 12043      34
## 12044      39
## 12046      62
## 12047      70
## 12048      76
## 12049      95
## 12050     110
## 12052     141
## 12053     161
## 12054     163
## 12055     165
## 12056     173
## 12057     185
## 12058     208
## 12060     231
## 12061     253
## 12063     288
## 12064     292
## 12066     296
## 12069     329
## 12070     339
## 12071     344
## 12072     349
## 12074     356
## 12075     364
## 12076     367
## 12077     377
## 12078     380
## 12079     413
## 12080     442
## 12081     457
## 12082     480
## 12083     500
## 12084     541
## 12086     586
## 12087     587
## 12088     588
## 12090     590
## 12091     592
## 12092     593
## 12093     595
## 12094     597
## 12095     608
## 12096     648
## 12097     720
## 12098     733
## 12099     736
## 12101     745
## 12103     780
## 12104     839
## 12105     849
## 12107     924
## 12108    1036
## 12110    1079
## 12112    1097
## 12115    1148
## 12122    1208
## 12124    1214
## 12126    1217
## 12128    1222
## 12129    1223
## 12131    1258
## 12134    1270
## 12135    1274
## 12136    1278
## 12140    1380
## 12141    1387
## 12142    1393
## 12145    1552
## 12146    1580
## 12147    1584
## 12148    1591
## 12150    1653
## 12152    1682
## 12153    1704
## 12154    1721
## 12155    1732
## 12156    1772
## 12157    1779
## 12158    1784
## 12159    1917
## 12160    1923
## 12161    1961
## 12163    1968
## 12164    2000
## 12165    2001
## 12168    2012
## 12169    2021
## 12170    2054
## 12171    2081
## 12179    2291
## 12181    2355
## 12182    2395
## 12183    2450
## 12185    2528
## 12186    2529
## 12187    2541
## 12190    2599
## 12192    2628
## 12193    2640
## 12194    2641
## 12195    2671
## 12198    2706
## 12199    2709
## 12200    2710
## 12204    2797
## 12205    2808
## 12206    2858
## 12207    2916
## 12211    2985
## 12212    2986
## 12213    2987
## 12218    3081
## 12219    3114
## 12221    3148
## 12222    3175
## 12225    3264
## 12228    3397
## 12229    3398
## 12230    3408
## 12231    3418
## 12233    3429
## 12234    3438
## 12235    3439
## 12238    3578
## 12239    3623
## 12243    3704
## 12244    3751
## 12245    3753
## 12247    3882
## 12248    3897
## 12249    3977
## 12251    3996
## 12253    4027
## 12254    4040
## 12255    4092
## 12256    4246
## 12257    4270
## 12258    4306
## 12259    4446
## 12260    4447
## 12263    4533
## 12265    4896
## 12266    4963
## 12267    4979
## 12268    4993
## 12269    5171
## 12271    5254
## 12273    5378
## 12274    5445
## 12275    5502
## 12278    5650
## 12279    5669
## 12281    5816
## 12283    6093
## 12284    6157
## 12285    6281
## 12286    6303
## 12287    6305
## 12288    6316
## 12291    6365
## 12292    6377
## 12293    6537
## 12296    6645
## 12297    6662
## 12301    6874
## 12302    6934
## 12304    7143
## 12306    7163
## 12311    7438
## 12313    7708
## 12320    8368
## 12322    8622
## 12324    8644
## 12327    8958
## 12329   26492
## 12330   26700
## 12331   27685
## 12333   31150
## 12334   31221
## 12336   31878
## 12338   33493
## 12340   34319
## 12342   36708
## 12345   38038
## 12346   40732
## 12349   45499
## 12351   47423
## 12353   53894
## 12354       2
## 12358      34
## 12362     110
## 12363     111
## 12365     150
## 12379     364
## 12381     480
## 12385     588
## 12392     788
## 12394     919
## 12395     924
## 12397    1089
## 12399    1097
## 12400    1136
## 12403    1206
## 12407    1214
## 12410    1265
## 12413    1320
## 12419    1376
## 12422    1517
## 12425    1580
## 12427    1586
## 12433    1682
## 12444    1923
## 12449    2028
## 12450    2107
## 12465    2657
## 12466    2683
## 12476    2995
## 12486    3504
## 12487    3556
## 12492    3755
## 12498    3967
## 12499    3977
## 12502    3994
## 12506    4015
## 12507    4018
## 12508    4022
## 12514    4306
## 12524    4744
## 12526    4896
## 12536    5463
## 12540    5784
## 12548    6377
## 12550    6537
## 12551    6539
## 12567    8368
## 12568    8464
## 12575    8947
## 12576    8972
## 12583   34048
## 12587   40815
## 12589   44191
## 12594   49272
## 12617       1
## 12618       2
## 12619       7
## 12620     150
## 12621     260
## 12622     344
## 12624     367
## 12625     468
## 12626     480
## 12627     519
## 12628     587
## 12629     588
## 12630     592
## 12631     648
## 12632     736
## 12633     778
## 12634     780
## 12635     924
## 12636    1097
## 12637    1101
## 12638    1196
## 12639    1210
## 12640    1291
## 12641    1517
## 12642    1580
## 12643    1721
## 12644    1917
## 12645    2013
## 12646    2150
## 12647    2422
## 12648    2571
## 12649    2628
## 12650    2640
## 12651    2641
## 12652    2683
## 12653    2918
## 12654    3478
## 12655    3578
## 12656    3697
## 12657    3702
## 12658    3793
## 12659    3864
## 12660    4306
## 12661    4886
## 12662    4993
## 12663    5349
## 12664    5952
## 12665    6539
## 12666    7153
## 12667   32031
## 12668   39292
## 12669   42738
## 12670   45081
## 12671   49530
## 12672       2
## 12675      10
## 12677      20
## 12682      46
## 12683      50
## 12685      89
## 12686      93
## 12687      95
## 12688     100
## 12689     105
## 12691     141
## 12693     191
## 12695     610
## 12700     762
## 12705     802
## 12711     190
## 12713     308
## 12714     318
## 12715     495
## 12716     509
## 12721     899
## 12727    1132
## 12728    1136
## 12732    1201
## 12734    1213
## 12741    1295
## 12743    1339
## 12745    1913
## 12750    2424
## 12761    3578
## 12768    3967
## 12780    4878
## 12781    4928
## 12783    5105
## 12786    5530
## 12788    5668
## 12792    6214
## 12793    6301
## 12803    7265
## 12810    7786
## 12814    8014
## 12821    8533
## 12835   37731
## 12837   43899
## 12838   44694
## 12841   47610
## 12842   48043
## 12847   53447
## 12850   60950
## 12854   68137
## 12857   69757
## 12859   71438
## 12860   72998
## 12863   79132
## 12864   80463
## 12866   81591
## 12868   82459
## 12869      10
## 12870      21
## 12877     153
## 12878     160
## 12879     165
## 12880     208
## 12884     288
## 12885     292
## 12888     316
## 12890     329
## 12892     344
## 12895     367
## 12896     380
## 12897     410
## 12898     420
## 12899     434
## 12900     435
## 12901     454
## 12902     457
## 12905     592
## 12909      21
## 12912      69
## 12913     101
## 12916     151
## 12922     351
## 12925     377
## 12927     480
## 12929     532
## 12934     799
## 12946    1240
## 12956    1358
## 12967    1917
## 12968    1920
## 12969    1923
## 12971    2000
## 12972    2109
## 12979    2371
## 12983    2571
## 12998    3087
## 13000    3160
## 13003    3210
## 13005    3253
## 13021    3753
## 13025    3869
## 13027    3911
## 13028    3950
## 13029    4025
## 13034    4255
## 13039    4558
## 13040    4571
## 13043    4898
## 13045    4975
## 13051    5445
## 13052    5602
## 13053    5650
## 13055    5673
## 13056    5902
## 13057    6373
## 13058    6659
## 13064    8528
## 13068   35836
## 13069       1
## 13073     356
## 13074     589
## 13077    1198
## 13079    1610
## 13080    2028
## 13081    2268
## 13082    2329
## 13084    2858
## 13087    3114
## 13090    3623
## 13093    3752
## 13096    3994
## 13097    4023
## 13099    4270
## 13101    4310
## 13102    4701
## 13106    4896
## 13111    5418
## 13112    5445
## 13113    5459
## 13114    5481
## 13115    5630
## 13117    5989
## 13119    6287
## 13120    6365
## 13121    6373
## 13122    6377
## 13123    6378
## 13124    6539
## 13127    7254
## 13128    7293
## 13131    8361
## 13133    8531
## 13134    8644
## 13135    8665
## 13137    8972
## 13138   30825
## 13140   32587
## 13143   34162
## 13145   36529
## 13146   40815
## 13147   44199
## 13148   45447
## 13150   45722
## 13151   53125
## 13152   54001
## 13153   54272
## 13155   56174
## 13158   59315
## 13160   65514
## 13161   68157
## 13162   68358
## 13164   69844
## 13169   81229
## 13170   85342
## 13172   91500
## 13174   91658
## 13177   96079
## 13178   99114
## 13179  102125
## 13180  106487
## 13186       3
## 13187       5
## 13189      19
## 13191      23
## 13192      44
## 13193      58
## 13196     158
## 13197     160
## 13200     170
## 13201     172
## 13203     177
## 13204     181
## 13205     185
## 13206     186
## 13207     188
## 13208     196
## 13209     203
## 13210     208
## 13211     216
## 13213     230
## 13216     247
## 13217     253
## 13220     261
## 13221     275
## 13222     277
## 13223     282
## 13225     291
## 13233     327
## 13236     339
## 13239     350
## 13240     355
## 13242     357
## 13243     364
## 13244     366
## 13247     370
## 13248     374
## 13251     405
## 13253     415
## 13254     420
## 13256     434
## 13257     437
## 13259     454
## 13261     466
## 13262     471
## 13264     485
## 13266     508
## 13267     519
## 13268     520
## 13269     527
## 13271     546
## 13273     551
## 13275     555
## 13276     586
## 13277     587
## 13278     588
## 13280     590
## 13283     594
## 13284     595
## 13286     610
## 13289     688
## 13290     709
## 13292       1
## 13293      11
## 13297      19
## 13298      21
## 13299      25
## 13305      34
## 13310      46
## 13313      62
## 13316      73
## 13318      82
## 13321     105
## 13322     110
## 13324     121
## 13325     124
## 13326     126
## 13328     144
## 13333     159
## 13334     160
## 13335     162
## 13337     172
## 13339     180
## 13340     186
## 13342     198
## 13344     208
## 13348     224
## 13350     231
## 13354     246
## 13357     252
## 13361     261
## 13362     263
## 13364     266
## 13367     273
## 13368     282
## 13369     287
## 13370     288
## 13372     292
## 13376     302
## 13377     305
## 13381     314
## 13382     316
## 13385     321
## 13386     324
## 13388     331
## 13389     332
## 13393     348
## 13395     362
## 13399     372
## 13400     405
## 13401     419
## 13402     427
## 13405     446
## 13406     454
## 13408     468
## 13409     469
## 13412     477
## 13413     480
## 13414     481
## 13417     500
## 13419     508
## 13423     531
## 13427     539
## 13432     568
## 13434     586
## 13435     587
## 13436     588
## 13437     589
## 13438     590
## 13439     592
## 13442     595
## 13444     597
## 13446     613
## 13447     616
## 13449     640
## 13450     650
## 13451     661
## 13454     708
## 13456     724
## 13458     753
## 13459     756
## 13462     780
## 13463     783
## 13464     784
## 13465     828
## 13466     830
## 13467     844
## 13468     892
## 13470    1036
## 13473    1059
## 13476    1084
## 13479    1163
## 13482       1
## 13483       7
## 13485      32
## 13487      62
## 13488      88
## 13489      95
## 13491     112
## 13497     648
## 13498     663
## 13500     733
## 13501     736
## 13502     762
## 13503     778
## 13504     780
## 13506     786
## 13507     802
## 13508     852
## 13509    1073
## 13510    1210
## 13512    1405
## 13513       2
## 13515      11
## 13516      21
## 13517      31
## 13519      39
## 13521      62
## 13522      95
## 13523     104
## 13526     153
## 13527     160
## 13528     163
## 13529     165
## 13530     185
## 13532     231
## 13533     253
## 13534     256
## 13536     261
## 13537     288
## 13538     296
## 13539     316
## 13541     337
## 13543     344
## 13544     345
## 13545     350
## 13550     377
## 13551     380
## 13552     435
## 13553     440
## 13554     454
## 13555     457
## 13556     480
## 13558     500
## 13561     520
## 13563     539
## 13566     552
## 13567     553
## 13568     586
## 13569     588
## 13570     592
## 13571     593
## 13573     595
## 13575     608
## 13576     648
## 13577     708
## 13578     733
## 13579     736
## 13580     745
## 13582     780
## 13583     802
## 13588    1028
## 13589    1073
## 13591    1080
## 13592    1097
## 13594    1136
## 13595    1183
## 13597    1196
## 13602    1258
## 13604    1265
## 13605    1270
## 13608    1291
## 13610    1302
## 13612    1380
## 13613    1391
## 13614    1393
## 13615    1394
## 13616    1407
## 13617    1485
## 13619    1517
## 13621    1573
## 13622    1580
## 13625    1674
## 13628    1777
## 13629    1784
## 13630    1909
## 13631    1917
## 13632    1961
## 13633    1968
## 13634    2011
## 13635    2054
## 13636    2100
## 13637    2115
## 13639    2268
## 13641    2302
## 13642    2321
## 13643    2329
## 13644    2353
## 13645    2355
## 13650    2617
## 13651    2628
## 13652    2640
## 13655    2710
## 13656    2712
## 13657    2716
## 13659    2763
## 13660    2791
## 13666    3052
## 13667    3081
## 13670    3255
## 13672    3418
## 13673    3435
## 13676    3578
## 13677    3751
## 13678    3753
## 13679    3755
## 13680    3793
## 13682    3996
## 13687    4226
## 13689    4308
## 13690    4720
## 13692    4896
## 13697    4995
## 13698    5218
## 13699    5299
## 13700    5349
## 13702    5378
## 13704    5445
## 13705    5459
## 13707    5679
## 13708    5952
## 13709    5991
## 13712    6373
## 13717    6863
## 13723    7153
## 13728    8368
## 13729    8636
## 13733    8874
## 13734   30707
## 13735   30793
## 13736   32587
## 13737   32598
## 13738   33794
## 13739   34405
## 13740   35836
## 13742   40815
## 13745   45447
## 13750   52973
## 13752   55269
## 13755   59615
## 13756   60684
## 13758   63515
## 13762   66198
## 13763   67193
## 13764   67799
## 13778     327
## 13789    1019
## 13791    1214
## 13794    1385
## 13836      25
## 13840      79
## 13842     141
## 13846     661
## 13848     736
## 13849     766
## 13851     780
## 13852     783
## 13855     830
## 13862    1073
## 13869    1438
## 13871    1479
## 13873    1513
## 13874    1515
## 13883    1608
## 13885      12
## 13887      23
## 13888      34
## 13894     267
## 13903     747
## 13919    2335
## 13920    2379
## 13921    2380
## 13922    2381
## 13923    2382
## 13929    3146
## 13930    3387
## 13933    3821
## 13935    3979
## 13937    4015
## 13938    4084
## 13940    4340
## 13948    6482
## 13949    6550
## 13950    6763
## 13955    8531
## 13961   43836
## 13964   44972
## 13966   46865
## 13967   50806
## 13968   52694
## 13972   54732
## 13973   57532
## 13975   59014
## 13978   59900
## 13987   78041
## 13992   79428
## 13993   80549
## 13996   82852
## 14000   91500
## 14009   96616
## 14013  103341
## 14016  104218
## 14018  106487
## 14029  116977
## 14030  132157
## 14035       2
## 14036       6
## 14037      10
## 14039      19
## 14043      39
## 14044      44
## 14048      62
## 14049      76
## 14050      95
## 14054     145
## 14055     150
## 14056     151
## 14057     153
## 14058     160
## 14061     165
## 14062     172
## 14063     173
## 14064     177
## 14065     181
## 14066     186
## 14067     188
## 14068     193
## 14069     196
## 14071     208
## 14073     224
## 14074     231
## 14076     237
## 14078     252
## 14079     253
## 14080     266
## 14081     273
## 14082     288
## 14083     292
## 14087     315
## 14088     316
## 14089     317
## 14092     328
## 14093     329
## 14094     330
## 14095     332
## 14096     333
## 14097     339
## 14098     344
## 14099     349
## 14100     350
## 14101     353
## 14102     355
## 14104     357
## 14105     362
## 14106     364
## 14107     366
## 14108     367
## 14110     370
## 14111     377
## 14113     413
## 14114     420
## 14115     426
## 14116     432
## 14117     434
## 14118     435
## 14119     440
## 14120     442
## 14121     454
## 14122     455
## 14124     466
## 14128     485
## 14130     500
## 14131     508
## 14132     509
## 14133     520
## 14135     529
## 14136     532
## 14137     539
## 14138     543
## 14139     551
## 14140     552
## 14143     587
## 14144     588
## 14147     592
## 14149     597
## 14150     606
## 14152     610
## 14154     736
## 14156     780
## 14158      11
## 14161      25
## 14164      62
## 14166     208
## 14168     265
## 14169     266
## 14172     342
## 14173     357
## 14174     364
## 14175     368
## 14179     515
## 14182     586
## 14183     587
## 14184     588
## 14186     592
## 14188     597
## 14189     648
## 14190     733
## 14193     902
## 14196     910
## 14198     914
## 14202    1073
## 14210    1240
## 14211    1242
## 14212    1246
## 14213    1247
## 14216    1270
## 14218    1291
## 14221    1380
## 14222    1387
## 14223    1393
## 14225    1580
## 14228    1682
## 14232    1784
## 14234    1923
## 14236    1968
## 14237    2011
## 14238    2081
## 14239    2100
## 14240    2115
## 14243    2291
## 14246    2355
## 14248    2406
## 14249    2470
## 14251    2657
## 14252    2716
## 14255    3072
## 14258    3176
## 14259    3255
## 14260    3256
## 14262    3408
## 14263    3471
## 14266    4014
## 14267    4022
## 14268    4027
## 14270    4085
## 14272    4306
## 14274    4886
## 14279    5299
## 14280    5377
## 14283    6377
## 14285    6863
## 14286    6942
## 14287    7147
## 14289    8360
## 14290    8636
## 14295   41569
## 14297   45722
## 14299   49272
## 14300   50872
## 14304   59615
## 14305   60069
## 14309   74789
## 14315   84304
## 14317      16
## 14319      69
## 14320     104
## 14322     111
## 14324     161
## 14325     208
## 14327     260
## 14328     292
## 14330     316
## 14332     344
## 14333     353
## 14335     367
## 14336     442
## 14337     480
## 14339     551
## 14342     733
## 14343     780
## 14345     923
## 14346    1049
## 14347    1089
## 14349    1172
## 14350    1193
## 14351    1198
## 14354    1233
## 14355    1246
## 14356    1252
## 14357    1265
## 14359    1393
## 14360    1552
## 14361    1580
## 14363    1617
## 14369    1726
## 14370    1777
## 14371    1784
## 14374    2012
## 14376    2115
## 14382    2628
## 14383    2692
## 14384    2706
## 14385    2710
## 14386    2762
## 14387    2795
## 14390    2916
## 14394    3175
## 14396    3243
## 14397    3409
## 14398    3441
## 14399    3450
## 14400    3471
## 14402    3593
## 14404    3948
## 14406    4011
## 14407    4014
## 14416    5218
## 14419    5445
## 14420    5464
## 14421    5502
## 14422    5679
## 14426    6016
## 14427    6365
## 14428    6373
## 14430    6378
## 14431    6539
## 14432    6552
## 14433    6711
## 14435    6870
## 14436    6874
## 14437    6934
## 14439    7254
## 14440    7361
## 14441    7438
## 14443    8360
## 14444    8464
## 14445    8636
## 14446    8644
## 14447    8645
## 14448    8781
## 14449    8784
## 14450    8798
## 14451    8873
## 14452    8874
## 14453    8949
## 14454    8961
## 14457   30793
## 14461   33794
## 14462   34162
## 14463   34405
## 14465   39292
## 14469   44195
## 14470   44204
## 14471   45722
## 14474   47099
## 14475   48394
## 14478   48780
## 14479   50068
## 14480   50872
## 14482   53996
## 14483   54272
## 14484   54503
## 14486   55820
## 14487   56174
## 14488   56367
## 14491   59315
## 14495   63082
## 14497   64620
## 14498   64622
## 14500   68358
## 14503   69481
## 14508   74458
## 14509   76251
## 14513       9
## 14522     174
## 14523     196
## 14533     328
## 14534     329
## 14535     332
## 14538     360
## 14544     519
## 14548     724
## 14553     879
## 14557    1037
## 14574    1322
## 14590    1644
## 14592    1655
## 14593    1690
## 14595    1762
## 14597    1917
## 14601    1972
## 14602    1973
## 14604    1975
## 14606    1983
## 14607    1984
## 14608    1985
## 14609    1988
## 14611    1995
## 14615    2013
## 14616    2026
## 14618    2069
## 14620    2105
## 14623    2113
## 14626    2120
## 14627    2121
## 14630    2149
## 14631    2160
## 14632    2163
## 14634    2188
## 14641    2369
## 14646    2421
## 14649    2445
## 14654    2462
## 14655    2465
## 14667    2641
## 14669    2672
## 14673    2701
## 14674    2702
## 14677    2713
## 14680    2722
## 14684    2789
## 14691    2888
## 14697    2976
## 14702    3017
## 14703    3018
## 14704    3024
## 14706    3051
## 14718    3269
## 14719    3273
## 14723    3391
## 14726    3441
## 14727    3448
## 14732    3535
## 14735    3623
## 14737    3693
## 14739    3709
## 14741    3764
## 14743    3826
## 14744    3840
## 14745    3843
## 14747    3877
## 14751    3961
## 14753    3994
## 14756    4018
## 14762    4124
## 14769    4222
## 14770    4266
## 14778    4516
## 14780    4560
## 14783    4636
## 14784    4639
## 14788    4697
## 14793    4949
## 14796    5049
## 14797    5080
## 14798    5103
## 14802    5303
## 14804    5309
## 14805    5342
## 14806    5343
## 14810    5449
## 14811      31
## 14813     318
## 14814     527
## 14816     628
## 14817     724
## 14832    1084
## 14837    1242
## 14844    1747
## 14846    2186
## 14848    2248
## 14849    2336
## 14850    2692
## 14851    2858
## 14854    3730
## 14860    5878
## 14861    6027
## 14873    8629
## 14880   44555
## 14882   48394
## 14886   56367
## 14887       1
## 14890     110
## 14891     223
## 14892     293
## 14895     356
## 14896     364
## 14897     480
## 14898     527
## 14900     588
## 14901     589
## 14902     593
## 14903     595
## 14904     597
## 14907     858
## 14909     904
## 14910     908
## 14911     912
## 14914    1036
## 14915    1084
## 14916    1088
## 14917    1089
## 14919    1193
## 14922    1198
## 14923    1200
## 14926    1204
## 14927    1207
## 14928    1208
## 14931    1213
## 14932    1219
## 14933    1221
## 14934    1228
## 14935    1240
## 14937    1265
## 14939    1270
## 14941    1291
## 14942    1387
## 14943    1527
## 14944    1580
## 14945    1721
## 14947    1884
## 14948    1997
## 14949    2000
## 14951    2028
## 14955    2542
## 14956    2571
## 14957    2716
## 14958    2797
## 14959    2918
## 14960    2959
## 14961    2997
## 14962    3033
## 14963    3253
## 14964    3421
## 14965    3471
## 14966    3527
## 14967    3552
## 14968    3578
## 14969    3868
## 14971    4226
## 14975    4979
## 14977    5902
## 14978    5903
## 14979    5952
## 14983    7153
## 14984    7361
## 14985    8376
## 14987    8784
## 14988    8949
## 14989    8950
## 14991   31658
## 14992   33004
## 14993   33679
## 14994   34437
## 14995   35836
## 14999   46970
## 15001   48394
## 15002   48516
## 15008   58559
## 15009   58998
## 15012   91529
## 15013   94959
## 15014  114662
## 15015       5
## 15016      39
## 15018     339
## 15020     357
## 15024     920
## 15036    2193
## 15039    2599
## 15043    2858
## 15044    3081
## 15050    5943
## 15051    6155
## 15052    6564
## 15059    7458
## 15068   55280
## 15071   68954
## 15073   71745
## 15074   79132
## 15079  106487
## 15083  148888
## 15084  149830
## 15087       2
## 15088      17
## 15089      28
## 15091      47
## 15093     105
## 15094     110
## 15095     154
## 15096     160
## 15097     170
## 15098     208
## 15099     296
## 15100     316
## 15104     367
## 15106     380
## 15107     455
## 15109     468
## 15111     497
## 15114     546
## 15115     588
## 15122     733
## 15123     736
## 15128     900
## 15129     902
## 15133     909
## 15139     924
## 15146    1014
## 15147    1016
## 15148    1017
## 15149    1019
## 15150    1022
## 15151    1025
## 15153    1029
## 15154    1032
## 15155    1035
## 15156    1083
## 15159    1183
## 15163    1219
## 15165    1247
## 15168    1282
## 15169    1284
## 15172    1334
## 15173    1358
## 15174    1393
## 15175    1580
## 15176    1586
## 15177    1589
## 15178    1591
## 15182    1676
## 15184    1732
## 15187    1777
## 15189    1920
## 15190    1937
## 15194    1949
## 15196    1951
## 15198    2006
## 15199    2015
## 15204    2085
## 15205    2094
## 15208    2106
## 15209    2126
## 15210    2132
## 15211    2135
## 15212    2136
## 15213    2160
## 15217    2393
## 15218    2396
## 15219    2424
## 15221    2436
## 15223    2529
## 15224    2539
## 15225    2565
## 15228    2687
## 15230    2761
## 15231    2801
## 15232    2836
## 15236    2959
## 15237    2966
## 15239    3125
## 15243    3174
## 15244    3186
## 15245    3298
## 15247    3578
## 15249    3783
## 15250    3897
## 15252    3911
## 15253    3948
## 15257    4019
## 15258    4022
## 15259    4027
## 15260    4033
## 15276       6
## 15277       7
## 15280      52
## 15281      62
## 15282      86
## 15283      88
## 15284      95
## 15285     135
## 15286     141
## 15288     648
## 15289     661
## 15290     708
## 15291     733
## 15292     736
## 15294     780
## 15295     786
## 15299     145
## 15300     163
## 15301     172
## 15302     196
## 15304     315
## 15306     370
## 15307     457
## 15308     520
## 15312     762
## 15313    1036
## 15318    1214
## 15319    1240
## 15325    1909
## 15326    2000
## 15330    2268
## 15331    2302
## 15334    2699
## 15335    2716
## 15336    2770
## 15339    3527
## 15360      37
## 15366      70
## 15368      94
## 15382     253
## 15384     261
## 15390     314
## 15391     318
## 15396     346
## 15399     382
## 15400     410
## 15404     457
## 15406     474
## 15409     506
## 15410     507
## 15411     508
## 15420     555
## 15425     590
## 15438     780
## 15439     799
## 15441     802
## 15481    1009
## 15491    1061
## 15502    1090
## 15503    1093
## 15527    1188
## 15541    1210
## 15568    1246
## 15586    1268
## 15587    1270
## 15606    1302
## 15608    1307
## 15609    1320
## 15611    1323
## 15614    1339
## 15617    1342
## 15619    1346
## 15624    1358
## 15628    1377
## 15632    1389
## 15633    1393
## 15645    1584
## 15646    1594
## 15647    1610
## 15650    1644
## 15656    1704
## 15666    1856
## 15668    1884
## 15669    1888
## 15670    1895
## 15671    1923
## 15692    1962
## 15702    1999
## 15703    2000
## 15704    2001
## 15705    2003
## 15712    2023
## 15713    2043
## 15731    2105
## 15732    2107
## 15734    2110
## 15735    2112
## 15737    2121
## 15744    2140
## 15745    2144
## 15746    2145
## 15747    2146
## 15752    2193
## 15759    2240
## 15760    2243
## 15770    2312
## 15773    2321
## 15777    2345
## 15779    2352
## 15784    2367
## 15788    2397
## 15789    2406
## 15790    2407
## 15791    2420
## 15792    2423
## 15794    2453
## 15796    2455
## 15798    2517
## 15802    2541
## 15803    2548
## 15805    2616
## 15812    2672
## 15815    2702
## 15816    2710
## 15819    2717
## 15840    2797
## 15847    2859
## 15848    2863
## 15851    2872
## 15854    2902
## 15875    2987
## 15885    3039
## 15886    3060
## 15892    3071
## 15901    3130
## 15904    3147
## 15908    3169
## 15909    3176
## 15910    3179
## 15921    3251
## 15922    3253
## 15924    3262
## 15928    3273
## 15929    3285
## 15930    3301
## 15932    3308
## 15933    3317
## 15934    3324
## 15935    3327
## 15937    3342
## 15939    3354
## 15942    3361
## 15946    3386
## 15948    3408
## 15951    3421
## 15957    3441
## 15958    3448
## 15965    3478
## 15968    3484
## 15973    3511
## 15976    3526
## 15977    3528
## 15979    3538
## 15990    3564
## 15991    3565
## 15995    3591
## 16015    3698
## 16019    3704
## 16020    3706
## 16021    3708
## 16028    3740
## 16035      71
## 16036     196
## 16038     393
## 16039     519
## 16041     589
## 16042     592
## 16046     736
## 16049     780
## 16051    1037
## 16052    1101
## 16053    1129
## 16057    1215
## 16059    1241
## 16060    1255
## 16062    1274
## 16063    1320
## 16064    1339
## 16065    1385
## 16066    1389
## 16068    1552
## 16069    1562
## 16070    1580
## 16071    1584
## 16072    1599
## 16073    1645
## 16074    1653
## 16076    1690
## 16077    1721
## 16078    1805
## 16079    2021
## 16082    2405
## 16083    2549
## 16085    2605
## 16086    2701
## 16088    2916
## 16090    2985
## 16093    3527
## 16095    3697
## 16097    3863
## 16098    4105
## 16107    5528
## 16108    5700
## 16114    6857
## 16116    6996
## 16121    7481
## 16123    8093
## 16125    8636
## 16135    1196
## 16136    1573
## 16137    2571
## 16141    5628
## 16144    6365
## 16148    7458
## 16149    8371
## 16152    8972
## 16153   27611
## 16155   42738
## 16160   53125
## 16162   57640
## 16168   65682
## 16171   71135
## 16180   82461
## 16184   88140
## 16189   94777
## 16191  106072
## 16195  112171
## 16201  129354
## 16202       6
## 16203      10
## 16204      11
## 16206      19
## 16207      21
## 16208      22
## 16211      36
## 16215      95
## 16216     104
## 16217     105
## 16218     110
## 16220     150
## 16221     151
## 16222     153
## 16224     165
## 16225     168
## 16226     173
## 16227     196
## 16229     208
## 16230     253
## 16231     260
## 16232     272
## 16233     288
## 16234     290
## 16235     292
## 16238     300
## 16239     305
## 16240     316
## 16241     318
## 16242     339
## 16243     344
## 16244     348
## 16245     349
## 16246     356
## 16248     364
## 16249     367
## 16250     368
## 16251     370
## 16252     377
## 16253     380
## 16254     381
## 16256     383
## 16257     410
## 16258     420
## 16259     427
## 16261     432
## 16262     434
## 16263     435
## 16264     440
## 16265     442
## 16266     454
## 16267     457
## 16268     458
## 16269     459
## 16270     468
## 16272     474
## 16273     480
## 16274     481
## 16275     497
## 16276     500
## 16277     508
## 16279     522
## 16281     539
## 16283     555
## 16284     586
## 16285     587
## 16286     589
## 16287     590
## 16290     597
## 16292     648
## 16294     688
## 16295     733
## 16296     736
## 16297     762
## 16299     780
## 16300     784
## 16302     788
## 16303     832
## 16304     852
## 16306     866
## 16307     912
## 16309     996
## 16310    1020
## 16311    1027
## 16314    1057
## 16316    1079
## 16317    1080
## 16318    1088
## 16322    1101
## 16324    1127
## 16325    1129
## 16326    1136
## 16328    1173
## 16330    1179
## 16332    1185
## 16334    1187
## 16336    1196
## 16339    1200
## 16342    1208
## 16343    1210
## 16346    1216
## 16347    1220
## 16350    1225
## 16351    1227
## 16353    1234
## 16356    1246
## 16361    1259
## 16364    1270
## 16365    1275
## 16366    1277
## 16368    1291
## 16369    1298
## 16371    1300
## 16374    1320
## 16375    1321
## 16376    1333
## 16377    1346
## 16378    1367
## 16379    1370
## 16381    1378
## 16382    1380
## 16384    1391
## 16385    1392
## 16386    1393
## 16387    1394
## 16388    1395
## 16389    1407
## 16390    1438
## 16392    1480
## 16393    1499
## 16395    1503
## 16396    1527
## 16397    1544
## 16398    1552
## 16399    1573
## 16401    1586
## 16403    1608
## 16404    1610
## 16408    1641
## 16410    1682
## 16411    1721
## 16412    1727
## 16416    1801
## 16417    1810
## 16419    1882
## 16420    1884
## 16423    1917
## 16425    1953
## 16427    1962
## 16429    1968
## 16431    2000
## 16432    2001
## 16433    2002
## 16434    2006
## 16435    2011
## 16437    2023
## 16438    2028
## 16439    2058
## 16440    2115
## 16441    2116
## 16442    2124
## 16443    2126
## 16445    2167
## 16447    2194
## 16450    2247
## 16451    2268
## 16454    2294
## 16456    2352
## 16457    2353
## 16458    2394
## 16459    2395
## 16460    2396
## 16461    2405
## 16462    2406
## 16463    2423
## 16464    2427
## 16465    2455
## 16466    2467
## 16467    2478
## 16469    2513
## 16470    2529
## 16471    2539
## 16474    2571
## 16476    2616
## 16477    2617
## 16478    2640
## 16479    2671
## 16480    2683
## 16481    2692
## 16482    2699
## 16483    2701
## 16484    2710
## 16485    2712
## 16487    2717
## 16488    2746
## 16489    2762
## 16490    2763
## 16491    2790
## 16492    2793
## 16493    2797
## 16494    2822
## 16496    2862
## 16497    2890
## 16501    2942
## 16502    2959
## 16504    2985
## 16505    2987
## 16508    3019
## 16511    3072
## 16512    3081
## 16513    3082
## 16515    3127
## 16516    3130
## 16517    3141
## 16518    3147
## 16519    3157
## 16520    3168
## 16521    3176
## 16522    3185
## 16523    3198
## 16525    3210
## 16526    3246
## 16527    3253
## 16528    3255
## 16529    3257
## 16530    3263
## 16531    3271
## 16532    3285
## 16533    3324
## 16534    3328
## 16535    3386
## 16536    3408
## 16537    3418
## 16540    3426
## 16541    3448
## 16542    3450
## 16546    3489
## 16549    3503
## 16550    3527
## 16551    3529
## 16552    3552
## 16553    3557
## 16555    3584
## 16557    3676
## 16561    3686
## 16562    3697
## 16564    3703
## 16565    3717
## 16567    3740
## 16568    3744
## 16569    3752
## 16570    3753
## 16571    3755
## 16572    3783
## 16573    3793
## 16575    3825
## 16576    3826
## 16577    3831
## 16578    3836
## 16580    3918
## 16581    3946
## 16582    3967
## 16583    3980
## 16584    3996
## 16585    4002
## 16586    4007
## 16588    4027
## 16590    4041
## 16592    4084
## 16593    4148
## 16594    4161
## 16595    4203
## 16598    4223
## 16600    4234
## 16603    4246
## 16605    4262
## 16606    4280
## 16607    4321
## 16609    4361
## 16610    4367
## 16612    4448
## 16613    4467
## 16615    4482
## 16616    4487
## 16617    4557
## 16618    4558
## 16619    4572
## 16620    4643
## 16621    4654
## 16622    4673
## 16624    4681
## 16625    4719
## 16627    4776
## 16628    4837
## 16629    4855
## 16630    4878
## 16631    4896
## 16632    4901
## 16633    4958
## 16634    4963
## 16635    4979
## 16637    4995
## 16638    5003
## 16639    5013
## 16643    5180
## 16645    5299
## 16646    5302
## 16647    5308
## 16648    5309
## 16649    5334
## 16650    5349
## 16653    5400
## 16655    5419
## 16656    5445
## 16659    5630
## 16660    5669
## 16662    5747
## 16663    5816
## 16664    5867
## 16665    5878
## 16666    5900
## 16667    5902
## 16669    5945
## 16671    5954
## 16673    5989
## 16675    6104
## 16677    6188
## 16678    6218
## 16679    6238
## 16680    6291
## 16681    6344
## 16682    6365
## 16683    6377
## 16684    6378
## 16685    6502
## 16686    6539
## 16687    6595
## 16690    6774
## 16691    6787
## 16692    6796
## 16694    6870
## 16698    6997
## 16699    7005
## 16700    7017
## 16702    7060
## 16703    7104
## 16705    7149
## 16707    7193
## 16708    7272
## 16710    7802
## 16711    7836
## 16712    8042
## 16713    8228
## 16715    8874
## 16719   34162
## 16721   41569
## 16724   48385
## 16725   48516
## 16726   51255
## 16728     551
## 16734    2052
## 16735    2145
## 16737    2279
## 16739    2672
## 16740    2762
## 16744    4040
## 16747    5296
## 16750    7161
## 16752    8360
## 16755    8961
## 16756   39408
## 16758   43919
## 16760   45431
## 16761   46976
## 16766   56367
## 16772     293
## 16775    2605
## 16776    2701
## 16777    2805
## 16779    3005
## 16780    3082
## 16781    3160
## 16782    3176
## 16783    3300
## 16784    3409
## 16785    3755
## 16786    3785
## 16787    4239
## 16788    4344
## 16789    4370
## 16790    4447
## 16791    4718
## 16792    4816
## 16794    5502
## 16799    6502
## 16803  115713
## 16805      34
## 16806      47
## 16807     110
## 16808     153
## 16809     161
## 16810     185
## 16812     225
## 16813     231
## 16814     253
## 16815     288
## 16816     296
## 16818     339
## 16819     344
## 16822     367
## 16824     380
## 16825     434
## 16826     454
## 16831     589
## 16832     590
## 16835      16
## 16839     442
## 16852    2683
## 16854    3793
## 16869      32
## 16870      34
## 16873      47
## 16874      79
## 16880     153
## 16881     160
## 16886     173
## 16900     249
## 16902     253
## 16906     266
## 16912     303
## 16915     318
## 16916     327
## 16920     345
## 16925     364
## 16935     415
## 16950     519
## 16953     532
## 16967     595
## 16972     736
## 16978       5
## 16979       7
## 16980      10
## 16982      18
## 16984      31
## 16985      32
## 16987      45
## 16990      81
## 16991      95
## 16992     105
## 16994     122
## 16995     141
## 16998     185
## 16999     216
## 17002     231
## 17003     253
## 17005     292
## 17007     300
## 17009     327
## 17011     344
## 17012     345
## 17013     353
## 17014     356
## 17015     364
## 17016     367
## 17018     372
## 17019     377
## 17022     454
## 17024     480
## 17026     508
## 17028     539
## 17029     541
## 17030     542
## 17031     551
## 17032     552
## 17033     586
## 17034     587
## 17035     588
## 17039     595
## 17040     597
## 17042     647
## 17043     648
## 17045     733
## 17047     783
## 17049     802
## 17051     851
## 17052     852
## 17058    1047
## 17060    1080
## 17061    1088
## 17064    1104
## 17067    1183
## 17074    1234
## 17076    1265
## 17080    1307
## 17081    1333
## 17082    1391
## 17083    1393
## 17087    1527
## 17088    1541
## 17089    1544
## 17091    1584
## 17092    1593
## 17093    1608
## 17097    1648
## 17098    1653
## 17100    1682
## 17103    1721
## 17104    1747
## 17105    1760
## 17107    1784
## 17109    1799
## 17110    1804
## 17111    1863
## 17112    1888
## 17113    1912
## 17114    1917
## 17115    1921
## 17116    1923
## 17117    1943
## 17118    1961
## 17121    2014
## 17123    2046
## 17124    2059
## 17125    2081
## 17127    2106
## 17128    2115
## 17129    2125
## 17131    2134
## 17132    2153
## 17135    2252
## 17136    2321
## 17139    2380
## 17140    2395
## 17142    2432
## 17143    2447
## 17144    2470
## 17148    2558
## 17152    2594
## 17155    2605
## 17156    2616
## 17157    2628
## 17159    2671
## 17160    2683
## 17162    2706
## 17163    2712
## 17165    2723
## 17166    2770
## 17171    2877
## 17172    2890
## 17175    2953
## 17177    2997
## 17178    3004
## 17184    3114
## 17185    3160
## 17186    3173
## 17187    3210
## 17188    3247
## 17189    3252
## 17193    3257
## 17194    3261
## 17196    3273
## 17197    3298
## 17198    3317
## 17201    3418
## 17203    3448
## 17205    3481
## 17206    3526
## 17207    3534
## 17208    3578
## 17209    3608
## 17210    3698
## 17211    3712
## 17212    3753
## 17215    3825
## 17216    3835
## 17217    3852
## 17219    3893
## 17220    3897
## 17221    3911
## 17224    3967
## 17225    3968
## 17226    3994
## 17229    4017
## 17232    4052
## 17233    4121
## 17234    4130
## 17235    4132
## 17240    4228
## 17243    4299
## 17244    4304
## 17246    4310
## 17247    4321
## 17249    4344
## 17250    4351
## 17252    4367
## 17254    4545
## 17258    4700
## 17259    4734
## 17260    4757
## 17261    4776
## 17263    4823
## 17264    4844
## 17266    4954
## 17269    4975
## 17271    4980
## 17272    4992
## 17276    5255
## 17277    5283
## 17278    5308
## 17281    5418
## 17282    5438
## 17283    5481
## 17289    5816
## 17290    5829
## 17291    5902
## 17293    5957
## 17294    5961
## 17295    5991
## 17299    6377
## 17303    6537
## 17304    6638
## 17305    6744
## 17307    6850
## 17310    7101
## 17312    7255
## 17318    8709
## 17321       6
## 17322      18
## 17323      32
## 17326      95
## 17330     648
## 17333     736
## 17341       4
## 17346      10
## 17369     153
## 17371     165
## 17374     253
## 17375     267
## 17376     288
## 17389     592
## 17390     593
## 17395      45
## 17396     160
## 17399     342
## 17400     466
## 17403     543
## 17405     784
## 17407    1089
## 17415    1500
## 17416    1639
## 17419    1923
## 17420    2001
## 17429    3751
## 17430    3897
## 17434     153
## 17441     367
## 17442     434
## 17443     480
## 17444     593
## 17449    2858
## 17450    2890
## 17451    2959
## 17458     215
## 17462     527
## 17465    1185
## 17466    1188
## 17467    1235
## 17470    1347
## 17473    1831
## 17475    1957
## 17477    1961
## 17480    2686
## 17481    2719
## 17483    2840
## 17484    3107
## 17486    3363
## 17487    3504
## 17496   43396
## 17503   64614
## 17504   64716
## 17519     247
## 17531     597
## 17533     674
## 17547     965
## 17550    1086
## 17553    1129
## 17558    1210
## 17573    1269
## 17579    1371
## 17582    1376
## 17584    1407
## 17585    1527
## 17592    1653
## 17594    1683
## 17595    1690
## 17597    1748
## 17607    2012
## 17608    2021
## 17610    2034
## 17615    2117
## 17616    2118
## 17617    2139
## 17618    2160
## 17629    2346
## 17633    2393
## 17635    2435
## 17636    2450
## 17638    2528
## 17640    2533
## 17641    2571
## 17642    2613
## 17643    2628
## 17645    2641
## 17646    2668
## 17648    2722
## 17658    3033
## 17678    3717
## 17680    3725
## 17683    3732
## 17684    3734
## 17686    3738
## 17687    3740
## 17690    3760
## 17695    3806
## 17696    3810
## 17699    3814
## 17701    6184
## 17702       1
## 17703       2
## 17705      16
## 17707      24
## 17709      29
## 17711      36
## 17715      60
## 17718      78
## 17719      95
## 17720     101
## 17723     112
## 17726     151
## 17727     153
## 17728     160
## 17731     168
## 17732     173
## 17733     180
## 17734     196
## 17735     203
## 17736     208
## 17738     227
## 17740     253
## 17746     292
## 17748     316
## 17750     329
## 17752     353
## 17753     356
## 17754     364
## 17755     368
## 17756     370
## 17758     377
## 17761     435
## 17762     443
## 17763     454
## 17764     457
## 17767     482
## 17770     531
## 17775     553
## 17776     585
## 17788     611
## 17789     648
## 17790     653
## 17791     661
## 17793     688
## 17794     707
## 17798     736
## 17802     780
## 17807     849
## 17809     870
## 17810     880
## 17811     881
## 17827     968
## 17830     996
## 17831    1009
## 17832    1027
## 17833    1028
## 17834    1034
## 17837    1037
## 17838    1042
## 17839    1049
## 17840    1059
## 17843    1073
## 17854    1112
## 17855    1127
## 17860    1179
## 17861    1183
## 17862    1192
## 17877    1214
## 17887    1237
## 17899    1265
## 17913    1291
## 17921    1320
## 17926    1342
## 17928    1347
## 17929    1350
## 17930    1356
## 17933    1372
## 17934    1374
## 17935    1375
## 17936    1376
## 17937    1377
## 17938    1378
## 17941    1388
## 17943    1391
## 17948    1485
## 17949    1499
## 17952    1517
## 17953    1518
## 17955    1544
## 17956    1552
## 17957    1554
## 17958    1556
## 17959    1562
## 17961    1569
## 17962    1573
## 17964    1584
## 17965    1586
## 17966    1587
## 17967    1588
## 17968    1589
## 17969    1591
## 17971    1603
## 17972    1606
## 17973    1608
## 17976    1613
## 17978    1619
## 17982    1641
## 17983    1646
## 17985    1663
## 17986    1670
## 17988    1676
## 17989    1678
## 17990    1682
## 17991    1687
## 17992    1689
## 17993    1690
## 17994    1694
## 17995    1702
## 17998    1713
## 17999    1721
## 18000    1727
## 18001    1729
## 18005    1754
## 18006    1762
## 18007    1769
## 18008    1772
## 18009    1777
## 18010    1779
## 18013    1792
## 18014    1799
## 18015    1801
## 18016    1804
## 18019    1827
## 18020    1831
## 18021    1833
## 18022    1834
## 18023    1848
## 18024    1852
## 18025    1862
## 18026    1866
## 18027    1876
## 18028    1882
## 18030    1884
## 18032    1894
## 18033    1911
## 18035    1917
## 18037    1920
## 18040    1924
## 18046    1954
## 18047    1955
## 18055    1967
## 18059    1999
## 18061    2001
## 18062    2002
## 18063    2005
## 18066    2011
## 18067    2012
## 18068    2013
## 18070    2021
## 18072    2053
## 18073    2054
## 18080    2080
## 18083    2094
## 18085    2100
## 18088    2105
## 18091    2111
## 18093    2115
## 18094    2118
## 18095    2120
## 18096    2124
## 18098    2136
## 18099    2138
## 18100    2140
## 18101    2143
## 18102    2155
## 18104    2161
## 18105    2167
## 18110    2240
## 18112    2253
## 18113    2263
## 18116    2279
## 18120    2297
## 18121    2302
## 18123    2306
## 18124    2312
## 18131    2338
## 18132    2340
## 18133    2346
## 18135    2353
## 18136    2355
## 18139    2365
## 18141    2369
## 18142    2371
## 18143    2373
## 18145    2391
## 18147    2404
## 18148    2406
## 18150    2411
## 18151    2412
## 18152    2414
## 18153    2420
## 18154    2421
## 18155    2422
## 18156    2425
## 18158    2454
## 18159    2455
## 18163    2478
## 18164    2498
## 18166    2524
## 18167    2527
## 18169    2539
## 18170    2542
## 18172    2574
## 18173    2587
## 18174    2590
## 18175    2600
## 18176    2616
## 18177    2617
## 18178    2622
## 18179    2628
## 18185    2672
## 18187    2688
## 18188    2700
## 18189    2701
## 18190    2707
## 18191    2710
## 18192    2713
## 18194    2719
## 18196    2734
## 18201    2769
## 18202    2770
## 18203    2779
## 18205    2797
## 18207    2826
## 18208    2828
## 18211    2863
## 18213    2872
## 18220    2921
## 18229    2985
## 18234    3032
## 18237    3039
## 18242    3099
## 18243    3100
## 18244    3107
## 18246    3113
## 18248    3127
## 18249    3129
## 18252    3159
## 18253    3160
## 18256    3175
## 18263    3250
## 18265    3253
## 18266    3255
## 18267    3263
## 18271    3324
## 18274    3354
## 18275    3355
## 18276    3360
## 18278    3379
## 18279    3388
## 18282    3409
## 18287    3438
## 18288    3441
## 18290    3450
## 18291    3457
## 18298    3489
## 18299    3490
## 18303    3535
## 18305    3563
## 18308    3701
## 18313    3827
## 18314    3841
## 18316    3869
## 18317    3889
## 18318    3893
## 18319    3895
## 18323    3928
## 18326    3946
## 18329    3977
## 18331    3986
## 18332    4018
## 18333    4106
## 18334    4139
## 18343       1
## 18344      32
## 18345      36
## 18346      47
## 18349     185
## 18350     198
## 18351     231
## 18352     292
## 18353     296
## 18355     364
## 18356     377
## 18357     380
## 18358     454
## 18359     457
## 18360     480
## 18361     500
## 18362     539
## 18363     587
## 18365     592
## 18367     597
## 18368     608
## 18369     648
## 18370     733
## 18371     736
## 18372     780
## 18373     903
## 18376    1097
## 18377    1198
## 18378    1214
## 18382    1302
## 18383    1307
## 18384    1343
## 18387    1388
## 18388    1389
## 18389    1391
## 18390    1393
## 18391    1476
## 18392    1517
## 18393    1552
## 18394    1573
## 18396    1597
## 18397    1608
## 18400    1721
## 18401    1748
## 18402    1777
## 18406    1994
## 18407    1997
## 18408    2000
## 18409    2003
## 18410    2009
## 18411    2013
## 18416    2321
## 18417    2371
## 18420    2407
## 18422    2470
## 18423    2474
## 18426    2640
## 18427    2699
## 18431    2795
## 18433    2858
## 18437    2959
## 18438    2987
## 18439    2997
## 18440    3039
## 18441    3098
## 18443    3102
## 18445    3253
## 18446    3360
## 18447    3363
## 18449    3448
## 18450    3481
## 18453    3635
## 18454    3671
## 18455    3793
## 18456    4002
## 18457    4007
## 18458    4022
## 18460    4102
## 18461    4220
## 18463    4306
## 18466    4973
## 18467    5049
## 18468    5250
## 18472    5693
## 18473    6188
## 18475    6787
## 18476    6874
## 18479   32587
## 18480   48385
## 18483      10
## 18491     105
## 18493     112
## 18494     125
## 18496     153
## 18499     165
## 18501     186
## 18509     253
## 18510     256
## 18521     316
## 18524     339
## 18526     348
## 18533     435
## 18536     454
## 18546     539
## 18548     553
## 18549     585
## 18550     587
## 18557     597
## 18558     610
## 18561       1
## 18562      10
## 18563      17
## 18564      28
## 18566     150
## 18567     153
## 18568     161
## 18569     165
## 18570     185
## 18571     208
## 18572     231
## 18573     253
## 18574     261
## 18575     265
## 18577     292
## 18578     296
## 18579     300
## 18582     329
## 18583     339
## 18584     342
## 18585     344
## 18586     349
## 18587     356
## 18588     380
## 18589     434
## 18590     468
## 18592     527
## 18595     588
## 18596     590
## 18597     592
## 18598     595
## 18599     613
## 18600     668
## 18605     968
## 18609    2369
## 18610    2378
## 18613    2672
## 18614    2699
## 18615    2702
## 18616    2707
## 18617    2710
## 18621    2995
## 18626    3273
## 18628    3578
## 18630    3857
## 18635       2
## 18637      47
## 18639     266
## 18641     296
## 18642     318
## 18646     541
## 18648     593
## 18649     786
## 18655    1222
## 18661    1961
## 18662    2000
## 18667    2683
## 18672    3066
## 18676    3793
## 18677    3996
## 18678    4011
## 18685    4995
## 18686    5218
## 18687    5418
## 18688    5445
## 18689    5679
## 18690    5782
## 18692    5989
## 18693    6323
## 18696    6874
## 18697    6942
## 18698    7090
## 18701    7360
## 18702    7438
## 18706    8665
## 18707    8798
## 18708    8874
## 18709    8957
## 18711   30707
## 18713   33166
## 18714   33493
## 18715   34405
## 18716   37475
## 18726     208
## 18736     367
## 18738     457
## 18747     597
## 18751     780
## 18759     920
## 18762    1035
## 18777    1220
## 18782    1242
## 18796    1653
## 18801    1729
## 18803    1777
## 18807    1917
## 18810    2011
## 18811    2012
## 18814    2355
## 18820    2628
## 18822    2706
## 18832    2987
## 18833    3033
## 18836    3246
## 18842    3717
## 18843    3751
## 18844    3755
## 18846    3948
## 18847    3994
## 18848    4002
## 18849    4018
## 18850    4022
## 18852    4025
## 18857    4367
## 18861    5266
## 18864    5378
## 18865    5459
## 18866    5481
## 18868    5952
## 18872    6539
## 18873    6708
## 18875    6863
## 18878    6947
## 18880    6979
## 18884    8360
## 18887    8798
## 18892   30793
## 18895   33493
## 18896   33679
## 18903   45447
## 18904   45722
## 18907   47610
## 18917   57669
## 18924   66659
## 18926   68319
## 18930       2
## 18931      10
## 18932      34
## 18933      39
## 18934      48
## 18936      95
## 18939     160
## 18941     185
## 18942     186
## 18943     207
## 18944     208
## 18947     252
## 18948     256
## 18950     316
## 18951     317
## 18953     329
## 18956     350
## 18958     357
## 18959     362
## 18966     421
## 18967     435
## 18969     454
## 18970     455
## 18973     468
## 18980     531
## 18985     590
## 18988     594
## 18991     616
## 18992     736
## 18999     350
## 19004     381
## 19005     420
## 19007     480
## 19016       3
## 19017       4
## 19020      25
## 19025      60
## 19029      93
## 19031     111
## 19034     153
## 19039     217
## 19040     225
## 19041     239
## 19042     253
## 19044     258
## 19046     273
## 19047     276
## 19057     367
## 19066     517
## 19069     552
## 19070     558
## 19080     724
## 19084     782
## 19088     891
## 19099    1064
## 19102    1100
## 19103    1183
## 19104    1197
## 19106    1215
## 19107    1265
## 19108    1282
## 19109    1320
## 19112    1391
## 19116    1457
## 19120    1499
## 19123    1541
## 19124    1544
## 19131    1608
## 19134    1617
## 19135    1644
## 19136    1645
## 19137    1667
## 19139    1687
## 19141    1717
## 19143    1760
## 19145    1866
## 19146    1876
## 19147    1889
## 19152    2006
## 19154    2028
## 19166    2142
## 19169    2279
## 19175    2385
## 19176    2389
## 19179    2490
## 19181    2548
## 19184    2581
## 19192    2688
## 19194    2710
## 19195    2719
## 19196    2722
## 19204    2906
## 19205    2978
## 19206    3005
## 19211    3159
## 19212    3176
## 19214    3185
## 19215    3285
## 19216    3298
## 19217    3299
## 19218    3400
## 19223    3535
## 19226    3555
## 19227    3556
## 19230    3615
## 19231    3675
## 19232    3709
## 19238    3824
## 19240    3897
## 19241    3908
## 19242    3953
## 19243    3977
## 19249    4016
## 19258    4148
## 19262    4246
## 19268    4367
## 19270    4372
## 19271    4388
## 19273    4639
## 19276    4727
## 19277    4745
## 19278    4756
## 19282    4865
## 19288    4903
## 19292    4977
## 19293    4979
## 19296    5010
## 19297    5013
## 19306    5296
## 19309    5349
## 19311    5388
## 19321    5677
## 19323    5693
## 19325    5816
## 19326    5829
## 19327    5872
## 19329    5954
## 19336    6316
## 19337      39
## 19339     736
## 19340    1027
## 19341    1245
## 19343    2163
## 19345    3593
## 19348    3616
## 19349    3617
## 19350    3618
## 19352    3624
## 19353    3691
## 19354    3717
## 19355    3744
## 19356    3745
## 19358    3752
## 19361    3785
## 19362    3793
## 19363       1
## 19364      10
## 19365      19
## 19366      21
## 19367      34
## 19369      48
## 19370      50
## 19371     104
## 19372     110
## 19373     141
## 19375     153
## 19376     165
## 19377     173
## 19378     193
## 19379     216
## 19380     223
## 19381     231
## 19382     235
## 19385     266
## 19386     272
## 19387     288
## 19389     300
## 19390     303
## 19391     315
## 19392     316
## 19393     318
## 19394     333
## 19396     339
## 19397     349
## 19398     353
## 19399     356
## 19400     364
## 19401     367
## 19402     368
## 19403     377
## 19404     380
## 19405     410
## 19406     423
## 19407     442
## 19408     454
## 19410     475
## 19411     480
## 19413     500
## 19414     508
## 19417     543
## 19418     551
## 19420     589
## 19422     592
## 19423     593
## 19425     595
## 19427     597
## 19428     608
## 19429     610
## 19430     648
## 19431     661
## 19432     674
## 19434     736
## 19436     750
## 19437     780
## 19438     785
## 19441     908
## 19442     914
## 19443     919
## 19450    1042
## 19452    1079
## 19453    1080
## 19456    1092
## 19457    1097
## 19458    1101
## 19459    1127
## 19463    1193
## 19467    1199
## 19471    1206
## 19474    1213
## 19476    1215
## 19478    1222
## 19481    1225
## 19483    1243
## 19485    1247
## 19488    1259
## 19494    1275
## 19495    1276
## 19502    1302
## 19504    1307
## 19505    1333
## 19506    1339
## 19507    1357
## 19508    1370
## 19509    1371
## 19510    1372
## 19512    1375
## 19513    1377
## 19514    1378
## 19515    1380
## 19516    1387
## 19517    1391
## 19518    1393
## 19519    1396
## 19522    1466
## 19523    1485
## 19526    1544
## 19527    1562
## 19528    1566
## 19530    1610
## 19531    1617
## 19532    1625
## 19533    1641
## 19534    1674
## 19535    1676
## 19536    1682
## 19537    1704
## 19538    1721
## 19539    1722
## 19540    1729
## 19542    1747
## 19544    1777
## 19545    1884
## 19546    1909
## 19549    1961
## 19551    1997
## 19552    2000
## 19553    2001
## 19554    2003
## 19556    2006
## 19557    2011
## 19558    2012
## 19559    2021
## 19560    2023
## 19562    2054
## 19563    2078
## 19564    2081
## 19567    2100
## 19570    2115
## 19571    2117
## 19572    2124
## 19574    2140
## 19576    2151
## 19577    2161
## 19578    2174
## 19580    2268
## 19581    2291
## 19582    2294
## 19583    2302
## 19585    2355
## 19587    2396
## 19589    2407
## 19590    2409
## 19591    2411
## 19592    2421
## 19593    2455
## 19595    2470
## 19597    2513
## 19600    2628
## 19601    2640
## 19602    2642
## 19603    2657
## 19604    2699
## 19608    2761
## 19609    2763
## 19610    2788
## 19611    2791
## 19612    2792
## 19613    2795
## 19614    2797
## 19615    2804
## 19616    2858
## 19618    2915
## 19619    2916
## 19621    2942
## 19622    2947
## 19624    2949
## 19625    2950
## 19630    2987
## 19631    2991
## 19632    2993
## 19633    2997
## 19634    3033
## 19636    3039
## 19638    3087
## 19639    3088
## 19640    3098
## 19641    3100
## 19642    3101
## 19643    3107
## 19644    3108
## 19646    3173
## 19647    3175
## 19648    3247
## 19649    3253
## 19650    3256
## 19651    3360
## 19653    3441
## 19654    3448
## 19655    3481
## 19657    3578
## 19659    3623
## 19660    3671
## 19663    3740
## 19664    3755
## 19666    3897
## 19667    3911
## 19668    3967
## 19671    4022
## 19676    4262
## 19677    4306
## 19678    4369
## 19680    4545
## 19682    4623
## 19683    4643
## 19686    4886
## 19688    4963
## 19689    4971
## 19690    4980
## 19692    4995
## 19693    5014
## 19694    5016
## 19695    5049
## 19696    5299
## 19699    5418
## 19700    5445
## 19702    5782
## 19708    6365
## 19709    6377
## 19710    6378
## 19711    6440
## 19713    6664
## 19717    6807
## 19718    6934
## 19719    6947
## 19722    7247
## 19723    7373
## 19727    8580
## 19728    8636
## 19729    8644
## 19730    8665
## 19731    8879
## 19735   33794
## 19736   40959
## 19740     355
## 19745    1233
## 19753    2420
## 19755    2683
## 19756    2688
## 19757    2692
## 19758    2700
## 19759    2706
## 19762    2763
## 19765    3253
## 19768    3824
## 19769    3852
## 19772    3977
## 19773    3979
## 19774    3988
## 19775    3991
## 19777    4025
## 19778    4031
## 19781    4310
## 19783     153
## 19786     364
## 19787     377
## 19788     590
## 19789     593
## 19790     595
## 19792    1270
## 19794    2028
## 19799    2571
## 19807    3744
## 19809    4306
## 19811    4873
## 19834   27255
## 19836   27904
## 19847   48744
## 19857   57792
## 19858   60069
## 19864   67267
## 19874   79132
## 19876      47
## 19877     110
## 19878     111
## 19879     215
## 19880     247
## 19882     318
## 19883     356
## 19884     551
## 19885     593
## 19886     595
## 19887     745
## 19888     912
## 19889     919
## 19890    1028
## 19891    1080
## 19892    1088
## 19893    1148
## 19895    1193
## 19896    1198
## 19898    1222
## 19899    1235
## 19900    1247
## 19902    1265
## 19903    1270
## 19904    1271
## 19905    1302
## 19906    1354
## 19907    1357
## 19908    1527
## 19909    1653
## 19911    1732
## 19912    1784
## 19913    1884
## 19914    1968
## 19915    2005
## 19917    2087
## 19918    2090
## 19919    2096
## 19920    2297
## 19922    2329
## 19923    2692
## 19924    2739
## 19925    2762
## 19926    2918
## 19927    2920
## 19928    2959
## 19929    3317
## 19930    3897
## 19931    3949
## 19932    3977
## 19934    4973
## 19936    4993
## 19937    5218
## 19938    5464
## 19939    5608
## 19941    5992
## 19942    6218
## 19943    6724
## 19944    6874
## 19945    6953
## 19946    7034
## 19947    7042
## 19948    7147
## 19949    7254
## 19950    7323
## 19953    8464
## 19954    8533
## 19955    8638
## 19957   27178
## 19958   27721
## 19959   30707
## 19960   30810
## 19962   36535
## 19963   39183
## 19964   40629
## 19966   40819
## 19967   40870
## 19968   41566
## 19969   43376
## 19970   45722
## 19971   46578
## 19972   46723
## 19973   47099
## 19974   47423
## 19975   48082
## 19976   48394
## 19977   53123
## 19979   55247
## 19981   55442
## 19982   55444
## 19984   56587
## 19987   60069
## 19988   60950
## 19990   63876
## 19991   64614
## 19992   64701
## 19994   64957
## 19999   71899
## 20000   72011
## 20001   72395
## 20004   73321
## 20005   79132
## 20008   81591
## 20010   82459
## 20011   85438
## 20012   85612
## 20013   86880
## 20014   86882
## 20016   88810
## 20017   89492
## 20018   89864
## 20019   90866
## 20020   91500
## 20021   91653
## 20022   92259
## 20024   95510
## 20025   96821
## 20026   97304
## 20027   97921
## 20029   98056
## 20031   99114
## 20032  100383
## 20034  102792
## 20037  103279
## 20038  103372
## 20039  104374
## 20040  104841
## 20041  104879
## 20045  106782
## 20046  106916
## 20048  107141
## 20050  109374
## 20051  110730
## 20052  112290
## 20053  116939
## 20054       1
## 20056       5
## 20059      19
## 20063      39
## 20065     110
## 20067     145
## 20068     153
## 20070     196
## 20071     223
## 20072     231
## 20074     260
## 20080     317
## 20085     344
## 20088     364
## 20089     367
## 20090     377
## 20094     485
## 20095     494
## 20097     539
## 20100     552
## 20101     586
## 20102     587
## 20103     588
## 20107     595
## 20108     597
## 20115     910
## 20117     950
## 20118    1036
## 20123    1094
## 20125    1101
## 20136    1208
## 20142    1222
## 20143    1233
## 20145    1242
## 20146    1246
## 20152    1261
## 20153    1265
## 20155    1275
## 20159    1307
## 20166    1380
## 20173    1573
## 20175    1584
## 20181    1721
## 20183    1917
## 20191    2001
## 20194    2011
## 20195    2012
## 20196    2054
## 20197    2072
## 20198    2100
## 20205    2288
## 20210    2355
## 20211    2492
## 20216    2572
## 20219    2617
## 20229    2797
## 20242    3095
## 20244    3114
## 20254    3578
## 20260    3751
## 20263    3948
## 20264    3977
## 20277    4886
## 20282    4993
## 20291    5952
## 20296    6377
## 20298    6383
## 20300    6539
## 20305    7104
## 20306    7153
## 20308    7444
## 20309    8169
## 20315    8961
## 20316   27751
## 20318   33794
## 20331   56757
## 20333   58559
## 20337   60069
## 20339   66934
## 20340   68135
## 20351   78499
## 20356   91529
## 20360   94959
## 20362   96610
## 20363   97757
## 20365      10
## 20367      20
## 20368      21
## 20369      27
## 20370      65
## 20371     102
## 20372     104
## 20374     135
## 20375     209
## 20376     637
## 20377     662
## 20378     736
## 20379     737
## 20380     747
## 20381     754
## 20382     762
## 20384     818
## 20385     849
## 20386    1103
## 20392     500
## 20393     586
## 20397     912
## 20401    1210
## 20402    1265
## 20404    1968
## 20405    2014
## 20406    2135
## 20409    2422
## 20411    2797
## 20412    2926
## 20414    3461
## 20415    3552
## 20418    3991
## 20421    4886
## 20428    6535
## 20430    6663
## 20431    6794
## 20433    8636
## 20435   34332
## 20440      60
## 20447     531
## 20452     594
## 20458     919
## 20460     986
## 20463    1073
## 20464    1077
## 20468    1200
## 20470    1214
## 20472    1244
## 20476    1282
## 20479    1292
## 20481    1537
## 20485    1784
## 20486    1848
## 20487    1976
## 20492    2021
## 20493    2043
## 20494    2054
## 20496    2094
## 20498    2135
## 20499    2161
## 20500    2174
## 20501    2279
## 20503    2522
## 20508    2791
## 20510    2858
## 20512    2987
## 20514    3156
## 20517       1
## 20523     480
## 20525     780
## 20533    1221
## 20536    1584
## 20537    2028
## 20538    2329
## 20539    2571
## 20541    3578
## 20542    3793
## 20544    4306
## 20545    4886
## 20546    4993
## 20548    5349
## 20549    5388
## 20550    5816
## 20551    5952
## 20553    6016
## 20554    6333
## 20555    6377
## 20556    6539
## 20557    7153
## 20559    8360
## 20560    8368
## 20561    8636
## 20562    8961
## 20564   44555
## 20567   55247
## 20569   59315
## 20573   80463
## 20575   81845
## 20576   86880
## 20577   86911
## 20578   88810
## 20579   89904
## 20580   90866
## 20582   95510
## 20583   97938
## 20585  103249
## 20586  104841
## 20587  105844
## 20588  106100
## 20590  109374
## 20592  112552
## 20595  122882
## 20596  122900
## 20597  134170
## 20598     110
## 20599     318
## 20604     589
## 20605     785
## 20606     852
## 20607    1011
## 20610    1206
## 20613    1242
## 20617    1461
## 20619    1580
## 20621    1653
## 20623    1917
## 20624    1958
## 20626    1968
## 20628    2100
## 20629    2174
## 20631    2302
## 20633    2395
## 20634    2529
## 20636    2712
## 20637    2791
## 20640    2918
## 20647    3702
## 20648    3994
## 20649    4149
## 20651    4247
## 20652    4290
## 20653    4394
## 20654    4532
## 20655    4929
## 20657    5054
## 20659    5349
## 20660    5360
## 20667      60
## 20668     216
## 20669     256
## 20670     267
## 20672     342
## 20675     552
## 20678    1197
## 20680    1513
## 20682    2329
## 20684    2565
## 20685    3247
## 20686    3564
## 20692    5445
## 20693    5618
## 20694    5816
## 20696    6218
## 20698    6942
## 20701   57504
## 20702   72641
## 20703   74458
## 20704   81845
## 20705   81847
## 20706   88125
## 20707   97895
## 20708  103801
## 20714     356
## 20716     648
## 20717    1061
## 20718    1210
## 20719    1544
## 20721    1876
## 20723    2427
## 20725    2628
## 20726    2724
## 20727    2881
## 20729    3185
## 20731    3354
## 20732    3513
## 20733    3623
## 20735    3755
## 20736    3793
## 20738    4022
## 20742    4638
## 20744     150
## 20745     260
## 20746     296
## 20747     344
## 20748     356
## 20750     904
## 20751     909
## 20753    1097
## 20754    1136
## 20755    1196
## 20758    1327
## 20759    1379
## 20761    1499
## 20762    1984
## 20763    2011
## 20764    2012
## 20765    2028
## 20766    2133
## 20767    2262
## 20768    2378
## 20769    2522
## 20770    2699
## 20771    2791
## 20772    2846
## 20773    2971
## 20777    3250
## 20779    3363
## 20780    3421
## 20781    3471
## 20782    3524
## 20783    3534
## 20784    3543
## 20785    4238
## 20786    4291
## 20787    4465
## 20788    4564
## 20789    4673
## 20790    4677
## 20791    4679
## 20792    4686
## 20793    4709
## 20794    4714
## 20795    4720
## 20796    4744
## 20797    4784
## 20799    4803
## 20801    4830
## 20802    4834
## 20803    4835
## 20806     160
## 20807     173
## 20808     225
## 20811     353
## 20813     370
## 20814     432
## 20815     480
## 20816     522
## 20817     527
## 20820     832
## 20826    1245
## 20828    1252
## 20830    1288
## 20833    1380
## 20834    1449
## 20835    1653
## 20839    2011
## 20840    2054
## 20844    2599
## 20846    2908
## 20848    3019
## 20849    3949
## 20851    4034
## 20853    4262
## 20855    4848
## 20857    4886
## 20862    5445
## 20876   33794
## 20877   34437
## 20880   45499
## 20882      21
## 20884      39
## 20886     150
## 20887     153
## 20889     185
## 20891     253
## 20893     282
## 20894     288
## 20895     292
## 20897     315
## 20898     316
## 20899     329
## 20901     344
## 20903     356
## 20906     380
## 20907     410
## 20908     420
## 20909     432
## 20910     434
## 20914     500
## 20916     553
## 20917     588
## 20920     592
## 20927     150
## 20932     208
## 20935     253
## 20937     296
## 20938     300
## 20941     329
## 20962     153
## 20963     165
## 20966     344
## 20969     377
## 20970     380
## 20971     435
## 20974     494
## 20976     524
## 20977     543
## 20982     736
## 20983     780
## 20984    1097
## 20990    1569
## 20991    1580
## 20992    1721
## 20993    1831
## 20994    2006
## 20996    2302
## 20997    2478
## 20998    2628
## 21001    2762
## 21003    2881
## 21004    2959
## 21005    3105
## 21006    3247
## 21010    4886
## 21012    5378
## 21014    6711
## 21015    6874
## 21016    7438
## 21017    8360
## 21019   33493
## 21020   33794
## 21023   49272
## 21024   51662
## 21025   56367
## 21027   59315
## 21028   59945
## 21030   66915
## 21032   71460
## 21035     207
## 21037     381
## 21042    1199
## 21044    1556
## 21046    1665
## 21052    2686
## 21058    3396
## 21059    3825
## 21066   35836
## 21071      29
## 21076     145
## 21077     172
## 21078     185
## 21083     492
## 21084     585
## 21086     589
## 21087     590
## 21090     780
## 21096     934
## 21097     950
## 21100    1037
## 21108    1249
## 21110    1258
## 21111    1261
## 21117    1391
## 21121    1544
## 21123    1584
## 21128    1676
## 21129    1690
## 21132    1779
## 21133    1909
## 21137    2053
## 21147    2628
## 21148    2706
## 21151    2986
## 21154    3176
## 21156    3262
## 21158    3386
## 21167    3977
## 21169    4105
## 21172    4734
## 21174    4848
## 21179    5013
## 21188    5902
## 21189    5944
## 21192    5956
## 21197    6303
## 21198    6333
## 21203       1
## 21204      39
## 21205      47
## 21206      50
## 21207     104
## 21209     253
## 21210     260
## 21214     337
## 21215     356
## 21216     480
## 21217     541
## 21218     586
## 21219     593
## 21220     610
## 21221     780
## 21222     908
## 21224    1090
## 21225    1103
## 21226    1193
## 21227    1197
## 21228    1222
## 21229    1230
## 21232    1270
## 21233    1274
## 21234    1347
## 21238    1676
## 21239    1682
## 21241    1732
## 21243    1982
## 21244    1994
## 21248    2291
## 21250    2360
## 21251    2485
## 21252    2541
## 21253    2571
## 21256    2706
## 21258    2791
## 21259    2858
## 21263    2997
## 21264    3000
## 21265    3039
## 21266    3147
## 21268    3409
## 21269    3535
## 21271    3617
## 21273    3949
## 21274    3969
## 21275    3979
## 21276    4002
## 21278    4014
## 21279    4016
## 21282    4262
## 21283    4299
## 21285    4624
## 21286    4641
## 21290    4886
## 21291    4896
## 21292    4973
## 21293    4974
## 21294    5481
## 21296    5679
## 21297    5903
## 21298    5971
## 21300    6593
## 21303    7153
## 21304    7316
## 21305    7361
## 21307    7438
## 21309    8528
## 21310    8529
## 21311    8644
## 21312    8784
## 21313    8874
## 21314    8917
## 21316   27773
## 21317   30707
## 21320   33679
## 21321   34048
## 21322   34162
## 21324   35836
## 21331   45722
## 21332   46578
## 21333   46976
## 21335   48394
## 21336   48516
## 21337   48780
## 21339   50872
## 21340   51662
## 21341   52281
## 21344   54503
## 21345   54995
## 21349   56949
## 21351   59369
## 21352   60684
## 21354   61071
## 21355   63082
## 21356   63992
## 21357   64614
## 21359   65261
## 21362   68157
## 21363   68954
## 21364   69757
## 21365   70286
## 21366   71535
## 21367   71899
## 21368   72998
## 21369   74458
## 21370   76093
## 21371   76251
## 21373   79091
## 21377   80549
## 21378   80969
## 21381   81845
## 21388   88810
## 21389   89745
## 21390   89864
## 21393   90866
## 21396   91542
## 21399   94959
## 21403   98809
## 21404   99114
## 21406  103249
## 21410  106100
## 21419  112552
## 21420  112852
## 21421  114180
## 21422  114935
## 21428  117444
## 21429  117533
## 21431  122882
## 21432  127152
## 21434       1
## 21435       2
## 21436       5
## 21438      19
## 21439      21
## 21440      23
## 21442      31
## 21443      39
## 21444      44
## 21445      45
## 21447      60
## 21448      69
## 21449      70
## 21450      71
## 21451      95
## 21455     145
## 21456     153
## 21457     165
## 21458     170
## 21459     172
## 21460     174
## 21461     180
## 21462     185
## 21463     196
## 21464     208
## 21466     227
## 21467     231
## 21468     256
## 21470     288
## 21471     292
## 21475     327
## 21476     333
## 21477     339
## 21478     342
## 21479     344
## 21482     364
## 21483     367
## 21485     377
## 21487     432
## 21488     435
## 21489     442
## 21491     480
## 21492     500
## 21493     508
## 21494     520
## 21495     539
## 21496     541
## 21497     544
## 21498     548
## 21499     586
## 21500     588
## 21501     589
## 21502     590
## 21503     592
## 21504     648
## 21505     733
## 21508     784
## 21509     785
## 21510     786
## 21511     788
## 21512     799
## 21514     809
## 21515     829
## 21516     832
## 21517     836
## 21518     852
## 21519     858
## 21521    1005
## 21522    1020
## 21525    1047
## 21526    1061
## 21527    1064
## 21528    1073
## 21529    1097
## 21530    1126
## 21534    1240
## 21535    1246
## 21537    1265
## 21541    1370
## 21542    1371
## 21543    1373
## 21544    1374
## 21545    1375
## 21546    1376
## 21547    1377
## 21548    1391
## 21549    1393
## 21551    1405
## 21552    1407
## 21553    1409
## 21554    1429
## 21555    1485
## 21556    1500
## 21557    1515
## 21558    1517
## 21559    1518
## 21561    1544
## 21562    1552
## 21564    1580
## 21566    1588
## 21568    1597
## 21569    1608
## 21571    1616
## 21572    1617
## 21575    1641
## 21576    1644
## 21578    1653
## 21579    1668
## 21580    1673
## 21581    1676
## 21582    1682
## 21586    1732
## 21587    1746
## 21589    1752
## 21591    1784
## 21592    1792
## 21593    1831
## 21594    1833
## 21596    1892
## 21597    1894
## 21598    1895
## 21599    1909
## 21601    1918
## 21602    1923
## 21604    1961
## 21605    1967
## 21606    2000
## 21607    2001
## 21608    2002
## 21609    2004
## 21610    2005
## 21614    2042
## 21615    2054
## 21616    2058
## 21617    2082
## 21618    2114
## 21621    2253
## 21622    2273
## 21623    2294
## 21624    2321
## 21625    2334
## 21627    2338
## 21629    2355
## 21630    2376
## 21631    2396
## 21632    2420
## 21633    2421
## 21634    2422
## 21635    2424
## 21636    2485
## 21637    2490
## 21638    2496
## 21639    2502
## 21640    2505
## 21641    2541
## 21642    2567
## 21644    2572
## 21645    2580
## 21646    2605
## 21648    2628
## 21649    2640
## 21650    2683
## 21651    2694
## 21652    2701
## 21653    2706
## 21654    2707
## 21655    2716
## 21656    2722
## 21658    2763
## 21659    2770
## 21660    2797
## 21661    2858
## 21663    2916
## 21665    2947
## 21666    2948
## 21667    2949
## 21668    2953
## 21669    2959
## 21670    2987
## 21671    2989
## 21672    2990
## 21673    2991
## 21674    2993
## 21675    2997
## 21676    3005
## 21677    3039
## 21678    3052
## 21680    3146
## 21683    3208
## 21684    3253
## 21685    3254
## 21687    3261
## 21688    3301
## 21689    3316
## 21690    3408
## 21692    3466
## 21693    3477
## 21694    3509
## 21695    3510
## 21696    3534
## 21697    3536
## 21700    3623
## 21701    3635
## 21702    3638
## 21703    3639
## 21704    3698
## 21705    3753
## 21707    3798
## 21708    3821
## 21709    3861
## 21710    3863
## 21714    3959
## 21715    3975
## 21716    3977
## 21717    3984
## 21718    3994
## 21719    3998
## 21720    4018
## 21721    4020
## 21722    4023
## 21723    4025
## 21724    4027
## 21725    4040
## 21726    4149
## 21727    4153
## 21728    4214
## 21729    4223
## 21731    4226
## 21732    4228
## 21733    4229
## 21734    4238
## 21735    4265
## 21736    4321
## 21737    4343
## 21739    4351
## 21740    4369
## 21741    4448
## 21743    4545
## 21744    4571
## 21745    4616
## 21746    4638
## 21747    4701
## 21749    4727
## 21750    4734
## 21751    4757
## 21752    4814
## 21754    4866
## 21756    4896
## 21757    4901
## 21758    4951
## 21760    4980
## 21762    5010
## 21763    5025
## 21764    5081
## 21765    5093
## 21766    5171
## 21767    5219
## 21768    5282
## 21769    5283
## 21770    5312
## 21771    5349
## 21772    5377
## 21773    5378
## 21776    5445
## 21777    5449
## 21778    5459
## 21779    5502
## 21780    5574
## 21781    5816
## 21784    5956
## 21785    6059
## 21787    6250
## 21788    6264
## 21789    6265
## 21791    6294
## 21792    6322
## 21793    6323
## 21794    6333
## 21796    6373
## 21798    6383
## 21800    6537
## 21802    6541
## 21803    6708
## 21805    6764
## 21807    6936
## 21808    6944
## 21809    7101
## 21811    7173
## 21814    7325
## 21816    7360
## 21817    7381
## 21819    7569
## 21820    7570
## 21821    7573
## 21823    8368
## 21825    8493
## 21827    8614
## 21830    8874
## 21832    8968
## 21834   27338
## 21835   27808
## 21836   27821
## 21838   34048
## 21849      19
## 21852      34
## 21853      39
## 21855      50
## 21856      95
## 21859     153
## 21860     160
## 21863     173
## 21864     185
## 21866     225
## 21868     253
## 21869     266
## 21873     300
## 21874     315
## 21876     317
## 21878     339
## 21879     344
## 21885     367
## 21888     410
## 21889     420
## 21890     432
## 21893     440
## 21900     509
## 21902     539
## 21903     553
## 21905     588
## 21907     590
## 21908     592
## 21909     595
## 21910     597
## 21911       1
## 21913      10
## 21914      21
## 21915      25
## 21919      95
## 21920     110
## 21921     111
## 21922     135
## 21923     150
## 21925     185
## 21926     208
## 21927     231
## 21928     253
## 21930     288
## 21935     349
## 21936     356
## 21937     357
## 21939     377
## 21940     380
## 21941     434
## 21942     454
## 21944     480
## 21945     500
## 21947     586
## 21948     587
## 21949     590
## 21951     597
## 21953     733
## 21954     736
## 21955     750
## 21956     778
## 21959    1019
## 21960    1036
## 21961    1089
## 21962    1090
## 21963    1097
## 21966    1193
## 21968    1198
## 21970    1206
## 21973    1222
## 21974    1240
## 21975    1263
## 21977    1270
## 21978    1272
## 21979    1296
## 21980    1476
## 21981    1500
## 21982    1517
## 21983    1527
## 21986    1635
## 21988    1680
## 21989    1682
## 21990    1704
## 21991    1721
## 21994    1961
## 21996    2324
## 21997    2396
## 21998    2431
## 22001    2683
## 22002    2706
## 22003    2762
## 22005    2944
## 22008    3148
## 22009    3257
## 22011    3481
## 22013    3826
## 22014    3897
## 22016    3967
## 22018    4002
## 22019    4011
## 22021    4223
## 22023    4239
## 22024    4306
## 22025    4720
## 22026    4848
## 22028    4886
## 22030    4963
## 22033    4995
## 22034    5010
## 22035    5013
## 22036    5060
## 22037    5349
## 22043    5989
## 22044    6300
## 22047    6539
## 22050    6942
## 22051    6953
## 22052    7022
## 22055    7254
## 22059    8117
## 22061    8533
## 22062    8636
## 22065    8961
## 22066   26614
## 22068   30707
## 22069   30749
## 22072   33166
## 22076   34542
## 22077   36517
## 22078   36529
## 22079   38061
## 22081   40819
## 22082   41566
## 22083   41997
## 22084   44191
## 22085   44195
## 22089   46723
## 22090   47491
## 22091   48774
## 22095   50872
## 22102   56782
## 22103   57669
## 22106   59369
## 22107   59784
## 22110   67255
## 22111   68157
## 22116   70286
## 22119   74458
## 22120   76093
## 22121   78499
## 22123   80463
## 22125   81845
## 22132     110
## 22135     224
## 22139     489
## 22140     546
## 22153    1617
## 22165    2995
## 22167    3269
## 22168    3799
## 22169    3825
## 22171    4270
## 22177    5841
## 22182       5
## 22183       7
## 22186      62
## 22188      92
## 22191     637
## 22196     708
## 22197     711
## 22200     783
## 22206      32
## 22210     480
## 22215     750
## 22216     780
## 22222    1127
## 22225    1175
## 22230    1199
## 22235    1240
## 22236    1396
## 22237    1527
## 22238    1573
## 22240    1704
## 22241    1957
## 22242    1965
## 22243    2011
## 22244    2012
## 22247    2401
## 22249    2528
## 22250    2529
## 22253    2699
## 22254    2739
## 22256    2916
## 22259     485
## 22261     585
## 22269    1722
## 22273    2770
## 22279    3717
## 22301   77561
## 22302       1
## 22303       2
## 22304      10
## 22305      12
## 22307      34
## 22308      47
## 22310     160
## 22311     165
## 22312     208
## 22314     260
## 22315     267
## 22318     316
## 22319     344
## 22320     367
## 22321     370
## 22322     377
## 22323     466
## 22324     480
## 22325     485
## 22326     527
## 22327     541
## 22329     586
## 22331     648
## 22332     733
## 22333     736
## 22336     780
## 22337     924
## 22338    1036
## 22339    1097
## 22340    1127
## 22341    1196
## 22342    1198
## 22346    1210
## 22351    1261
## 22352    1265
## 22355    1291
## 22356    1320
## 22357    1387
## 22358    1391
## 22359    1517
## 22360    1527
## 22361    1544
## 22362    1573
## 22363    1580
## 22364    1590
## 22366    1676
## 22368    1690
## 22369    1721
## 22371    1923
## 22372    1961
## 22373    1991
## 22374    2003
## 22375    2012
## 22376    2025
## 22377    2028
## 22378    2054
## 22379    2115
## 22380    2162
## 22381    2167
## 22384    2355
## 22385    2363
## 22386    2382
## 22387    2383
## 22388    2421
## 22390    2470
## 22391    2502
## 22393    2628
## 22394    2683
## 22396    2706
## 22397    2710
## 22398    2716
## 22402    2890
## 22404    2985
## 22406    3020
## 22407    3113
## 22408    3271
## 22409    3441
## 22410    3527
## 22412    3623
## 22413    3793
## 22414    3917
## 22415    3977
## 22417    4022
## 22418    4036
## 22419    4084
## 22421    4306
## 22422    4310
## 22423    4367
## 22424    4370
## 22426    4545
## 22427    4718
## 22429    4886
## 22430    4902
## 22433    4993
## 22434    5010
## 22436    5254
## 22437    5349
## 22438    5378
## 22439    5418
## 22440    5445
## 22442    5679
## 22443    5690
## 22444    5903
## 22445    5952
## 22447    6218
## 22449    6333
## 22450    6365
## 22451    6373
## 22452    6377
## 22455    6537
## 22456    6539
## 22457    6863
## 22458    6874
## 22459    6934
## 22462    7153
## 22466    7438
## 22467    7454
## 22468    7981
## 22472    8360
## 22473    8361
## 22475    8636
## 22476    8644
## 22477    8665
## 22478    8861
## 22479    8874
## 22482    8961
## 22483    8984
## 22484    8985
## 22485   26547
## 22489   27831
## 22490   30745
## 22491   30793
## 22494   31878
## 22495   32078
## 22498   33004
## 22499   33493
## 22501   34048
## 22502   34150
## 22503   34405
## 22504   35836
## 22509   45499
## 22510   45722
## 22513   47937
## 22514   48082
## 22515   48385
## 22519   49272
## 22520   51255
## 22521   51662
## 22522   52328
## 22526   53464
## 22527   53468
## 22528   53519
## 22529   53996
## 22530   54286
## 22531   54503
## 22532   55684
## 22533   55721
## 22534   55765
## 22536   56174
## 22539   57504
## 22541   58295
## 22542   58376
## 22544   59315
## 22547   60069
## 22548   60074
## 22550   61160
## 22552   62394
## 22556   66097
## 22557   66130
## 22564   69481
## 22566   71106
## 22568   71304
## 22569   71535
## 22571   72378
## 22572   72998
## 22574   74458
## 22575   74789
## 22578   77561
## 22582   80350
## 22585   81417
## 22586   81834
## 22589   83349
## 22593   85414
## 22594   85510
## 22595   86190
## 22596   86320
## 22599   86892
## 22601   88125
## 22603   88140
## 22605   88744
## 22606   89745
## 22610   90469
## 22617   94780
## 22618   94864
## 22619   95510
## 22626  102125
## 22629     327
## 22630     481
## 22631    1388
## 22634    2004
## 22635    2376
## 22637    2533
## 22638    2643
## 22639    3264
## 22640    3386
## 22643   54286
## 22645   60069
## 22646   60293
## 22647   61323
## 22649      10
## 22651      34
## 22652      47
## 22654      62
## 22655      72
## 22656      76
## 22659     150
## 22660     165
## 22661     180
## 22662     231
## 22663     253
## 22668     329
## 22669     344
## 22670     349
## 22672     364
## 22673     367
## 22674     377
## 22675     380
## 22676     434
## 22677     457
## 22679     491
## 22680     497
## 22681     500
## 22683     539
## 22685     587
## 22686     589
## 22687     592
## 22689     597
## 22691     733
## 22692     745
## 22693     780
## 22694     799
## 22704    1080
## 22705    1097
## 22726    1580
## 22727    1586
## 22729    1907
## 22730    1911
## 22731    1952
## 22732    1955
## 22734    1974
## 22738    2302
## 22742    2688
## 22743    2762
## 22745    2959
## 22746    3000
## 22748    3022
## 22750    3070
## 22751    3089
## 22753    3104
## 22754    3498
## 22756    3698
## 22758    3763
## 22760    4226
## 22761    4235
## 22762    4308
## 22764    4848
## 22768    5015
## 22772    5971
## 22773    6016
## 22775    6711
## 22776    6786
## 22777    6807
## 22780    7143
## 22784    8873
## 22785    8966
## 22786   26294
## 22788   27831
## 22790   30810
## 22791   31878
## 22792   36529
## 22794   48394
## 22795   48516
## 22796   51255
## 22797      34
## 22808     527
## 22810     586
## 22812     593
## 22815     858
## 22816    1079
## 22822    1213
## 22826    1270
## 22832    1395
## 22833    1409
## 22834    1485
## 22836    1569
## 22837    1617
## 22842    1727
## 22853    2247
## 22857    2375
## 22860    2469
## 22863    2716
## 22867    2791
## 22868    2858
## 22869    2875
## 22873    2987
## 22877    3157
## 22885    3421
## 22887    3448
## 22888    3450
## 22889    3524
## 22892    3688
## 22893    3690
## 22901      21
## 22902      25
## 22903      31
## 22904      32
## 22906      39
## 22907      44
## 22909      48
## 22913     145
## 22915     153
## 22917     160
## 22920     165
## 22922     173
## 22923     181
## 22925     204
## 22926     224
## 22928     227
## 22929     231
## 22930     236
## 22931     237
## 22933     256
## 22934     261
## 22936     277
## 22938     293
## 22939     296
## 22941     315
## 22942     316
## 22943     317
## 22945     329
## 22946     337
## 22947     339
## 22949     349
## 22953     364
## 22954     367
## 22956     370
## 22960     420
## 22961     434
## 22963     442
## 22968     485
## 22972     515
## 22973     539
## 22975     585
## 22976     586
## 22978     588
## 22980     590
## 22981     592
## 22983     595
## 22984     597
## 22985     608
## 22986     648
## 22987       3
## 22989       6
## 22990       7
## 22992      36
## 22995      64
## 22996     100
## 22997     118
## 23001     494
## 23002     605
## 23004     637
## 23005     648
## 23006     650
## 23007     707
## 23008     708
## 23009     719
## 23010     736
## 23011     780
## 23012     788
## 23013     805
## 23014     852
## 23015    1353
## 23017       1
## 23018      19
## 23021     153
## 23023     296
## 23025     344
## 23027     367
## 23029     480
## 23031     586
## 23032     588
## 23033     589
## 23034     592
## 23036     648
## 23037     743
## 23038     780
## 23040    1092
## 23044    1370
## 23046    1721
## 23048    1835
## 23049    1882
## 23050    1994
## 23053    2324
## 23054    2404
## 23055    2412
## 23057    2571
## 23060    3438
## 23061    3578
## 23062    3615
## 23063    3717
## 23064    3793
## 23065    4718
## 23067    4993
## 23068    5349
## 23069    6059
## 23071    7153
## 23072    8636
## 23073   33493
## 23074   55247
## 23075   56174
## 23078   66544
## 23079   72378
## 23081   74688
## 23082   78499
## 23083   79132
## 23084   82202
## 23085   87485
## 23087   91077
## 23091   98809
## 23092  103249
## 23094  104925
## 23098       1
## 23101     110
## 23104     231
## 23105     260
## 23108     317
## 23112     480
## 23114     609
## 23115     788
## 23116     904
## 23123    1136
## 23128    1210
## 23129    1240
## 23133    1580
## 23134    1688
## 23136    1722
## 23137    1732
## 23138    1907
## 23139    1923
## 23147    3114
## 23148    3253
## 23149    3751
## 23153    4447
## 23157    4993
## 23158    5349
## 23160    5810
## 23161    5952
## 23164    6373
## 23165    6377
## 23166    6502
## 23167    7153
## 23168    8360
## 23171    8636
## 23172    8665
## 23174    8961
## 23177   34048
## 23178   43396
## 23180       1
## 23181       2
## 23182       3
## 23183      10
## 23184      19
## 23185      21
## 23186      22
## 23187      31
## 23189      47
## 23190      50
## 23191      62
## 23193      81
## 23197     112
## 23198     145
## 23199     158
## 23202     173
## 23203     181
## 23204     185
## 23205     196
## 23206     198
## 23207     216
## 23208     225
## 23210     246
## 23211     276
## 23212     280
## 23213     292
## 23215     296
## 23216     317
## 23219     338
## 23220     339
## 23222     350
## 23223     356
## 23224     364
## 23225     367
## 23226     370
## 23227     377
## 23229     393
## 23230     413
## 23231     424
## 23232     428
## 23233     432
## 23234     434
## 23235     442
## 23236     457
## 23238     470
## 23239     480
## 23240     485
## 23241     500
## 23242     502
## 23244     514
## 23246     524
## 23248     529
## 23249     538
## 23250     539
## 23252     546
## 23254     587
## 23258     593
## 23259     595
## 23260     596
## 23261     608
## 23262     648
## 23263     653
## 23264     671
## 23265     673
## 23266     733
## 23267     736
## 23268     741
## 23270     784
## 23271     802
## 23273     810
## 23274     832
## 23275     834
## 23276     866
## 23277     919
## 23279    1022
## 23280    1027
## 23281    1032
## 23282    1036
## 23283    1047
## 23285    1061
## 23287    1092
## 23290    1200
## 23291    1208
## 23292    1215
## 23293    1222
## 23294    1240
## 23295    1257
## 23296    1258
## 23297    1259
## 23299    1270
## 23300    1291
## 23301    1307
## 23302    1320
## 23303    1333
## 23305    1370
## 23307    1380
## 23308    1391
## 23311    1430
## 23312    1447
## 23314    1490
## 23316    1517
## 23318    1532
## 23319    1544
## 23320    1552
## 23321    1562
## 23322    1573
## 23323    1580
## 23324    1597
## 23325    1599
## 23326    1625
## 23327    1632
## 23329    1645
## 23330    1661
## 23331    1681
## 23332    1682
## 23334    1721
## 23335    1729
## 23336    1739
## 23337    1747
## 23339    1777
## 23340    1784
## 23341    1805
## 23342    1840
## 23343    1863
## 23344    1876
## 23345    1882
## 23346    1886
## 23348    1921
## 23349    1923
## 23350    1970
## 23351    1972
## 23352    1997
## 23353    2003
## 23354    2005
## 23355    2012
## 23356    2018
## 23357    2025
## 23359    2054
## 23360    2078
## 23361    2081
## 23362    2087
## 23363    2115
## 23364    2134
## 23365    2174
## 23366    2231
## 23368    2248
## 23369    2253
## 23370    2278
## 23371    2302
## 23372    2321
## 23374    2338
## 23376    2395
## 23379    2422
## 23380    2424
## 23381    2449
## 23382    2455
## 23383    2462
## 23384    2490
## 23385    2502
## 23389    2617
## 23390    2628
## 23391    2662
## 23392    2683
## 23394    2692
## 23395    2699
## 23397    2706
## 23398    2710
## 23399    2716
## 23400    2746
## 23402    2791
## 23404    2799
## 23405    2804
## 23406    2841
## 23407    2845
## 23408    2858
## 23409    2881
## 23410    2890
## 23411    2916
## 23413    2953
## 23415    2979
## 23417    2997
## 23418    3000
## 23421    3046
## 23422    3052
## 23423    3081
## 23424    3101
## 23426    3148
## 23427    3160
## 23428    3253
## 23429    3255
## 23430    3257
## 23431    3271
## 23432    3300
## 23433    3328
## 23434    3350
## 23435    3354
## 23437    3438
## 23439    3440
## 23440    3471
## 23441    3481
## 23442    3510
## 23443    3535
## 23445    3555
## 23446    3578
## 23447    3593
## 23448    3617
## 23449    3623
## 23451    3751
## 23452    3752
## 23453    3761
## 23454    3773
## 23455    3774
## 23456    3785
## 23458    3823
## 23459    3863
## 23460    3869
## 23461    3897
## 23462    3914
## 23463    3916
## 23465    3948
## 23466    3949
## 23467    3973
## 23468    3977
## 23470    4011
## 23471    4019
## 23472    4022
## 23473    4025
## 23474    4034
## 23475    4054
## 23476    4066
## 23477    4105
## 23479    4217
## 23480    4226
## 23482    4255
## 23483    4262
## 23485    4369
## 23486    4370
## 23487    4446
## 23488    4532
## 23491    4616
## 23492    4623
## 23494    4649
## 23495    4720
## 23496    4732
## 23497    4734
## 23498    4749
## 23499    4750
## 23500    4765
## 23501    4775
## 23502    4875
## 23503    4878
## 23504    4886
## 23505    4963
## 23506    4968
## 23507    4995
## 23508    5053
## 23509    5080
## 23510    5094
## 23511    5095
## 23512    5103
## 23513    5106
## 23514    5152
## 23515    5165
## 23516    5170
## 23517    5294
## 23518    5323
## 23519    5329
## 23521    5378
## 23522    5387
## 23523    5418
## 23524    5443
## 23525    5445
## 23526    5448
## 23527    5464
## 23528    5501
## 23530    5507
## 23531    5531
## 23532    5556
## 23533    5562
## 23534    5569
## 23535    5577
## 23537    5609
## 23538    5615
## 23539    5625
## 23540    5628
## 23541    5630
## 23543    5679
## 23545    5880
## 23546    5883
## 23547    5901
## 23548    5902
## 23549    5903
## 23550    5945
## 23553    5962
## 23554    5989
## 23555    6016
## 23556    6057
## 23558    6157
## 23560    6204
## 23561    6218
## 23562    6242
## 23563    6284
## 23565    6333
## 23566    6365
## 23567    6378
## 23568    6464
## 23569    6482
## 23570    6502
## 23571    6587
## 23572    6620
## 23575    6827
## 23576    6867
## 23577    6870
## 23578    6872
## 23580    6909
## 23581    6936
## 23583    6947
## 23584    6953
## 23585    7022
## 23586    7090
## 23587    7117
## 23588    7137
## 23589    7139
## 23591    7160
## 23592    7189
## 23593    7254
## 23594    7263
## 23595    7315
## 23596    7343
## 23599    7387
## 23602    7458
## 23604    7899
## 23605    8130
## 23606    8225
## 23608    8363
## 23609    8366
## 23610    8367
## 23611    8372
## 23612    8528
## 23613    8529
## 23614    8533
## 23615    8534
## 23617    8641
## 23619    8665
## 23620    8667
## 23621    8720
## 23622    8781
## 23623    8783
## 23626    8807
## 23627    8810
## 23628    8832
## 23629    8835
## 23630    8836
## 23631    8839
## 23632    8860
## 23633    8861
## 23634    8864
## 23635    8865
## 23638    8907
## 23639    8908
## 23640    8910
## 23641    8911
## 23642    8918
## 23644    8947
## 23646    8958
## 23647    8961
## 23648    8974
## 23649    8984
## 23651    9018
## 23652   27317
## 23653   27604
## 23655   27808
## 23656   27822
## 23657   27838
## 23658   27869
## 23659   30749
## 23660   30820
## 23661   31221
## 23662   31445
## 23663   31696
## 23664   31724
## 23666   33794
## 23669     163
## 23674     435
## 23675     480
## 23678     608
## 23679     653
## 23680     785
## 23681     912
## 23686    1676
## 23688    1732
## 23689    1917
## 23696    3404
## 23700    3751
## 23704    4367
## 23706    4963
## 23713    6157
## 23714    6287
## 23716    6383
## 23719    6564
## 23721    6596
## 23722    6686
## 23727    1210
## 23735    2174
## 23737    2365
## 23741    2571
## 23742    2640
## 23743    2699
## 23744    2985
## 23748       4
## 23749      20
## 23751      32
## 23754      93
## 23755     110
## 23757     122
## 23758     145
## 23760     151
## 23761     153
## 23762     163
## 23763     164
## 23764     165
## 23765     173
## 23766     175
## 23767     196
## 23768     198
## 23769     204
## 23770     217
## 23771     225
## 23772     227
## 23773     234
## 23775     237
## 23776     252
## 23777     255
## 23778     259
## 23781     287
## 23782     288
## 23783     292
## 23788     329
## 23789     333
## 23791     357
## 23792     358
## 23794     371
## 23796     378
## 23797     380
## 23798     384
## 23799     391
## 23800     410
## 23802     419
## 23803     420
## 23804     426
## 23805     427
## 23806     428
## 23807     432
## 23808     434
## 23810     442
## 23811     445
## 23812     450
## 23813     454
## 23816     485
## 23817     489
## 23819     500
## 23820     505
## 23821     508
## 23822     509
## 23823     510
## 23824     514
## 23826     516
## 23827     519
## 23828     524
## 23829     535
## 23830     538
## 23831     540
## 23833     553
## 23835     569
## 23836     587
## 23839     592
## 23841     597
## 23843     639
## 23844     648
## 23849    1021
## 23851    1035
## 23856    1092
## 23858    1101
## 23864      60
## 23865     262
## 23866     274
## 23867     502
## 23870     838
## 23871     914
## 23872    1021
## 23874    1270
## 23876    2346
## 23877    2422
## 23882    2962
## 23883    3114
## 23884    3594
## 23885    3791
## 23888    4069
## 23891    4896
## 23894    4995
## 23897    5816
## 23906    6881
## 23907    7139
## 23911    7444
## 23914    8368
## 23915    8373
## 23917    8643
## 23920    8808
## 23923    8982
## 23924   26198
## 23925   27808
## 23932   36525
## 23934   40815
## 23936   42732
## 23941   46578
## 23948   49278
## 23952   52458
## 23955   53123
## 23957   54001
## 23969   60069
## 23974   64249
## 23975   64957
## 23976      29
## 23977     524
## 23978     616
## 23979     849
## 23980    1093
## 23981    1240
## 23982    1270
## 23983    1272
## 23984    1299
## 23986    1527
## 23987    1682
## 23989    1962
## 23990    2020
## 23991    2078
## 23992    2144
## 23993    2355
## 23994    2723
## 23995    2881
## 23996    3107
## 23997    3174
## 23998    3510
## 23999    3702
## 24000    3703
## 24001    5952
## 24013    1093
## 24014    1179
## 24022    1747
## 24023    1805
## 24032    2598
## 24034    2683
## 24036    2688
## 24041    2710
## 24042    2716
## 24047    2881
## 24048    2987
## 24049    3039
## 24051      32
## 24052      34
## 24055     141
## 24060     356
## 24061     364
## 24062     377
## 24064     480
## 24067     539
## 24069     588
## 24070     590
## 24071     592
## 24080     107
## 24086     653
## 24088     708
## 24092     762
## 24100     999
## 24101    1003
## 24106    1485
## 24110    1562
## 24113    1591
## 24115     163
## 24117     172
## 24118     186
## 24119     246
## 24120     342
## 24121     370
## 24122     543
## 24124    1094
## 24125    1252
## 24129    2302
## 24130    2699
## 24131    3751
## 24133    5060
## 24134    6534
## 24137      48
## 24145     276
## 24147     308
## 24150     588
## 24152     647
## 24153     783
## 24166    1265
## 24167    1270
## 24169    1348
## 24171    1479
## 24172    1487
## 24175    1562
## 24181    1721
## 24186    2028
## 24192    2092
## 24196    2291
## 24199    2424
## 24202    2628
## 24205    2907
## 24207    2953
## 24213    3565
## 24214    3668
## 24217    3948
## 24218    3977
## 24219    3996
## 24221    4018
## 24222    4025
## 24226    4246
## 24240    5378
## 24245    5679
## 24254    5957
## 24256    5991
## 24257    6006
## 24258    6157
## 24260       1
## 24261       2
## 24262      19
## 24263      34
## 24264      39
## 24265      48
## 24266     253
## 24269     337
## 24270     344
## 24271     364
## 24272     480
## 24273     541
## 24274     551
## 24275     588
## 24278     596
## 24279     648
## 24280     709
## 24281     783
## 24282    1022
## 24284    1035
## 24286    1198
## 24288    1232
## 24289    1246
## 24290    1259
## 24291    1291
## 24292    1380
## 24293    1381
## 24294    1391
## 24295    1485
## 24296    1517
## 24298    1566
## 24299    1580
## 24300    1682
## 24301    1721
## 24302    1760
## 24303    1907
## 24304    1921
## 24305    1923
## 24306    1947
## 24307    2018
## 24308    2054
## 24309    2078
## 24310    2080
## 24311    2081
## 24312    2087
## 24313    2096
## 24314    2115
## 24316    2617
## 24318    2671
## 24319    2683
## 24320    2700
## 24321    2701
## 24322    2706
## 24323    2716
## 24324    2987
## 24325    2997
## 24327    3034
## 24328    3054
## 24330    3408
## 24331    3752
## 24332    3785
## 24333    3825
## 24334    3948
## 24335    3988
## 24337    3997
## 24338    4246
## 24339    4306
## 24341    4310
## 24342    4367
## 24343    4383
## 24344    4446
## 24345    4447
## 24346    4700
## 24347    4720
## 24348    4816
## 24349    4896
## 24351    4973
## 24353    5064
## 24354    5072
## 24355    5128
## 24356    5218
## 24357    5349
## 24359    5445
## 24360    5502
## 24362    5690
## 24363    5816
## 24364    5903
## 24367    5989
## 24369    6283
## 24370    6287
## 24372    6365
## 24373    6378
## 24375    6541
## 24376    6754
## 24377    6794
## 24378    6874
## 24379    6934
## 24380    7022
## 24386    7438
## 24387    7458
## 24388    7649
## 24389    8360
## 24390    8368
## 24391    8622
## 24392    8957
## 24393    8969
## 24394    8970
## 24395    8972
## 24396    8981
## 24398   26662
## 24400   27660
## 24401   27689
## 24403   27850
## 24404   30793
## 24405   30816
## 24408   33004
## 24409   33493
## 24410   33794
## 24411   36401
## 24412   36529
## 24414   38061
## 24415   40597
## 24416   40815
## 24417   41566
## 24418   41571
## 24419   43419
## 24420   44191
## 24423   44849
## 24424   45447
## 24425   45720
## 24426   45722
## 24427   45880
## 24428   45950
## 24434   48997
## 24435   49649
## 24437   51662
## 24438   52579
## 24439   53125
## 24440   53894
## 24441   54259
## 24442   54999
## 24443   55167
## 24444   55721
## 24445   55820
## 24446   56152
## 24447   56171
## 24448   56367
## 24450   56949
## 24451   58559
## 24452   59333
## 24453   59615
## 24455   60397
## 24456   62849
## 24458   63276
## 24459   63853
## 24460   63992
## 24461   66198
## 24462   66203
## 24463   66317
## 24464   66808
## 24465   68073
## 24467   69275
## 24468   69640
## 24469   69757
## 24472   72737
## 24473   73017
## 24474   73319
## 24476   77201
## 24478   79293
## 24480   80463
## 24481   80864
## 24484   81847
## 24485   82167
## 24486   82202
## 24487   82463
## 24488   86142
## 24489   86190
## 24490   86835
## 24493   89102
## 24494   89745
## 24495   89761
## 24496   89804
## 24497   90405
## 24499   91500
## 24500   91529
## 24502   93805
## 24503   94478
## 24504   94480
## 24505   94864
## 24506   95875
## 24507   96079
## 24508   96737
## 24509   97304
## 24511   99320
## 24512  100556
## 24513  101864
## 24514  103253
## 24515  104841
## 24522      23
## 24526      66
## 24528      76
## 24531     107
## 24534     160
## 24541     173
## 24543     196
## 24547     225
## 24549     240
## 24550     256
## 24551     258
## 24552     288
## 24557     327
## 24567     379
## 24568     405
## 24569     407
## 24572     426
## 24574     442
## 24581     494
## 24583     504
## 24585     519
## 24586     540
## 24588     546
## 24589     547
## 24597     611
## 24604     748
## 24610     839
## 24611     849
## 24613     880
## 24614     882
## 24615     891
## 24616    1003
## 24618    1037
## 24620    1055
## 24626    1129
## 24642    1306
## 24643    1320
## 24644    1343
## 24648    1373
## 24655    1422
## 24656    1427
## 24658    1459
## 24660    1488
## 24661    1499
## 24663    1518
## 24670    1590
## 24671    1591
## 24674    1603
## 24684    1647
## 24689    1686
## 24690    1687
## 24691    1690
## 24695    1748
## 24696    1750
## 24700    1779
## 24707    1882
## 24709    1917
## 24717    2015
## 24722    2053
## 24723    2054
## 24724    2093
## 24726    2107
## 24728    2113
## 24738    2311
## 24741     110
## 24744     293
## 24747     356
## 24749     551
## 24750     555
## 24752     595
## 24754     750
## 24757     899
## 24758     919
## 24760     951
## 24761    1028
## 24762    1036
## 24765    1097
## 24767    1193
## 24769    1197
## 24773    1213
## 24777    1246
## 24778    1247
## 24779    1258
## 24783    1266
## 24784    1269
## 24788    1302
## 24789    1348
## 24790    1387
## 24793    1704
## 24794    1873
## 24797    2000
## 24800    2096
## 24801    2268
## 24803    2571
## 24804    2716
## 24805    2804
## 24811    3061
## 24812    3089
## 24813    3168
## 24814    3210
## 24815    3275
## 24816    3408
## 24817    3471
## 24818    3552
## 24819    3578
## 24820    3629
## 24822    3949
## 24823    4034
## 24824    4262
## 24825    4878
## 24827    5577
## 24828    5669
## 24829    6979
## 24830    7022
## 24832    7386
## 24833    7451
## 24834    8874
## 24835    8966
## 24836   27773
## 24837   30707
## 24839   34405
## 24841   45728
## 24842   46578
## 24845   51662
## 24846   52435
## 24848   55442
## 24849   56367
## 24850   60684
## 24851   61024
## 24853   63131
## 24854   67267
## 24856   74458
## 24858   77455
## 24859   77800
## 24860   78574
## 24861   81591
## 24862   91658
## 24864   97921
## 24865   99114
## 24866  106487
## 24867  106782
## 24869  112623
## 24872    1270
## 24873    1682
## 24874    3882
## 24876    4246
## 24877    4306
## 24878    4447
## 24883    7361
## 24886    8641
## 24887    8644
## 24888    8665
## 24893   46976
## 24894   49272
## 24897   56367
## 24899   67734
## 24907   91529
## 24909     223
## 24912     700
## 24920    2013
## 24921    2145
## 24922    2474
## 24924    2502
## 24925    2541
## 24927    2699
## 24928    2700
## 24929    2710
## 24934     435
## 24940    1552
## 24942    1625
## 24944    2003
## 24961       4
## 24965       9
## 24967      13
## 24968      17
## 24969      21
## 24970      25
## 24972      36
## 24973      48
## 24975      61
## 24977      79
## 24978      95
## 24981     126
## 24983     144
## 24986     165
## 24988     169
## 24989     174
## 24991     186
## 24996     224
## 24998     231
## 24999     236
## 25000     237
## 25004     262
## 25005     265
## 25006     266
## 25008     271
## 25011     282
## 25013     300
## 25015     316
## 25017     337
## 25019     342
## 25020     343
## 25021     344
## 25025     355
## 25027     357
## 25028     360
## 25033     370
## 25036     381
## 25038     410
## 25042     455
## 25045     485
## 25046     489
## 25049     502
## 25050     508
## 25052     529
## 25055     546
## 25056     553
## 25057     569
## 25061     593
## 25065     609
## 25069     687
## 25071     707
## 25078     801
## 25080     818
## 25082     835
## 25088    1073
## 25089    1084
## 25095     260
## 25108    1196
## 25111    1247
## 25113    1617
## 25116    1952
## 25125    3646
## 25126    3751
## 25127    3821
## 25128    3994
## 25130    4027
## 25132     161
## 25134     180
## 25136     231
## 25137     246
## 25138     256
## 25145     334
## 25148     356
## 25151     371
## 25153     380
## 25154     413
## 25155     415
## 25157     434
## 25159     454
## 25163     480
## 25164     485
## 25166     508
## 25169     586
## 25174     597
## 25180      48
## 25183     150
## 25184     172
## 25186     239
## 25187     256
## 25188     260
## 25189     296
## 25196     364
## 25198     418
## 25199     440
## 25207     594
## 25209     596
## 25213     709
## 25220     783
## 25221     788
## 25222     910
## 25224     919
## 25225     924
## 25227    1022
## 25228    1025
## 25229    1028
## 25230    1029
## 25231    1032
## 25232    1033
## 25234    1037
## 25239    1104
## 25245    1196
## 25249    1210
## 25252    1220
## 25257    1265
## 25261    1282
## 25262    1288
## 25264    1307
## 25265    1320
## 25272    1544
## 25273    1566
## 25275    1584
## 25276    1590
## 25278    1688
## 25279    1690
## 25280    1702
## 25282    1747
## 25283    1748
## 25284    1784
## 25289    1921
## 25291    1967
## 25294    2018
## 25295    2021
## 25296    2028
## 25297    2033
## 25298    2054
## 25299    2078
## 25300    2080
## 25301    2081
## 25302    2085
## 25303    2087
## 25306    2091
## 25307    2094
## 25308    2096
## 25309    2105
## 25310    2128
## 25311    2137
## 25312    2139
## 25313    2141
## 25314    2142
## 25316    2193
## 25318    2294
## 25321    2359
## 25323    2450
## 25325    2565
## 25327    2599
## 25328    2622
## 25329    2628
## 25334    2716
## 25335    2747
## 25338    2804
## 25341    2987
## 25346    3054
## 25347    3095
## 25350    3175
## 25351    3255
## 25353    3438
## 25356    3479
## 25357    3489
## 25358    3545
## 25359    3549
## 25362    3863
## 25363    3910
## 25365    4016
## 25366    4121
## 25367    4275
## 25369    4321
## 25370    4366
## 25373    4655
## 25377    4941
## 25379    5159
## 25380      31
## 25382     836
## 25384    1385
## 25387    2136
## 25390    2605
## 25391    2863
## 25395    3617
## 25397    3996
## 25400    4238
## 25402    4639
## 25408    6539
## 25412    7361
## 25416   46976
## 25417   58559
## 25418   60069
## 25423       2
## 25432     208
## 25434     231
## 25435     239
## 25436     272
## 25437     290
## 25441     329
## 25443     344
## 25445     362
## 25447     367
## 25448     372
## 25450     427
## 25451     441
## 25452     448
## 25454     480
## 25455     500
## 25459     575
## 25460     586
## 25465     596
## 25467     609
## 25469     661
## 25470     705
## 25473     783
## 25475     837
## 25478     953
## 25480    1006
## 25481    1015
## 25485    1032
## 25486    1047
## 25487    1059
## 25492    1097
## 25494    1197
## 25495    1203
## 25496    1208
## 25500    1356
## 25502    1372
## 25503    1380
## 25504    1407
## 25505    1485
## 25506    1502
## 25508    1517
## 25511    1653
## 25512    1672
## 25516    1717
## 25523    1885
## 25525    1917
## 25526    1923
## 25527    1954
## 25530    2000
## 25532    2018
## 25534    2078
## 25535    2080
## 25538    2084
## 25540    2096
## 25543    2136
## 25544    2146
## 25546    2231
## 25547    2269
## 25556    2571
## 25561    2628
## 25562    2683
## 25564    2710
## 25568    2803
## 25571    2997
## 25572    3005
## 25573    3101
## 25574    3108
## 25583    3273
## 25588    3535
## 25589    3556
## 25590    3608
## 25591    3707
## 25592    3793
## 25596    4308
## 25598    4409
## 25601    4649
## 25602    4700
## 25607    4993
## 25609    5060
## 25613    5418
## 25614    5419
## 25616    5459
## 25617    5481
## 25623    5952
## 25625    5991
## 25626    6040
## 25631    6242
## 25633    6333
## 25634    6365
## 25637    6493
## 25638    6502
## 25639    6659
## 25640    6711
## 25641    6743
## 25642    6874
## 25643    6890
## 25644    6930
## 25645    6934
## 25647    6952
## 25648    6987
## 25649    7038
## 25650    7045
## 25651    7147
## 25652    7153
## 25656    7317
## 25658    7438
## 25661    7541
## 25663    8129
## 25665    8368
## 25666    8531
## 25668    8636
## 25671    8857
## 25673    8917
## 25674    8947
## 25675    8961
## 25676    8970
## 25678   26116
## 25679   26133
## 25681   26614
## 25682   27020
## 25683   27674
## 25684   27706
## 25685   27904
## 25692   34532
## 25694   39446
## 25695   40629
## 25696   40815
## 25698   41566
## 25700   43177
## 25701   43919
## 25704   44761
## 25706   45950
## 25708   47423
## 25716   52245
## 25717   52281
## 25720   53519
## 25721   54001
## 25722   54004
## 25723   54272
## 25725   55280
## 25726   56169
## 25731   59022
## 25734   60037
## 25736   60487
## 25738   61075
## 25739   61401
## 25743   63479
## 25748      22
## 25752      39
## 25753      47
## 25754      48
## 25756      62
## 25757      93
## 25761     153
## 25762     158
## 25763     160
## 25764     165
## 25765     173
## 25766     196
## 25767     208
## 25769     231
## 25770     253
## 25771     262
## 25772     277
## 25775     292
## 25778     316
## 25779     317
## 25781     329
## 25782     339
## 25785     350
## 25788     362
## 25790     367
## 25792     374
## 25793     377
## 25795     410
## 25796     420
## 25797     435
## 25798     454
## 25799     457
## 25805     509
## 25806     519
## 25808     539
## 25810     551
## 25811     575
## 25817     592
## 25823     648
## 25824     653
## 25826     671
## 25829     780
## 25830     801
## 25832     867
## 25833    1009
## 25835    1013
## 25836    1017
## 25837    1019
## 25839    1023
## 25840    1024
## 25841    1025
## 25844    1030
## 25845    1033
## 25846     145
## 25847     239
## 25848     253
## 25851     370
## 25852     434
## 25856     673
## 25857     736
## 25858     737
## 25859     780
## 25861     835
## 25862     913
## 25863     968
## 25864    1028
## 25870    1216
## 25874    1296
## 25875    1354
## 25876    1358
## 25877    1374
## 25879    1513
## 25880    1623
## 25883    1732
## 25884    1911
## 25885    1959
## 25886    2000
## 25888    2147
## 25890    2269
## 25891    2290
## 25892    2302
## 25893    2316
## 25895    2333
## 25896    2336
## 25897    2340
## 25898    2355
## 25899    2369
## 25900    2392
## 25901    2428
## 25902    2433
## 25903    2490
## 25905    2530
## 25906    2531
## 25907    2532
## 25908    2533
## 25909    2541
## 25910    2568
## 25912    2574
## 25914    2581
## 25915    2587
## 25916    2598
## 25917    2605
## 25918    2668
## 25919    2672
## 25920    2676
## 25922    2686
## 25923    2688
## 25926    2700
## 25927    2701
## 25928    2702
## 25930    2707
## 25933    2713
## 25934    2716
## 25935    2719
## 25936    2720
## 25937    2722
## 25938    2724
## 25940    2759
## 25942    2763
## 25943    2770
## 25944    2771
## 25945    2772
## 25946    2805
## 25947    2806
## 25948    2826
## 25949    2827
## 25950    2840
## 25953    2861
## 25954    2881
## 25955    2882
## 25956    2888
## 25957    2959
## 25959    2987
## 25960    2995
## 25962    3001
## 25963    3004
## 25964    3005
## 25965    3016
## 25967    3113
## 25968    3146
## 25969    3147
## 25971    3175
## 25973    3177
## 25974    3179
## 25976    3186
## 25979    3238
## 25981    3263
## 25982    3273
## 25983    3285
## 25984    3298
## 25985    3299
## 25986    3316
## 25987    3326
## 25988    3355
## 25989    3408
## 25990    3409
## 25991    3445
## 25992    3448
## 25993    3452
## 25995    3510
## 25996    3564
## 25998    3623
## 26000    3717
## 26001    3751
## 26004    3763
## 26005    3764
## 26006    3765
## 26007    3766
## 26008    3771
## 26009    3793
## 26011    3802
## 26012    3807
## 26013    3809
## 26014    3810
## 26015    3836
## 26016    3841
## 26017    3844
## 26019    3865
## 26021    3869
## 26031    2294
## 26034    2336
## 26036    2394
## 26039    2433
## 26045    2598
## 26047    2600
## 26050    2629
## 26052    2683
## 26059    2724
## 26060    2734
## 26063    2770
## 26065    2861
## 26066    2881
## 26072    3051
## 26074    3117
## 26078    3298
## 26081    4022
## 26082      10
## 26083      34
## 26084      47
## 26085     110
## 26087     153
## 26089     165
## 26090     185
## 26091     208
## 26092     231
## 26093     292
## 26098     344
## 26099     349
## 26101     380
## 26102     434
## 26103     454
## 26105     480
## 26106     588
## 26108     592
## 26110     595
## 26112      19
## 26114      39
## 26115      44
## 26116      47
## 26117      48
## 26119     158
## 26120     160
## 26121     181
## 26122     185
## 26123     208
## 26126     261
## 26129     316
## 26133     350
## 26134     355
## 26138     367
## 26139     370
## 26140     374
## 26141     377
## 26142     380
## 26144     434
## 26145     442
## 26146     454
## 26147     455
## 26149     474
## 26154     539
## 26155     551
## 26160     592
## 26161     593
## 26164     597
## 26165     736
## 26171     296
## 26185    1196
## 26186    1197
## 26187    1203
## 26194    1252
## 26197    1394
## 26206    2289
## 26222    3114
## 26226    3210
## 26228    3543
## 26232      19
## 26234      44
## 26235      95
## 26238     151
## 26239     158
## 26240     160
## 26242     172
## 26243     173
## 26244     196
## 26246     208
## 26248     231
## 26249     253
## 26250     292
## 26251     296
## 26253     317
## 26256     344
## 26258     353
## 26262     368
## 26263     377
## 26265     420
## 26266     432
## 26268     442
## 26269     454
## 26270     457
## 26271     480
## 26272     500
## 26274     551
## 26275     587
## 26279     597
## 26283      25
## 26285      39
## 26286      42
## 26287      60
## 26288      95
## 26289     104
## 26290     110
## 26291     111
## 26292     112
## 26293     150
## 26295     165
## 26296     196
## 26297     208
## 26299     246
## 26300     258
## 26302     281
## 26303     288
## 26304     296
## 26305     303
## 26306     318
## 26307     330
## 26308     349
## 26309     356
## 26310     368
## 26311     377
## 26312     379
## 26313     380
## 26314     405
## 26315     420
## 26316     426
## 26317     443
## 26319     471
## 26321     485
## 26323     531
## 26324     541
## 26325     587
## 26326     589
## 26329     595
## 26330     597
## 26334     724
## 26335     736
## 26336     788
## 26338     898
## 26339     899
## 26340     900
## 26342     908
## 26343     909
## 26347     915
## 26348     916
## 26351     921
## 26357     943
## 26358     944
## 26359     945
## 26360     951
## 26361     952
## 26364     960
## 26366     971
## 26368    1012
## 26370    1035
## 26371    1036
## 26372    1073
## 26374    1080
## 26375    1081
## 26378    1090
## 26380    1096
## 26381    1097
## 26382    1101
## 26383    1103
## 26385    1125
## 26386    1129
## 26387    1136
## 26389    1189
## 26392    1197
## 26393    1198
## 26395    1201
## 26399    1213
## 26406    1226
## 26407    1228
## 26409    1231
## 26412    1235
## 26413    1240
## 26414    1242
## 26421    1256
## 26422    1259
## 26423    1260
## 26425    1263
## 26426    1265
## 26427    1267
## 26429    1270
## 26431    1275
## 26438    1291
## 26439    1292
## 26441    1302
## 26443    1307
## 26444    1320
## 26446    1370
## 26447    1372
## 26448    1374
## 26449    1375
## 26451    1380
## 26453    1391
## 26454    1393
## 26456    1395
## 26458    1552
## 26459    1583
## 26460    1586
## 26461    1608
## 26463    1641
## 26464    1690
## 26465    1702
## 26466    1747
## 26469    1831
## 26470    1884
## 26471    1918
## 26473    1929
## 26474    1935
## 26476    1944
## 26477    1946
## 26478    1947
## 26479    1950
## 26481    1953
## 26482    1954
## 26483    1955
## 26484    1957
## 26487    1962
## 26488    1964
## 26489    1965
## 26490    2000
## 26491    2001
## 26492    2002
## 26493    2004
## 26494    2013
## 26497    2021
## 26498    2023
## 26501    2054
## 26503    2067
## 26504    2070
## 26505    2075
## 26506    2077
## 26507    2084
## 26508    2088
## 26509    2094
## 26510    2100
## 26512    2105
## 26513    2109
## 26514    2110
## 26515    2111
## 26516    2112
## 26517    2115
## 26518    2124
## 26519    2132
## 26520    2134
## 26521    2135
## 26522    2139
## 26523    2144
## 26524    2150
## 26525    2174
## 26528    2193
## 26529    2194
## 26530    2202
## 26532    2243
## 26533    2268
## 26534    2288
## 26535    2291
## 26537    2302
## 26538    2312
## 26539    2313
## 26540    2315
## 26542    2353
## 26544    2359
## 26546    2367
## 26547    2376
## 26549    2402
## 26550    2404
## 26551    2405
## 26552    2406
## 26553    2407
## 26554    2410
## 26555    2411
## 26556    2412
## 26557    2414
## 26558    2423
## 26559    2453
## 26560    2468
## 26561    2476
## 26562    2502
## 26563    2524
## 26564    2527
## 26565    2528
## 26567    2530
## 26568    2532
## 26569    2533
## 26570    2549
## 26571    2568
## 26572    2599
## 26573    2616
## 26574    2617
## 26575    2628
## 26576    2640
## 26577    2641
## 26578    2657
## 26580    2700
## 26581    2701
## 26582    2706
## 26583    2710
## 26584    2719
## 26585    2722
## 26586    2728
## 26587    2739
## 26588    2746
## 26589    2750
## 26590    2763
## 26591    2779
## 26592    2788
## 26594    2797
## 26595    2804
## 26596    2826
## 26597    2857
## 26599    2863
## 26600    2870
## 26603    2915
## 26604    2916
## 26606    2918
## 26607    2929
## 26608    2941
## 26610    2946
## 26611    2947
## 26612    2951
## 26613    2968
## 26614    2971
## 26615    2985
## 26616    2986
## 26618    2988
## 26619    2989
## 26620    2995
## 26621    3011
## 26626    3039
## 26627    3052
## 26628    3061
## 26631    3072
## 26632    3076
## 26634    3081
## 26637    3098
## 26638    3099
## 26639    3100
## 26641    3107
## 26642    3122
## 26643    3135
## 26644    3147
## 26645    3152
## 26646    3169
## 26648    3178
## 26649    3194
## 26650    3196
## 26651    3197
## 26653    3201
## 26654    3210
## 26655    3244
## 26656    3253
## 26657    3255
## 26659    3257
## 26660    3271
## 26661    3307
## 26664    3350
## 26665    3359
## 26666    3360
## 26667    3361
## 26668    3362
## 26669    3363
## 26671    3398
## 26673    3406
## 26675    3424
## 26676    3427
## 26677    3432
## 26679    3441
## 26680    3448
## 26681    3451
## 26682    3461
## 26686    3481
## 26687    3494
## 26688    3498
## 26690    3507
## 26691    3516
## 26692    3519
## 26693    3526
## 26694    3527
## 26695    3529
## 26696    3543
## 26697    3546
## 26698    3549
## 26699    3552
## 26700    3555
## 26702    3591
## 26703    3608
## 26705    3638
## 26706    3639
## 26707    3643
## 26709    3668
## 26711    3697
## 26712    3698
## 26713    3699
## 26714    3701
## 26715    3702
## 26716    3705
## 26717    3717
## 26718    3733
## 26719    3735
## 26720    3740
## 26721    3742
## 26722    3744
## 26723    3751
## 26724    3754
## 26725    3755
## 26726    3760
## 26727    3763
## 26728    3811
## 26729    3836
## 26730    3841
## 26731    3863
## 26734    3873
## 26735    3889
## 26736    3893
## 26738    3929
## 26739    3946
## 26740    3952
## 26742    3969
## 26743    3972
## 26744    3975
## 26745    3977
## 26746    3978
## 26747    3979
## 26749    3984
## 26750    3986
## 26751    3987
## 26752    3988
## 26753    3994
## 26754    3998
## 26755    3999
## 26757    4016
## 26758    4018
## 26759    4019
## 26760    4022
## 26761    4023
## 26762    4025
## 26763    4030
## 26765    4041
## 26766    5060
## 26771     809
## 26772     916
## 26776    1863
## 26779    2082
## 26780    2161
## 26784    2712
## 26785    2746
## 26790    2882
## 26791    2888
## 26794    2912
## 26800    3052
## 26801    3072
## 26804    3113
## 26809    3285
## 26812    3324
## 26813    3354
## 26817    3483
## 26818    3484
## 26826    3537
## 26828    3555
## 26829    3557
## 26831    3572
## 26833    3579
## 26835    3593
## 26837    3614
## 26838    3618
## 26839    3620
## 26848    3669
## 26850    3681
## 26855    3688
## 26856    3689
## 26857    3690
## 26858    3697
## 26864    3706
## 26866      32
## 26868     295
## 26869     316
## 26871     356
## 26872     367
## 26880     674
## 26885    1019
## 26886    1037
## 26889    1215
## 26901    1748
## 26911    2174
## 26912    2311
## 26913    2528
## 26917    2642
## 26921    2968
## 26922    3466
## 26926    3702
## 26927    3703
## 26930     608
## 26934    1042
## 26936    1089
## 26938    1172
## 26939    1198
## 26951    1266
## 26952    1273
## 26954    1405
## 26955    1449
## 26957    1747
## 26958    1900
## 26963    2770
## 26965    2966
## 26966    2973
## 26968    3006
## 26969    3147
## 26971    3176
## 26974    3246
## 26975    3267
## 26981    3911
## 26982    3925
## 26984    3996
## 26985    4022
## 26990    4641
## 26991    4772
## 26993    4967
## 26997    5792
## 26998    5812
## 27001    5952
## 27002    5995
## 27003    6296
## 27005      10
## 27008      23
## 27010      32
## 27017     180
## 27018     208
## 27025     319
## 27027     380
## 27028     405
## 27030     480
## 27033     546
## 27037     608
## 27038     673
## 27041     780
## 27042     858
## 27043     924
## 27048    1165
## 27050    1198
## 27053    1213
## 27059    1261
## 27062    1274
## 27064    1356
## 27065    1416
## 27067    1544
## 27069    1584
## 27072    1616
## 27077    1690
## 27079    1722
## 27080    1732
## 27082    1882
## 27083    1917
## 27084    1982
## 27091    2232
## 27093    2329
## 27096    2411
## 27101    2579
## 27102    2628
## 27104    2701
## 27105    2716
## 27108    2913
## 27118    3576
## 27120    3581
## 27122    3793
## 27124    3984
## 27125    3986
## 27127    4105
## 27128    4161
## 27130    4370
## 27132    4553
## 27133    4720
## 27134    4735
## 27135    4878
## 27136    4887
## 27140    5046
## 27142    5171
## 27143    5219
## 27144    5349
## 27147    5445
## 27149    5903
## 27150    5952
## 27151    5954
## 27152    5995
## 27157    6333
## 27158    6350
## 27160    6378
## 27161    6502
## 27162    6537
## 27163    6731
## 27165    6826
## 27166    6870
## 27167    6874
## 27169    6996
## 27172    7099
## 27173    7153
## 27175    7282
## 27176    7360
## 27177    7387
## 27178    7438
## 27180    7649
## 27181    7810
## 27182    7841
## 27185    8371
## 27186    8403
## 27187    8581
## 27188    8636
## 27190    8644
## 27191    8654
## 27193    8790
## 27194    8810
## 27195    8861
## 27197    8950
## 27202   27005
## 27204   27660
## 27213   33558
## 27216   34162
## 27217   34319
## 27218   34405
## 27219   37830
## 27221   40732
## 27222   42197
## 27223   43936
## 27225   44199
## 27227   44761
## 27230   46976
## 27233   48774
## 27239   51662
## 27240   52281
## 27241   52328
## 27243   53000
## 27245   53207
## 27246   53519
## 27247   53953
## 27248   53956
## 27249   53972
## 27252   54771
## 27255   55118
## 27256   55232
## 27258   55363
## 27259   55577
## 27260   55765
## 27265   56174
## 27266   56587
## 27268   56801
## 27269   57368
## 27272   58432
## 27275   59018
## 27277   59315
## 27279   59590
## 27280   59810
## 27281   60040
## 27282   60069
## 27283   60684
## 27284   60756
## 27285   60943
## 27286   61132
## 27287   61248
## 27288   61323
## 27289   62792
## 27292   63436
## 27293   63481
## 27294   64957
## 27296   65682
## 27297   66090
## 27298   66509
## 27299   67665
## 27300   67867
## 27303   68159
## 27304   68194
## 27305   68205
## 27306   68237
## 27307   68319
## 27309   68791
## 27310   68932
## 27311   69122
## 27312   69278
## 27313   69526
## 27314   69844
## 27317   71156
## 27319   72129
## 27320   72998
## 27322   73211
## 27323   73268
## 27324   73321
## 27325   73929
## 27326   74452
## 27328   74532
## 27329   74545
## 27330   74685
## 27331   74948
## 27332   75813
## 27334   76210
## 27336   78034
## 27338   78209
## 27339   78218
## 27342   79057
## 27344   79134
## 27346   79695
## 27347   79796
## 27348   80363
## 27350   80489
## 27352   81229
## 27353   81535
## 27355   81788
## 27358   82459
## 27359   82461
## 27360   82854
## 27362   83349
## 27366   84374
## 27367   84395
## 27368   84601
## 27369   84615
## 27370   84954
## 27371   85020
## 27372   85022
## 27373   85025
## 27374   85131
## 27375   85412
## 27379   86290
## 27385   87485
## 27387   88163
## 27388   88405
## 27389   88744
## 27390   88785
## 27391   88812
## 27394   89753
## 27395   90345
## 27396   90405
## 27399   91542
## 27400   91630
## 27401   91653
## 27403   92420
## 27405   94959
## 27416  104879
## 27419  106441
## 27422  106696
## 27423  106916
## 27424  107141
## 27425  112112
## 27426       1
## 27427       2
## 27429     110
## 27432     185
## 27436     362
## 27437     364
## 27438     367
## 27439     377
## 27441     455
## 27442     480
## 27445     586
## 27446     588
## 27448     595
## 27450     648
## 27451     780
## 27453    1080
## 27454    1088
## 27456    1097
## 27457    1199
## 27463    1367
## 27464    1380
## 27465    1527
## 27466    1544
## 27468    1584
## 27469    1610
## 27470    1619
## 27474    1702
## 27475    1721
## 27476    1801
## 27477    1917
## 27484    2378
## 27485    2403
## 27486    2420
## 27487    2427
## 27493    2671
## 27494    2687
## 27495    2706
## 27496    2724
## 27497    2762
## 27498    2953
## 27501    3147
## 27503    3409
## 27505    3623
## 27506    3639
## 27507    3717
## 27508    3785
## 27509    3825
## 27510    3827
## 27511    4016
## 27512    4018
## 27513    4022
## 27514    4025
## 27515    4052
## 27519    4299
## 27521    4308
## 27522    4310
## 27523    4344
## 27524    4369
## 27525    4370
## 27526    4447
## 27527    4489
## 27528    4519
## 27529    4638
## 27530    4661
## 27533    4901
## 27541    5574
## 27543    5679
## 27544    5809
## 27545    5872
## 27546    5956
## 27548    6059
## 27550    6365
## 27556    6550
## 27557    6889
## 27558    6934
## 27559    7154
## 27561    7163
## 27562    7293
## 27563    7361
## 27565    8361
## 27567    8376
## 27568    8529
## 27569    8604
## 27570    8622
## 27571    8644
## 27574    8957
## 27575    8958
## 27576    8961
## 27577    8984
## 27578   26686
## 27579   26999
## 27580   27193
## 27581   27482
## 27582   27821
## 27583   30812
## 27584   31685
## 27585   32587
## 27587   33499
## 27588   33679
## 27589   33836
## 27590   36289
## 27591   36525
## 27593   40278
## 27594   42015
## 27595   44022
## 27596   45186
## 27598   45447
## 27599   45517
## 27600   45720
## 27601   45732
## 27604   48516
## 27605   48774
## 27607   49272
## 27610   51084
## 27611   52281
## 27613   53125
## 27615   53996
## 27616   54272
## 27624   57528
## 27625   57669
## 27626   58047
## 27627   58103
## 27630   59369
## 27632   60074
## 27633   62849
## 27634   63082
## 27635   63113
## 27637   64969
## 27638   67923
## 27641   69122
## 27644   74946
## 27645   76093
## 27646   78637
## 27647   79091
## 27648   79132
## 27649   79293
## 27651   81229
## 27653   85736
## 27654   86298
## 27656   87975
## 27658   90647
## 27664   97225
## 27665   97938
## 27666  101142
## 27667  102903
## 27669  103810
## 27670  104374
## 27671  106696
## 27672  106782
## 27674  106920
## 27678  136592
## 27686     104
## 27691     186
## 27692     235
## 27705     494
## 27730    2081
## 27735    2406
## 27736    2420
## 27739    2690
## 27740    2699
## 27742    2762
## 27760    5949
## 27769    7155
## 27774    8376
## 27779    8666
## 27786    8836
## 27791    8873
## 27800   30812
## 27804     419
## 27805     442
## 27816    1327
## 27822    1690
## 27826    1998
## 27830    2015
## 27831    2122
## 27832    2124
## 27833    2393
## 27840    2628
## 27841    2683
## 27844    2748
## 27848    3004
## 27851    3401
## 27852    3412
## 27856    3768
## 27857    3930
## 27860    4317
## 27862    4396
## 27864    4566
## 27866    4767
## 27867    4915
## 27871    5141
## 27873    5568
## 27874    5872
## 27875    5910
## 27877      23
## 27885     934
## 27886    1049
## 27890    1248
## 27892    1284
## 27893    1556
## 27896    2085
## 27898    2410
## 27900    2707
## 27901    3298
## 27907    5015
## 27910   39292
## 27912   48872
## 27915      58
## 27916     112
## 27917     151
## 27918     432
## 27920    1086
## 27921    1213
## 27923    1234
## 27924    1246
## 27927    1370
## 27928    1374
## 27929    1407
## 27933    2291
## 27936    4306
## 27937    4531
## 27938    4700
## 27940    7438
## 27943    8838
## 27946      10
## 27949     110
## 27950     260
## 27951     356
## 27953     589
## 27954     593
## 27955     720
## 27957     745
## 27959     919
## 27960    1036
## 27961    1148
## 27962    1196
## 27964    1198
## 27965    1210
## 27966    1214
## 27967    1221
## 27968    1223
## 27971    1291
## 27973    2571
## 27976    2947
## 27977    2959
## 27981    5418
## 27983    5952
## 27985    6333
## 27988    7153
## 27989    8368
## 27990    8798
## 27993   26776
## 27995   27839
## 27996   30793
## 27997   31221
## 27999   31685
## 28001   32031
## 28002   32296
## 28004   33615
## 28007   34162
## 28008   34332
## 28009   35836
## 28010   36519
## 28011   37386
## 28015   39446
## 28016   39715
## 28017   40278
## 28018   40339
## 28022   42011
## 28023   42723
## 28024   43928
## 28025   44022
## 28027   45186
## 28029   45501
## 28031   45668
## 28032   45672
## 28033   45720
## 28035   45730
## 28037   46965
## 28038   46970
## 28039   48322
## 28040   48385
## 28041   48394
## 28042   48516
## 28044   48877
## 28045   48982
## 28046   49272
## 28051   51086
## 28054   52245
## 28056   52722
## 28057   52973
## 28058   53121
## 28059   53464
## 28061   53993
## 28062   54004
## 28065   54286
## 28069   55232
## 28070   55282
## 28071   55577
## 28072   55768
## 28077   56367
## 28080   57368
## 28082   57640
## 28084   58103
## 28085   58293
## 28086   58299
## 28087   58559
## 28091   59615
## 28093   59900
## 28094   60037
## 28095   60040
## 28096   60069
## 28097   60074
## 28098   60126
## 28099   60397
## 28100   61132
## 28101   61323
## 28102   62081
## 28103   62999
## 28104   63113
## 28106   63992
## 28110   68157
## 28113   71379
## 28114   71535
## 28115   72378
## 28116   72998
## 28117   73017
## 28119   78499
## 28120   79132
## 28122   81562
## 28125   87232
## 28128   91529
## 28132   96079
## 28134  102125
## 28136  111362
## 28137  112171
## 28143  117529
## 28144  117851
## 28147  130073
## 28148  133419
## 28149  134170
## 28150  135887
## 28151     592
## 28152    1036
## 28153    1081
## 28156    1173
## 28160    1200
## 28163    1246
## 28164    1258
## 28166    1286
## 28168    1297
## 28170    1302
## 28171    1307
## 28172    1321
## 28173    1375
## 28174    1376
## 28175    1587
## 28177    1876
## 28178    1892
## 28181    1962
## 28183    1994
## 28184    2003
## 28185    2005
## 28186    2011
## 28187    2021
## 28188    2033
## 28189    2054
## 28190      24
## 28191      44
## 28193     256
## 28195     333
## 28196     431
## 28198     673
## 28199     779
## 28200     899
## 28201     902
## 28202     910
## 28203     914
## 28204    1042
## 28205    1120
## 28207    1275
## 28208    1287
## 28211    1367
## 28212    1371
## 28213    1405
## 28214    1597
## 28215    2058
## 28216    2085
## 28217    2336
## 28218    2572
## 28219    2968
## 28220    3006
## 28221    3256
## 28222    3991
## 28223   26564
## 28226   45969
## 28227   51372
## 28228   58293
## 28229   59834
## 28230   67734
## 28232   69757
## 28233   70121
## 28234   71876
## 28235   72209
## 28240     924
## 28244    1232
## 28247    1387
## 28250    2060
## 28254    3210
## 28256    3484
## 28259    4149
## 28261    4770
## 28263    6763
## 28273   94959
## 28275  104374
## 28285     172
## 28286     196
## 28287     435
## 28288     466
## 28290     543
## 28291     552
## 28292     555
## 28293     802
## 28295    1234
## 28296    1278
## 28297    1376
## 28299    2001
## 28300    2395
## 28301    2406
## 28302    2657
## 28303    2699
## 28304      16
## 28305      34
## 28306     317
## 28307     350
## 28308     364
## 28309     376
## 28310     432
## 28311     435
## 28312     442
## 28314     539
## 28315     608
## 28317     852
## 28318    1136
## 28319    1198
## 28320    1259
## 28321    1291
## 28322    1307
## 28323    1370
## 28324    1394
## 28325    1407
## 28326    1968
## 28327    1993
## 28328    2115
## 28329    2291
## 28330    2355
## 28331    2459
## 28332    2461
## 28333    2462
## 28343      94
## 28380    1390
## 28381    1391
## 28384    1407
## 28387    1580
## 28391       1
## 28392       2
## 28393       5
## 28394      10
## 28396      17
## 28397      19
## 28399      32
## 28400      34
## 28402      39
## 28403      44
## 28404      47
## 28405      48
## 28406      50
## 28407      95
## 28408     104
## 28410     145
## 28411     147
## 28413     151
## 28414     153
## 28415     158
## 28416     163
## 28417     165
## 28418     168
## 28419     172
## 28420     173
## 28421     180
## 28422     185
## 28423     186
## 28424     208
## 28425     216
## 28427     224
## 28428     231
## 28432     261
## 28434     292
## 28436     300
## 28437     315
## 28438     317
## 28440     333
## 28441     337
## 28442     339
## 28443     342
## 28444     344
## 28445     345
## 28446     350
## 28448     357
## 28450     367
## 28451     368
## 28452     370
## 28453     372
## 28454     374
## 28456     413
## 28457     420
## 28458     435
## 28459     440
## 28460     441
## 28461     442
## 28462     455
## 28463     457
## 28464     474
## 28465     480
## 28466     491
## 28467     497
## 28468     500
## 28473     539
## 28474     546
## 28476     552
## 28477     555
## 28478     586
## 28479     587
## 28480     588
## 28481     589
## 28482     590
## 28483     592
## 28485     594
## 28486     595
## 28487     596
## 28488     597
## 28489     613
## 28490     648
## 28491     650
## 28492     653
## 28493     661
## 28494     673
## 28495     736
## 28496     750
## 28497     762
## 28499     780
## 28500     783
## 28501     784
## 28502     805
## 28503     830
## 28504     837
## 28507     899
## 28508     902
## 28509     903
## 28511     914
## 28512     916
## 28513     919
## 28514     920
## 28515     923
## 28516     934
## 28517     940
## 28520     986
## 28521     991
## 28522    1012
## 28523    1013
## 28524    1022
## 28525    1025
## 28527    1028
## 28528    1032
## 28530    1036
## 28532    1059
## 28535    1080
## 28536    1088
## 28538    1090
## 28539    1092
## 28540    1101
## 28542    1104
## 28543    1136
## 28544    1148
## 28545    1178
## 28547    1193
## 28549    1198
## 28550    1200
## 28551    1201
## 28552    1203
## 28553    1204
## 28554    1206
## 28556    1208
## 28557    1215
## 28558    1220
## 28561    1225
## 28564    1240
## 28567    1247
## 28568    1250
## 28569    1258
## 28570    1259
## 28571    1261
## 28572    1262
## 28573    1265
## 28574    1266
## 28575    1270
## 28580    1287
## 28581    1290
## 28582    1291
## 28584    1302
## 28586    1307
## 28587    1345
## 28588    1370
## 28589    1377
## 28591    1387
## 28592    1391
## 28594    1407
## 28595    1408
## 28599    1466
## 28600    1485
## 28601    1500
## 28602    1517
## 28603    1544
## 28604    1562
## 28605    1566
## 28606    1569
## 28607    1573
## 28608    1580
## 28609    1584
## 28610    1586
## 28611    1597
## 28612    1608
## 28613    1610
## 28614    1619
## 28616    1644
## 28618    1673
## 28619    1674
## 28622    1717
## 28623    1721
## 28624    1722
## 28625    1732
## 28626    1777
## 28627    1784
## 28630    1907
## 28631    1917
## 28632    1918
## 28633    1923
## 28634    1927
## 28635    1931
## 28637    1949
## 28638    1951
## 28639    1954
## 28640    1955
## 28641    1959
## 28642    1960
## 28644    1962
## 28646    2000
## 28647    2001
## 28648    2002
## 28649    2003
## 28650    2005
## 28652    2011
## 28653    2012
## 28654    2020
## 28655    2023
## 28657    2054
## 28658    2080
## 28659    2081
## 28660    2083
## 28661    2085
## 28663    2096
## 28664    2100
## 28665    2105
## 28666    2114
## 28667    2115
## 28668    2117
## 28669    2118
## 28671    2133
## 28672    2134
## 28673    2137
## 28674    2139
## 28675    2144
## 28676    2145
## 28677    2161
## 28678    2167
## 28679    2174
## 28680    2193
## 28682    2236
## 28684    2273
## 28685    2278
## 28686    2291
## 28687    2294
## 28688    2296
## 28689    2302
## 28690    2310
## 28694    2336
## 28695    2352
## 28696    2355
## 28697    2359
## 28698    2383
## 28699    2394
## 28700    2396
## 28701    2398
## 28702    2406
## 28703    2413
## 28704    2420
## 28705    2421
## 28706    2424
## 28708    2428
## 28710    2455
## 28711    2470
## 28712    2485
## 28713    2490
## 28714    2501
## 28715    2502
## 28716    2529
## 28717    2539
## 28718    2541
## 28723    2581
## 28724    2599
## 28725    2605
## 28726    2617
## 28727    2628
## 28728    2640
## 28729    2641
## 28730    2642
## 28731    2657
## 28732    2671
## 28733    2683
## 28735    2688
## 28737    2694
## 28738    2699
## 28739    2701
## 28740    2706
## 28741    2710
## 28742    2716
## 28743    2717
## 28744    2719
## 28745    2723
## 28746    2724
## 28747    2728
## 28748    2761
## 28749    2762
## 28750    2791
## 28751    2797
## 28752    2804
## 28753    2808
## 28756    2881
## 28757    2890
## 28759    2915
## 28761    2944
## 28762    2953
## 28764    2987
## 28765    2995
## 28767    3005
## 28768    3006
## 28769    3033
## 28770    3034
## 28772    3053
## 28773    3072
## 28776    3082
## 28777    3087
## 28778    3101
## 28779    3104
## 28780    3108
## 28781    3114
## 28783    3147
## 28785    3155
## 28786    3168
## 28787    3175
## 28788    3176
## 28792    3243
## 28793    3246
## 28794    3247
## 28796    3253
## 28797    3255
## 28798    3256
## 28799    3257
## 28800    3263
## 28801    3269
## 28802    3273
## 28804    3300
## 28805    3301
## 28806    3354
## 28807    3361
## 28808    3362
## 28809    3386
## 28810    3408
## 28811    3418
## 28812    3421
## 28813    3448
## 28814    3452
## 28818    3526
## 28820    3549
## 28821    3552
## 28825    3617
## 28826    3623
## 28827    3624
## 28828    3671
## 28829    3717
## 28830    3745
## 28831    3751
## 28832    3752
## 28833    3753
## 28834    3785
## 28837    3809
## 28838    3868
## 28839    3869
## 28840    3882
## 28841    3891
## 28843    3916
## 28844    3936
## 28845    3948
## 28846    3967
## 28848    3977
## 28849    3988
## 28850    3996
## 28851    4002
## 28854    4015
## 28856    4018
## 28858    4022
## 28859    4025
## 28860    4027
## 28862    4041
## 28863    4047
## 28864    4069
## 28865    4090
## 28866    4103
## 28868    4161
## 28869    4207
## 28870    4212
## 28871    4223
## 28875    4262
## 28876    4270
## 28881    4321
## 28882    4322
## 28883    4344
## 28884    4367
## 28887    4372
## 28888    4388
## 28889    4427
## 28890    4447
## 28892    4558
## 28893    4571
## 28894    4616
## 28895    4638
## 28896    4641
## 28897    4643
## 28898    4701
## 28899    4718
## 28901    4734
## 28902    4735
## 28903    4776
## 28904    4816
## 28905    4823
## 28906    4855
## 28911    4887
## 28912    4896
## 28913    4901
## 28915    4973
## 28920    5013
## 28921    5014
## 28922    5015
## 28923    5026
## 28924    5047
## 28925    5055
## 28928    5134
## 28929    5152
## 28931    5219
## 28932    5254
## 28933    5266
## 28934    5296
## 28935    5299
## 28936    5308
## 28937    5316
## 28939    5357
## 28941    5378
## 28942    5388
## 28943    5389
## 28944    5400
## 28946    5421
## 28947    5444
## 28949    5459
## 28950    5479
## 28951    5481
## 28952    5502
## 28953    5507
## 28954    5574
## 28955    5611
## 28957    5650
## 28958    5669
## 28959    5679
## 28960    5747
## 28961    5810
## 28962    5816
## 28963    5872
## 28964    5876
## 28966    5941
## 28967    5945
## 28968    5947
## 28970    5956
## 28971    5989
## 28972    5992
## 28973    5994
## 28975    6059
##                                                                                                                                                         title
## 1                                                                                                                                             Dangerous Minds
## 2                                                                                                                                                       Dumbo
## 3                                                                                                                                                    Sleepers
## 4                                                                                                                                        Escape from New York
## 6                                                                                                                                            Deer Hunter, The
## 7                                                                                                                                                     Ben-Hur
## 8                                                                                                                                                      Gandhi
## 9                                                                                                                             Dracula (Bram Stoker's Dracula)
## 10                                                                                                                                                  Cape Fear
## 11                                                                                                                              Star Trek: The Motion Picture
## 12                                                                                                                            Beavis and Butt-Head Do America
## 15                                                                                                                                    Gods Must Be Crazy, The
## 16                                                                                                                                                     Willow
## 17                                                                                                                                                       Antz
## 18                                                                                                                                                   Fly, The
## 19                                                                                                                                               Time Bandits
## 20                                                                                                                                            Blazing Saddles
## 26                                                                                                                                           Mighty Aphrodite
## 27                                                                                                                                         Mr. Holland's Opus
## 29                                                                                                                                     Brothers McMullen, The
## 32                                                                                                                                               Crimson Tide
## 33                                                                                                                                 Die Hard: With a Vengeance
## 34                                                                                                                                               First Knight
## 35                                                                                                                                                   Net, The
## 36                                                                                                                                                Nine Months
## 37                                                                                                                                                 Waterworld
## 39                                                                                                                                                     Clerks
## 40                                                                                                                                                 Disclosure
## 41                                                                                                                                                    Ed Wood
## 42                                                                                                                                                 Houseguest
## 47                                                                                                                                Madness of King George, The
## 49                                                                                                                                                   Outbreak
## 51                                                                                                                                                  Quiz Show
## 53                                                                                                                                          Santa Clause, The
## 54                                                                                                                                              Shallow Grave
## 55                                                                                                                                    While You Were Sleeping
## 58                                                                                                                                               Forrest Gump
## 59                                                                                                                                Four Weddings and a Funeral
## 60                                                                                                                                             Lion King, The
## 61                                                                                                                                                  Mask, The
## 62                                                                                                                         Naked Gun 33 1/3: The Final Insult
## 63                                                                                                                                                 Paper, The
## 64                                                                                                                                              Reality Bites
## 65                                                                                                                                                      Speed
## 66                                                                                                                                                       Wolf
## 67                                                                                      Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 68                                                                                                                                       Addams Family Values
## 70                                                                                                                                              Fugitive, The
## 72                                                                                                                                        In the Line of Fire
## 74                                                                                                                                           Last Action Hero
## 75                                                                                                                                     Much Ado About Nothing
## 82                                                                                                                                       Sleepless in Seattle
## 83                                                                                                                                                  Threesome
## 85                                                                                                                                      Three Musketeers, The
## 87                                                                                                                                                 Home Alone
## 88                                                                                                                                                      Ghost
## 89                                                                                                                                                    Aladdin
## 93                                                                                                                                  Silence of the Lambs, The
## 94                                                                                                                                            Aristocats, The
## 97                                                                                                                                Indian in the Cupboard, The
## 99                                                                                                                                         Heavenly Creatures
## 100                                                                                                                                               Major Payne
## 103                                                                                                                                          Flintstones, The
## 105                                                                                                                                                     Speed
## 106                                                                                                                                          Schindler's List
## 107                                                                                                                                                   Aladdin
## 108                                                                                                                                                    Batman
## 109                                                                                                                                 Silence of the Lambs, The
## 110                                                                                                                                      Beauty and the Beast
## 111                                                                                                                                                   Twister
## 113                                                                                                                                                     Bound
## 115                                                                                                                Star Wars: Episode VI - Return of the Jedi
## 117                                                                                                                                      Fried Green Tomatoes
## 119                                                                                                                                 Men in Black (a.k.a. MIB)
## 124                                                                                                                                              Pet Sematary
## 125                                                                                                                                                 Big Daddy
## 126                                                                                                                                             Summer of Sam
## 127                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 128                                                                                                                                          Sixth Sense, The
## 132                                                                                                                                                Encino Man
## 135                                                                                                                                                Spider-Man
## 136                                                                                                                                     Bowling for Columbine
## 137                                                                                                                                              Finding Nemo
## 138                                                                                                            Lord of the Rings: The Return of the King, The
## 139                                                                                                                     Eternal Sunshine of the Spotless Mind
## 140                                                                                                                                           Fahrenheit 9/11
## 141                                                                                                                                              Spider-Man 2
## 142                                                                                                                                    Daria: Is It Fall Yet?
## 143                                                                                                                                            V for Vendetta
## 146                                                                                                                                          Dark Knight, The
## 153                                                                                                                                               Judge Dredd
## 154                                                                                                                                                  Net, The
## 158                                                                                                                                    Star Trek: Generations
## 164                                                                                                                                                 True Lies
## 165                                                                                                                                      Addams Family Values
## 166                                                                                                                                             Carlito's Way
## 168                                                                                                                                                 Coneheads
## 176                                                                                                                                        Dances with Wolves
## 236                                                                                                                    Star Trek VI: The Undiscovered Country
## 238                                                                                                                             Star Trek IV: The Voyage Home
## 239                                                                                                                                            Batman Returns
## 244                                                                                                                            Lost World: Jurassic Park, The
## 248                                                                                                                                               Wild Things
## 251                                                                                                                                           Lethal Weapon 4
## 255                                                                                                                                                 Labyrinth
## 259                                                                                                                                           Lethal Weapon 3
## 260                                                                                                                                                  Gremlins
## 269                                                                                                                                  Honey, I Shrunk the Kids
## 284                                                                                                                                 Dead Men Don't Wear Plaid
## 294                                                                                                                                                    Willow
## 297                                                                                                                                         Seventh Sign, The
## 308                                                                                                                                                Dick Tracy
## 311                                                                                                                                    It Came from Hollywood
## 317                                                                                                                                                 Bowfinger
## 323                                                                                                                                              Medicine Man
## 324                                                                                                                                              Fright Night
## 327                                                                                                                                                 Psycho II
## 328                                                                                                                                                Psycho III
## 332                                                                                                                                                 RoboCop 2
## 335                                                                                                                                                 Creepshow
## 345                                                                                                      Loaded Weapon 1 (National Lampoon's Loaded Weapon 1)
## 349                                                                                                                                      White Men Can't Jump
## 351                                                                                                                                   Transformers: The Movie
## 357                                                                                                                           Dumb & Dumber (Dumb and Dumber)
## 359                                                                                                                                Ace Ventura: Pet Detective
## 367                                                                                                                                                   Aladdin
## 370                                                                                                                                      Nutty Professor, The
## 371                                                                                                                                            Godfather, The
## 372                                                                                                                                                   Vertigo
## 376                                                                                                                           One Flew Over the Cuckoo's Nest
## 377                                                                                                                                   Godfather: Part II, The
## 381                                                                                                                                             Jerry Maguire
## 383                                                                                                                            Lost World: Jurassic Park, The
## 391                                                                                                                                             Exorcist, The
## 392                                                                                                                                  Godfather: Part III, The
## 396                                                                                                                                             Bug's Life, A
## 398                                                                                                                                              Office Space
## 402                                                                                                                                          Sixth Sense, The
## 403                                                                                                                                                 Bowfinger
## 404                                                                                                                                  Ferris Bueller's Day Off
## 405                                                                                                                                      Being John Malkovich
## 406                                                                                                                                               Toy Story 2
## 407                                                                                                                                  Talented Mr. Ripley, The
## 409                                                                                                                                              Patriot, The
## 411                                                                                                                                          Meet the Parents
## 414                                                                                                                                                 Cast Away
## 416                                                                                                                                                     Shrek
## 417                                                                                                                                              Moulin Rouge
## 419                                                                                                                                            American Pie 2
## 420                                                                                                                                            Ocean's Eleven
## 422                                                                                                                                                Panic Room
## 426                                                                                                                                     Bowling for Columbine
## 428                                                                                                                   Harry Potter and the Chamber of Secrets
## 430                                                                                                                                      Bend It Like Beckham
## 434                                                                                                                                       Lost in Translation
## 438                                                                                                                                           Fahrenheit 9/11
## 443                                                                                                                         Charlie and the Chocolate Factory
## 453                                                                                                                                                    Casper
## 454                                                                                                                                               Judge Dredd
## 463                                                                                                                                               Sling Blade
## 464                                                                                                                                               Chasing Amy
## 465                                                                                                                                               Jackal, The
## 466                                                                                                                                               Wag the Dog
## 467                                                                                                                                               Deep Impact
## 468                                                                                                                            X-Files: Fight the Future, The
## 469                                                                                                                                           Lethal Weapon 2
## 473                                                                                                                                              Office Space
## 474                                                                                                                                               Logan's Run
## 476                                                                                                                                               Matrix, The
## 477                                                                                                                            Rocky Horror Picture Show, The
## 479                                                                                                                                               Mystery Men
## 481                                                                                                                                               Three Kings
## 482                                                                                                                                                     Dogma
## 484                                                                                                                                               Pitch Black
## 485                                                                                                                                               Chicken Run
## 486                                                                                                                                               Ghost World
## 487                                                                                                                                               Vanilla Sky
## 489                                                                                                                                         Hero (Ying xiong)
## 492                                                                                                                  Harry Potter and the Prisoner of Azkaban
## 494                                                                                                                                              Garden State
## 496                                                                                                                                                 Toy Story
## 497                                                                                                                                                 GoldenEye
## 498                                                                                                                                                Get Shorty
## 499                                                                                                                                           Dangerous Minds
## 502                                                                                                                                             Happy Gilmore
## 507                                                                                                                                              Strange Days
## 508                                                                                                                                     Walk in the Clouds, A
## 510                                                                                                                               Madness of King George, The
## 511                                                                                                                                                  Stargate
## 513                                                                                                                                    Star Trek: Generations
## 514                                                                                                                                                 Tommy Boy
## 515                                                                                                         Adventures of Priscilla, Queen of the Desert, The
## 516                                                                                                                                          Flintstones, The
## 517                                                                                                                                              Forrest Gump
## 518                                                                                                                               Four Weddings and a Funeral
## 519                                                                                                                                            Lion King, The
## 520                                                                                                                                                 Mask, The
## 521                                                                                                                                                     Speed
## 524                                                                                                                                            Mrs. Doubtfire
## 526                                                                                                                                      Sleepless in Seattle
## 530                                                                                                                                Terminator 2: Judgment Day
## 532                                                                                                                                                    Batman
## 534                                                                                                                                      Beauty and the Beast
## 535                                                                                                                                               Heavy Metal
## 537                                                                                                                              Truth About Cats & Dogs, The
## 539                                                                                                                                                Craft, The
## 540                                                                                                                                                   Twister
## 541                                                                                                                                                 Barb Wire
## 543                                                                                                                             Independence Day (a.k.a. ID4)
## 544                                                                                                                                                    Eraser
## 546                                                                                                                                                  Die Hard
## 547                                                                                                                       Willy Wonka & the Chocolate Factory
## 550                                                                                                                                E.T. the Extra-Terrestrial
## 551                                                                                                                           Return of the Pink Panther, The
## 552                                                                                                                                      Escape from New York
## 556                                                                                                                                       Princess Bride, The
## 565                                                                                                                                        Back to the Future
## 567                                                                                                                                        Young Frankenstein
## 570                                                                                                                        Indiana Jones and the Last Crusade
## 571                                                                                                                                      Pink Floyd: The Wall
## 573                                                                                                                                   When Harry Met Sally...
## 574                                                                                                                                 Mirror Has Two Faces, The
## 575                                                                                                                             Star Trek: The Motion Picture
## 576                                                                                                                    Star Trek VI: The Undiscovered Country
## 577                                                                                                                           Star Trek V: The Final Frontier
## 579                                                                                                                       Star Trek III: The Search for Spock
## 580                                                                                                                             Star Trek IV: The Voyage Home
## 581                                                                                                                                           Raising Arizona
## 583                                                                                                                                 Last of the Mohicans, The
## 585                                                                                                                                                To Die For
## 589                                                                                                                        Star Wars: Episode IV - A New Hope
## 590                                                                                                                                                      Nell
## 595                                                                                                                                 Robin Hood: Men in Tights
## 596                                                                                                                                                      Rudy
## 602                                                                                                                                           Time to Kill, A
## 604                                                                                                            Star Wars: Episode V - The Empire Strikes Back
## 612                                                                                                                                             Groundhog Day
## 615                                                                                                                                           Field of Dreams
## 616                                                                                                                                               Sling Blade
## 618                                                                                                                                             Jerry Maguire
## 620                                                                                                                                                   Con Air
## 621                                                                                                                                         L.A. Confidential
## 625                                                                                                                                                    Fallen
## 627                                                                                                                                               Deep Impact
## 630                                                                                                                                                    Splash
## 631                                                                                                                                       Secret of NIMH, The
## 636                                                                                                                                        Enemy of the State
## 637                                                                                                Christmas Vacation (National Lampoon's Christmas Vacation)
## 640                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 642                                                                                                                                                 Bowfinger
## 644                                                                                                                                                       Big
## 645                                                                                                                                        Christmas Story, A
## 646                                                                                                                                            Stir of Echoes
## 652                                                                                                                                       Remember the Titans
## 656                                                                                                                                         Finding Forrester
## 660                                                                                                                                                Score, The
## 661                                                                                                                                            Monsters, Inc.
## 662                                                                   Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 665                                                                                                        Lord of the Rings: The Fellowship of the Ring, The
## 666                                                                                                                                         Beautiful Mind, A
## 668                                                                                                              Star Wars: Episode II - Attack of the Clones
## 673                                                                                                                                     Bowling for Columbine
## 675                                                                                                                                       Catch Me If You Can
## 677                                                                                                                                          Italian Job, The
## 680                                                                                                                                              Runaway Jury
## 681                                                                                                                                         Last Samurai, The
## 685                                                                                                                                             Notebook, The
## 688                                                                                                                                         Shaun of the Dead
## 689                                                                                                                                                  Sin City
## 693                                                                                                                                          Wedding Crashers
## 694                                                                                                                                                   Syriana
## 695                                                                                                                                             Walk the Line
## 696                                                                                                                                           Rumor Has It...
## 697                                                                                                                                                 Annapolis
## 698                                                                                                                                                  Firewall
## 699                                                                                                                                         Failure to Launch
## 702                                                                                                                                                   Othello
## 704                                                                                                                                      Seven (a.k.a. Se7en)
## 712                                                                                                                                                 Rock, The
## 714                                                                                                                                           Enchanted April
## 717                                                                                                                                                    Hamlet
## 718                                                                                                                                          Addicted to Love
## 723                                                                                                                                                   Titanic
## 729                                                                                                                                           Few Good Men, A
## 730                                                                                                                                                 Rush Hour
## 733                                                                                                                                                      Antz
## 737                                                                                                                                        Thin Red Line, The
## 738                                                                                                                                                   Payback
## 740                                                                                                                                              Analyze This
## 742                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 748                                                                                                                                Ace Ventura: Pet Detective
## 750                                                                                                                                                    Batman
## 752                                                                                                                                                  Die Hard
## 753                                                                                                                                            Reservoir Dogs
## 754                                                                                                                                                   Top Gun
## 761                                                                                                                                       Blues Brothers, The
## 766                                                                                                                                            Absolute Power
## 767                                                                                                                                                  Anaconda
## 769                                                                                                                                       Alien: Resurrection
## 772                                                                                                                                             Almost Heroes
## 774                                                                                                                                                L.A. Story
## 777                                                                                                                                                 Rocky III
## 781                                                                                                                                     Astronaut's Wife, The
## 782                                                                                                                                                  Stigmata
## 784                                                                                                                                           Double Jeopardy
## 786                                                                                                                                                 Superstar
## 788                                                                                                                                     House on Haunted Hill
## 789                                                                                                                                       Bone Collector, The
## 792                                                                                                                                       From Dusk Till Dawn
## 794                                                                                                                          Free Willy 2: The Adventure Home
## 797                                                                                                                                                   Kingpin
## 802                                                                                                                                           Lethal Weapon 4
## 803                                                                                                                                      D2: The Mighty Ducks
## 805                                                                                                                                          Sixth Sense, The
## 806                                                                                                                                        Do the Right Thing
## 807                                                                                                                                     Bowling for Columbine
## 813                                                                                                                                           Informant!, The
## 817                                                                                                                                                Inside Job
## 819                                                                                                                                                 127 Hours
## 829                                                                                                        Interview with the Vampire: The Vampire Chronicles
## 830                                                                                                                               Searching for Bobby Fischer
## 831                                                                                                                                 Six Degrees of Separation
## 832                                                                                                                                                     Fargo
## 833                                                                                                                                                 Space Jam
## 835                                                                                                                                                 Barb Wire
## 836                                                                                                                                              Mary Poppins
## 837                                                                                                                                       Alice in Wonderland
## 838                                                                                                                                                   Sleeper
## 839                                                                                                                                       Princess Bride, The
## 842                                                                                                                                                Annie Hall
## 844                                                                                                                        Unbearable Lightness of Being, The
## 845                                                                                                                           Star Trek II: The Wrath of Khan
## 847                                                                                                                                               Chasing Amy
## 848                                                                                                                                         Big Lebowski, The
## 849                                                                                                                                           Blame It on Rio
## 850                                                                                                                                             Bug's Life, A
## 852                                                                                                                                        Planet of the Apes
## 853                                                                                                                                               Swamp Thing
## 855                                                                                                                                Deuce Bigalow: Male Gigolo
## 856                                                                                                                                    Cider House Rules, The
## 857                                                                                                                                  Talented Mr. Ripley, The
## 858                                                                                                                                            Angela's Ashes
## 860                                                                                                                                             Drowning Mona
## 863                                                                                                                                                Dreamscape
## 864                                                                                                                                               House Party
## 865                                                                                                                                            Rocketship X-M
## 866                                                                                                                                                 Footloose
## 868                                                                                                                                              Chuck & Buck
## 870                                                                                                                                    Pokémon the Movie 2000
## 871                                                                                                                                       Anatomy of a Murder
## 872                                                                                                                                           What About Bob?
## 874                                                                                                                                             Space Cowboys
## 875                                                                                                                                           Mad About Mambo
## 877                                                                                                                                               Air America
## 878                                                                                                                                           Steel Magnolias
## 879                                                                                                                                         Replacements, The
## 881                                                                                                                   Godzilla 2000 (Gojira ni-sen mireniamu)
## 883                                                                                                                   Naked Gun 2 1/2: The Smell of Fear, The
## 884                                                                                                                                                     Shane
## 885                                                                                                                                                Cat Ballou
## 887                                                                                                                                                Love & Sex
## 888                                                                                                                                         Steal This Movie!
## 891                                                                                                                                      Seven (a.k.a. Se7en)
## 894                                                                                                                                              Pulp Fiction
## 898                                                                                                                                             Jurassic Park
## 899                                                                                                                                                      Rudy
## 902                                                                                                                                                     Ghost
## 905                                                                                                                                         Wizard of Oz, The
## 906                                                                                                                             Robin Hood: Prince of Thieves
## 908                                                                                                                                             Groundhog Day
## 909                                                                                                                                           Lethal Weapon 4
## 912                                                                                                                                               Matrix, The
## 913                                                                                                                                10 Things I Hate About You
## 915                                                                                                                                          Sixth Sense, The
## 916                                                                                                                                        Christmas Story, A
## 917                                                                                                                                            Boys Don't Cry
## 918                                                                                                                                  Ferris Bueller's Day Off
## 919                                                                                                                                               Toy Story 2
## 921                                                                                                                                    League of Their Own, A
## 922                                                                                                                                         Muppet Movie, The
## 923                                                                                                                                             Shanghai Noon
## 926                                                                                                                                             City Slickers
## 927                                                                                                                                            American Pie 2
## 929                                                                                                                                            Monsters, Inc.
## 935                                                                                                                                     Bourne Ultimatum, The
## 942                                                                                                                                               John Carter
## 943                                                                                                                           Snow White and the Seven Dwarfs
## 945                                                                                                                                                   Titanic
## 946                                                                                                                                 Cat from Outer Space, The
## 947                                                                                                                                             Bug's Life, A
## 948                                                                                                                                      Prince of Egypt, The
## 949                                                                                                                 Star Wars: Episode I - The Phantom Menace
## 950                                                                                                                     Austin Powers: The Spy Who Shagged Me
## 951                                                                                                                       Ghostbusters (a.k.a. Ghost Busters)
## 952                                                                                                                                          Inspector Gadget
## 953                                                                                                                                             Runaway Bride
## 954                                                                                                                                      For Love of the Game
## 956                                                                                                                                             Stuart Little
## 958                                                                                                                                           Mission to Mars
## 959                                                                                                                                    Mission: Impossible II
## 961                                                                                                                                              6th Day, The
## 963                                                                                                                                                 Toy Story
## 964                                                                                                                                                   Jumanji
## 967                                                                                                                                                 GoldenEye
## 968                                                                                                                                   American President, The
## 969                                                                                                                                                     Nixon
## 970                                                                                                                                                    Casino
## 971                                                                                                                                     Sense and Sensibility
## 972                                                                                                                            Ace Ventura: When Nature Calls
## 974                                                                                                                                                   Copycat
## 975                                                                                                                                         Leaving Las Vegas
## 977                                                                                                                                                      Babe
## 978                                                                                                                                          Dead Man Walking
## 979                                                                                                                                                  Clueless
## 980                                                                                                                                             Mortal Kombat
## 983                                                                                                                                          Mighty Aphrodite
## 984                                                                                                                                        Mr. Holland's Opus
## 985                                                                                                                                       From Dusk Till Dawn
## 987                                                                                                                                           Beautiful Girls
## 988                                                                                                                                              Broken Arrow
## 990                                                                                                                                             Happy Gilmore
## 991                                                                                                                                    Muppet Treasure Island
## 992                                                                                                                                                Braveheart
## 994                                                                                                                       Rumble in the Bronx (Hont faan kui)
## 996                                                                                                                                    Flirting With Disaster
## 997                                                                                                                                                  Bad Boys
## 999                                                                                                                                                 Apollo 13
## 1000                                                                                                                                           Batman Forever
## 1001                                                                                                                                           Canadian Bacon
## 1002                                                                                                                                                    Congo
## 1003                                                                                                                                             Crimson Tide
## 1005                                                                                                                                                Desperado
## 1007                                                                                                                               Die Hard: With a Vengeance
## 1008                                                                                                                                                  Hackers
## 1009                                                                                                                                          Johnny Mnemonic
## 1012                                                                                                                                                 Mallrats
## 1013                                                                                                                                                 Net, The
## 1014                                                                                                                                                Showgirls
## 1015                                                                                                                                                  Species
## 1016                                                                                                                                             Strange Days
## 1017                                                                                                                                               Waterworld
## 1018                                                                                                                           Before the Rain (Pred dozhdot)
## 1020                                                                                                                                            Billy Madison
## 1022                                                                                                                                               Disclosure
## 1023                                                                                                                                        Dolores Claiborne
## 1024                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 1028                                                                                                                                             Forget Paris
## 1030                                                                                                                                       Heavenly Creatures
## 1031                                                                                                                                                     I.Q.
## 1032                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 1034                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 1035                                                                                                                                     Natural Born Killers
## 1036                                                                                                                                                 Outbreak
## 1043                                                                                                                                                 Stargate
## 1044                                                                                                                                        Santa Clause, The
## 1045                                                                                                                                Shawshank Redemption, The
## 1046                                                                                                                                     Swimming with Sharks
## 1047                                                                                                                                   Star Trek: Generations
## 1048                                                                                                                                               Underneath
## 1049                                                                                                                                  While You Were Sleeping
## 1050                                                                                                                                         Muriel's Wedding
## 1051                                                                                                                               Ace Ventura: Pet Detective
## 1052                                                                                                                                 Clear and Present Danger
## 1053                                                                                                                                                Crow, The
## 1054                                                                                                                                         Flintstones, The
## 1055                                                                                                                                             Forrest Gump
## 1056                                                                                                                              Four Weddings and a Funeral
## 1058                                                                                                                                                Mask, The
## 1059                                                                                                                       Naked Gun 33 1/3: The Final Insult
## 1060                                                                                                                                               Paper, The
## 1061                                                                                                                                            Reality Bites
## 1062                                                                                                                                            Red Rock West
## 1065                                                                                                                                                     Wolf
## 1066                                                                                                                                                Cabin Boy
## 1068                                                                                                                                              Cliffhanger
## 1069                                                                                                                                                Coneheads
## 1070                                                                                                                                                     Dave
## 1072                                                                                                                                           Demolition Man
## 1073                                                                                                                                                Firm, The
## 1075                                                                                                                                     Hot Shots! Part Deux
## 1076                                                                                                                                     Hudsucker Proxy, The
## 1077                                                                                                                                      In the Line of Fire
## 1078                                                                                                                                            Jurassic Park
## 1079                                                                                                                                               Kalifornia
## 1080                                                                                                                                         King of the Hill
## 1081                                                                                                                                         Last Action Hero
## 1083                                                                                                                                           Mrs. Doubtfire
## 1084                                                                                                                                             Philadelphia
## 1085                                                                                                                                               Piano, The
## 1086                                                                                                                                Robin Hood: Men in Tights
## 1087                                                                                                                                                     Rudy
## 1089                                                                                                                                               Short Cuts
## 1090                                                                                                                                     Sleepless in Seattle
## 1091                                                                                                                                                   Sliver
## 1093                                                                                                                             So I Married an Axe Murderer
## 1095                                                                                                                          Nightmare Before Christmas, The
## 1097                                                                                                                                            War Room, The
## 1098                                                                                                                                 Welcome to the Dollhouse
## 1099                                                                                                                                      Spanking the Monkey
## 1100                                                                                                                                               Home Alone
## 1101                                                                                                                                                    Ghost
## 1102                                                                                                                                                  Aladdin
## 1104                                                                                                                                       Dances with Wolves
## 1107                                                                                                                          Snow White and the Seven Dwarfs
## 1108                                                                                                                                             Pretty Woman
## 1110                                                                                                                                              Heavy Metal
## 1111                                                                                                                                              Primal Fear
## 1112                                                                                                                                       Courage Under Fire
## 1114                                                                                                                            Kids in the Hall: Brain Candy
## 1115                                                                                                                                              Underground
## 1116                                                                                                                                               Barbarella
## 1117                                                                                           Alphaville (Alphaville, une étrange aventure de Lemmy Caution)
## 1118                                                                                                                             Truth About Cats & Dogs, The
## 1119                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 1120                                                                                                                                               Craft, The
## 1121                                                                                                                                                Rock, The
## 1122                                                                                                                                                  Twister
## 1123                                                                                                                          Wallace & Gromit: A Close Shave
## 1124                                                                                                                                             Arrival, The
## 1126                                                                                                                                               Striptease
## 1128                                                                                                                            Independence Day (a.k.a. ID4)
## 1129                                                                                                                                           Cable Guy, The
## 1130                                                                                                                                                  Kingpin
## 1131                                                                                                                                                   Eraser
## 1132                                                                                                                                     Nutty Professor, The
## 1133                                                                                                                                         Frighteners, The
## 1135                                                                                                                                               Phenomenon
## 1137                                                                                                                                            She's the One
## 1138                                                                                                                                                   Ransom
## 1139                                                                                                                                           Chain Reaction
## 1148                                                                                                                                         Some Like It Hot
## 1152                                                                                                                                             My Fair Lady
## 1153                                                                                                                                            Roman Holiday
## 1154                                                                                                                                        Wizard of Oz, The
## 1155                                                                                                                                       Gone with the Wind
## 1156                                                                                                                   Sunset Blvd. (a.k.a. Sunset Boulevard)
## 1159                                                                                                                                            All About Eve
## 1160                                                                                                                                               Spellbound
## 1161                                                                                                                                    It's a Wonderful Life
## 1163                                                                                                                                            Cool Runnings
## 1164                                                                                                                                      Sound of Music, The
## 1167                                                                                                                                 Long Kiss Goodnight, The
## 1168                                                                                                                     William Shakespeare's Romeo + Juliet
## 1170                                                                                                                      Willy Wonka & the Chocolate Factory
## 1172                                                                                                                                         Bonnie and Clyde
## 1173                                                                                                                                            Dirty Dancing
## 1175                                                                                                                                           Basic Instinct
## 1176                                                                                                                                               Doors, The
## 1180                                                                                                                                          Days of Thunder
## 1181                                                                                                                                                  Top Gun
## 1182                                                                                                                              People vs. Larry Flynt, The
## 1184                                                                                                                                         Jean de Florette
## 1185                                                                                                                          Monty Python and the Holy Grail
## 1186                                                                                                                                       When We Were Kings
## 1187                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 1189                                                                                                                 Cook the Thief His Wife & Her Lover, The
## 1191                                                                                                                                           Paths of Glory
## 1193                                                                                                                                     English Patient, The
## 1195                                                                                                                                      Thin Blue Line, The
## 1198                                                                                                                                      Princess Bride, The
## 1200                                                                                                                                                   Brazil
## 1202                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 1204                                                                                                                                       Lawrence of Arabia
## 1206                                                                                                                                    To Kill a Mockingbird
## 1210                                                                                                                Wings of Desire (Himmel über Berlin, Der)
## 1211                                                                                                                                           Third Man, The
## 1212                                                                                                                                               Goodfellas
## 1214                                                                                                                                         Army of Darkness
## 1215                                                                                                                                                      Ran
## 1217                                                                                                                                                   Psycho
## 1218                                                                                                                                      Blues Brothers, The
## 1224                                                                                                                                               Annie Hall
## 1226                                                                                                                                    Boot, Das (Boat, The)
## 1228                                                                                                                                         Harold and Maude
## 1229                                                                                                                                          Terminator, The
## 1230                                                                                                                    Rosencrantz and Guildenstern Are Dead
## 1232                                                                                                                                       Dead Poets Society
## 1234                                                                                                                                            Touch of Evil
## 1235                                                                                                                                Femme Nikita, La (Nikita)
## 1237                                                                                                                                               8 1/2 (8½)
## 1239                                                                                                                        Treasure of the Sierra Madre, The
## 1241                                                                                                                                              Stand by Me
## 1242                                                                                                                                                        M
## 1243                                                                                                                                        Great Escape, The
## 1245                                                                                                                                                     Diva
## 1250                                                                                                                                                   Patton
## 1251                                                                                                                                           Cool Hand Luke
## 1252                                                                                                    Raise the Red Lantern (Da hong deng long gao gao gua)
## 1253                                                                                                                                      Great Dictator, The
## 1254                                                                                                                                                High Noon
## 1255                                                                                                                                           Big Sleep, The
## 1256                                                                                                                                                  Ben-Hur
## 1259                                                                                                                                   Some Kind of Wonderful
## 1263                                                                                                                                          Field of Dreams
## 1264                                                                                                                               Man Who Would Be King, The
## 1265                                                                                                                       Butch Cassidy and the Sundance Kid
## 1267                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 1268                                                                                                                                               Birds, The
## 1269                                                                                                                                                Blob, The
## 1270                                                                                                                          Dracula (Bram Stoker's Dracula)
## 1271                                                                                                                                                 Candyman
## 1272                                                                                                                                 Star Trek: First Contact
## 1273                                                                                                                                              Sling Blade
## 1274                                                                                                     Paradise Lost: The Child Murders at Robin Hood Hills
## 1275                                                                                                                                               Die Hard 2
## 1276                                                                                                                                           Batman Returns
## 1277                                                                                                                                                   Grease
## 1278                                                                                                                                              Under Siege
## 1280                                                                                                                                            Mars Attacks!
## 1281                                                                                                                                            Jerry Maguire
## 1284                                                                                                                          Beavis and Butt-Head Do America
## 1289                                                                                                                                            Private Parts
## 1290                                                                                                                                               Saint, The
## 1291                                                                                                                                                    Crash
## 1292                                                                                                                                         Daytrippers, The
## 1293                                                                                                                                                Liar Liar
## 1294                                                                                                                                      Grosse Pointe Blank
## 1295                                                                                                                                                   Kissed
## 1296                                                                                                                                  8 Heads in a Duffel Bag
## 1297                                                                                                                   Romy and Michele's High School Reunion
## 1298                                                                                                              Austin Powers: International Man of Mystery
## 1299                                                                                                                                       Fifth Element, The
## 1300                                                                                                                                                  Nowhere
## 1301                                                                                                                           Lost World: Jurassic Park, The
## 1303                                                                                                                                                  Con Air
## 1304                                                                                                                                  Speed 2: Cruise Control
## 1305                                                                                                                                           Batman & Robin
## 1306                                                                                                                                 My Best Friend's Wedding
## 1310                                                                                                                                                 Cop Land
## 1311                                                                                                                                        Conspiracy Theory
## 1312                                                                                                                                            Air Force One
## 1313                                                                                                                                Hunt for Red October, The
## 1314                                                                                                                                                Edge, The
## 1315                                                                                                                                          Peacemaker, The
## 1320                                                                                                                          I Know What You Did Last Summer
## 1321                                                                                                                                     The Devil's Advocate
## 1322                                                                                                                             Fast, Cheap & Out of Control
## 1323                                                                                                                                                  Gattaca
## 1324                                                                                                                                                  Stripes
## 1325                                                                                                                                            Boogie Nights
## 1327                                                                                                                                            Sliding Doors
## 1328                                                                                                                                         Truman Show, The
## 1330                                                                                                                                      Alien: Resurrection
## 1331                                                                                                                                             Apostle, The
## 1335                                                                                                                                                  Titanic
## 1336                                                                                                                                      Tomorrow Never Dies
## 1337                                                                                                                                             Jackie Brown
## 1338                                                                                                                                        Big Lebowski, The
## 1339                                                                                                                                       Great Expectations
## 1340                                                                                                                                              Wag the Dog
## 1342                                                                                                                                                Hard Rain
## 1343                                                                                                                                               Half Baked
## 1344                                                                                                                                                   Fallen
## 1345                                                                                                                                      Wedding Singer, The
## 1346                                                                                                                                                   Sphere
## 1347                                                                                                                                       As Good as It Gets
## 1348                                                                                                                                            U.S. Marshals
## 1349                                                                                                                                              Wild Things
## 1350                                                                                                                                       Cool, Dry Place, A
## 1351                                                                                                                                           Primary Colors
## 1352                                                                                                                                      Two Girls and a Guy
## 1354                                                                                                                                            Lost in Space
## 1355                                                                                                                                    Spanish Prisoner, The
## 1356                                                                                                                                  Last Days of Disco, The
## 1360                                                                                                                                               Species II
## 1361                                                                                                                                              Deep Impact
## 1362                                                                                                                                                 Godzilla
## 1364                                                                                                                                                 Insomnia
## 1365                                                                                                                                        Can't Hardly Wait
## 1366                                                                                                                                                 High Art
## 1367                                                                                                                                               Henry Fool
## 1368                                                                                                                           X-Files: Fight the Future, The
## 1370                                                                                                                                            Smoke Signals
## 1371                                                                                                                                               Armageddon
## 1375                                                                                                                                 In the Heat of the Night
## 1376                                                                                                                                          Midnight Cowboy
## 1377                                                                                                                                   French Connection, The
## 1378                                                                                                                                                    Rocky
## 1381                                                                                                                                                 Rain Man
## 1382                                                                                                                                       Driving Miss Daisy
## 1383                                                                                                                                                    Klute
## 1385                                                                                                                                              Poltergeist
## 1387                                                                                                                                            Lethal Weapon
## 1388                                                                                                                                                 Gremlins
## 1391                                                                                                                                               Metropolis
## 1392                                                                                                                               Back to the Future Part II
## 1393                                                                                                                              Back to the Future Part III
## 1394                                                                                                                                                    Bambi
## 1396                                                                                                                                       Dangerous Liaisons
## 1397                                                                                                                                                   Lolita
## 1398                                                                                                                                      Saving Private Ryan
## 1399                                                                                                                                                Condorman
## 1400                                                                                                                                 Honey, I Shrunk the Kids
## 1401                                                                                                                                          Negotiator, The
## 1402                                                                                                                                              BASEketball
## 1404                                                                                                                                              Blue Velvet
## 1405                                                                                                                                                   Splash
## 1409                                                                                                                                       Addams Family, The
## 1410                                                                                                                                               Snake Eyes
## 1411                                                                                                                                Adventures in Babysitting
## 1412                                                                                                                                            Weird Science
## 1413                                                                                                                                        Dark Crystal, The
## 1414                                                                                                                                           Pretty in Pink
## 1415                                                                                                                                  Gods Must Be Crazy, The
## 1416                                                                                                                                          Rosemary's Baby
## 1417                                                                                                                                   NeverEnding Story, The
## 1418                                                                                                                                                    Blade
## 1420                                                                                                                                     Strangers on a Train
## 1422                                                                                                                                                 Rounders
## 1425                                                                                                                                          Say Anything...
## 1426                                                                                                                                          Few Good Men, A
## 1427                                                                                                                                        Indecent Proposal
## 1428                                                                                                                                                Rush Hour
## 1429                                                                                                                                                    Ronin
## 1430                                                                                                                                                   Pecker
## 1431                                                                                                                                               Thing, The
## 1433                                                                                                                                      Edward Scissorhands
## 1434                                                                                                                                                     Antz
## 1435                                                                                                                                          My Cousin Vinny
## 1436                                                                                                                                                Nashville
## 1437                                                                                                                           2010: The Year We Make Contact
## 1438                                                                                                                                        Elephant Man, The
## 1440                                                                                                                                            Pleasantville
## 1441                                                                                                                      Life Is Beautiful (La Vita è bella)
## 1442                                                                                                                                       American History X
## 1443                                                                                                                                        Gods and Monsters
## 1444                                                                                                                                               Siege, The
## 1445                                                                                                                                                Elizabeth
## 1446                                                                                                                                           Meet Joe Black
## 1447                                                                                                                 Nights of Cabiria (Notti di Cabiria, Le)
## 1448                                                                                                                                       Enemy of the State
## 1449                                                                                                                                            Bug's Life, A
## 1450                                                                                                                      Central Station (Central do Brasil)
## 1451                                                                                                                                Celebration, The (Festen)
## 1452                                                                                                                                                King Kong
## 1453                                                                                                                                Desperately Seeking Susan
## 1454                                                                                                                                                   Fletch
## 1455                                                                                                                                           Police Academy
## 1456                                                                                                                                          Very Bad Things
## 1457                                                                                                                                           Simple Plan, A
## 1459                                                                                                                                      Shakespeare in Love
## 1460                                                                                                                                   Jewel of the Nile, The
## 1461                                                                                                                                      Romancing the Stone
## 1462                                                                                                                                                   Cocoon
## 1464                                                                                                                                          You've Got Mail
## 1465                                                                                                                                       Thin Red Line, The
## 1466                                                                                                                                             Faculty, The
## 1467                                                                                                                                               Affliction
## 1468                                                                                                                                            Varsity Blues
## 1469                                                                                                                                                 Fly, The
## 1470                                                                                                               Name of the Rose, The (Name der Rose, Der)
## 1472                                                                                                                                                  Payback
## 1473                                                                                                                                              October Sky
## 1475                                                                                                                                                      8MM
## 1476                                                                                                                                              Logan's Run
## 1477                                                                                                                                             Analyze This
## 1478                                                                                                                                         Cruel Intentions
## 1479                                                                                                                        Lock, Stock & Two Smoking Barrels
## 1480                                                                                                                                                 Ravenous
## 1481                                                                                                                                           Mod Squad, The
## 1484                                                                                                                                      Out-of-Towners, The
## 1485                                                                                                       Dreamlife of Angels, The (Vie rêvée des anges, La)
## 1486                                                                                                                                                Following
## 1487                                                                                                                                                       Go
## 1488                                                                                                                                        Never Been Kissed
## 1489                                                                                         Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar)
## 1491                                                                                                                                              Pushing Tin
## 1492                                                                                                                                                 Election
## 1493                                                                                                                                                 eXistenZ
## 1494                                                                                                                                               Entrapment
## 1495                                                                                                                                               Mummy, The
## 1496                                                                                                                             After Life (Wandafuru raifu)
## 1497                                                                                                                Star Wars: Episode I - The Phantom Menace
## 1499                                                                                                                                             Frankenstein
## 1500                                                                                                                           Rocky Horror Picture Show, The
## 1502                                                                                                                                              Desert Blue
## 1503                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 1504                                                                                                                       Red Violin, The (Violon rouge, Le)
## 1505                                                                                                                                Run Lola Run (Lola rennt)
## 1506                                                                                                                                            Arachnophobia
## 1507                                                                                                                     South Park: Bigger, Longer and Uncut
## 1508                                                                                                                                           Wild Wild West
## 1509                                                                                                                                            Summer of Sam
## 1510                                                                                                                                             American Pie
## 1511                                                                                                                                           Arlington Road
## 1512                                                                                                                                       Muppets From Space
## 1513                                                                                                                                 Blair Witch Project, The
## 1515                                                                                                                                              Lake Placid
## 1517                                                                                                                                          Ghostbusters II
## 1518                                                                                                                                       Drop Dead Gorgeous
## 1519                                                                                                                                            Deep Blue Sea
## 1520                                                                                                                                              Mystery Men
## 1521                                                                                                                                             Killing, The
## 1522                                                                                                                                                   Lolita
## 1523                                                                                                                                                     Dick
## 1524                                                                                                                                          Iron Giant, The
## 1525                                                                                                                                         Sixth Sense, The
## 1526                                                                                                                                 Thomas Crown Affair, The
## 1527                                                                                                                                               Yards, The
## 1530                                                                                                                              National Lampoon's Vacation
## 1532                                                                                                                                       Pelican Brief, The
## 1533                                                                                                          Three Days of the Condor (3 Days of the Condor)
## 1534                                                                                                                                                 Stigmata
## 1535                                                                                                                                           Stir of Echoes
## 1538                                                                                                                                          Double Jeopardy
## 1541                                                                                                                                           Boys Don't Cry
## 1543                                                                                                                                           Risky Business
## 1549                                                                                                                                      Sydney (Hard Eight)
## 1552                                                                                                                                    Bringing Out the Dead
## 1554                                                                                                                                                  RoboCop
## 1556                                                                                                                                          Licence to Kill
## 1560                                                                                                                                            Bachelor, The
## 1561                                                                                                                                      Bone Collector, The
## 1563                                                                                                                                           American Movie
## 1564                                                                                                                                               Last Night
## 1566                                                                                                                                         Drugstore Cowboy
## 1567                                                                                                                                             Falling Down
## 1571                                                                                                                                               Dead Again
## 1572                                                                                                                                                    Dogma
## 1574                                                                                                                                                    42 Up
## 1575                                                                                                                                            Sleepy Hollow
## 1576                                                                                                                                 World Is Not Enough, The
## 1578                                                            Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 1581                                                                                                                                                Backdraft
## 1583                                                                                                                                              End of Days
## 1584                                                                                                                                              Toy Story 2
## 1586                                                                                                                                        Sweet and Lowdown
## 1587                                                                                                                      Grand Illusion (La grande illusion)
## 1588                                                                                                                               Deuce Bigalow: Male Gigolo
## 1589                                                                                                                                          Green Mile, The
## 1590                                                                                                                                   Cider House Rules, The
## 1591                                                                                                                                            War Zone, The
## 1592                                                                                                                                   Last Picture Show, The
## 1593                                                                                                                                            Stuart Little
## 1594                                                                                                                                                 Magnolia
## 1595                                                                                                                                               Easy Rider
## 1596                                                                                                                                         Any Given Sunday
## 1597                                                                                                                                          Man on the Moon
## 1599                                                                                                                                 Talented Mr. Ripley, The
## 1600                                                                                                                                                    Titus
## 1601                                                                                                    Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr.
## 1602                                                                                                                                   Snow Falling on Cedars
## 1604                                                                                                                                          Pacific Heights
## 1605                                                                                                                                              Down to You
## 1607                                                                                                                                                    Alive
## 1608                                                                                                                                            Wayne's World
## 1609                                                                                                                                   League of Their Own, A
## 1610                                                                                                                                            Patriot Games
## 1612                                                                                                                            Twin Peaks: Fire Walk with Me
## 1615                                                                                                                                             Mariachi, El
## 1616                                                                                                                                           Bad Lieutenant
## 1617                                                                                                                                                 Scream 3
## 1618                                                                                                                                     Boondock Saints, The
## 1619                                                                                                                                               Beach, The
## 1620                                                                                                                                                 Snow Day
## 1624                                                                                                                                              City Lights
## 1625                                                                                                                                           Reindeer Games
## 1627                                                                                                                                               Deterrence
## 1630                                                                                                                                      Defending Your Life
## 1631                                                                                                                                              Bull Durham
## 1632                                                                                                                                        Dog Day Afternoon
## 1633                                                                                                                                                      JFK
## 1634                                                                                                                                        Shanghai Surprise
## 1635                                                                                                                                          Erin Brockovich
## 1637                                                                                                                                          Thelma & Louise
## 1638                                                                                                                                             Animal House
## 1639                                                                                                                                        Creature Comforts
## 1640                                                                                                                                         Double Indemnity
## 1641                                                                                                                                    Good Morning, Vietnam
## 1642                                                                                                                                        Lord of the Flies
## 1643                                                                                                                                             Modern Times
## 1646                                                                                                                                           Empire Records
## 1648                                                                                                                                              Skulls, The
## 1649                                                                                                                                                     Hook
## 1650                                                                                                                                                   Misery
## 1653                                                                                                                                                Frequency
## 1654                                                                                                                                             Return to Me
## 1655                                                                                                                                                 Predator
## 1656                                                                                                                                                  28 Days
## 1657                                                                                                                                          American Psycho
## 1659                                                                                                                                             East is East
## 1660                                                                                                                                                    Diner
## 1661                                                                                                                                               Caddyshack
## 1662                                                                                                                                                    U-571
## 1663                                                                                                                                     Virgin Suicides, The
## 1664                                                                                                                                          Big Kahuna, The
## 1667                                                                                                                                        Two Moon Junction
## 1668                                                                                                                                                Gladiator
## 1669                                                                                                                                                   Hamlet
## 1671                                                                                                                                        Small Time Crooks
## 1672                                                                                                                                   Mission: Impossible II
## 1673                                                                                                                                            Shanghai Noon
## 1674                                                                                           8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women)
## 1676                                                                                                                                        Seven Days in May
## 1677                                                                                                                                    Spy Who Loved Me, The
## 1678                                                                                                                                                Moonraker
## 1679                                                                                                                             Man with the Golden Gun, The
## 1680                                                                                                                                          Blazing Saddles
## 1683                                                                                                                                       Gone in 60 Seconds
## 1686                                                                                                                                                  Serpico
## 1687                                                                                                                                      Battleship Potemkin
## 1688                                                                                                                                               Titan A.E.
## 1689                                                                                                                                               Jesus' Son
## 1690                                                                                                                                              Chicken Run
## 1691                                                                                                                                       Me, Myself & Irene
## 1692                                                                                                                                       Perfect Storm, The
## 1693                                                                                                                                                      F/X
## 1694                                                                                                                                                 Croupier
## 1696                                                                                                                                    But I'm a Cheerleader
## 1697                                                                                                                                           Shower (Xizao)
## 1698                                                                                                                                         Blow-Up (Blowup)
## 1699                                                                                                                                                    X-Men
## 1701                                                                                                                                        What Lies Beneath
## 1702                                                                                                                                          Criminal Lovers
## 1703                                                                                                                                      Anatomy of a Murder
## 1704                                                                                                                                               Wonderland
## 1705                                                                                                                                              Coyote Ugly
## 1706                                                                                                                                               Hollow Man
## 1707                                                                                                                                            Space Cowboys
## 1708                                                                                                                                        Tao of Steve, The
## 1709                                                                                                                                           Aimée & Jaguar
## 1710                                                                                                                                        Replacements, The
## 1711                                                                                                                                                Cell, The
## 1714                                                                                                                                       Anatomy (Anatomie)
## 1715                                                                                                                                              Nurse Betty
## 1716                                                                                                                                      Way of the Gun, The
## 1717                                                                                                                                            Almost Famous
## 1718                                                                                                                                       Dancer in the Dark
## 1719                                                                                                                                             Best in Show
## 1721                                                                                                                                               Bamboozled
## 1725                                                                                                                                               Lost Souls
## 1726                                                                                                                                             Billy Elliot
## 1727                                                                                                                                                Bedazzled
## 1728                                                                                                                                           Pay It Forward
## 1729                                                                                                                                         Charlie's Angels
## 1730                                                                                                                                             Little Nicky
## 1731                                                                                                                                               Red Planet
## 1734                                                                                                                                             6th Day, The
## 1736                                                                                                       How the Grinch Stole Christmas (a.k.a. The Grinch)
## 1737                                                                                                                                     One Day in September
## 1738                                                                                                                              Rugrats in Paris: The Movie
## 1739                                                                                                                                                   Quills
## 1742                                                                                                                                            Proof of Life
## 1743                                                                                                                                           Vertical Limit
## 1744                                                                                                                                    Living Daylights, The
## 1745                                                                                                                                  Transformers: The Movie
## 1746                                                                                                                                              Wall Street
## 1747                                                                                                                                      Brewster's Millions
## 1748                                                                                                                                                   Snatch
## 1749                                                                                                                                                 Chocolat
## 1752                                                                                                                                          What Women Want
## 1753                                                                                                                                        Finding Forrester
## 1754                                                                                                                                                Gift, The
## 1755                                                                                                                                       Before Night Falls
## 1756                                                                                                                                                Cast Away
## 1757                                                                                                                                          Family Man, The
## 1758                                                                                                                                        Miss Congeniality
## 1759                                                                                                                               O Brother, Where Art Thou?
## 1761                                                                                                                                             Dracula 2000
## 1764                                                                                                                                    Shadow of the Vampire
## 1765                                                                                                                                           House of Games
## 1766                                                                                                                                                Antitrust
## 1767                                                                                                                                                    Panic
## 1771                                                                                                                                                   Barfly
## 1772                                                                                                                                        Beverly Hills Cop
## 1773                                                                                                                                               Innerspace
## 1775                                                                                                                                                 Hannibal
## 1776                                                                                                                            Saving Silverman (Evil Woman)
## 1777                                                                                                                                               Monkeybone
## 1778                                                                                                                                             Mexican, The
## 1779                                                                                                                                               15 Minutes
## 1780                                                                                                                                              Get Over It
## 1782                                                                                                                                       Enemy at the Gates
## 1783                                                                                                                                                Dish, The
## 1785                                                                                                                                                 Spy Kids
## 1787                                                                                                                                      Along Came a Spider
## 1788                                                                                                                                                     Blow
## 1789                                                                                                                                    Bridget Jones's Diary
## 1790                                                                                                                                                 Joe Dirt
## 1791                                                                                                                                                 Scarface
## 1792                                                                                                                                       Mummy Returns, The
## 1794                                                                                                                                         Knight's Tale, A
## 1796                                                                                                                                                    Shrek
## 1797                                                                                                                                             Moulin Rouge
## 1798                                                                                                                                             Pearl Harbor
## 1799                                                                                                                                            City Slickers
## 1801                                                                                                                                                Evolution
## 1802                                                                                                                                                Swordfish
## 1803                                                                                                                                              Point Break
## 1805                                                                                                                                  Lara Croft: Tomb Raider
## 1806                                                                                                                                Fast and the Furious, The
## 1807                                                                                                                             A.I. Artificial Intelligence
## 1808                                                                                                                                          Crazy/Beautiful
## 1809                                                                                                                                               Sexy Beast
## 1810                                                                                            Princess and the Warrior, The (Krieger und die Kaiserin, Der)
## 1811                                                                                                                                Closet, The (Placard, Le)
## 1812                                                                                                             Crimson Rivers, The (Rivières pourpres, Les)
## 1813                                                                                                                                              Cats & Dogs
## 1814                                                                                                                                            Scary Movie 2
## 1815                                                                                                                                           Something Wild
## 1817                                                                                                                                           Legally Blonde
## 1818                                                                                                                                               Score, The
## 1819                                                                                                                                                    Bully
## 1820                                                                                                                                            Jump Tomorrow
## 1822                                                                                                                               Vanishing, The (Spoorloos)
## 1823                                                                                                                         Bill & Ted's Excellent Adventure
## 1824                                                                                                                                       Look Who's Talking
## 1826                                                                                                                                        Jurassic Park III
## 1827                                                                                                                                    America's Sweethearts
## 1828                                                                                                                                              Ghost World
## 1829                                                                                                                                Hedwig and the Angry Inch
## 1830                                                                                                                                       Planet of the Apes
## 1831                                                                                                                                               Road House
## 1832                                                                                                                                             Santa Sangre
## 1833                                                                                                                                                Skin Deep
## 1834                                                                                                                                          Three Fugitives
## 1836                                                                                                                                               Uncle Buck
## 1837                                                                                                                                    Princess Diaries, The
## 1838                                                                                                                                              Rush Hour 2
## 1841                                                                                                                                            Osmosis Jones
## 1842                                                                                                                                              Others, The
## 1843                                                                                                                                            Deep End, The
## 1844                                                                                                                               Captain Corelli's Mandolin
## 1847                                                                                                                           Jay and Silent Bob Strike Back
## 1848                                                                                                                                          Happy Accidents
## 1849                                                                                                                                         Jeepers Creepers
## 1850                                                                                                                                             Training Day
## 1851                                                                                                                                                Zoolander
## 1852                                                                                                                                              Serendipity
## 1853                                                                                                                                                  Bandits
## 1854                                                                                                                                         Mulholland Drive
## 1857                                                                                                                                Man Who Wasn't There, The
## 1859                                                                                                                                                     Tape
## 1860                                                                                                                                              Shallow Hal
## 1861                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 1863                                                                                                          Devil's Backbone, The (Espinazo del diablo, El)
## 1866                                                                                                                                       Behind Enemy Lines
## 1868                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 1869                                                                                                                                   Not Another Teen Movie
## 1870                                                                                                                                              Vanilla Sky
## 1872                                                                                                                                           Kate & Leopold
## 1874                                                                                                                                        Beautiful Mind, A
## 1875                                                                                                                                              Medium Cool
## 1876                                                                                                                              Witness for the Prosecution
## 1878                                                                                                                                             Gosford Park
## 1879                                                                                                                                           Monster's Ball
## 1880                                                                                                            Brotherhood of the Wolf (Pacte des loups, Le)
## 1881                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 1882                                                                                                                                      Walk to Remember, A
## 1884                                                                                                                                             Storytelling
## 1886                                                                                                                                           Super Troopers
## 1887                                                                                                                                                   Sleuth
## 1888                                                                                                                                      Queen of the Damned
## 1890                                                                                                                                  All About the Benjamins
## 1891                                                                                                                                        Time Machine, The
## 1892                                                                                                                                                  Ice Age
## 1893                                                                                                                                            Resident Evil
## 1894                                                                                                                                                 Showtime
## 1895                                                                                                                                    Kissing Jessica Stein
## 1896                                                                                                                  And Your Mother Too (Y tu mamá también)
## 1897                                                                                                                                                 Blade II
## 1898                                                                                                                                               Panic Room
## 1900                                                                                                                                                Impromptu
## 1901                                                                                                                            National Lampoon's Van Wilder
## 1902                                                                                                                                      Rashomon (Rashômon)
## 1903                                                                                                                                           Changing Lanes
## 1904                                                                                                                                      Sweetest Thing, The
## 1905                                                                                                                                             Human Nature
## 1906                                                                                                                                 My Big Fat Greek Wedding
## 1907                                                                                                                                     Three Men and a Baby
## 1908                                                                                                                                        The Scorpion King
## 1909                                                                                                                               Nine Queens (Nueve reinas)
## 1910                                                                                                                                       Husbands and Wives
## 1911                                                                                                                                              Wild Orchid
## 1912                                                                                                                                               Spider-Man
## 1913                                                                                                                                             New Guy, The
## 1914                                                                                                                                               Unfaithful
## 1916                                                                                                             Star Wars: Episode II - Attack of the Clones
## 1917                                                                                                                                                 Insomnia
## 1918                                                                                         Thirteen Conversations About One Thing (a.k.a. 13 Conversations)
## 1919                                                                                                                                    Sum of All Fears, The
## 1920                                                                                                                                           Silent Running
## 1921                                                                                                                                                  Cherish
## 1922                                                                                                                                     Bourne Identity, The
## 1923                                                                                                                                               Scooby-Doo
## 1924                                                                                                                                            Lilo & Stitch
## 1926                                                                                                                                                Mr. Deeds
## 1927                                                                                                                                                Like Mike
## 1928                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 1929                                                                                                                                            Reign of Fire
## 1930                                                                                                                                        Road to Perdition
## 1932                                                                                                                                      Eight Legged Freaks
## 1933                                                                                                                              Austin Powers in Goldmember
## 1935                                                                                                                                                    Signs
## 1936                                                                                                                    Spy Kids 2: The Island of Lost Dreams
## 1937                                                                                                                                                      xXx
## 1938                                                                                                                                     24 Hour Party People
## 1940                                                                                                                                               Blue Crush
## 1941                                                                                                                                           One Hour Photo
## 1942                                                                                                                                               Hot Shots!
## 1943                                                                                                                                                 Stakeout
## 1944                                                                                                                                       Johnny Dangerously
## 1945                                                                                                                                           Igby Goes Down
## 1946                                                                                                                                                Secretary
## 1947                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 1948                                                                                                                                       Sweet Home Alabama
## 1949                                                                                                                                               Red Dragon
## 1950                                                                                                                                             Strange Brew
## 1953                                                                                                                                         Punch-Drunk Love
## 1955                                                                                                                                                    Frida
## 1957                                                                                                                                             Femme Fatale
## 1958                                                                                                                  Harry Potter and the Chamber of Secrets
## 1959                                                                                                                                          Die Another Day
## 1960                                                                                                                             Talk to Her (Hable con Ella)
## 1963                                                                                                                                              Equilibrium
## 1964                                                                                                                                     Visitor Q (Bizita Q)
## 1965                                                                                                                                            About Schmidt
## 1967                                                                                                                                                25th Hour
## 1968                                                                                                                                        Gangs of New York
## 1970                                                                                                                                                     Narc
## 1971                                                                                                                                              Miami Blues
## 1972                                                                                                                                      Catch Me If You Can
## 1973                                                                                                                                                  Chicago
## 1975                                                                                                                          Confessions of a Dangerous Mind
## 1976                                                                                                                             City of God (Cidade de Deus)
## 1977                                                                                                                                          CB4 - The Movie
## 1978                                                                                                                                            Summer Lovers
## 1979                                                                                                                                             Recruit, The
## 1980                                                                                                                             How to Lose a Guy in 10 Days
## 1981                                                                                                                                                Daredevil
## 1982                                                                                                                                                    Q & A
## 1983                                                                                                                                               Old School
## 1984                                                                                                                                              Life Stinks
## 1985                                                                                                                                     Bend It Like Beckham
## 1987                                                                                                                                              Phone Booth
## 1988                                                                                                Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 1989                                                                                                                                         Anger Management
## 1990                                                                                                                                           Mighty Wind, A
## 1991                                                                                                                  Winged Migration (Peuple migrateur, Le)
## 1992                                                                                                                                    Andromeda Strain, The
## 1994                                                                                                                                               Spellbound
## 1995                                                                                                                                         X2: X-Men United
## 1996                                                                                                                                     Matrix Reloaded, The
## 1997                                                                                                                                           Bruce Almighty
## 1998                                                                                                                                             Finding Nemo
## 1999                                                                                                                                         Italian Job, The
## 2000                                                                                                                                  Capturing the Friedmans
## 2001                                                                                                                                              Whale Rider
## 2002                                                                                               Man with the Movie Camera, The (Chelovek s kino-apparatom)
## 2003                                                                                                                                              Barton Fink
## 2004                                                                                                                                             Belle époque
## 2005                                                                                                                                              Good Burger
## 2006                                                                                                                                            28 Days Later
## 2007                                                                                                                          Charlie's Angels: Full Throttle
## 2008                                                                                                                                                     Hulk
## 2009                                                                                                                       Terminator 3: Rise of the Machines
## 2010                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 2011                                                                                                                                                Northfork
## 2012                                                                                                                                      Dirty Pretty Things
## 2013                                                                                                                        American Wedding (American Pie 3)
## 2014                                                                                                                                            Freaky Friday
## 2015                                                                                                                                        American Splendor
## 2017                                                                                                                                 Kind Hearts and Coronets
## 2018                                                                                                                                           Matchstick Men
## 2019                                                                                                                                      Lost in Translation
## 2020                                                                                                                                               Underworld
## 2021                                                                                               Triplets of Belleville, The (Les triplettes de Belleville)
## 2022                                                                                                                 Rules of the Game, The (La règle du jeu)
## 2025                                                                                                                                             Ginger Snaps
## 2026                                                                                                                                           School of Rock
## 2027                                                                                                                                       Station Agent, The
## 2028                                                                                                                                             Mystic River
## 2029                                                                                                                                      Intolerable Cruelty
## 2030                                                                                                                                        Kill Bill: Vol. 1
## 2031                                                                                                                                                 Dopamine
## 2032                                                                                                                                             Runaway Jury
## 2033                                                                                                                                               In the Cut
## 2035                                                                                                                                  Matrix Revolutions, The
## 2036                                                                                                                                                      Elf
## 2037                                                                                                                                            Love Actually
## 2039                                                                                                          Master and Commander: The Far Side of the World
## 2040                                                                                                                                                 21 Grams
## 2042                                                                                                                                          Damage (Fatale)
## 2044                                                                                                                                                  Slacker
## 2045                                                                                                                                                 WarGames
## 2046                                                                                                                                               Gorky Park
## 2047                                                                                                                                                    Kafka
## 2048                                                                                                                                         Kindergarten Cop
## 2049                                                                                                              Last Tango in Paris (Ultimo tango a Parigi)
## 2050                                                                                                                                   Lover, The (Amant, L')
## 2051                                                                                                                                             Quick Change
## 2053                                                                                                                                        Hero (Ying xiong)
## 2054                                                                                                                                              Naked Lunch
## 2055                                                                                                                                    Night at the Opera, A
## 2056                                                                                                                                        Last Samurai, The
## 2057                                                                                                                                                 Big Fish
## 2058                                                                                                           Lord of the Rings: The Return of the King, The
## 2059                                                                                      Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The
## 2060                                                                                                                                            Cold Mountain
## 2061                                                                                                                                         Along Came Polly
## 2062                                                                                                                                    Melvin Goes to Dinner
## 2063                                                                                                                                     The Butterfly Effect
## 2064                                                                                                                                            Dreamers, The
## 2065                                                                                                                                           50 First Dates
## 2066                                                                                                                                                 EuroTrip
## 2067                                                                                                                                         Good bye, Lenin!
## 2068                                                                                                                                          Starsky & Hutch
## 2069                                                                                                                                                  Persona
## 2070                                                                                                                                      Girl Next Door, The
## 2071                                                                                                                                                  Spartan
## 2073                                                                                                                                                 Dogville
## 2074                                                                                                                                                  Hellboy
## 2075                                                                                                                                        Kill Bill: Vol. 2
## 2076                                                                                                                                           13 Going on 30
## 2077                                                                                                                                              Man on Fire
## 2078                                                                                                                                               Mean Girls
## 2079                                                                                                                                                     Troy
## 2081                                                                                                                                             Henry & June
## 2082                                                                                                                                                Fail-Safe
## 2083                                                                                                                                      You Only Live Twice
## 2084                                                                                                                                    Never Say Never Again
## 2085                                                                                                                                      China Syndrome, The
## 2086                                                                                                                                       Parallax View, The
## 2087                                                                                                      Hidden Fortress, The (Kakushi-toride no san-akunin)
## 2088                                                                                                                                 Weather Underground, The
## 2090                                                                                                                                                  Shrek 2
## 2092                                                                                                                                                   Saved!
## 2093                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 2094                                                                                                                                        Napoleon Dynamite
## 2095                                                                                                                                            Super Size Me
## 2096                                                                                                                         Dodgeball: A True Underdog Story
## 2097                                                                                                                                            Terminal, The
## 2098                                                                                                                                             White Chicks
## 2099                                                                                                                                Pirates of Silicon Valley
## 2100                                                                                                        Manufacturing Consent: Noam Chomsky and the Media
## 2101                                                                                                                                          Fahrenheit 9/11
## 2102                                                                                                                                                  Roxanne
## 2103                                                                                                                                             Spider-Man 2
## 2105                                                                                                                    Anchorman: The Legend of Ron Burgundy
## 2106                                                                                                                                                 I, Robot
## 2107                                                                                                        Maria Full of Grace (Maria, Llena eres de gracia)
## 2108                                                                                                                                    Bourne Supremacy, The
## 2109                                                                                                                                Manchurian Candidate, The
## 2110                                                                                                                                             Garden State
## 2111                                                                                                                                               Collateral
## 2112                                                                                                                      Harold and Kumar Go to White Castle
## 2113                                                                                                                    Sky Captain and the World of Tomorrow
## 2114                                                                                                                                        Shaun of the Dead
## 2115                                                                                                                                        I Heart Huckabees
## 2118                                                                                                                Five Obstructions, The (Fem benspænd, De)
## 2119                                                                                                                                                    Alfie
## 2121                                                                                                                                            The Machinist
## 2122                                                                                                                                                      Saw
## 2123                                                                                                                                                      Ray
## 2124                                                                                                                                         Incredibles, The
## 2125                                                                                                                                        Finding Neverland
## 2126                                                                                                                                        National Treasure
## 2127                                                                                                                         SpongeBob SquarePants Movie, The
## 2128                                                                                                                                           Ocean's Twelve
## 2133                                                                                                                                            Bad Boy Bubby
## 2134                                                                                                                                                      Gia
## 2135                                                                                                                                          Ali G Indahouse
## 2137                                                                                                                                                  Old Boy
## 2138                                                                                                                                         Interpreter, The
## 2140                                                                                                                                        Scanner Darkly, A
## 2141                                                                                                                                      Million Dollar Baby
## 2142                                                                                                                                             Hotel Rwanda
## 2143                                                                                                                      Life Aquatic with Steve Zissou, The
## 2144                                                                                                                                             Aviator, The
## 2145                                                                                                                                         Meet the Fockers
## 2146                                                                                                                                                    Hitch
## 2147                                                                                                                                              Constantine
## 2148                                                                                                                                                 Sin City
## 2149                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 2150                                                                                                                     Enron: The Smartest Guys in the Room
## 2151                                                                                                                                                    Crash
## 2153                                                                                                                                         Mr. & Mrs. Smith
## 2155                                                                                                                                        War of the Worlds
## 2156                                                                                                         March of the Penguins (Marche de l'empereur, La)
## 2157                                                                                                                                           Fantastic Four
## 2158                                                                                                                                         Wedding Crashers
## 2159                                                                                                                                              Island, The
## 2160                                                                                                                                                  Stealth
## 2161                                                                                                                                                 Serenity
## 2162                                                                                                                                              Grizzly Man
## 2163                                                                                                                                  40-Year-Old Virgin, The
## 2164                                                                                                                                                  Red Eye
## 2165                                                                                                                                   Constant Gardener, The
## 2166                                                                                                                                              Lord of War
## 2167                                                                                                                                                Aeon Flux
## 2168                                                                                                                                             Corpse Bride
## 2169                                                                                                                                                   Capote
## 2171                                                                                                                                 Squid and the Whale, The
## 2173                                                                                                                                                  Syriana
## 2174                                                                                                                      Harry Potter and the Goblet of Fire
## 2175                                                                                                                                                   Munich
## 2177                                                                                                                                        Failure to Launch
## 2178                                                                                                                                           V for Vendetta
## 2179                                                                                                                                    Thank You for Smoking
## 2181                                                                                                             Lives of Others, The (Das leben der Anderen)
## 2182                                                                                                                     Youth of the Beast (Yaju no seishun)
## 2183                                                                                                                                      Lucky Number Slevin
## 2184                                                                                                                                                    Brick
## 2186                                                                                                                                  Mission: Impossible III
## 2187                                                                                                                                       Da Vinci Code, The
## 2188                                                                                                                                    X-Men: The Last Stand
## 2189                                                                                                                                                     Cars
## 2191                                                                                                                                                    Click
## 2192                                                                                                                                   Devil Wears Prada, The
## 2193                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 2194                                                                                                                                                Clerks II
## 2195                                                                                                                                   Inconvenient Truth, An
## 2196                                                                                                                                         Superman Returns
## 2197                                                                                                                                     Little Miss Sunshine
## 2198                                                                                                                                                    Babel
## 2199                                                                                                              Talladega Nights: The Ballad of Ricky Bobby
## 2200                                                                                                                                      Night at the Museum
## 2201                                                                                                                                    Stranger than Fiction
## 2202                                                                                                                                         Illusionist, The
## 2203                                                                                                                                               Jesus Camp
## 2204                                                                                                                                            Fountain, The
## 2205                                                                                                             Science of Sleep, The (La science des rêves)
## 2207                                                                                                                Pan's Labyrinth (Laberinto del fauno, El)
## 2208                                                                                                                                            Departed, The
## 2212                                                                                                                                        Déjà Vu (Deja Vu)
## 2213                                                                                                                                             Holiday, The
## 2214                                                                                                                                          Cocaine Cowboys
## 2215                                                                                                                                              Ratatouille
## 2217                                                                                                                                                 Hot Fuzz
## 2219                                                                                                                                                      300
## 2220                                                                                                                                          Blades of Glory
## 2221                                                                                                                                                 Sunshine
## 2222                                                                                                                                                 Fracture
## 2223                                                                                                                                             Spider-Man 3
## 2224                                                                                                                                               Knocked Up
## 2225                                                                                                                                         Ocean's Thirteen
## 2226                                                                                                                Fantastic Four: Rise of the Silver Surfer
## 2227                                                                                                                                                    Sicko
## 2228                                                                                                                                    Live Free or Die Hard
## 2230                                                                                                                Harry Potter and the Order of the Phoenix
## 2231                                                                                                                                      Simpsons Movie, The
## 2232                                                                                                                                    Bourne Ultimatum, The
## 2234                                                                                                                                                 Superbad
## 2236                                                                                                                                            Into the Wild
## 2237                                                                                                                                  Darjeeling Limited, The
## 2238                                                                                                                                          Michael Clayton
## 2239                                                                                                                                               Persepolis
## 2240                                                                                                                                        American Gangster
## 2241                                                                                                                                   No Country for Old Men
## 2242                                                                                                                                           Be Kind Rewind
## 2243                                                                                                                                              I Am Legend
## 2244                                                                                                                                                     Juno
## 2246                                                                                                                       National Treasure: Book of Secrets
## 2247                                                                                                                                      There Will Be Blood
## 2248                                                                                                                                              Cloverfield
## 2250                                                                                                                                                In Bruges
## 2251                                                                                                                                                   Jumper
## 2252                                                                                                                                            Bank Job, The
## 2254                                                                                                                                Forgetting Sarah Marshall
## 2257                                                                                                                                                    Taken
## 2258                                                                                                                                                  Reprise
## 2259                                                                                                       Indiana Jones and the Kingdom of the Crystal Skull
## 2260                                                                                                                                            Kung Fu Panda
## 2261                                                                                                                            You Don't Mess with the Zohan
## 2262                                                                                                                                           Happening, The
## 2263                                                                                                                                     Incredible Hulk, The
## 2265                                                                                                                                                   Wanted
## 2266                                                                                                                                                  Hancock
## 2267                                                                                                                                                Get Smart
## 2268                                                                                                                                           Up the Yangtze
## 2270                                                                                                                                              Man on Wire
## 2271                                                                                                                                        Pineapple Express
## 2272                                                                                                                                           Tropic Thunder
## 2273                                                                                                                                       Burn After Reading
## 2274                                                                                                                                         Onion Movie, The
## 2275                                                                                                                                             Body of Lies
## 2276                                                                                                                               Zack and Miri Make a Porno
## 2278                                                                                                                                      Slumdog Millionaire
## 2279                                                                                                                                        Quantum of Solace
## 2280                                                                                                                                              Role Models
## 2281                                                                                                                                                     Bolt
## 2282                                                                                                                                              Frost/Nixon
## 2283                                                                                                                                            Wrestler, The
## 2284                                                                                                                     Curious Case of Benjamin Button, The
## 2286                                                                                                                                     Paul Blart: Mall Cop
## 2287                                                                                                                                                 Coraline
## 2288                                                                                                                                                Chocolate
## 2289                                                                                                                              He's Just Not That Into You
## 2290                                                                                                                                             Mystery Team
## 2291                                                                                                                                               Away We Go
## 2292                                                                                                                           Dr. Horrible's Sing-Along Blog
## 2293                                                                                                                                          I Love You, Man
## 2294                                                                                                                                                Duplicity
## 2295                                                                                                                                Anvil! The Story of Anvil
## 2296                                                                                                                                            Adventureland
## 2298                                                                                                                                     Inglourious Basterds
## 2300                                                                                                                                                     Moon
## 2301                                                                                                                                 X-Men Origins: Wolverine
## 2302                                                                                                                               Girlfriend Experience, The
## 2305                                                                                                           Night at the Museum: Battle of the Smithsonian
## 2306                                                                                                                                                       Up
## 2307                                                                                                                                            Hangover, The
## 2308                                                                                                                              Taking of Pelham 1 2 3, The
## 2309                                                                                                                                            Proposal, The
## 2310                                                                                                                                                 Year One
## 2313                                                                                                                      Transformers: Revenge of the Fallen
## 2315                                                                                                                                            Julie & Julia
## 2317                                                                                                                                                  G-Force
## 2318                                                                                                                                        It Might Get Loud
## 2319                                                                                                                                          Informant!, The
## 2320                                                                                                                        Cloudy with a Chance of Meatballs
## 2321                                                                                                                                               Food, Inc.
## 2322                                                                                                                                                Cove, The
## 2323                                                                                                                                           Serious Man, A
## 2324                                                                                                                                               Zombieland
## 2325                                                                                                                                      Law Abiding Citizen
## 2326                                                                                                                                            Up in the Air
## 2327                                                                                                                                        Fantastic Mr. Fox
## 2328                                                                                                                                                     2012
## 2330                                                                                                                                          Sherlock Holmes
## 2331                                                                                                                                 Prophet, A (Un Prophète)
## 2332                                                                                                                                           Shutter Island
## 2334                                                                                                                                               Green Zone
## 2335                                                                                                                                     From Paris with Love
## 2336                                                                                                                                     Hot Tub Time Machine
## 2338                                                                                                                                                 Kick-Ass
## 2339                                                                                                                                               Date Night
## 2340                                                                                                                            Steam of Life (Miesten vuoro)
## 2341                                                                                                                                              Losers, The
## 2343                                                                                                                                               Iron Man 2
## 2344                                                                                                                                     Get Him to the Greek
## 2345                                                                                                                                              A-Team, The
## 2346                                                                                                                                              Toy Story 3
## 2348                                                                                                                                                Predators
## 2350                                                                                                                                           Knight and Day
## 2351                                                                                                                                  Kids Are All Right, The
## 2352                                                                                                                                                     Salt
## 2353                                                                                                                                      Dinner for Schmucks
## 2354                                                                                                                                         Expendables, The
## 2355                                                                                                                              Scott Pilgrim vs. the World
## 2356                                                                                                                                            American, The
## 2357                                                                                                                                                  GasLand
## 2358                                                                                                                                      Social Network, The
## 2360                                                                                                                                                  Catfish
## 2362                                                                                                                                                 Restrepo
## 2363                                                                                                                                   Waiting for 'Superman'
## 2364                                                                                                                                                      Red
## 2365                                                                                                                                               Black Swan
## 2366                                                                                                                                              Unstoppable
## 2367                                                                                                             Harry Potter and the Deathly Hallows: Part 1
## 2368                                                                                                                                       King's Speech, The
## 2369                                                                                                                                                  Tangled
## 2370                                                                                                                                             Fighter, The
## 2371                                                                                                                                             Tron: Legacy
## 2372                                                                                                                                       Gulliver's Travels
## 2373                                                                                                                                         Made in Dagenham
## 2374                                                                                                                                               Waste Land
## 2375                                                                                                                                        Green Hornet, The
## 2376                                                                                                                                         Cowboys & Aliens
## 2378                                                                                                                                                Limitless
## 2379                                                                                                                                      No Strings Attached
## 2380                                                                                                                                      Lincoln Lawyer, The
## 2381                                                                                                                                   Adjustment Bureau, The
## 2384                                                                                                                                                    Hanna
## 2385                                                                                                                                                     Thor
## 2386                                                                                                                  Fast Five (Fast and the Furious 5, The)
## 2389                                                                                                                                        Midnight in Paris
## 2390                                                                                                                                        Tree of Life, The
## 2391                                                                                                                                    Hangover Part II, The
## 2393                                                                                                                                       X-Men: First Class
## 2394                                                                                                                                                Beginners
## 2395                                                                                                                                                  Super 8
## 2396                                                                                                                                            Green Lantern
## 2397                                                                                                                                              Bad Teacher
## 2399                                                                                                                                          Horrible Bosses
## 2400                                                                                                                      Page One: Inside the New York Times
## 2401                                                                                                             Harry Potter and the Deathly Hallows: Part 2
## 2402                                                                                                                                                    Drive
## 2403                                                                                                                       Captain America: The First Avenger
## 2404                                                                                                                                     Crazy, Stupid, Love.
## 2405                                                                                                                                              Smurfs, The
## 2407                                                                                                                                         Conspirator, The
## 2408                                                                                                                                 Bill Cunningham New York
## 2409                                                                                                                                        Interrupters, The
## 2410                                                                                                                                                Contagion
## 2412                                                                                                                                            Avengers, The
## 2413                                                                                                                                             Killer Elite
## 2414                                                                                                                                               Real Steel
## 2415                                                                                                                                                     Buck
## 2417                                                                                                                                              Margin Call
## 2419                                                                                                                                Headhunters (Hodejegerne)
## 2420                                                                                                                                         Batman: Year One
## 2421                                                                                                                                            Puss in Boots
## 2422                                                                                                                                Adventures of Tintin, The
## 2423                                                                                                                                                     Hugo
## 2424                                                                                                                                                 Trespass
## 2425                                                                                                                                         The Hunger Games
## 2426                                                                                                                                             Clone (Womb)
## 2427                                                                                                                                   Dark Knight Rises, The
## 2428                                                                                                                                       Bourne Legacy, The
## 2429                                                                                                                       Sherlock Holmes: A Game of Shadows
## 2430                                                                                                                     Mission: Impossible - Ghost Protocol
## 2433                                                                                                                                               Contraband
## 2434                                                                                                                        Being Elmo: A Puppeteer's Journey
## 2435                                                                                                                                                Chronicle
## 2436                                                                                                                                               Safe House
## 2437                                                                                                                                           This Means War
## 2438                                                                                                                                              John Carter
## 2439                                                                                                                                           21 Jump Street
## 2440                                                                                                                                     Jiro Dreams of Sushi
## 2441                                                                                                                        American Reunion (American Pie 4)
## 2442                                                                                                                                  Cabin in the Woods, The
## 2443                                                                                                                                            Mirror Mirror
## 2444                                                                                                                                               Battleship
## 2445                                                                                                                                             Dark Shadows
## 2447                                                                                                                    Men in Black III (M.III.B.) (M.I.B.³)
## 2448                                                                                                                              Snow White and the Huntsman
## 2449                                                                                                                            Pirates! Band of Misfits, The
## 2450                                                                                                                                               Prometheus
## 2451                                                                                                                                         Moonrise Kingdom
## 2452                                                                                                                       Madagascar 3: Europe's Most Wanted
## 2453                                                                                                                                                    Brave
## 2454                                                                                                                     What to Expect When You're Expecting
## 2455                                                                                                                                                   Presto
## 2456                                                                                                                                Giant Mechanical Man, The
## 2457                                                                                                                                  Amazing Spider-Man, The
## 2458                                                                                                                              Beasts of the Southern Wild
## 2459                                                                                                                                             Total Recall
## 2460                                                                                                                                                  Skyfall
## 2461                                                                                                                                 Queen of Versailles, The
## 2462                                                                                                                                  Searching for Sugar Man
## 2463                                                                                                                                                   Looper
## 2464                                                                                                                                   Ai Weiwei: Never Sorry
## 2465                                                                                                                                                    Dredd
## 2466                                                                                                                                                     Argo
## 2467                                                                                                                                     House I Live In, The
## 2468                                                                                                                                            Imposter, The
## 2469                                                                                                                                           Wreck-It Ralph
## 2470                                                                                                                                                   Flight
## 2471                                                                                                                                               Life of Pi
## 2472                                                                                                                                    Indie Game: The Movie
## 2473                                                                                                                                                  Lincoln
## 2474                                                                                                                       Hobbit: An Unexpected Journey, The
## 2475                                                                                                                                         Zero Dark Thirty
## 2476                                                                                                                                              Warm Bodies
## 2477                                                                                                                                             Jack Reacher
## 2478                                                                                                                                         Django Unchained
## 2479                                                                                                                                          Misérables, Les
## 2480                                                                                                                                   Central Park Five, The
## 2482                                                                                                                                   Beauty Is Embarrassing
## 2483                                                                                                                                                 Movie 43
## 2484                                                                                                                                            Call Me Kuchu
## 2485                                                                                                                                             Side Effects
## 2486                                                                                                                                    World Before Her, The
## 2488                                                                                                                                                 Room 237
## 2489                                                                                                                                          Before Midnight
## 2490                                                                                                               TPB AFK: The Pirate Bay Away from Keyboard
## 2491                                                                                                                                    G.I. Joe: Retaliation
## 2492                                                                                                                                Oz the Great and Powerful
## 2493                                                                                                                                       Olympus Has Fallen
## 2494                                                                                                                                                 Oblivion
## 2495                                                                                                                                                       42
## 2496                                                                                                                                          This Is the End
## 2497                                                                                                                                               Iron Man 3
## 2498                                                                                                                                  Star Trek Into Darkness
## 2499                                                                                                                                               Frances Ha
## 2500                                                                                                                                              After Earth
## 2501                                                                                                                                           Now You See Me
## 2502                                                                                                                                             Man of Steel
## 2504                                                                                                                                              World War Z
## 2505                                                                                                                                                  Elysium
## 2506                                                                                                                                                Heat, The
## 2507                                                                                                                                                    Red 2
## 2508                                                                                                                                        We're the Millers
## 2509                                                                                                                                               Kick-Ass 2
## 2510                                                                                                                                                Blackfish
## 2511                                                                                                                                                     Koch
## 2512                                                                                                                                                  Gravity
## 2514                                                                                                                                         Captain Phillips
## 2515                                                                                                                                     Thor: The Dark World
## 2516                                                                                                                                  Marc Maron: Thinky Pain
## 2517                                                                                                                                            Muscle Shoals
## 2518                                                                                                                     Hobbit: The Desolation of Smaug, The
## 2519                                                                                                                                 Wolf of Wall Street, The
## 2520                                                                                                                                          American Hustle
## 2522                                                                                                                        Anchorman 2: The Legend Continues
## 2525                                                                                                                                Jack Ryan: Shadow Recruit
## 2526                                                                                                                                                Divergent
## 2527                                                                                                                                          I, Frankenstein
## 2528                                                                                                                                                    Enemy
## 2529                                                                                                                                           The Lego Movie
## 2530                                                                                                                                                  RoboCop
## 2531                                                                                                                                        Zero Theorem, The
## 2532                                                                                                                                Grand Budapest Hotel, The
## 2533                                                                                                                                             Interstellar
## 2534                                                                                                                                   300: Rise of an Empire
## 2535                                                                                                                                           Particle Fever
## 2536                                                                                                                                           Under the Skin
## 2538                                                                                                                                                     Noah
## 2539                                                                                                                                 The Amazing Spider-Man 2
## 2540                                                                                                                                            Transcendence
## 2541                                                                                                                                         Other Woman, The
## 2542                                                                              Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times, A
## 2543                                                                                                                                                     Lucy
## 2544                                                                                                                               X-Men: Days of Future Past
## 2550                                                                                                                                           22 Jump Street
## 2551                                                                                                                                           Equalizer, The
## 2552                                                                                                         Birdman: Or (The Unexpected Virtue of Ignorance)
## 2553                                                                                                                          Transformers: Age of Extinction
## 2554                                                                                                                                                 Whiplash
## 2557                                                                                                                                                 Sex Tape
## 2559                                                                                                                                        A Most Wanted Man
## 2560                                                                                                                                        Jupiter Ascending
## 2561                                                                                                                             Teenage Mutant Ninja Turtles
## 2562                                                                                                                                               Giver, The
## 2563                                                                                                                                                Coherence
## 2564                                                                                                                                         Maze Runner, The
## 2567                                                                                                                                             Rewrite, The
## 2569                                                                                                                                               Big Hero 6
## 2570                                                                                                                                               Ex Machina
## 2571                                                                                                                                               Foxcatcher
## 2572                                                                                                                                       The Imitation Game
## 2573                                                                                                                                            Inherent Vice
## 2574                                                                                                                    The Hunger Games: Mockingjay - Part 1
## 2576                                                                                                                                 The Theory of Everything
## 2578                                                                                                                                              Citizenfour
## 2579                                                                                                                The Hobbit: The Battle of the Five Armies
## 2580                                                                                                                                            The Interview
## 2581                                                                                                                             Kingsman: The Secret Service
## 2582                                                                                                                                                  Chappie
## 2583                                                                                                                                       Terminator Genisys
## 2584                                                                                                                                                 Red Army
## 2586                                                                                                                                       Mad Max: Fury Road
## 2587                                                                                                               Star Wars: Episode VII - The Force Awakens
## 2588                                                                                                                                                 Warcraft
## 2589                                                                                                                                  Avengers: Age of Ultron
## 2590                                                                                                                                                  Ant-Man
## 2591                                                                                                                                           Fantastic Four
## 2592                                                                                                                                                 Deadpool
## 2593                                                                                                                               Captain America: Civil War
## 2594                                                                                                                                        X-Men: Apocalypse
## 2595                                                                                                                                               True Story
## 2596                                                                                                                                        The Hateful Eight
## 2597                                                                                                                                            Run All Night
## 2598                                                                                                                                        While We're Young
## 2599                                                                                                                                                Insurgent
## 2600                                                                                                                                         Midnight Special
## 2601                                                                                                                                                Furious 7
## 2602                                                                                                                                                 Get Hard
## 2603                                                                                                                                             Tomorrowland
## 2604                                                                                                                                       The Age of Adaline
## 2605                                                                                                                                              San Andreas
## 2606                                                                                                                               Far from the Madding Crowd
## 2607                                                                                                                                              The Martian
## 2610                                                                                                                                               Inside Out
## 2611                                                                                                                    The Hunger Games: Mockingjay - Part 2
## 2612                                                                                                                                  The Secret Life of Pets
## 2613                                                                                                                             Independence Day: Resurgence
## 2614                                                                                                                                              Star Trek 3
## 2615                                                                                                                                                  Spectre
## 2616                                                                                                                                               Steve Jobs
## 2617                                                                                                                       Batman v Superman: Dawn of Justice
## 2618                                                                                                                                                      Amy
## 2619                                                                                                                                          The Jungle Book
## 2620                                                                                                                                  The Man from U.N.C.L.E.
## 2621                                                                                                                                             The Revenant
## 2622                                                                                                                                                  Sicario
## 2623                                                                                                                                          Best of Enemies
## 2624                                                                                                                                                Anomalisa
## 2625                                                                                                                                               The Intern
## 2628                                                                                                                                           American Ultra
## 2629                                                                                                                                                      Joy
## 2630                                                                                                                                                Spotlight
## 2631                                                                                                                                           Pawn Sacrifice
## 2632                                                                                                                                          Bridge of Spies
## 2633                                                                                                                                               Concussion
## 2634                                                                                                                                       Peanuts Movie, The
## 2635                                                                                                                                                    Creed
## 2636                                                                                                                                           Big Short, The
## 2637                                                                                                                                             Daddy's Home
## 2638                                                                                                                                                  Sisters
## 2640                                                                                                                                              Miles Ahead
## 2641                                                                                                                                      10 Cloverfield Lane
## 2642                                                                                                                                        London Has Fallen
## 2643                                                                                                                                                 Zootopia
## 2644                                                                                                                                                    Keanu
## 2645                                                                                                                                The Huntsman Winter's War
## 2646                                                                                                                             Neighbors 2: Sorority Rising
## 2647                                                                                                                                            Money Monster
## 2648                                                                                                                                             Finding Dory
## 2649                                                                                                                                             Mother's Day
## 2650                                                                                                                                            The Nice Guys
## 2651                                                                                                                                             The Shallows
## 2652                                                                                                                                         Now You See Me 2
## 2653                                                                                                         Teenage Mutant Ninja Turtles: Out of the Shadows
## 2654                                                                                                                       Popstar: Never Stop Never Stopping
## 2656                                                                                                                                  Approaching the Unknown
## 2657                                                                                                                                             Ghostbusters
## 2658                                                                                                                                     Central Intelligence
## 2659                                                                                                                                     The Legend of Tarzan
## 2660                                                                                                                                 The Purge: Election Year
## 2662                                                                                                                                                Sunspring
## 2670                                                                                                                                                 Rain Man
## 2672                                                                                                                                                    Ronin
## 2675                                                                                                                                                      Big
## 2678                                                                                                                                                 Chocolat
## 2686                                                                                                                                               Spider-Man
## 2690                                                                                                                                        Kill Bill: Vol. 1
## 2701                                                                                                                                          Johnny Mnemonic
## 2702                                                                                                                                                 Net, The
## 2705                                                                                                                                                   Clerks
## 2707                                                                                                                                       Heavenly Creatures
## 2708                                                                                                                       Star Wars: Episode IV - A New Hope
## 2709                                                                                                                                     Natural Born Killers
## 2712                                                                                                                Three Colors: Blue (Trois couleurs: Bleu)
## 2714                                                                                                                                    Bullets Over Broadway
## 2715                                                                                                                                             Forrest Gump
## 2716                                                                                                                                                    Speed
## 2718                                                                                                                                            Jurassic Park
## 2719                                                                                                                                              Killing Zoe
## 2724                                                                                                                                       Dances with Wolves
## 2726                                                                                                                                                    Fargo
## 2729                                                                                                                                                  Twister
## 2736                                                                                                                                         Some Like It Hot
## 2743                                                                                                                                                Notorious
## 2745                                                                                                                                                    Laura
## 2746                                                                                                                                            39 Steps, The
## 2747                                                                                                                                                 Die Hard
## 2749                                                                                                                                     Fish Called Wanda, A
## 2752                                                                                                                                      Glengarry Glen Ross
## 2753                                                                                                                                Streetcar Named Desire, A
## 2755                                                                                                                 Cook the Thief His Wife & Her Lover, The
## 2760                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 2770                                                                                                                                          Terminator, The
## 2771                                                                                                                                   Dead Alive (Braindead)
## 2776                                                                                                                                Femme Nikita, La (Nikita)
## 2777                                                                                                                                               8 1/2 (8½)
## 2779                                                                                                                                                Bad Taste
## 2780                                                                                                                                             Shining, The
## 2786                                                                                                                                               Birds, The
## 2788                                                                                                                                                 Sneakers
## 2792                                                                                                              Austin Powers: International Man of Mystery
## 2793                                                                                                                                   Tetsuo II: Body Hammer
## 2794                                                                                                                                Men in Black (a.k.a. MIB)
## 2795                                                                                                                                        Conspiracy Theory
## 2799                                                                                                                                     The Devil's Advocate
## 2804                                                                                                                                                  Titanic
## 2805                                                                                                                                             Jackie Brown
## 2808                                                                                                                                      Fireworks (Hana-bi)
## 2812                                                                                                                             There's Something About Mary
## 2817                                                                                                                                                     Dune
## 2819                                                                                                                                      Saving Private Ryan
## 2823                                                                                                                                Dead Men Don't Wear Plaid
## 2826                                                                                                                       Henry: Portrait of a Serial Killer
## 2828                                                                                                                                                    Blade
## 2831                                                                                                                                                    Ronin
## 2834                                                                                                                                       Enemy of the State
## 2839                                                                                                                                             Office Space
## 2840                                                                                                                                             Analyze This
## 2846                                                                                                                                               Idle Hands
## 2847                                                                                                                           Rocky Horror Picture Show, The
## 2848                                                                                                                                    Thirteenth Floor, The
## 2850                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 2852                                                                                                                                           Arlington Road
## 2853                                                                                                                                 Blair Witch Project, The
## 2854                                                                                                                                           Eyes Wide Shut
## 2857                                                                                                                                                Airplane!
## 2859                                                                                                                                           New Rose Hotel
## 2861                                                                                                                                 Ferris Bueller's Day Off
## 2862                                                                                                                                      Sydney (Hard Eight)
## 2869                                                                                                                                                 Magnolia
## 2870                                                                                                                                            Wayne's World
## 2875                                                                                                                                          Erin Brockovich
## 2879                                                                                                                                                  Network
## 2884                                                                                                                                        Conversation, The
## 2887                                                                                                                                              Scary Movie
## 2889                                                                                                                                                Cell, The
## 2891                                                                                                                                         Charlie's Angels
## 2894                                                                                                                               O Brother, Where Art Thou?
## 2897                                                                                                                                                Manhunter
## 2899                                                                                                                                                     Blow
## 2900                                                                                                                                    Bridget Jones's Diary
## 2902                                                                                                                                                    Shrek
## 2911                                                                                                                                           Monsters, Inc.
## 2912                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 2918                                                                                                                                        Beautiful Mind, A
## 2922                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 2924                                                                                                                                               Metropolis
## 2927                                                                                                                                                 Blade II
## 2928                                                                                                                                               Panic Room
## 2929                                                                                                                                 My Big Fat Greek Wedding
## 2930                                                                                                                                                   Enigma
## 2931                                                                                                                                               Spider-Man
## 2933                                                                                                                                     Bourne Identity, The
## 2936                                                                                                                                                    Signs
## 2937                                                                                                                                         Transporter, The
## 2942                                                                                                                            Russian Ark (Russkiy Kovcheg)
## 2944                                                                                                                                             Femme Fatale
## 2945                                                                                                                                                 Scanners
## 2948                                                                                                                                      Last Seduction, The
## 2949                                                                                                                                              Equilibrium
## 2953                                                                                                                                             Recruit, The
## 2956                                                                                                                              Irreversible (Irréversible)
## 2958                                                                                                                                              Phone Booth
## 2959                                                                                                                                         Anger Management
## 2960                                                                                                                                         Bulletproof Monk
## 2961                                                                                                                                               Confidence
## 2962                                                                                                                                                 Identity
## 2963                                                                                                                                     Matrix Reloaded, The
## 2964                                                                                                                                         Italian Job, The
## 2965                                                                                                           2 Fast 2 Furious (Fast and the Furious 2, The)
## 2967                                                                                                                                            28 Days Later
## 2968                                                                                                                          Charlie's Angels: Full Throttle
## 2971                                                                                                                                   What's Up, Tiger Lily?
## 2974                                                                                                                                           Matchstick Men
## 2975                                                                                                                                      Lost in Translation
## 2979                                                                                                                                                   Avalon
## 2980                                                                                                                        Knife in the Water (Nóz w wodzie)
## 2983                                                                                                                                              Funny Games
## 2984                                                                                                                                                 WarGames
## 2988                                                                                                                                 Night of the Hunter, The
## 2990                                                                                                                                            Wild at Heart
## 2993                                                                                                                                       Play It Again, Sam
## 3000                                                                                                                                                 Paycheck
## 3006                                                                                                                                              Man on Fire
## 3014                                                                                                              Tale of Two Sisters, A (Janghwa, Hongryeon)
## 3015                                                                                                                                          Death Race 2000
## 3016                                                                                                                           Avventura, L' (Adventure, The)
## 3018                                                                                                                                                  Shrek 2
## 3019                                                                                                                Blind Swordsman: Zatoichi, The (Zatôichi)
## 3022                                                                                                        Exterminating Angel, The (Ángel exterminador, El)
## 3023                                                                                                                                          Fahrenheit 9/11
## 3024                                                                                                                                                 I, Robot
## 3025                                                                                                                                    Bourne Supremacy, The
## 3026                                                                                                                                      Slaughterhouse-Five
## 3027                                                                                                                                Manchurian Candidate, The
## 3028                                                                                                                                             Village, The
## 3030                                                                                                                    Sky Captain and the World of Tomorrow
## 3031                                                                                                                                        Shaun of the Dead
## 3033                                                                                                                            Fearless Vampire Killers, The
## 3035                                                                                                                                                      Saw
## 3037                                                                                                                        Bad Education (La mala educación)
## 3038                                                                                                                House of Flying Daggers (Shi mian mai fu)
## 3039                                                                                                                                                     2046
## 3041                                                                                                                           Suicide Club (Jisatsu saakuru)
## 3044                                                                                                                                              Jacket, The
## 3047                                                                                                                                 Kung Fu Hustle (Gong fu)
## 3050                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 3051                                                                                                                                               Madagascar
## 3052                                                                                                       High Tension (Haute tension) (Switchblade Romance)
## 3053                                                                                                                                        War of the Worlds
## 3055                                                                                                                              Father of the Bride Part II
## 3057                                                                                                                                                  Sabrina
## 3058                                                                                                                                             Sudden Death
## 3059                                                                                                                                                    Nixon
## 3061                                                                                                                                               Four Rooms
## 3064                                                                                                                                         Dead Man Walking
## 3065                                                                                                                                         Mighty Aphrodite
## 3067                                                                                                                                             Bed of Roses
## 3068                                                                                                                                                Screamers
## 3069                                                                                                                                               Juror, The
## 3070                                                                                                                  Things to Do in Denver When You're Dead
## 3073                                                                                                                                              Mary Reilly
## 3074                                                                                                                                             Broken Arrow
## 3076                                                                                                                                    Up Close and Personal
## 3078                                                                                                                       Star Wars: Episode IV - A New Hope
## 3079                                                                                                                                          River Wild, The
## 3080                                                                                                                                       Executive Decision
## 3083                                                                                                                                               Diabolique
## 3084                                                                                                                                      Mission: Impossible
## 3086                                                                                                                                         Mulholland Falls
## 3088                                                                                                                                             Multiplicity
## 3090                                                                                                                                                  Twister
## 3091                                                                                                                                                 Spy Hard
## 3092                                                                                                                                             Arrival, The
## 3093                                                                                                                                               Striptease
## 3094                                                                                                                                                     Jack
## 3095                                                                                                                            Independence Day (a.k.a. ID4)
## 3098                                                                                                                                     Nutty Professor, The
## 3101                                                                                                                                     Very Brady Sequel, A
## 3102                                                                                                                                                   Ransom
## 3104                                                                                                                                                  Tin Cup
## 3105                                                                                                                                Island of Dr. Moreau, The
## 3106                                                                                                                                                Toy Story
## 3107                                                                                                                                                  Jumanji
## 3108                                                                                                                                         Grumpier Old Men
## 3109                                                                                                                                        Waiting to Exhale
## 3110                                                                                                                                                     Heat
## 3111                                                                                                                                                  Sabrina
## 3112                                                                                                                                             Sudden Death
## 3113                                                                                                                                                GoldenEye
## 3114                                                                                                                                  American President, The
## 3117                                                                                                                                               Get Shorty
## 3118                                                                                                                                                  Copycat
## 3119                                                                                                                                                Assassins
## 3120                                                                                                                                        Leaving Las Vegas
## 3121                                                                                                 City of Lost Children, The (Cité des enfants perdus, La)
## 3122                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 3124                                                                                                                                               Carrington
## 3125                                                                                                                                         Dead Man Walking
## 3126                                                                                                                                                 Clueless
## 3127                                                                                                                                          Dead Presidents
## 3128                                                                                                                                               To Die For
## 3130                                                                                                                                               Pocahontas
## 3132                                                                                                                                         Mighty Aphrodite
## 3133                                                                                                                                    Home for the Holidays
## 3134                                                                                                                               Postman, The (Postino, Il)
## 3135                                                                                 Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 3136                                                                                                                                            Two if by Sea
## 3138                                                                                                                                             Bed of Roses
## 3139                                                                                                                                             Nick of Time
## 3140                                                                                                                                          Beautiful Girls
## 3141                                                                                                                                             Broken Arrow
## 3143                                                                                                                                            Bottle Rocket
## 3144                                                                                                                           Bridges of Madison County, The
## 3145                                                                                                                                               Braveheart
## 3147                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 3148                                                                                                                                                Boomerang
## 3149                                                                                                                                   Flirting With Disaster
## 3150                                                                                                                                            Birdcage, The
## 3152                                                                                                                                                Apollo 13
## 3153                                                                                                                                           Batman Forever
## 3158                                                                                                                               Die Hard: With a Vengeance
## 3159                                                                                                                                     Doom Generation, The
## 3160                                                                                                                                          Johnny Mnemonic
## 3162                                                                                                                                        Lord of Illusions
## 3163                                                                                                                                                 Mad Love
## 3164                                                                                                                                                 Mallrats
## 3166                                                                                                                                                  Species
## 3167                                                                                                                                             Strange Days
## 3168                                                                                                                                            Total Eclipse
## 3169                                                                                                                                                 Unzipped
## 3170                                                                                                                                               Waterworld
## 3171                                                                                                                                       White Man's Burden
## 3172                                                                                                                                           Before Sunrise
## 3176                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 3177                                                                                                                                                  Ed Wood
## 3180                                                                                                                                         Immortal Beloved
## 3181                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 3185                                                                                                                                      Legends of the Fall
## 3186                                                                                                                             My Crazy Life (Mi vida loca)
## 3187                                                                                                                                               Milk Money
## 3188                                                                                                                                            Nobody's Fool
## 3189                                                                                                                                         New Jersey Drive
## 3194                                                                                                                                                Quiz Show
## 3198                                                                                                                                                 Stargate
## 3202                                                                                                                                   Star Trek: Generations
## 3203                                                                                                                                    Village of the Damned
## 3204                                                                                                                                                Tommy Boy
## 3206                                                                                                                              What's Eating Gilbert Grape
## 3208                                                                                                                                                 War, The
## 3209                                                                                                                               Ace Ventura: Pet Detective
## 3210                                                                                                        Adventures of Priscilla, Queen of the Desert, The
## 3211                                                                                                                                                 Backbeat
## 3213                                                                                                                                 Clear and Present Danger
## 3214                                                                                                                                              Client, The
## 3215                                                                                                                                                Crow, The
## 3216                                                                                                                                                     Cobb
## 3220                                                                                                                                           Lion King, The
## 3221                                                                                                                                            Little Buddha
## 3222                                                                          Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 3223                                                                                                                                                Mask, The
## 3224                                                                                                                       Mrs. Parker and the Vicious Circle
## 3225                                                                                                                                               Paper, The
## 3226                                                                                                                                            Reality Bites
## 3228                                                                                                                                          River Wild, The
## 3229                                                                                                                                                    Speed
## 3230                                                                                                                                                  Timecop
## 3231                                                                                                                                                True Lies
## 3232                                                                                                                                                     Wolf
## 3233                                                                                                                                               Wyatt Earp
## 3234                                                                                                                                  In the Mouth of Madness
## 3235                                                                                                                                    Age of Innocence, The
## 3236                                                                                                                                               Blown Away
## 3237                                                                                                                                            Bronx Tale, A
## 3240                                                                                                                                              Cliffhanger
## 3241                                                                                                                                                     Dave
## 3242                                                                                                                                       Dazed and Confused
## 3243                                                                                                                                           Fatal Instinct
## 3244                                                                                                                                                 Fearless
## 3245                                                                                                                                              With Honors
## 3246                                                                                                                                           Flesh and Bone
## 3247                                                                                                                                                Firm, The
## 3253                                                                                                                                     Hudsucker Proxy, The
## 3254                                                                                                                                      In the Line of Fire
## 3255                                                                                                                                In the Name of the Father
## 3256                                                                                                                                           Judgment Night
## 3258                                                                                                                                               Kalifornia
## 3259                                                                                                                                              Killing Zoe
## 3260                                                                                                                                         Last Action Hero
## 3261                                                                                                                                  Man Without a Face, The
## 3263                                                                                                                                       Executive Decision
## 3264                                                                                                                                           Mrs. Doubtfire
## 3266                                                                                                                                                No Escape
## 3267                                                                                                                                         Perfect World, A
## 3268                                                                                                                                             Philadelphia
## 3270                                                                                                                                        Radioland Murders
## 3272                                                                                                                                               Rising Sun
## 3273                                                                                                                                                RoboCop 3
## 3274                                                                                                                                Robin Hood: Men in Tights
## 3275                                                                                                                                           Romper Stomper
## 3277                                                                                                                              Searching for Bobby Fischer
## 3281                                                                                                                                                   Sirens
## 3284                                                                                                                                                Threesome
## 3286                                                                                                                                             True Romance
## 3287                                                                                                                                 Welcome to the Dollhouse
## 3288                                                                                                                                         Princess Caraboo
## 3289                                                                                                                                               Home Alone
## 3290                                                                                                                                                  Aladdin
## 3291                                                                                                                               Terminator 2: Judgment Day
## 3292                                                                                                                                       Dances with Wolves
## 3294                                                                                                                                Silence of the Lambs, The
## 3298                                                                                                                                             Pretty Woman
## 3302                                                                                                                                          Pallbearer, The
## 3303                                                                                                                                              Primal Fear
## 3304                                                                                                                                      Mission: Impossible
## 3305                                                                                                                                              Dragonheart
## 3307                                                                                                                                                     Fear
## 3310                                                                                                                                                     Boys
## 3311                                                                                                                                               Craft, The
## 3312                                                                                                                                                Rock, The
## 3313                                                                                                                                                  Twister
## 3314                                                                                                                                             Arrival, The
## 3316                                                                                                                            Independence Day (a.k.a. ID4)
## 3317                                                                                                                                           Cable Guy, The
## 3318                                                                                                                                                  Kingpin
## 3319                                                                                                                                                   Eraser
## 3320                                                                                                                                     Nutty Professor, The
## 3321                                                                                                                                         Frighteners, The
## 3322                                                                                                                                                Lone Star
## 3323                                                                                                                                               Phenomenon
## 3324                                                                                                                                          Time to Kill, A
## 3326                                                                                                                                Island of Dr. Moreau, The
## 3327                                                                          Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 3329                                                                                                                                   Breakfast at Tiffany's
## 3334                                                                                                                                               Casablanca
## 3336                                                                                                                                             My Fair Lady
## 3346                                                                                                                                               Spellbound
## 3347                                                                                                                                         To Catch a Thief
## 3359                                                                                                                                         Parent Trap, The
## 3363                                                                                                                                             Mary Poppins
## 3368                                                                                                                                       That Thing You Do!
## 3370                                                                                                                                                 Sleepers
## 3372                                                                                                                                                  Sleeper
## 3374                                                                                                                             Monty Python's Life of Brian
## 3375                                                                                                                                           Candidate, The
## 3378                                                                                                                                            Dirty Dancing
## 3381                                                                                                                                      Weekend at Bernie's
## 3382                                                                                                                                           Basic Instinct
## 3383                                                                                                                                               Doors, The
## 3387                                                                                                                                                  Top Gun
## 3390                                                                                                                                           On Golden Pond
## 3391                                                                                                                                           Drop Dead Fred
## 3392                                                                                                                                               Abyss, The
## 3394                                                                                                                                     Escape from New York
## 3398                                                                                                                        Tin Drum, The (Blechtrommel, Die)
## 3399                                                                                                                                              Bob Roberts
## 3400                                                                                                                                             Delicatessen
## 3404                                                                                                                                     English Patient, The
## 3408                                                                                                                                      Princess Bride, The
## 3424                                                                                                                           Big Blue, The (Grand bleu, Le)
## 3432                                                                                                                              Once Upon a Time in America
## 3442                                                                                                                                       Dead Poets Society
## 3443                                                                                                                                            Graduate, The
## 3452                                                                                                                                              Stand by Me
## 3460                                                                                                                                       Pump Up the Volume
## 3463                                                                                                                                     Fried Green Tomatoes
## 3464                                                                                                                                                   Patton
## 3466                                                                                                                                               Highlander
## 3472                                                                                                                                                 Heathers
## 3476                                                                                                                                   Some Kind of Wonderful
## 3477                                                                                                                       Indiana Jones and the Last Crusade
## 3480                                                                                                                                     Pink Floyd: The Wall
## 3482                                                                                                                                          Field of Dreams
## 3483                                                                                                                       Butch Cassidy and the Sundance Kid
## 3484                                                                                                       Until the End of the World (Bis ans Ende der Welt)
## 3485                                                                                                                                  When Harry Met Sally...
## 3486                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 3487                                                                                                                          American Werewolf in London, An
## 3488                                                                                                                                   Amityville Horror, The
## 3489                                                                                                                                           Believers, The
## 3491                                                                                                                                                Blob, The
## 3492                                                                                                                                               Body Parts
## 3493                                                                                                                          Dracula (Bram Stoker's Dracula)
## 3494                                                                                                                                                 Candyman
## 3498                                                                                                                               Nightmare on Elm Street, A
## 3500                                                                                                                                                Omen, The
## 3502                                                                                                                                 Star Trek: First Contact
## 3506                                                                                                                   Star Trek VI: The Undiscovered Country
## 3507                                                                                                                          Star Trek V: The Final Frontier
## 3508                                                                                                                          Star Trek II: The Wrath of Khan
## 3510                                                                                                                            Star Trek IV: The Voyage Home
## 3511                                                                                                                                           Batman Returns
## 3512                                                                                                                                               Young Guns
## 3513                                                                                                                                                   Grease
## 3514                                                                                                                                                 Grease 2
## 3515                                                                                                                                         Marked for Death
## 3516                                                                                                                                              Under Siege
## 3518                                                                                                                                                   Jaws 2
## 3519                                                                                                                                                 Jaws 3-D
## 3520                                                                                                                                            Mars Attacks!
## 3521                                                                                                                                            Jerry Maguire
## 3523                                                                                                                                                 Sneakers
## 3524                                                                                                                          Beavis and Butt-Head Do America
## 3525                                                                                                                                Last of the Mohicans, The
## 3526                                                                                                                                             Benny & Joon
## 3527                                                                                                                     Seven Samurai (Shichinin no samurai)
## 3529                                                                                                                                                Toy Story
## 3530                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 3531                                                                                                                                                     Babe
## 3532                                                                                                                                   Muppet Treasure Island
## 3533                                                                                                                                               Braveheart
## 3534                                                                                                                                                Apollo 13
## 3536                                                                                                                                    Walk in the Clouds, A
## 3537                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 3538                                                                                                                       Star Wars: Episode IV - A New Hope
## 3539                                                                                                                                             Pulp Fiction
## 3540                                                                                                                                                 Stargate
## 3542                                                                                                                               Ace Ventura: Pet Detective
## 3543                                                                                                                                             Forrest Gump
## 3544                                                                                                                                           Lion King, The
## 3545                                                                                                                                                Mask, The
## 3548                                                                                                                                            Jurassic Park
## 3550                                                                                                                                           Mrs. Doubtfire
## 3551                                                                                                                                         Schindler's List
## 3552                                                                                                                                                  Aladdin
## 3553                                                                                                                                       Dances with Wolves
## 3555                                                                                                                                Silence of the Lambs, The
## 3558                                                                                                                                                    Fargo
## 3561                                                                                                                                                  Twister
## 3565                                                                                                                                           Godfather, The
## 3566                                                                                                                                              Rear Window
## 3567                                                                                                                                    It Happened One Night
## 3568                                                                                                                                               Casablanca
## 3569                                                                                                                             20,000 Leagues Under the Sea
## 3570                                                                                                                               E.T. the Extra-Terrestrial
## 3574                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 3578                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 3579                                                                                                                                            Graduate, The
## 3581                                                                                                                                       Back to the Future
## 3582                                                                                                                                                   Gandhi
## 3583                                                                                                                                               Young Guns
## 3584                                                                                                                                             Benny & Joon
## 3589                                                                                                                                  Poseidon Adventure, The
## 3593                                                                                                                                         Sixth Sense, The
## 3594                                                                                                                                           Boys Don't Cry
## 3595                                                                                                                                               Fight Club
## 3596                                                                                                                                   Cider House Rules, The
## 3597                                                                                                                                                Stalag 17
## 3599                                                                                                                                                    U-571
## 3600                                                                                                                                          What About Bob?
## 3603                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 3611                                                                                                                                         Children of Dune
## 3613                                                                                                                                            Memphis Belle
## 3614                                                                                                                                   Farmer's Daughter, The
## 3615                                                                                                                                        Finding Neverland
## 3620                                                                                                                      Red Balloon, The (Ballon rouge, Le)
## 3624                                                                                                                                      Horton Hears a Who!
## 3627                                                                                                                                                GoldenEye
## 3628                                                                                                                                               Get Shorty
## 3631                                                                                                                                         Dead Man Walking
## 3632                                                                                                                                            Mortal Kombat
## 3634                                                                                                                                             Broken Arrow
## 3637                                                                                                                  Mighty Morphin Power Rangers: The Movie
## 3638                                                                                                                                                  Species
## 3639                                                                                                                                               Waterworld
## 3640                                                                                                                       Star Wars: Episode IV - A New Hope
## 3641                                                                                                                                      Legends of the Fall
## 3642                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 3643                                                                                                                                     Natural Born Killers
## 3644                                                                                                                                             Pulp Fiction
## 3645                                                                                                                                                 Stargate
## 3646                                                                                                                                   Star Trek: Generations
## 3647                                                                                                                                                Tommy Boy
## 3648                                                                                                                               Ace Ventura: Pet Detective
## 3651                                                                                                                                                  Timecop
## 3652                                                                                                                                                True Lies
## 3653                                                                                                                                           Street Fighter
## 3654                                                                                                                                           Demolition Man
## 3655                                                                                                                                            Fugitive, The
## 3656                                                                                                                                     Hot Shots! Part Deux
## 3657                                                                                                                                            Jurassic Park
## 3658                                                                                                                                         Last Action Hero
## 3661                                                                                                                                             Blade Runner
## 3662                                                                                                                             So I Married an Axe Murderer
## 3663                                                                                                                          Nightmare Before Christmas, The
## 3664                                                                                                                                                Tombstone
## 3665                                                                                                                                               Home Alone
## 3668                                                                                                                                                   Batman
## 3670                                                                                                                          Snow White and the Seven Dwarfs
## 3671                                                                                                                                     Beauty and the Beast
## 3672                                                                                                                                             Pretty Woman
## 3673                                                                                                                                              Heavy Metal
## 3674                                                                                                                                      Mission: Impossible
## 3675                                                                                                                                                Rock, The
## 3677                                                                                                                            Independence Day (a.k.a. ID4)
## 3678                                                                                                                                         Escape from L.A.
## 3680                                                                                                                                      Singin' in the Rain
## 3681                                                                                                                                       North by Northwest
## 3682                                                                                                                                         Some Like It Hot
## 3692                                                                                                                                                  Top Hat
## 3693                                                                                                                                                    Giant
## 3694                                                                                                                              Around the World in 80 Days
## 3698                                                                                                                                               Old Yeller
## 3699                                                                                                                             20,000 Leagues Under the Sea
## 3700                                                                                                                                               Cinderella
## 3701                                                                                                                                             Mary Poppins
## 3702                                                                                                                                 Bedknobs and Broomsticks
## 3703                                                                                                                                      Alice in Wonderland
## 3706                                                                                                                                     Fish Called Wanda, A
## 3707                                                                                                                             Monty Python's Life of Brian
## 3708                                                                                                                                            Dirty Dancing
## 3709                                                                                                                                           Reservoir Dogs
## 3711                                                                                                                                      Weekend at Bernie's
## 3712                                                                                                                               E.T. the Extra-Terrestrial
## 3713                                                                                                                                    Rebel Without a Cause
## 3716                                                                                                                                               Abyss, The
## 3717                                                                                                                                     Escape from New York
## 3718                                                                                                                                         Private Benjamin
## 3723                                                                                                                          One Flew Over the Cuckoo's Nest
## 3734                                                                                                                                  Godfather: Part II, The
## 3735                                                                                                                                        Full Metal Jacket
## 3739                                                                                                                                         Right Stuff, The
## 3740                                                                                                                                               Sting, The
## 3744                                                                                                                                                Chinatown
## 3745                                                                                                                           Day the Earth Stood Still, The
## 3747                                                                                                                                                Duck Soup
## 3750                                                                                                                                            Groundhog Day
## 3751                                                                                                                                               Unforgiven
## 3753                                                                                                                                               Highlander
## 3755                                                                                                                                                 Fantasia
## 3761                                                                                                                       Unbearable Lightness of Being, The
## 3763                                                                                                                                              Real Genius
## 3764                                                                                                                                     Pink Floyd: The Wall
## 3765                                                                                                                                         Forbidden Planet
## 3768                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 3770                                                                                                                                   Amityville Horror, The
## 3771                                                                                                                                                Blob, The
## 3772                                                                                                                                                   Carrie
## 3773                                                                                                                                               Cat People
## 3774                                                                                                                                                Omen, The
## 3775                                                                                                                                               Die Hard 2
## 3776                                                                                                                            Star Trek: The Motion Picture
## 3777                                                                                                                   Star Trek VI: The Undiscovered Country
## 3778                                                                                                                          Star Trek V: The Final Frontier
## 3780                                                                                                                      Star Trek III: The Search for Spock
## 3781                                                                                                                            Star Trek IV: The Voyage Home
## 3782                                                                                                                                                   Grease
## 3783                                                                                                                                                     Jaws
## 3784                                                                                                                                                   Jaws 2
## 3786                                                                                                                                                  Tin Men
## 3787                                                                                                                                               Turbulence
## 3788                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 3790                                                                                                                                            Mortal Kombat
## 3791                                                                                                                                     Seven (a.k.a. Se7en)
## 3792                                                                                                                                               Pocahontas
## 3793                                                                                                                                      From Dusk Till Dawn
## 3794                                                                                                                                           Batman Forever
## 3795                                                                                                                                                   Casper
## 3797                                                                                                                                              Judge Dredd
## 3798                                                                                                                                               Waterworld
## 3799                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 3800                                                                                                                                                  Ed Wood
## 3803                                                                                                                                              Major Payne
## 3805                                                                                                                                          Specialist, The
## 3806                                                                                                                                         Flintstones, The
## 3807                                                                                                                                             Forrest Gump
## 3808                                                                                                                                           Demolition Man
## 3811                                                                                                                                         Last Action Hero
## 3814                                                                                                                                    Three Musketeers, The
## 3816                                                                                                                                               Home Alone
## 3817                                                                                                                                                  Aladdin
## 3822                                                                                                                                           Cable Guy, The
## 3823                                                                                                                                                  Kingpin
## 3825                                                                                                                             Monty Python's Life of Brian
## 3827                                                                                                                               E.T. the Extra-Terrestrial
## 3828                                                                                                                                                  Top Gun
## 3829                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 3833                                                                                       Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 3834                                                                                                                                           Apocalypse Now
## 3836                                                                                                                                                    Alien
## 3840                                                                                                                                         Deer Hunter, The
## 3843                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 3846                                                                                                                            Star Trek: The Motion Picture
## 3848                                                                                                                          Star Trek II: The Wrath of Khan
## 3853                                                                                                                                            Mars Attacks!
## 3855                                                                                                                           Lost World: Jurassic Park, The
## 3857                                                                                                                                            Air Force One
## 3858                                                                                                                                                Game, The
## 3859                                                                                                                                          Full Monty, The
## 3860                                                                                                                                     The Devil's Advocate
## 3861                                                                                                                                         Truman Show, The
## 3862                                                                                                                                                  Amistad
## 3863                                                                                                                                                  Titanic
## 3864                                                                                                                                      Tomorrow Never Dies
## 3865                                                                                                                                 Replacement Killers, The
## 3867                                                                                                                                              Deep Impact
## 3869                                                                                                                           X-Files: Fight the Future, The
## 3870                                                                                                                                               Armageddon
## 3871                                                                                                                             There's Something About Mary
## 3872                                                                                                                                            Exorcist, The
## 3873                                                                                                                                       Mask of Zorro, The
## 3874                                                                                                                               Back to the Future Part II
## 3875                                                                                                                                 Godfather: Part III, The
## 3876                                                                                                                                      Little Mermaid, The
## 3877                                                                                                                     Indiana Jones and the Temple of Doom
## 3879                                                                                                                                                     Cube
## 3882                                                                                                                             History of the World: Part I
## 3883                                                                                                                                           Meet Joe Black
## 3884                                                                                                                               Rambo: First Blood Part II
## 3885                                                                                                                                              Patch Adams
## 3887                                                                                                                                             Office Space
## 3890                                                                                                                                               Entrapment
## 3891                                                                                                                                               Dick Tracy
## 3892                                                                                                                                               Mummy, The
## 3893                                                                                                                           Rocky Horror Picture Show, The
## 3894                                                                                                                                    Thirteenth Floor, The
## 3895                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 3896                                                                                                                     South Park: Bigger, Longer and Uncut
## 3897                                                                                                                                           Wild Wild West
## 3898                                                                                                                                 Blair Witch Project, The
## 3900                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 3901                                                                                                                                          Ghostbusters II
## 3902                                                                                                                                              Mystery Men
## 3904                                                                                                                                 Thomas Crown Affair, The
## 3906                                                                                                                                          Double Jeopardy
## 3907                                                                                                                           Home Alone 2: Lost in New York
## 3909                                                                                                                                                  RoboCop
## 3911                                                                                                                                          Licence to Kill
## 3913                                                                                                                                                    Dogma
## 3915                                                                                                                                 World Is Not Enough, The
## 3916                                                                                                                                          Green Mile, The
## 3917                                                                                                                                 Talented Mr. Ripley, The
## 3919                                                                                                                                            Wayne's World
## 3920                                                                                                                                               Beach, The
## 3921                                                                                                                                              Pitch Black
## 3922                                                                                                                                          Mission to Mars
## 3924                                                                                                                                          Erin Brockovich
## 3925                                                                                                                             Teenage Mutant Ninja Turtles
## 3928                                                                                                                                                Gladiator
## 3929                                                                                                                                   Mission: Impossible II
## 3930                                                                                                                                               Predator 2
## 3931                                                                                                                                              Chicken Run
## 3933                                                                                                                                          What About Bob?
## 3934                                                                                                                                               Hollow Man
## 3936                                                                                                                                         Charlie's Angels
## 3937                                                                                                                                              Unbreakable
## 3938                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 3939                                                                                                                                           Vertical Limit
## 3941                                                                                                                                    Dude, Where's My Car?
## 3942                                                                                                                               O Brother, Where Art Thou?
## 3945                                                                                                                                                     Blow
## 3946                                                                                                                                                 Scarface
## 3948                                                                                                                             A.I. Artificial Intelligence
## 3949                                                                                                             Crimson Rivers, The (Rivières pourpres, Les)
## 3950                                                                                                                                       Planet of the Apes
## 3952                                                                                                                                              Others, The
## 3953                                                                                                                                             Training Day
## 3955                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 3956                                                                                                                                           Ocean's Eleven
## 3959                                                                                                                                          Black Hawk Down
## 3961                                                                                                                                            Resident Evil
## 3962                                                                                                                                               Panic Room
## 3964                                                                                                                                    Sum of All Fears, The
## 3966                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 3967                                                                                                                                        Road to Perdition
## 3970                                                                                                                  Harry Potter and the Chamber of Secrets
## 3971                                                                                                                                          Die Another Day
## 3974                                                                                                                                      Catch Me If You Can
## 3977                                                                                                                                     Matrix Reloaded, The
## 3978                                                                                                                                           Bruce Almighty
## 3979                                                                                                                                            28 Days Later
## 3981                                                                                                      League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 3982                                                                                                                                               Underworld
## 3984                                                                                                                                         Italian Job, The
## 3985                                                                                                                                  Matrix Revolutions, The
## 3989                                                                                                                                         Dawn of the Dead
## 3990                                                                                                                                                  Hellboy
## 3992                                                                                                                                              Van Helsing
## 3994                                                                                                                                                  Shrek 2
## 3995                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 3997                                                                                                                                               Collateral
## 3998                                                                                                                                              Grudge, The
## 4001                                                                                                                                         Incredibles, The
## 4006                                                                                                             Star Wars: Episode III - Revenge of the Sith
## 4007                                                                                                                                            Batman Begins
## 4009                                                                                                                                                Toy Story
## 4010                                                                                                                                                     Heat
## 4011                                                                                                                                  American President, The
## 4013                                                                                                                           Ace Ventura: When Nature Calls
## 4014                                                                                                                                              Money Train
## 4015                                                                                                                                                   Powder
## 4017                                                                                                                                                     Babe
## 4020                                                                                                                               Postman, The (Postino, Il)
## 4023                                                                                                                                            Happy Gilmore
## 4024                                                                                                                                               Braveheart
## 4026                                                                                                                                                Apollo 13
## 4027                                                                                                                                           Batman Forever
## 4029                                                                                                                                          Johnny Mnemonic
## 4030                                                                                                                                                 Net, The
## 4037                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 4040                                                                                                      Like Water for Chocolate (Como agua para chocolate)
## 4041                                                                                                                                                 Outbreak
## 4045                                                                                                                Three Colors: Red (Trois couleurs: Rouge)
## 4046                                                                                                                Three Colors: Blue (Trois couleurs: Bleu)
## 4047                                                                                                                                                 Stargate
## 4051                                                                                                                               Ace Ventura: Pet Detective
## 4055                                                                                                                                                 Blue Sky
## 4056                                                                                                                                            Carlito's Way
## 4057                                                                                                                                           Demolition Man
## 4058                                                                                                                                            Fugitive, The
## 4059                                                                                                                                           Heaven & Earth
## 4060                                                                                                                                     Hudsucker Proxy, The
## 4061                                                                                                                                            Jurassic Park
## 4062                                                                                                                                         Last Action Hero
## 4067                                                                                                                                         Schindler's List
## 4068                                                                                                                                               Serial Mom
## 4070                                                                                                                                     Sleepless in Seattle
## 4071                                                                                                                                             Blade Runner
## 4072                                                                                                                                               Home Alone
## 4074                                                                                                                               Terminator 2: Judgment Day
## 4075                                                                                                                                       Dances with Wolves
## 4076                                                                                                                                                   Batman
## 4079                                                                                                                                             Pretty Woman
## 4083                                                                                                                                              Dragonheart
## 4089                                                                                                                            Independence Day (a.k.a. ID4)
## 4090                                                                                                                                     Nutty Professor, The
## 4091                                                                                                                                               Phenomenon
## 4092                                                                                                                                          Time to Kill, A
## 4097                                                                                                                                    American in Paris, An
## 4098                                                                                                                                                  Vertigo
## 4102                                                                                                                                           Apartment, The
## 4107                                                                                                                                             My Fair Lady
## 4108                                                                                                                                       Gone with the Wind
## 4111                                                                                                                                    2001: A Space Odyssey
## 4116                                                                                                                                         To Catch a Thief
## 4118                                                                                                                                                    Giant
## 4119                                                                                                                                             East of Eden
## 4120                                                                                                                              Around the World in 80 Days
## 4123                                                                                                                                         Bringing Up Baby
## 4124                                                                                                                                            39 Steps, The
## 4125                                                                                                                                       African Queen, The
## 4126                                                                                                                                    Cat on a Hot Tin Roof
## 4127                                                                                                                                      Sound of Music, The
## 4128                                                                                                                                                 Die Hard
## 4131                                                                                                                                                 Sleepers
## 4136                                                                                                                                           Reservoir Dogs
## 4138                                                                                                                                          Sophie's Choice
## 4140                                                                                                                                                  Top Gun
## 4145                                                                                                                                             Delicatessen
## 4146                                                                                              Double Life of Veronique, The (Double Vie de Véronique, La)
## 4149                                                                                                                                             My Left Foot
## 4155                                                                                                                                                   Brazil
## 4161                                                                                                                                    To Kill a Mockingbird
## 4164                                                                                                                Wings of Desire (Himmel über Berlin, Der)
## 4165                                                                                                                                           Third Man, The
## 4168                                                                                                                       Killer, The (Die xue shuang xiong)
## 4171                                                                                                                                        Full Metal Jacket
## 4173                                                                                                                              Once Upon a Time in America
## 4178                                                                                                                                    Boot, Das (Boat, The)
## 4179                                                                                                                                               Sting, The
## 4180                                                                                                                                         Harold and Maude
## 4182                                                                                                                                          Terminator, The
## 4183                                                                                                                                   Dead Alive (Braindead)
## 4184                                                                                                                    Rosencrantz and Guildenstern Are Dead
## 4185                                                                                                                                                Manhattan
## 4192                                                                                                                        Treasure of the Sierra Madre, The
## 4193                                                                                                                                                Duck Soup
## 4194                                                                                                                                             Shining, The
## 4197                                                                                                                                         Deer Hunter, The
## 4199                                                                                                                                               Unforgiven
## 4203                                                                                                                                                   Patton
## 4204                                                                                                                                       Cyrano de Bergerac
## 4206                                                                                                                                      Great Dictator, The
## 4209                                                                                                                                       This Is Spinal Tap
## 4210                                                                                                                       Indiana Jones and the Last Crusade
## 4215                                                                                                                                               Birds, The
## 4217                                                                                                        Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 4219                                                                                                                                 Star Trek: First Contact
## 4220                                                                                                                                           Batman Returns
## 4221                                                                                                                                                   Grease
## 4222                                                                                                                                                     Jaws
## 4223                                                                                                                                            Mars Attacks!
## 4226                                                                                                                                Last of the Mohicans, The
## 4227                                                                                                                                                   Hamlet
## 4228                                                                                                                                             Dante's Peak
## 4229                                                                                                                                             Lost Highway
## 4230                                                                                                                                                 Anaconda
## 4232                                                                                                                                                  Volcano
## 4233                                                                                                                                       Fifth Element, The
## 4234                                                                                                                           Lost World: Jurassic Park, The
## 4235                                                                                                                                                  Con Air
## 4236                                                                                                                                  Speed 2: Cruise Control
## 4237                                                                                                                                           Batman & Robin
## 4238                                                                                                                                Men in Black (a.k.a. MIB)
## 4240                                                                                                                                            Air Force One
## 4246                                                                                                                                        Good Will Hunting
## 4248                                                                                                                                      Tomorrow Never Dies
## 4252                                                                                                                                            U.S. Marshals
## 4253                                                                                                                                                  Everest
## 4254                                                                                                                                           City of Angels
## 4256                                                                                                                                          Misérables, Les
## 4257                                                                                                                                              Deep Impact
## 4258                                                                                                              Children of Heaven, The (Bacheha-Ye Aseman)
## 4259                                                                                                                                                    Mulan
## 4260                                                                                                                                               Armageddon
## 4261                                                                                                                           All Quiet on the Western Front
## 4263                                                                                                                                      Great Ziegfeld, The
## 4265                                                                                                                                                   Hamlet
## 4270                                                                                                                                   Man for All Seasons, A
## 4272                                                                                                                                                  Oliver!
## 4274                                                                                                                                   French Connection, The
## 4275                                                                                                                                                    Rocky
## 4277                                                                                                                                          Ordinary People
## 4278                                                                                                                                         Chariots of Fire
## 4279                                                                                                                                      Terms of Endearment
## 4280                                                                                                                                            Out of Africa
## 4281                                                                                                                                        Last Emperor, The
## 4283                                                                                                                                       Driving Miss Daisy
## 4284                                                                                                                                            Exorcist, The
## 4285                                                                                                                                          Lethal Weapon 3
## 4286                                                                                                                                               Metropolis
## 4291                                                                                                                                 Godfather: Part III, The
## 4292                                                                                                                                     Jane Austen's Mafia!
## 4294                                                                                                                                           Doctor Zhivago
## 4297                                                                                                                                               Snake Eyes
## 4299                                                                                                                                                   Legend
## 4300                                                                                                                                              Beetlejuice
## 4302                                                                                                                                                   Frenzy
## 4304                                                                                                                               Man Who Knew Too Much, The
## 4306                                                                                                                                        Untouchables, The
## 4308                                                                                                                                         Mr. & Mrs. Smith
## 4309                                                                                                                                                 Rounders
## 4310                                                                                                                                          Say Anything...
## 4311                                                                                                                                                Rush Hour
## 4315                                                                                                                                        Elephant Man, The
## 4317                                                                                                                      Life Is Beautiful (La Vita è bella)
## 4318                                                                                                                                       American History X
## 4319                                                                                                                                        Gods and Monsters
## 4320                                                                                                                                               Siege, The
## 4321                                                                                                                                                Elizabeth
## 4323                                                                                                                                       Enemy of the State
## 4325                                                                                                                                Celebration, The (Festen)
## 4327                                                                                                                                     Prince of Egypt, The
## 4330                                                                                                                                          You've Got Mail
## 4332                                                                                                                                      Color of Money, The
## 4335                                                                                                                                             Analyze This
## 4336                                                                                                                        Lock, Stock & Two Smoking Barrels
## 4338                                                                                                       Dreamlife of Angels, The (Vie rêvée des anges, La)
## 4339                                                                                                                                                       Go
## 4340                                                                                                                                                 Election
## 4342                                                                                                                                               Mummy, The
## 4343                                                                                                                Star Wars: Episode I - The Phantom Menace
## 4345                                                                                                                                                  Dracula
## 4347                                                                                                                           Rocky Horror Picture Show, The
## 4349                                                                                                                                            Arachnophobia
## 4352                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 4353                                                                                                                                                    Trick
## 4354                                                                                                                                            Runaway Bride
## 4357                                                                                                                                                   Lolita
## 4361                                                                                                                                   Little Shop of Horrors
## 4363                                                                                                                                         Mickey Blue Eyes
## 4364                                                                                                                                          American Beauty
## 4365                                                                                                                                              Deliverance
## 4368                                                                                                                                           Boys Don't Cry
## 4371                                                                                                                                               Goldfinger
## 4372                                                                                                                                      Sydney (Hard Eight)
## 4373                                                                                                                           Home Alone 2: Lost in New York
## 4374                                                                                                                                               Fight Club
## 4377                                                                                                                                 Who Framed Roger Rabbit?
## 4380                                                                                                                                         Drugstore Cowboy
## 4381                                                                                                                                             Falling Down
## 4382                                                                                                                                                    Dogma
## 4383                                                                                                                 Messenger: The Story of Joan of Arc, The
## 4385                                                                                                                                            Sleepy Hollow
## 4386                                                                                                                                 World Is Not Enough, The
## 4388                                                                                                                                                   Harvey
## 4390                                                                                                                                     Grapes of Wrath, The
## 4391                                                                                                                                 River Runs Through It, A
## 4392                                                                                                                                              Toy Story 2
## 4393                                                                                                                                          Green Mile, The
## 4394                                                                                                                                   Last Picture Show, The
## 4395                                                                                                                                        Anna and the King
## 4400                                                                                                                                         Five Easy Pieces
## 4403                                                                                                                          Sister Act 2: Back in the Habit
## 4405                                                                                                                                             Mariachi, El
## 4409                                                                                                                                           Searchers, The
## 4410                                                                                                                                          Bound for Glory
## 4412                                                                                                                                     Night to Remember, A
## 4414                                                                                                                                    Mirror, The (Zerkalo)
## 4419                                                                                                                                             Hustler, The
## 4421                                                                                                                                      Place in the Sun, A
## 4422                                                                                                                                            High Fidelity
## 4423                                                                                                                                                     Hook
## 4425                                                                                                                                       Solaris (Solyaris)
## 4426                                                                                                                                                  Network
## 4427                                                                                                                                                Frequency
## 4430                                                                                                                                                Limelight
## 4431                                                                                                                                  Idiots, The (Idioterne)
## 4433                                                                                                                                        Small Time Crooks
## 4434                                                                                                                                   Mission: Impossible II
## 4436                                                                                                                                         Romeo and Juliet
## 4437                                                                                                                                          Blazing Saddles
## 4438                                                                                                      For a Few Dollars More (Per qualche dollaro in più)
## 4439                                                                                                                                        Conversation, The
## 4441                                                                                                                                                 Badlands
## 4443                                                                                                                                             Patriot, The
## 4445                                                                                                                                      Anatomy of a Murder
## 4446                                                                                                                                          Steel Magnolias
## 4447                                                                                                                                                    Shane
## 4453                                                                                                                                                   Malèna
## 4459                                                                                                                                                 Chocolat
## 4460                                                                                                                                                Cast Away
## 4461                                                                                                                               O Brother, Where Art Thou?
## 4462                                                                                                                                                  Traffic
## 4463                                                                                                                                           House of Games
## 4464                                                                                                                                        Empire of the Sun
## 4465                                                                                                                                                 Hannibal
## 4466                                                                                                                                               15 Minutes
## 4467                                                                                                                                       Enemy at the Gates
## 4472                                                                                                                Triumph of the Will (Triumph des Willens)
## 4473                                                                                                                                        Fellini Satyricon
## 4474                                                                                                                    Pelle the Conqueror (Pelle erobreren)
## 4476                                                                                                                                             Pearl Harbor
## 4477                                                                                                                Himalaya (Himalaya - l'enfance d'un chef)
## 4478                                                                                                                                                Evolution
## 4479                                                                                                                                                Swordfish
## 4480                                                                                                                                     Seven Year Itch, The
## 4481                                                                                                                             A.I. Artificial Intelligence
## 4483                                                                                                                                   Sweet Smell of Success
## 4484                                                                                                                                           Legally Blonde
## 4485                                                                                                                                    Africa: The Serengeti
## 4486                                                                                                                                                   Always
## 4487                                                                                                                         Bill & Ted's Excellent Adventure
## 4490                                                                                                                                                Zoolander
## 4493                                                                                                                                      Fiddler on the Roof
## 4494                                                                                                                                                From Hell
## 4495                                                                                                                                             Donnie Darko
## 4496                                                                                                                                Man Who Wasn't There, The
## 4497                                                                                                                                           Monsters, Inc.
## 4498                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 4499                                                                                                                                                 Spy Game
## 4504                                                                                                                                              Vanilla Sky
## 4505                                                                                                                                                     Iris
## 4511                                                                                                                                                 I Am Sam
## 4512                                                                                                                                           Monster's Ball
## 4513                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 4514                                                                                                                  Son's Room, The (Stanza del figlio, La)
## 4515                                                                                                                                           Baby's Day Out
## 4524                                                                                                                                 My Big Fat Greek Wedding
## 4525                                                                                                  Rome, Open City (a.k.a. Open City) (Roma, città aperta)
## 4526                                                                                                                                         Hollywood Ending
## 4527                                                                                                                                               Spider-Man
## 4529                                                                                                                 Cranes Are Flying, The (Letyat zhuravli)
## 4530                                                                                                                                              About a Boy
## 4531                                                                                                             Star Wars: Episode II - Attack of the Clones
## 4532                                                                                                                                          Last Waltz, The
## 4533                                                                                                                                                 Insomnia
## 4534                                                                                                                                          Minority Report
## 4536                                                                                                                                            Reign of Fire
## 4537                                                                                                                                        Road to Perdition
## 4538                                                                                                                          The Importance of Being Earnest
## 4539                                                                                                     Nosferatu the Vampyre (Nosferatu: Phantom der Nacht)
## 4541                                                                                                                          Tabu: A Story of the South Seas
## 4542                                                                                                            Spirited Away (Sen to Chihiro no kamikakushi)
## 4546                                                                                                                                                Ring, The
## 4547                                                                                                                                           Grey Zone, The
## 4549                                                                                                                  Harry Potter and the Chamber of Secrets
## 4552                                                                                                                                          Treasure Planet
## 4557                                                                                                                                                25th Hour
## 4558                                                                                                                                        Gangs of New York
## 4561                                                                                                                                                  Chicago
## 4565                                                                                                                                       Son, The (Le fils)
## 4567                                                                                                                                                    Gerry
## 4568                                                                                                                                                   Spider
## 4569                                                                                                                              Irreversible (Irréversible)
## 4573                                                                                                                                                 Identity
## 4574                                                                                                                                         X2: X-Men United
## 4576                                                                                                                                             Finding Nemo
## 4577                                                                                                                    White Sheik, The (Sceicco bianco, Lo)
## 4578                                                                                                                                               Intervista
## 4579                                                                                                                                              Barton Fink
## 4580                                                                                                                       Terminator 3: Rise of the Machines
## 4582                                                                                                                                      Dirty Pretty Things
## 4584                                                                                                                                                Accattone
## 4586                                                                                                                                        American Splendor
## 4587                                                                                           Code Unknown (Code inconnu: Récit incomplet de divers voyages)
## 4589                                                                            Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le)
## 4591                                                                                                                                           Matchstick Men
## 4592                                                                                                                               Once Upon a Time in Mexico
## 4593                                                                                                                                      Lost in Translation
## 4596                                                                                                                                          Boyz N the Hood
## 4597                                                                                                                       Monty Python's The Meaning of Life
## 4598                                                                                                                                       Station Agent, The
## 4599                                                                                                                                             Mystic River
## 4606                                                                                                                                  Matrix Revolutions, The
## 4607                                                                                                                                      Father of the Bride
## 4608                                                                                                          Master and Commander: The Far Side of the World
## 4609                                                                                                                                                 21 Grams
## 4610                                                                                                        Barbarian Invasions, The (Les invasions barbares)
## 4612                                                                                                                                        Ordet (Word, The)
## 4613                                                                                                                         Forbidden Games (Jeux interdits)
## 4616                                                                                                                                   Hannah and Her Sisters
## 4617                                                                                                                                         Kindergarten Cop
## 4618                                                                                                              Last Tango in Paris (Ultimo tango a Parigi)
## 4621                                                                                                                               Betty Blue (37°2 le matin)
## 4627                                                                                                                                                     1941
## 4628                                                                                                                                    Night at the Opera, A
## 4630                                                                                                                                               In America
## 4633                                                                                                                                                  Monster
## 4634                                                                                                                                     Cheaper by the Dozen
## 4635                                                                                                                                            Cold Mountain
## 4639                                                                                                                                            Secret Window
## 4642                                                                                                                                              After Hours
## 4643                                                                                                                                        Kill Bill: Vol. 2
## 4644                                                                                                                                                     Troy
## 4645                                                                                                                                      You Only Live Twice
## 4647                                                                                                                                               Cat People
## 4648                                                                                                                                           Pierrot le fou
## 4649                                                                                                                                               Nostalghia
## 4652                                                                                                                 Summer with Monika (Sommaren med Monika)
## 4653                                                                                                                 Dark Water (Honogurai mizu no soko kara)
## 4656                                                                                                                                           Dolce Vita, La
## 4657                                                                                                                           Avventura, L' (Adventure, The)
## 4658                                                                                                                                                Viridiana
## 4659                                                                                                                                          Black Narcissus
## 4662                                                                                                                                            Super Size Me
## 4663                                                                                                                                                   Freaks
## 4664                                                                                                                                            Terminal, The
## 4665                                                                                                                                             Spider-Man 2
## 4666                                                                                                    Short Film About Killing, A (Krótki film o zabijaniu)
## 4669                                                                                                                                                 Sideways
## 4672                                                                                                                                                   Kinsey
## 4675                                                                                                                                           Ocean's Twelve
## 4676                                                                                                                                                    Greed
## 4678                                                                                                                                             Atalante, L'
## 4683                                                                                                                                                     2046
## 4684                                                                                                                                       Audition (Ôdishon)
## 4685                                                                                                Very Long Engagement, A (Un long dimanche de fiançailles)
## 4687                                                                                                                                      Million Dollar Baby
## 4689                                                                                                                        Charlie and the Chocolate Factory
## 4690                                                                                                                                             Aviator, The
## 4693                                                                                                              Howl's Moving Castle (Hauru no ugoku shiro)
## 4694                                                                                                                                                 Sin City
## 4696                                                                                                                                        Kingdom of Heaven
## 4699                                                                                                                                            Batman Begins
## 4700                                                                                                            Edukators, The (Die Fetten Jahre sind vorbei)
## 4701                                                                                                                                        War of the Worlds
## 4702                                                                                                                                               Dark Water
## 4704                                                                                                                                           Broken Flowers
## 4705                                                                                                                                   Constant Gardener, The
## 4706                                                                                                                                              Lord of War
## 4708                                                                                                                                   History of Violence, A
## 4709                                                                                                                                             Oliver Twist
## 4716                                                                                                                                                  Jarhead
## 4719                                                                                                                      Harry Potter and the Goblet of Fire
## 4720                                                                                                                                            Walk the Line
## 4722                                                                                                                                                King Kong
## 4723                                                                                                                                      Memoirs of a Geisha
## 4724                                                                                                                 Three Burials of Melquiades Estrada, The
## 4727                                                                                                                                           New World, The
## 4728                                                                                                                                              Hoodwinked!
## 4731                                                                                                                                  Mission: Impossible III
## 4732                                                                                                                                       Da Vinci Code, The
## 4733                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 4734                                                                      Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 4736                                                                                                                                         Dead Man Walking
## 4738                                                                                                                                             Broken Arrow
## 4739                                                                                                                                                Apollo 13
## 4742                                                                                                                                                 Stargate
## 4746                                                                                                                                                  Aladdin
## 4748                                                                                                                                                   Batman
## 4749                                                                                                                                              Heavy Metal
## 4751                                                                                                                                                  Twister
## 4754                                                                                                                                                  Freeway
## 4756                                                                                                                                         Grumpier Old Men
## 4758                                                                                                                                      Crossing Guard, The
## 4761                                                                                                                                       Executive Decision
## 4762                                                                                                                                                    Fargo
## 4763                                                                                                                                              Dragonheart
## 4764                                                                                                                            Kids in the Hall: Brain Candy
## 4765                                                                                                                                         Mulholland Falls
## 4768                                                                                                                                           Cable Guy, The
## 4769                                                                                                                                                   Eraser
## 4770                                                                                                                                     Nutty Professor, The
## 4772                                                                                                                                                   Ransom
## 4773                                                                                                         Tales from the Crypt Presents: Bordello of Blood
## 4775                                                                                                                                       Breaking the Waves
## 4776                                                                                                                                 Star Trek: First Contact
## 4778                                                                                                                                            Mars Attacks!
## 4779                                                                                                                          Beavis and Butt-Head Do America
## 4780                                                                                                                                                  Michael
## 4781                                                                                                                                                    Crash
## 4786                                                                                 Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 4788                                                                                                                                           Batman Forever
## 4789                                                                                                                               Die Hard: With a Vengeance
## 4790                                                                                                                       Star Wars: Episode IV - A New Hope
## 4791                                                                                                                                             Pulp Fiction
## 4792                                                                                                                                                 Stargate
## 4794                                                                                                                               Ace Ventura: Pet Detective
## 4796                                                                                                                                                Mask, The
## 4797                                                                                                                                                    Speed
## 4798                                                                                                                                                True Lies
## 4799                                                                                                                                            Fugitive, The
## 4800                                                                                                                                            Jurassic Park
## 4801                                                                                                                                           Mrs. Doubtfire
## 4802                                                                                                                                             True Romance
## 4804                                                                                                                                Silence of the Lambs, The
## 4805                                                                                                                                                    Fargo
## 4806                                                                                                                                      Mission: Impossible
## 4807                                                                                                          Wallace & Gromit: The Best of Aardman Animation
## 4808                                                                                                                                                Rock, The
## 4810                                                                                                                            Independence Day (a.k.a. ID4)
## 4812                                                                                                                                                 Die Hard
## 4813                                                                                                                                           Reservoir Dogs
## 4814                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 4816                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 4817                                                                                                                          Beavis and Butt-Head Do America
## 4819                                                                                                                                Men in Black (a.k.a. MIB)
## 4820                                                                                                                                                  Gattaca
## 4821                                                                                                                                              Jackal, The
## 4823                                                                                                                                               Half Baked
## 4824                                                                                                                                            Lost in Space
## 4826                                                                                                                                      Saving Private Ryan
## 4834                                                                                                                                         Fisher King, The
## 4836                                                                                                                                          Green Mile, The
## 4838                                                                                                                                            High Fidelity
## 4839                                                                                                                                                Gladiator
## 4843                                                                                                                               O Brother, Where Art Thou?
## 4844                                                                                                                                             Mexican, The
## 4846                                                                                                                                                 Scarface
## 4849                                                                                                                                                  Bandits
## 4851                                                                                                                                           Ocean's Eleven
## 4852                                                                                                            Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 4854                                                                                                                                        Beautiful Mind, A
## 4855                                                                                                                                          Black Hawk Down
## 4860                                                                                                                                                Secretary
## 4861                                                                                                                                              Equilibrium
## 4863                                                                                                                                                25th Hour
## 4864                                                                                                                                      Catch Me If You Can
## 4866                                                                                                                                         X2: X-Men United
## 4867                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 4868                                                                                                                                           Matchstick Men
## 4870                                                                                                                                             Mystic River
## 4873                                                                                                                    Eternal Sunshine of the Spotless Mind
## 4874                                                                                                                                        Kill Bill: Vol. 2
## 4876                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 4878                                                                                                                                             Garden State
## 4880                                                                                                                                        Shaun of the Dead
## 4882                                                                                                                                Tunnel, The (Tunnel, Der)
## 4884                                                                                                                      Life Aquatic with Steve Zissou, The
## 4885                                                                                                                                Downfall (Untergang, Der)
## 4889                                                                                                                                           Broken Flowers
## 4891                                                                                                                Green Street Hooligans (a.k.a. Hooligans)
## 4892                                                                                                                                                   Capote
## 4893                                                                                                         Wallace & Gromit in The Curse of the Were-Rabbit
## 4899                                                                                                                                      Lucky Number Slevin
## 4903                                                                                                                                          Children of Men
## 4906                                                                                                                                        Déjà Vu (Deja Vu)
## 4908                                                                                                                                          Cocaine Cowboys
## 4910                                                                                                                                                 Hot Fuzz
## 4915                                                                                                                                    Live Free or Die Hard
## 4917                                                                                                                                                 Superbad
## 4918                                                                                                                                         Eastern Promises
## 4919                                                                                                                        Tekkonkinkreet (Tekkon kinkurîto)
## 4921                                                                                                                                          Michael Clayton
## 4922                                                                                                                                   Lars and the Real Girl
## 4923                                                                                                                                        American Gangster
## 4924                                                                                                                                   No Country for Old Men
## 4925                                                                                                                                      There Will Be Blood
## 4926                                                                                                                                                In Bruges
## 4928                                                                                                                                                 Iron Man
## 4930                                                                                                                                                Fall, The
## 4932                                                                                                                                                   WALL·E
## 4934                                                                                                                                        Pineapple Express
## 4935                                                                                                                                       Burn After Reading
## 4937                                                                                                                                      Slumdog Millionaire
## 4939                                                                                                                                              In the Loop
## 4940                                                                                                                                     Inglourious Basterds
## 4941                                                                                                                                                Star Trek
## 4942                                                                                                                                                       Up
## 4943                                                                                                                                            Hangover, The
## 4944                                                                                      Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo)
## 4945                                                                                                                                           Serious Man, A
## 4946                                                                                                                                                   Avatar
## 4947                                                                                                                                          Sherlock Holmes
## 4949                                                                                                                                                Inception
## 4950                                                                                                                                                Town, The
## 4952                                                                                                                       Sherlock Holmes: A Game of Shadows
## 4966                                                                                                                                                  Titanic
## 4968                                                                                                                                                Celebrity
## 4969                                                                                                                                           Simple Plan, A
## 4970                                                                                                                                      Shakespeare in Love
## 4973                                                                                                                                 Blair Witch Project, The
## 4984                                                                                                                                                  Vertigo
## 4993                                                                                                                                    It's a Wonderful Life
## 5010                                                                                                                                            Lost in Space
## 5014                                                                                                                                       Driving Miss Daisy
## 5015                                                                                                                     Seven Samurai (Shichinin no samurai)
## 5016                                                                                                                                      Saving Private Ryan
## 5022                                                                                                                                      Romancing the Stone
## 5028                                                                                                                                 My Best Friend's Wedding
## 5029                                                                                                                              Mortal Kombat: Annihilation
## 5030                                                                                                                                                 Scream 2
## 5031                                                                                                                                Purple Rose of Cairo, The
## 5032                                                                                                                                                King Kong
## 5033                                                                                                                                    Babe: Pig in the City
## 5034                                                                                                                             Texas Chainsaw Massacre, The
## 5035                                                                                                                                             Pet Sematary
## 5037                                                                                                                                              Lake Placid
## 5038                                                                                                                                          Ghostbusters II
## 5039                                                                                                                                               Flashdance
## 5041                                                                                                                                  Mothman Prophecies, The
## 5042                                                                                                                                     Matrix Reloaded, The
## 5044                                                                                                                                  Matrix Revolutions, The
## 5048                                                                                                                                              Daybreakers
## 5050                                                                                                                                                  Jumanji
## 5056                                                                                                                                               Four Rooms
## 5060                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 5062                                                                                                                                          Dead Presidents
## 5063                                                                                                                                               To Die For
## 5067                                                                                                                              Indian in the Cupboard, The
## 5069                                                                                                                                      Crossing Guard, The
## 5073                                                                                                                                             If Lucy Fell
## 5076                                                                                                                                                   Casper
## 5078                                                                                                                                                    Crumb
## 5081                                                                                                                                                  Species
## 5082                                                                                                         To Wong Foo, Thanks for Everything! Julie Newmar
## 5083                                                                                                                                               Waterworld
## 5084                                                                                                                                       White Man's Burden
## 5086                                                                                                                                                Drop Zone
## 5087                                                                                                                               Destiny Turns on the Radio
## 5090                                                                                                                                       Jefferson in Paris
## 5096                                                                                                                                     Natural Born Killers
## 5102                                                                                                                               Ace Ventura: Pet Detective
## 5108                                                                                                                                           Lion King, The
## 5110                                                                                                                       Mrs. Parker and the Vicious Circle
## 5117                                                                                                                                                 Airheads
## 5118                                                                                                                                 Beverly Hillbillies, The
## 5121                                                                                                                                           Body Snatchers
## 5123                                                                                                             City Slickers II: The Legend of Curly's Gold
## 5145                                                                                                                                   Road to Wellville, The
## 5146                                                                                                                                         Ruby in Paradise
## 5148                                                                                                                                       Secret Garden, The
## 5149                                                                                                                                               Serial Mom
## 5153                                                                                                                                     Sleepless in Seattle
## 5159                                                                                                                                    Celluloid Closet, The
## 5161                                                                                                                                                    Ghost
## 5167                                                                                                                          Snow White and the Seven Dwarfs
## 5173                                                                                                                                               Diabolique
## 5175                                                                                                                                James and the Giant Peach
## 5176                                                                                                                                         Mulholland Falls
## 5179                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 5180                                                                                                                                               Striptease
## 5181                                                                                                                                                     Jack
## 5184                                                                                                                                                 Fan, The
## 5187                                                                                                                                         American Buffalo
## 5190                                                                                                                                              Kansas City
## 5212                                                                                                                                        Last Man Standing
## 5214                                                                                                                                            Love Bug, The
## 5215                                                                                                                                               Old Yeller
## 5217                                                                                                                                    Swiss Family Robinson
## 5218                                                                                                                                           That Darn Cat!
## 5220                                                                                                                            Robin Hood: Prince of Thieves
## 5225                                                                                                                                                 Sleepers
## 5226                                                                                                                      Willy Wonka & the Chocolate Factory
## 5227                                                                                                                                                  Bananas
## 5236                                                                                                                                      Weekend at Bernie's
## 5238                                                                                                                                               Doors, The
## 5245                                                                                                                                             Funeral, The
## 5248                                                                                                                                           Drop Dead Fred
## 5249                                                                                                                                     Escape from New York
## 5250                                                                                                                                         Private Benjamin
## 5251                                                                                                                                              Bob Roberts
## 5255                                                                                                                                      Thin Blue Line, The
## 5258                                                                                                                                      Princess Bride, The
## 5260                                                                                                                                                   Aliens
## 5261                                                                                                                                      Clockwork Orange, A
## 5265                                                                                                                                           Third Man, The
## 5278                                                                                                                                         Harold and Maude
## 5298                                                                                                                                       Young Frankenstein
## 5301                                                                                                                                        Somewhere in Time
## 5308                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 5316                                                                                                                                                   Carrie
## 5323                                                                                                                                           Batman Returns
## 5326                                                                                                                                              Under Siege
## 5328                                                                                                                                                   Jaws 2
## 5329                                                                                                                                      My Fellow Americans
## 5334                                                                                                                                            Marvin's Room
## 5336                                                                                                                                             Dante's Peak
## 5337                                                                                                                                            Amos & Andrew
## 5344                                                                                                              Austin Powers: International Man of Mystery
## 5347                                                                                                                                           Batman & Robin
## 5351                                                                                                                                     George of the Jungle
## 5352                                                                                                                                                 Cop Land
## 5356                                                                                                                                     My Own Private Idaho
## 5357                                                                                                                                                 In & Out
## 5361                                                                                                                                                Game, The
## 5368                                                                                                                                      Alien: Resurrection
## 5374                                                                                                                                             Postman, The
## 5376                                                                                                                                        Big Lebowski, The
## 5382                                                                                                                                                     Hush
## 5384                                                                                                                                           Primary Colors
## 5386                                                                                                                                              Sour Grapes
## 5389                                                                                                                                                 Godzilla
## 5390                                                                                                                           Fear and Loathing in Las Vegas
## 5395                                                                                                                              Greatest Show on Earth, The
## 5405                                                                                                                                      Terms of Endearment
## 5411                                                                                                                                                Halloween
## 5416                                                                                                                                          Lethal Weapon 3
## 5417                                                                                                                                                 Gremlins
## 5418                                                                                                                                            Soylent Green
## 5420                                                                                                                              Back to the Future Part III
## 5421                                                                                                                                  Poseidon Adventure, The
## 5422                                                                                                                             Absent-Minded Professor, The
## 5424                                                                                                                                             Rapture, The
## 5427                                                                                                                                 Honey, I Shrunk the Kids
## 5432                                                                                                                                         Jungle Book, The
## 5434                                                                                                                                        Mighty Ducks, The
## 5436                                                                                                                                                   Popeye
## 5438                                                                                                                                                     Tron
## 5440                                                                                                                                                Jerk, The
## 5441                                                                                                                                             Grand Canyon
## 5444                                                                                                                                   Lord of the Rings, The
## 5445                                                                                                                              1984 (Nineteen Eighty-Four)
## 5448                                                                                                                                                     Cujo
## 5449                                                                                                                                     Children of the Corn
## 5452                                                                                                                                     Nutty Professor, The
## 5453                                                                                                                                          Sixteen Candles
## 5454                                                                                                                                           Pretty in Pink
## 5456                                                                                                                                                    House
## 5457                                                                                                                       Henry: Portrait of a Serial Killer
## 5463                                                                                                                                                       54
## 5464                                                                                                                                                   Willow
## 5467                                                                                                                                              Simon Birch
## 5474                                                                                                                                                     Toys
## 5475                                                                                                                                    Young Doctors in Love
## 5476                                                                                                                                          Blame It on Rio
## 5477                                                                                                                                        Seventh Sign, The
## 5478                                                                                                                                          We're No Angels
## 5482                                                                                                                                                    Ronin
## 5483                                                                                                                      Fiendish Plot of Dr. Fu Manchu, The
## 5486                                                                                                                                  Night at the Roxbury, A
## 5491                                                                                                                           2010: The Year We Make Contact
## 5495                                                                                                                                       American History X
## 5496                                                                                                                                               Siege, The
## 5498                                                                                                                                      Stepford Wives, The
## 5499                                                                                                                           Pope of Greenwich Village, The
## 5503                                                                                                                                                King Kong
## 5505                                                                                                                                                   Fletch
## 5506                                                                                                                                                  Gung Ho
## 5508                                                                                                                                                   Psycho
## 5512                                                                                                                               Rambo: First Blood Part II
## 5513                                                                                                                         First Blood (Rambo: First Blood)
## 5519                                                                                                                                                Heartburn
## 5520                                                                                                                                        Nothing in Common
## 5521                                                                                                                                          Karate Kid, The
## 5523                                                                                                                                       Thin Red Line, The
## 5526                                                                                                                                               Hurlyburly
## 5530                                                                                                                                       Jumpin' Jack Flash
## 5534                                                                                                                                                      8MM
## 5535                                                                                                                                             Pet Sematary
## 5536                                                                                                                                                Christine
## 5537                                                                                                                                              Night Shift
## 5539                                                                                                                                             Airport 1975
## 5540                                                                                                                                            Rollercoaster
## 5542                                                                                                                                              Logan's Run
## 5544                                                                                                                           Beneath the Planet of the Apes
## 5545                                                                                                                        Battle for the Planet of the Apes
## 5546                                                                                                                       Conquest of the Planet of the Apes
## 5547                                                                                                                       Escape from the Planet of the Apes
## 5550                                                                                                                                             Dead Ringers
## 5552                                                                                                                                              Matrix, The
## 5553                                                                                                                                      Out-of-Towners, The
## 5554                                                                                                                                                Metroland
## 5559                                                                                                                                               Dick Tracy
## 5560                                                                                                                                               Mummy, The
## 5564                                                                                                                                             Superman III
## 5565                                                                                                                           Invasion of the Body Snatchers
## 5569                                                                                                                                           Wild Wild West
## 5570                                                                                                                                            Summer of Sam
## 5571                                                                                                                                           Arlington Road
## 5576                                                                                                                                      Crimes of the Heart
## 5582                                                                                                                                                  Frances
## 5585                                                                                                                                                Bowfinger
## 5588                                                                                                Final Conflict, The (a.k.a. Omen III: The Final Conflict)
## 5589                                                                                                                                                Airplane!
## 5590                                                                                                                           American Werewolf in Paris, An
## 5591                                                                                             European Vacation (aka National Lampoon's European Vacation)
## 5601                                                                                                                                                 Saturn 3
## 5617                                                                                                                                               Flashdance
## 5620                                                                                                                                         Blue Lagoon, The
## 5628                                                                                                                                    Bringing Out the Dead
## 5629                                                                                                                                         Crazy in Alabama
## 5635                                                                                                                                                     Coma
## 5636                                                                                                                                         Drugstore Cowboy
## 5642                                                                                                                                               Dead Again
## 5644                                                                                                                                               Poison Ivy
## 5649                                                                                                                                            Sleepy Hollow
## 5650                                                                                                                                 World Is Not Enough, The
## 5651                                                                                                                                                 Scrooged
## 5652                                                                                                                                     Grapes of Wrath, The
## 5659                                                                                                                                         Fisher King, The
## 5663                                                                                                                                  Bonfire of the Vanities
## 5664                                                                                                                                            Stealing Home
## 5666                                                                                                                                   Glass Bottom Boat, The
## 5672                                                                                                                               The Falcon and the Snowman
## 5673                                                                                                                                         Any Given Sunday
## 5676                                                                                                                                   Snow Falling on Cedars
## 5682                                                                                                                                                   Poison
## 5686                                                                                                                                               Sister Act
## 5692                                                                                                                                           Bodyguard, The
## 5693                                                                                                                                        Death Becomes Her
## 5695                                                                                                                                            Forever Young
## 5697                                                                                                                                                 Snow Day
## 5701                                                                                                                                           Reindeer Games
## 5711                                                                                                                                               Volunteers
## 5713                                                                                                                                         Who's That Girl?
## 5714                                                                                                                                               Blind Date
## 5721                                                                                                                                                 Red Dawn
## 5722                                                                                                                                       Eyes of Laura Mars
## 5726                                                                                                                                           Jacob's Ladder
## 5728                                                                                                                                   Road to El Dorado, The
## 5730                                                                                                                                                True Grit
## 5736                                                                                                                                       North Dallas Forty
## 5739                                                                                                                                                   Arthur
## 5741                                                                                                                                     Prince of Tides, The
## 5743                                                                                                                                          American Psycho
## 5754                                                                                                                                          Big Kahuna, The
## 5767                                                                                                                                                  Porky's
## 5768                                                                                                                                             Alien Nation
## 5770                                                                                                                               Mad Max Beyond Thunderdome
## 5778                                                                                                                                                      F/X
## 5781                                                                                                                                                 H.O.T.S.
## 5782                                                                                  Everything You Always Wanted to Know About Sex * But Were Afraid to Ask
## 5793                                                                                                                                               Billy Jack
## 5802                                                                                                                                                Punchline
## 5806                                                                                                                                        Miss Congeniality
## 5812                                                                                                                                                    Annie
## 5817                                                                                                                                        Prelude to a Kiss
## 5821                                                                                                                                Brave Little Toaster, The
## 5827                                                                                                                                                Mannequin
## 5828                                                                                                                                Million Dollar Hotel, The
## 5830                                                                                                                                               15 Minutes
## 5833                                                                                                                                     Revenge of the Nerds
## 5834                                                                                                                                                  Memento
## 5835                                                                                                                                            Heartbreakers
## 5842                                                                                                                             Nine to Five (a.k.a. 9 to 5)
## 5847                                                                                                                                              Ice Castles
## 5852                                                                                                                               Throw Momma from the Train
## 5855                                                                                                                                                     Shag
## 5859                                                                                                                                               Sexy Beast
## 5860                                                                                                                                      Cannonball Run, The
## 5862                                                                                                                                          Shadows and Fog
## 5867                                                                                                                                                  Beaches
## 5870                                                                                                                                                 Cocktail
## 5871                                                                                                                                                   Colors
## 5873                                                                                                                                             Criminal Law
## 5874                                                                                                                                        Crossing Delancey
## 5881                                                                                                                                My Stepmother Is an Alien
## 5882                                                                                                                                               Off Limits
## 5888                                                                                                                                    Last Exit to Brooklyn
## 5890                                                                                                                                       Look Who's Talking
## 5891                                                                                                                                         Miss Firecracker
## 5893                                                                                                                                              Next of Kin
## 5897                                                                                                                                    War of the Roses, The
## 5901                                                                                                                                           Altered States
## 5902                                                                                                                                    Any Which Way You Can
## 5903                                                                                                                                                 Rat Race
## 5911                                                                                                                                                    Carny
## 5916                                                                                                                                              Shallow Hal
## 5919                                                                                                                                                 Toy, The
## 5921                                                                                                                                             Flash Gordon
## 5922                                                                                                                                        Lord of the Flies
## 5929                                                                                                       Lord of the Rings: The Fellowship of the Ring, The
## 5932                                                                                                                                          Another 48 Hrs.
## 5933                                                                                                                                             Formula, The
## 5935                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 5936                                                                                                                                              Mrs. Soffel
## 5941                                                                                                                                                Used Cars
## 5942                                                                                                                                                Dragonfly
## 5947                                                                                                                                         Jazz Singer, The
## 5950                                                                                                                                                 Oh, God!
## 5952                                                                                                                                    Smokey and the Bandit
## 5954                                                                                                                         Piano Teacher, The (La pianiste)
## 5956                                                                                                                                    Evil That Men Do, The
## 5960                                                                                                                                   Joe Versus the Volcano
## 5961                                                                                                                                  Taking Care of Business
## 5963                                                                                                                              Three Men and a Little Lady
## 5965                                                                                                                                       Coca-Cola Kid, The
## 5969                                                                                                                                                    Whore
## 5970                                                                                                                                Every Which Way But Loose
## 5975                                                                                                                                   Look Who's Talking Now
## 5977                                                                                                                                                  Perfect
## 5978                                                                                                                                                    Signs
## 5984                                                                                                                                                  Swimfan
## 5985                                                                                                                                          Betsy's Wedding
## 5988                                                                                                                                                 Fan, The
## 5990                                                                                                                                                Ring, The
## 5993                                                                                                                                            Staying Alive
## 5996                                                                                                                                             Wholly Moses
## 6001                                                                                                                                             Endless Love
## 6005                                                                                                                                                Neighbors
## 6011                                                                                                                                                  So Fine
## 6012                                                                                                                                         Southern Comfort
## 6014                                                                                                                                             Analyze That
## 6016                                                                                                                                          Author! Author!
## 6017                                                                                                                                             Best Friends
## 6021                                                                                                                                             Eating Raoul
## 6024                                                                                                                                                     Narc
## 6027                                                                                                                                         Body of Evidence
## 6033                                                                                                                                            Honkytonk Man
## 6034                                                                                                                                              Making Love
## 6035                                                                                                                                                  Missing
## 6036                                                                                                                                                Monsignor
## 6037                                                                                                                                            Personal Best
## 6039                                                                                                                                                    Q & A
## 6040                                                                                                                                        Gods and Generals
## 6041                                                                                                                                  Bringing Down the House
## 6042                                                                                                                                           Born Yesterday
## 6043                                                                                                                                                    Equus
## 6046                                                                                                                                             One Good Cop
## 6047                                                                                                                                                    Basic
## 6050                                                                                                                    Marrying Man, The (Too Hot to Handle)
## 6052                                                                                                                                   Electric Horseman, The
## 6062                                                                                                                                      Usual Suspects, The
## 6067                                                                                                                                            Reality Bites
## 6071                                                                                                                                            Trainspotting
## 6075                                                                                                                                      Weekend at Bernie's
## 6076                                                                                                                                 Sex, Lies, and Videotape
## 6084                                                                                                                                                    Evita
## 6095                                                                                                                                               Moonstruck
## 6096                                                                                                                                                 Scrooged
## 6102                                                                                                                                    Royal Tenenbaums, The
## 6106                                                                                                                                             Pianist, The
## 6107                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 6127                                                                                                                                 How to Train Your Dragon
## 6130                                                                                                                           Ace Ventura: When Nature Calls
## 6132                                                                                                                                            Mortal Kombat
## 6136                                                                                                                                                   Casper
## 6138                                                                                                                                             First Knight
## 6139                                                                                                                                              Judge Dredd
## 6142                                                                                                                                               Disclosure
## 6144                                                                                                                                                     I.Q.
## 6146                                                                                                                                      Legends of the Fall
## 6148                                                                                                                                             Pulp Fiction
## 6149                                                                                                                                                Quiz Show
## 6150                                                                                                                                                 Stargate
## 6151                                                                                                                                        Santa Clause, The
## 6152                                                                                                                                                Tommy Boy
## 6156                                                                                                                                              Client, The
## 6158                                                                                                                                           Lion King, The
## 6161                                                                                                                                                True Lies
## 6162                                                                                                                                     Addams Family Values
## 6163                                                                                                                                    Beverly Hills Cop III
## 6164                                                                                                                                            Bronx Tale, A
## 6165                                                                                                             City Slickers II: The Legend of Curly's Gold
## 6166                                                                                                                                              Cliffhanger
## 6172                                                                                                                                                  Aladdin
## 6176                                                                                                                                     Beauty and the Beast
## 6177                                                                                                                           Ace Ventura: When Nature Calls
## 6178                                                                                                                                              Black Sheep
## 6179                                                                                                                                           Canadian Bacon
## 6180                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 6182                                                                                                                                                    Speed
## 6186                                                                                                                                                 Basquiat
## 6192                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 6200                                                                                                                               Nightmare on Elm Street, A
## 6201                                                                                                                                       Jingle All the Way
## 6202                                                                                                                                          Raising Arizona
## 6204                                                                                                                                                 Scream 2
## 6205                                                                                                                                              Spice World
## 6207                                                                                                                                                Labyrinth
## 6208                                                                                                                                          Friday the 13th
## 6211                                                                                                                       Halloween III: Season of the Witch
## 6215                                                                                                                                              BASEketball
## 6217                                                                                                                                                   Popeye
## 6218                                                                                Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 6220                                                                                                                                       Wrongfully Accused
## 6221                                                                                                                                                   Willow
## 6224                                                                                                                                                 Rushmore
## 6227                                                                                                                                   Breakfast of Champions
## 6230                                                                                                                                               Mummy, The
## 6231                                                                                                                                                Get Bruce
## 6232                                                                                                                                             American Pie
## 6234                                                                                                                           American Werewolf in Paris, An
## 6236                                                                                                                                           Drive Me Crazy
## 6237                                                                                                                                             Happy, Texas
## 6240                                                                                                                                                Hairspray
## 6244                                                                                                                                            Stuart Little
## 6245                                                                                                                                                 Scream 3
## 6247                                                                                                                                              Wonder Boys
## 6248                                                                                                                                          Erin Brockovich
## 6249                                                                                                                                            High Fidelity
## 6250                                                                                                                                               Caddyshack
## 6251                                                                                                                                          Big Kahuna, The
## 6252                                                                                                                            Smiling Fish and Goat on Fire
## 6255                                                                                                                                               Jesus' Son
## 6256                                                                                                                                       Me, Myself & Irene
## 6257                                                                                                                                              Scary Movie
## 6260                                                                                                                                        Cecil B. DeMented
## 6261                                                                                                                            Original Kings of Comedy, The
## 6263                                                                                                                                              Nurse Betty
## 6264                                                                                                                                            Almost Famous
## 6265                                                                                                                                       Dancer in the Dark
## 6269                                                                                                                               O Brother, Where Art Thou?
## 6271                                                                                                                                                 Joe Dirt
## 6272                                                                                                                                  Josie and the Pussycats
## 6276                                                                                                                                               Sexy Beast
## 6277                                                                                                                                            Scary Movie 2
## 6278                                                                                                                                           Legally Blonde
## 6280                                                                                                                                                     Made
## 6282                                                                                                                                                   Colors
## 6283                                                                                                                                   Ernest Saves Christmas
## 6285                                                                                                                                                    Twins
## 6287                                                                                                                                                 Loverboy
## 6288                                                                                                                                              Ghost World
## 6289                                                                                                                                       Planet of the Apes
## 6293                                                                                                                                                      UHF
## 6296                                                                                                                                                 Rat Race
## 6297                                                                                                                                                 Silkwood
## 6302                                                                                                                                           Stunt Man, The
## 6303                                                                                                                                           Ocean's Eleven
## 6304                                                                                                                                   Not Another Teen Movie
## 6306                                                                                                                                       White Water Summer
## 6309                                                                                                                                               Crossroads
## 6315                                                                                                                                                     Heat
## 6318                                                                                                                                                 Clueless
## 6324                                                                                                                                             Strange Days
## 6332                                                                                                                                                    Speed
## 6333                                                                                                                                  In the Mouth of Madness
## 6334                                                                                                                                           Demolition Man
## 6345                                                                                                                                          Wild Bunch, The
## 6354                                                                                                                                        Wizard of Oz, The
## 6364                                                                                                                               E.T. the Extra-Terrestrial
## 6367                                                                                                                              People vs. Larry Flynt, The
## 6369                                                                                                                                             Howling, The
## 6372                                                                                                                                            Grifters, The
## 6374                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 6384                                                                                                                                         Army of Darkness
## 6386                                                                                                                                      Blues Brothers, The
## 6390                                                                                                                                               Sting, The
## 6402                                                                                                                                       Back to the Future
## 6406                                                                                                                                     Pink Floyd: The Wall
## 6408                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 6411                                                                                                       Bride of Frankenstein, The (Bride of Frankenstein)
## 6413                                                                                                                                                     Jaws
## 6416                                                                                                                                             Lost Highway
## 6417                                                                                                                                       Fifth Element, The
## 6418                                                                                                                                Men in Black (a.k.a. MIB)
## 6420                                                                                                                                        Conspiracy Theory
## 6423                                                                                                                                     The Devil's Advocate
## 6425                                                                                                                                        Starship Troopers
## 6426                                                                                                                                      Alien: Resurrection
## 6427                                                                                                                                                   Fallen
## 6430                                                                                                                                          Midnight Cowboy
## 6431                                                                                                                                                    Rocky
## 6432                                                                                                                                                 Repo Man
## 6442                                                                                                                    I Still Know What You Did Last Summer
## 6443                                                                                                                                       Enemy of the State
## 6446                                                                                                                                                   Cocoon
## 6448                                                                                                                                              Logan's Run
## 6450                                                                                                                                    Village of the Damned
## 6457                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 6459                                                                                                                           American Werewolf in Paris, An
## 6460                                                                                                                                                      Big
## 6468                                                                                                                                         Dirty Dozen, The
## 6469                                                                                                                                                   Dr. No
## 6472                                                                                                                                                  RoboCop
## 6477                                                                                                                                        Tora! Tora! Tora!
## 6481                                                                                                                                            Patriot Games
## 6482                                                                                                                                                 Snow Day
## 6485                                                                                                                                          Thelma & Louise
## 6501                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 6502                                                                                                                                                   Powder
## 6503                                                                                                                                        Dolores Claiborne
## 6504                                                                                                                                       Heavenly Creatures
## 6506                                                                                                                                               Craft, The
## 6508                                                                                                                                             My Fair Lady
## 6509                                                                                                                                                    Dumbo
## 6510                                                                                                                                 Long Kiss Goodnight, The
## 6511                                                                                                                                        Strictly Ballroom
## 6512                                                                                                                                         Right Stuff, The
## 6513                                                                                                                                Femme Nikita, La (Nikita)
## 6514                                                                                                                                Manchurian Candidate, The
## 6515                                                                                                                                                     Tron
## 6517                                                                                                                                              Player, The
## 6518                                                                                                                                                Elizabeth
## 6519                                                                                                                                             Time Bandits
## 6521                                                                                                                                       Perfect Storm, The
## 6522                                                                                                                                                     Heat
## 6523                                                                                                                                                   Casino
## 6525                                                                                                                                               Get Shorty
## 6527                                                                                                                                          Dangerous Minds
## 6530                                                                                                                                              Richard III
## 6533                                                                                                                                         Mighty Aphrodite
## 6540                                                                                                                                                 Bad Boys
## 6541                                                                                                                                  Basketball Diaries, The
## 6542                                                                                                                                                  Rob Roy
## 6543                                                                                                                               Die Hard: With a Vengeance
## 6544                                                                                                                                            Billy Madison
## 6547                                                                                                                                              French Kiss
## 6550                                                                                                                                               Houseguest
## 6552                                                                                                                                                     I.Q.
## 6554                                                                                                                                                   Junior
## 6559                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 6560                                                                                                                                   Miracle on 34th Street
## 6561                                                                                                                                                     Nell
## 6569                                                                                                                                  Stuart Saves His Family
## 6575                                                                                                                                    Bullets Over Broadway
## 6576                                                                                                                                              Client, The
## 6577                                                                                                                                             Forrest Gump
## 6580                                                                                                                                                 Maverick
## 6581                                                                                                                                            Reality Bites
## 6582                                                                                                                                 When a Man Loves a Woman
## 6583                                                                                                                                                     Wolf
## 6585                                                                                                                                    Beverly Hills Cop III
## 6587                                                                                                             City Slickers II: The Legend of Curly's Gold
## 6588                                                                                                                                              Cliffhanger
## 6589                                                                                                                                                     Dave
## 6590                                                                                                                                                Firm, The
## 6591                                                                                                                                            Fugitive, The
## 6594                                                                                                                                            Jurassic Park
## 6596                                                                                                                                  Man Without a Face, The
## 6599                                                                                                                                  Remains of the Day, The
## 6601                                                                                                                                                     Rudy
## 6604                                                                                                                                               Serial Mom
## 6606                                                                                                                                     Sleepless in Seattle
## 6607                                                                                                                                                   Sliver
## 6608                                                                                                                             So I Married an Axe Murderer
## 6609                                                                                                                          Nightmare Before Christmas, The
## 6610                                                                                                                                               Home Alone
## 6611                                                                                                                                                    Ghost
## 6612                                                                                                                                                  Aladdin
## 6613                                                                                                                                       Dances with Wolves
## 6614                                                                                                                                                   Batman
## 6616                                                                                                                                             Pretty Woman
## 6617                                                                                                                                               Diabolique
## 6620                                                                                                                                     Nutty Professor, The
## 6622                                                                                                                                                 Die Hard
## 6623                                                                                               Return of Martin Guerre, The (Retour de Martin Guerre, Le)
## 6625                                                                                                                                           101 Dalmatians
## 6629                                                                                                                                   Breakfast at Tiffany's
## 6632                                                                                                                            Adventures of Robin Hood, The
## 6634                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 6641                                                                                                                                                Rush Hour
## 6647                                                                                                                                              Chicken Run
## 6649                                                                                                                                         Charlie's Angels
## 6651                                                                                                                                                   Snatch
## 6653                                                                                                                                    Dude, Where's My Car?
## 6656                                                                                                                                      Save the Last Dance
## 6668                                                                                                                                                Mask, The
## 6671                                                                                                                                       Dances with Wolves
## 6686                                                                                                                                        Good Will Hunting
## 6687                                                                                                                                            Lethal Weapon
## 6688                                                                                                                                                   Lolita
## 6691                                                                                                                                     Return of Jafar, The
## 6693                                                                                                                                        Untouchables, The
## 6707                                                                                                                                  Not Without My Daughter
## 6708                                                                                                                                                     Fame
## 6716                                                                                                                                     Matrix Reloaded, The
## 6727                                                                                                                                        Kill Bill: Vol. 2
## 6740                                                                                                                                            Into the Wild
## 6756                                                                                                                                                   Wadjda
## 6772                                                                                                                                               Get Shorty
## 6774                                                                                                                                          Dangerous Minds
## 6776                                                                                                                                      Usual Suspects, The
## 6777                                                                                                                                                   Friday
## 6779                                                                                                                                          Misérables, Les
## 6780                                                                                                                                                Screamers
## 6782                                                                                                                                                 Bad Boys
## 6784                                                                                                                                           Batman Forever
## 6785                                                                                                                                                    Congo
## 6788                                                                                                                                             First Knight
## 6789                                                                                                                                                  Hackers
## 6790                                                                                                                                                     Kids
## 6793                                                                                                                                            Prophecy, The
## 6799                                                                                                               Mary Shelley's Frankenstein (Frankenstein)
## 6807                                                                                                                                      Tales from the Hood
## 6808                                                                                                                                    Village of the Damned
## 6809                                                                                                                                                Tommy Boy
## 6810                                                                                                                                               Virtuosity
## 6813                                                                          Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 6815                                                                                                                                           Body Snatchers
## 6820                                                                                                                                                  Aladdin
## 6821                                                                                                                                       Dances with Wolves
## 6822                                                                                                                                                   Batman
## 6823                                                                                                                                Silence of the Lambs, The
## 6824                                                                                                                                     Beauty and the Beast
## 6859                                                                                                                                           Shutter Island
## 6874                                                                                                                                                  Jumanji
## 6879                                                                                                                                          Johnny Mnemonic
## 6881                                                                                                                                                  Species
## 6887                                                                                                                                                 Stargate
## 6892                                                                                                                                             Forrest Gump
## 6895                                                                                                                                           Body Snatchers
## 6897                                                                                                                                           Demolition Man
## 6901                                                                                                                                              Heavy Metal
## 6905                                                                                                                                             Arrival, The
## 6911                                                                                                                                            Fly Away Home
## 6912                                                                                                                                       Lawnmower Man, The
## 6916                                                                                                                                               Abyss, The
## 6920                                                                                                                                      Clockwork Orange, A
## 6928                                                                                                                                          Field of Dreams
## 6930                                                                                                                                               Birds, The
## 6932                                                                                                                            Star Trek: The Motion Picture
## 6941                                                                                                                                                  Con Air
## 6947                                                                                                                                              Wag the Dog
## 6950                                                                                                                                                   Sphere
## 6951                                                                                                                                              Deep Impact
## 6954                                                                                                                                                 Repo Man
## 6956                                                                                                                                          Lethal Weapon 2
## 6957                                                                                                                                                 Gremlins
## 6960                                                                                                                              Back to the Future Part III
## 6965                                                                                                                                                     Cube
## 6967                                                                                                                                                  Soldier
## 6968                                                                                                                                                 Fly, The
## 6969                                                                                                                                                 Fly, The
## 6970                                                                                                                                                  Airport
## 6971                                                                                                                                             Airport 1975
## 6975                                                                                                                           Beneath the Planet of the Apes
## 6976                                                                                                                        Battle for the Planet of the Apes
## 6977                                                                                                                       Conquest of the Planet of the Apes
## 6978                                                                                                                               Concorde: Airport '79, The
## 6981                                                                                                                                                 eXistenZ
## 6983                                                                                                                                              Superman II
## 6984                                                                                                                                             Superman III
## 6985                                                                                                                                                   Lolita
## 6986                                                                                                                                   Little Shop of Horrors
## 6990                                                                                                                                             Total Recall
## 6996                                                                                                                                            Wayne's World
## 6998                                                                                                                                          Mission to Mars
## 7003                                                                                                                                                Moonraker
## 7004                                                                                                                                         Running Man, The
## 7005                                                                                                                                                  Starman
## 7009                                                                                                                                               Titan A.E.
## 7011                                                                                                                                                 Freejack
## 7012                                                                                                                                                Cell, The
## 7014                                                                                                                                                  Runaway
## 7015                                                                                                                                             6th Day, The
## 7020                                                                                                                                                  Outland
## 7023                                                                                                                                               Millennium
## 7025                                                                                                                                                Def-Con 4
## 7028                                                                                                                                                    K-PAX
## 7031                                                                                                                                               Spider-Man
## 7033                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 7034                                                                                                                                            Reign of Fire
## 7035                                                                                                                                              The Big Bus
## 7039                                                                                                                                            Staying Alive
## 7041                                                                                                                                                  Solaris
## 7046                                                                                                                                                Core, The
## 7052                                                                                                                                            28 Days Later
## 7053                                                                                                                       Terminator 3: Rise of the Machines
## 7056                                                                                                                                     Handmaid's Tale, The
## 7066                                                                                                                                                   Zardoz
## 7074                                                                                                                               Die Hard: With a Vengeance
## 7080                                                                                                                                                True Lies
## 7083                                                                                                                                             Philadelphia
## 7088                                                                                                                                                Rock, The
## 7097                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 7098                                                                                                                                               Die Hard 2
## 7100                                                                                                                                                 Face/Off
## 7104                                                                                                                                              Matrix, The
## 7107                                                                                                                                                    X-Men
## 7108                                                                                                         Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 7117                                                                                                                                            Batman Begins
## 7118                                                                                                                      Harry Potter and the Goblet of Fire
## 7124                                                                                                                                      Slumdog Millionaire
## 7125                                                                                                                                                Star Trek
## 7129                                                                                                                                           Shutter Island
## 7134                                                                                                                                   Dark Knight Rises, The
## 7135                                                                                                                       Hobbit: An Unexpected Journey, The
## 7136                                                                                                                     Hobbit: The Desolation of Smaug, The
## 7139                                                                                                                                         Edge of Tomorrow
## 7140                                                                                                                                  Guardians of the Galaxy
## 7142                                                                                                                                               Inside Out
## 7146                                                                                                                                      From Dusk Till Dawn
## 7147                                                                                                                                            Happy Gilmore
## 7149                                                                                                                                            Billy Madison
## 7150                                                                                                                                                   Clerks
## 7151                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 7155                                                                                                                                           Mrs. Doubtfire
## 7156                                                                                                                                                     Rudy
## 7158                                                                                                                                   Brady Bunch Movie, The
## 7159                                                                                                                                                  Aladdin
## 7160                                                                                                                               Terminator 2: Judgment Day
## 7165                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 7166                                                                                                                                                   Grease
## 7167                                                                                                                                            Fools Rush In
## 7170                                                                                                              Austin Powers: International Man of Mystery
## 7171                                                                                                                           Lost World: Jurassic Park, The
## 7175                                                                                                                                            Boogie Nights
## 7176                                                                                                                                             Postman, The
## 7177                                                                                                                                      Wedding Singer, The
## 7178                                                                                                                                                   Paulie
## 7179                                                                                                                              Object of My Affection, The
## 7180                                                                                                                                                 Bulworth
## 7181                                                                                                                                        Can't Hardly Wait
## 7182                                                                                                                                                    Mulan
## 7184                                                                                                                                      Breakfast Club, The
## 7186                                                                                                                                            Lethal Weapon
## 7187                                                                                                                                                 Gremlins
## 7188                                                                                                                                Gremlins 2: The New Batch
## 7189                                                                                                                                 Honey, I Shrunk the Kids
## 7191                                                                                                                                        Mighty Ducks, The
## 7192                                                                                                                                                Jerk, The
## 7193                                                                                                                                          Sixteen Candles
## 7194                                                                                                                                  Gods Must Be Crazy, The
## 7195                                                                                                                                          Rosemary's Baby
## 7196                                                                                                                                      Edward Scissorhands
## 7200                                                                                                                                             Little Voice
## 7201                                                                                                                                                 Rushmore
## 7203                                                                                                                                            Varsity Blues
## 7204                                                                                                                                                 Fly, The
## 7205                                                                                                                                                 Fly, The
## 7206                                                                                                                                      Blast from the Past
## 7207                                                                                                                                             Analyze This
## 7208                                                                                                          William Shakespeare's A Midsummer Night's Dream
## 7210                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 7211                                                                                                                                  General's Daughter, The
## 7213                                                                                                                     South Park: Bigger, Longer and Uncut
## 7215                                                                                                                                              Mystery Men
## 7216                                                                                                                                                Bowfinger
## 7217                                                                                                                                                Airplane!
## 7219                                                                                                                                       Outside Providence
## 7222                                                                                                                                           Three to Tango
## 7224                                                                                                                                      Bone Collector, The
## 7225                                                                                                                                                    Dogma
## 7227                                                                                                                                         Bicentennial Man
## 7229                                                                                                                                         Any Given Sunday
## 7231                                                                                                                                               Sister Act
## 7232                                                                                                                                          Wayne's World 2
## 7233                                                                                                                                   League of Their Own, A
## 7234                                                                                                                                                 Snow Day
## 7235                                                                                                                                    Whole Nine Yards, The
## 7237                                                                                                                                           Grumpy Old Men
## 7238                                                                                                                                            High Fidelity
## 7241                                                                                                                                           Bachelor Party
## 7242                                                                                                                                          American Psycho
## 7243                                                                                                                                                    U-571
## 7244                                                                                                                                            Shanghai Noon
## 7245                                                                                                                                                 Soapdish
## 7247                                                                                                                                              House Party
## 7248                                                                                                          Naked Gun: From the Files of Police Squad!, The
## 7249                                                                                                                  Naked Gun 2 1/2: The Smell of Fear, The
## 7250                                                                                                                                               Hellraiser
## 7251                                                                                                                                         Meet the Parents
## 7255                                                                                                                              Father of the Bride Part II
## 7256                                                                                                                                                     Heat
## 7257                                                                                                                                    Sense and Sensibility
## 7258                                                                                                                                        Leaving Las Vegas
## 7259                                                                                                                       Twelve Monkeys (a.k.a. 12 Monkeys)
## 7261                                                                                                                                             Broken Arrow
## 7264                                                                                                                                            Birdcage, The
## 7265                                                                                                                       Star Wars: Episode IV - A New Hope
## 7266                                                                                                                                       Executive Decision
## 7267                                                                                                                                              Primal Fear
## 7268                                                                                                                                               Sgt. Bilko
## 7269                                                                                                                                      Mission: Impossible
## 7273                                                                                                                                                   Eraser
## 7274                                                                                                                                     Nutty Professor, The
## 7275                                                                                                                                               Phenomenon
## 7277                                                                                                                                 Long Kiss Goodnight, The
## 7278                                                                                                                                Robin Hood: Men in Tights
## 7283                                                                                                                                              Chasing Amy
## 7286                                                                                                                               10 Things I Hate About You
## 7288                                                                                                                                            Arachnophobia
## 7289                                                                                                                                                    Dogma
## 7292                                                                                                                                             Patriot, The
## 7294                                                                                                                                    Bridget Jones's Diary
## 7295                                                                                                                                        Beautiful Mind, A
## 7342                                                                                                                                                 Clueless
## 7344                                                                                                                                             Broken Arrow
## 7348                                                                                                                                                    Congo
## 7352                                                                                                                                               Waterworld
## 7353                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 7355                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 7356                                                                                                                                      Legends of the Fall
## 7360                                                                                                                                                Quiz Show
## 7364                                                                                                                               Ace Ventura: Pet Detective
## 7367                                                                                                                                     Addams Family Values
## 7368                                                                                                                                    Beverly Hills Cop III
## 7370                                                                                                                                           Demolition Man
## 7373                                                                                                                                                   Batman
## 7375                                                                                                                                     Beauty and the Beast
## 7377                                                                                                                                                  Jumanji
## 7378                                                                                                                                                     Babe
## 7380                                                                                                                                              Taxi Driver
## 7381                                                                                                                                                   Casper
## 7382                                                                                                                                                Desperado
## 7383                                                                                                                                                   Clerks
## 7384                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 7385                                                                                                                                     Natural Born Killers
## 7388                                                                                                                               Ace Ventura: Pet Detective
## 7391                                                                                                                                                Mask, The
## 7392                                                                                                                                            Jurassic Park
## 7393                                                                                                                                                    Naked
## 7396                                                                                                                                 Welcome to the Dollhouse
## 7397                                                                                                                                Silence of the Lambs, The
## 7398                                                                                                                                     Beauty and the Beast
## 7399                                                                                                                                      Mission: Impossible
## 7400                                                                                                                                                Space Jam
## 7403                                                                                                                                           Cable Guy, The
## 7406                                                                                                                               E.T. the Extra-Terrestrial
## 7407                                                                                                                                               Abyss, The
## 7408                                                                                                                     Wallace & Gromit: The Wrong Trousers
## 7411                                                                                                                                      Clockwork Orange, A
## 7412                                                                                                                                                    Alien
## 7413                                                                                                                                        Full Metal Jacket
## 7414                                                                                                                                          Terminator, The
## 7416                                                                                                                                       Back to the Future
## 7417                                                                                                                                                    Akira
## 7419                                                                                                                                                   Scream
## 7420                                                                                                                                                Liar Liar
## 7421                                                                                                                                                 Anaconda
## 7422                                                                                                                                       Fifth Element, The
## 7423                                                                                                                           Lost World: Jurassic Park, The
## 7424                                                                                                                                Men in Black (a.k.a. MIB)
## 7425                                                                                                                                                    Spawn
## 7426                                                                                                                                        Starship Troopers
## 7427                                                                                                                                         Truman Show, The
## 7429                                                                                                                                        Big Lebowski, The
## 7431                                                                                                                                                 Godzilla
## 7433                                                                                                                                               Armageddon
## 7435                                                                                                                             There's Something About Mary
## 7436                                                                                                                                            Exorcist, The
## 7437                                                                                                                                       Mask of Zorro, The
## 7438                                                                                                                                                    Blade
## 7439                                                                                                                                                     Cube
## 7440                                                                                                                                               Thing, The
## 7442                                                                                                                                                     Antz
## 7443                                                                                                                                                Happiness
## 7446                                                                                                                                            Bug's Life, A
## 7447                                                                                                                                                 Fly, The
## 7448                                                                                                                        Lock, Stock & Two Smoking Barrels
## 7450                                                                                                                                               Mummy, The
## 7451                                                                                                                                Run Lola Run (Lola rennt)
## 7452                                                                                                                     South Park: Bigger, Longer and Uncut
## 7453                                                                                                                                             American Pie
## 7454                                                                                                                                 Blair Witch Project, The
## 7455                                                                                                                                            Deep Blue Sea
## 7456                                                                                                                                         Sixth Sense, The
## 7457                                                                                                                                                 Stigmata
## 7459                                                                                                                                 Who Framed Roger Rabbit?
## 7460                                                                                                                                     Being John Malkovich
## 7462                                                                                                                                              Toy Story 2
## 7464                                                                                                                                                 Predator
## 7467                                                                                                                                       Gone in 60 Seconds
## 7468                                                                                                                                               Titan A.E.
## 7469                                                                                                                                              Chicken Run
## 7470                                                                                                                                                    X-Men
## 7472                                                                                                                                                Bedazzled
## 7474                                                                                                                                Emperor's New Groove, The
## 7475                                                                                                                                                Cast Away
## 7476                                                                                                                                                  Memento
## 7477                                                                                                                                       Mummy Returns, The
## 7479                                                                                                                                Fast and the Furious, The
## 7480                                                                                                                        Final Fantasy: The Spirits Within
## 7481                                                                                                                                              Others, The
## 7483                                                                                                                                           Monsters, Inc.
## 7484                                                                                                          Devil's Backbone, The (Espinazo del diablo, El)
## 7486                                                                                                                                              Vanilla Sky
## 7492                                                                                                                  And Your Mother Too (Y tu mamá también)
## 7493                                                                                                                                               Spider-Man
## 7494                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 7495                                                                                                                                                    Signs
## 7496                                                                                                                                           Thesis (Tesis)
## 7499                                                                                                                                                Ring, The
## 7502                                                                                                                                              Equilibrium
## 7507                                                                                                                              Irreversible (Irréversible)
## 7508                                                                                                                                                     Spun
## 7509                                                                                                                                             Ringu (Ring)
## 7510                                                                                                Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 7511                                                                                                                              Lilya 4-Ever (Lilja 4-ever)
## 7513                                                                                                                                     Matrix Reloaded, The
## 7517                                                                                                                                      Lost in Translation
## 7518                                                                                                                            Ninja Scroll (Jûbei ninpûchô)
## 7519                                                                                                                                                 Elephant
## 7520                                                                                                                                  Matrix Revolutions, The
## 7521                                                                                                                                                 21 Grams
## 7523                                                                                                                                                 Big Fish
## 7525                                                                                                                            Ichi the Killer (Koroshiya 1)
## 7528                                                                                                                                         Dawn of the Dead
## 7530                                                                                                                                                  Hellboy
## 7531                                                                                                                         I'm Not Scared (Io non ho paura)
## 7534                                                                                                                       Jin Roh: The Wolf Brigade (Jin-Rô)
## 7535                                                                                                                                                  Shrek 2
## 7536                                                                                                                                        Napoleon Dynamite
## 7539                                                                                                        Maria Full of Grace (Maria, Llena eres de gracia)
## 7543                                                                                                                                       Cannibal Holocaust
## 7544                                                                                                                                               Shark Tale
## 7546                                                                                                                                                      Saw
## 7547                                                                                                                                         Incredibles, The
## 7548                                                                                                                                       Polar Express, The
## 7552                                                                                                                     My Sassy Girl (Yeopgijeogin geunyeo)
## 7553                                                                                                                                           Animatrix, The
## 7555                                                                                                    Last Life in the Universe (Ruang rak noi nid mahasan)
## 7557                                                                                                                                                  Old Boy
## 7558                                                                                                    Interstella 5555: The 5tory of the 5ecret 5tar 5ystem
## 7559                                                                                                                      Ong-Bak: The Thai Warrior (Ong Bak)
## 7560                                                                                                                                               Mean Creek
## 7562                                                                                                                                             Yes Men, The
## 7564                                                                                                                        Charlie and the Chocolate Factory
## 7569                                                                                                                                 Kung Fu Hustle (Gong fu)
## 7570                                                                                                                                                   Robots
## 7571                                                                                                                                      Memories (Memorîzu)
## 7575                                                                                                                                                    Crash
## 7576                                                                                                                                               Madagascar
## 7577                                                                                                                                         Mr. & Mrs. Smith
## 7578                                                                                                                                     Devil's Rejects, The
## 7579                                                                                                                                                 Serenity
## 7580                                                                                                                            Hidden (a.k.a. Cache) (Caché)
## 7581                                                                                                                                Everything Is Illuminated
## 7582                                                                                                                                             Corpse Bride
## 7583                                                                                                                       Final Fantasy VII: Advent Children
## 7584                                                                                                         Wallace & Gromit in The Curse of the Were-Rabbit
## 7586                                                                                                                                                King Kong
## 7587                                                                                                                                     Mozart and the Whale
## 7588                                                                                                                                                   Hostel
## 7589                                                                                                                                  Ice Age 2: The Meltdown
## 7590                                                                                                                                           V for Vendetta
## 7591                                                                                                                                     Hills Have Eyes, The
## 7594                                                                                                                                                  Slither
## 7595                                                                                                                                               Hard Candy
## 7598                                                                                                                                   Devil Wears Prada, The
## 7600                                                                                                                                     Little Miss Sunshine
## 7601                                                                                                                                            Monster House
## 7602                                                                                                                                    Stranger than Fiction
## 7603                                                                                                                                Pursuit of Happyness, The
## 7604                                                                                                                                           Ant Bully, The
## 7608                                                                                                                                            Fountain, The
## 7610                                                                      Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 7612                                                                                                                                              Open Season
## 7613                                                                                                                                          Children of Men
## 7614                                                                                                                                            Prestige, The
## 7615                                                                                                                                             Flushed Away
## 7617                                                                                                                                        Déjà Vu (Deja Vu)
## 7618                                                                                                                                        Linda Linda Linda
## 7620                                                                                                                                              Ratatouille
## 7621                                                                                                                                                 Hot Fuzz
## 7622                                                                                                                                                   Zodiac
## 7624                                                                                                                                               Grindhouse
## 7625                                                                                                                                       Meet the Robinsons
## 7627                                                                                                                                                 Sunshine
## 7628                                                                                                                                                Disturbia
## 7629                                                                                                                                             Spider-Man 3
## 7630                                                                                                                                          Shrek the Third
## 7631                                                                                                                                               Them (Ils)
## 7632                                                                                                                                                Surf's Up
## 7633                                                                                                                                              Death Proof
## 7636                                                                                                                                             Transformers
## 7637                                                                                                                                      Simpsons Movie, The
## 7638                                                                                                                                                 Superbad
## 7644                                                                                                                                                Bee Movie
## 7646                                                                                                                                      Man from Earth, The
## 7647                                                                                                                                                  Beowulf
## 7648                                                                                                                                             Murder Party
## 7649                                                                                                                                                      XXY
## 7650                                                                                                                                                Mist, The
## 7651                                                                                                                                              I Am Legend
## 7653                                                                                                                                                     Juno
## 7655                                                                                                           Sweeney Todd: The Demon Barber of Fleet Street
## 7656                                                                                                                                      There Will Be Blood
## 7658                                                                                                                                                    [REC]
## 7660                                                                                                                                                 Arranged
## 7662                                                                                                                              Hellboy II: The Golden Army
## 7664                                                                                                 Art of Negative Thinking, The (Kunsten å tenke negativt)
## 7665                                                                                                                                      Horton Hears a Who!
## 7666                                                                                                                                                 Penelope
## 7667                                                                                                                                       Class, The (Klass)
## 7670                                                                                                                                            Son of Rambow
## 7674                                                                                                                                            Kung Fu Panda
## 7676                                                                                                                                                Get Smart
## 7677                                                                                                                 Futurama: The Beast with a Billion Backs
## 7679                                                                                                                                                 Watchmen
## 7680                                                                                                                                            American Teen
## 7682                                                                                                                                       Burn After Reading
## 7684                                                                                                                                       Gomorrah (Gomorra)
## 7685                                                                                                                                  Futurama: Bender's Game
## 7686                                                                                                                              Madagascar: Escape 2 Africa
## 7687                                                                                                                                      Slumdog Millionaire
## 7688                                                                                                                                              Role Models
## 7689                                                                                                                              Class, The (Entre les murs)
## 7690                                                                                                                                                     Bolt
## 7693                                                                                                                     Curious Case of Benjamin Button, The
## 7694                                                                                                                                                  Yes Man
## 7695                                                                                                                                                 Valkyrie
## 7698                                                                                                                              Ponyo (Gake no ue no Ponyo)
## 7700                                                                                                                                                 Coraline
## 7701                                                                                                                                   Departures (Okuribito)
## 7702                                                                                                                                                  Knowing
## 7704                                                                                                                                      Monsters vs. Aliens
## 7705                                                                                                                                            Adventureland
## 7708                                                                                                                                                Star Trek
## 7709                                                               Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei)
## 7712                                                                                                                      Transformers: Revenge of the Fallen
## 7713                                                                                                                           Ice Age: Dawn of the Dinosaurs
## 7714                                                                                                                                       My Sister's Keeper
## 7721                                                                                                                                                        9
## 7722                                                                                                                        Cloudy with a Chance of Meatballs
## 7723                                                                                                                                               Food, Inc.
## 7726                                                                                                                                                      Ink
## 7727                                                                                                                                  Invention of Lying, The
## 7728                                                                                                                                               Zombieland
## 7729                                                                                                                                            Education, An
## 7731                                                                                                                                                  Balance
## 7732                                                                                                                                                Astro Boy
## 7733                                                                                                                                         Fourth Kind, The
## 7734                                                                                                                                        Lovely Bones, The
## 7735                                                                                                                                         Everybody's Fine
## 7738                                                                                                                                              Daybreakers
## 7739                                                                                                                                         Book of Eli, The
## 7740                                                                                                                                                 Collapse
## 7741                                                                                                                    Dragon Hunters (Chasseurs de dragons)
## 7743                                                                                                                                                 Triangle
## 7745                                                                                                                                      Alice in Wonderland
## 7748                                                                                                                                                 Kick-Ass
## 7750                                                                                                                    Human Centipede, The (First Sequence)
## 7751                                                                                                                                               Iron Man 2
## 7757                                                                                                                                               Mr. Nobody
## 7759                                                                                                                                                Heartless
## 7761                                                                                                                                                  Flipped
## 7762                                                                                                                                                Let Me In
## 7763                                                                                                                                                  Catfish
## 7765                                                                                                                       Illusionist, The (L'illusionniste)
## 7766                                                                                                                                                127 Hours
## 7767                                                                                                                                                 Megamind
## 7769                                                                                                                                       King's Speech, The
## 7770                                                                                                                                                  Tangled
## 7771                                                                                                                                             Tron: Legacy
## 7772                                                                                                                        I Saw the Devil (Akmareul boatda)
## 7773                                                                                                  Secret World of Arrietty, The (Kari-gurashi no Arietti)
## 7774                                                                                                                                    Tucker & Dale vs Evil
## 7775                                                                                                                                              Day & Night
## 7778                                                                                                                                                     Paul
## 7781                                                                                                                         Troll Hunter, The (Trolljegeren)
## 7783                                                                                                                                             Sucker Punch
## 7786                                                                                                                                                Insidious
## 7787                                                                                                                                      Hobo with a Shotgun
## 7789                                                                                                                                                     Thor
## 7790                                                                                                                                    Louis C.K.: Chewed Up
## 7791                                                                                                                                        Idiots and Angels
## 7794                                                                                                                                                  Super 8
## 7795                                                                                                                                            Green Lantern
## 7796                                                                                                                           Transformers: Dark of the Moon
## 7797                                                                                                                       Captain America: The First Avenger
## 7798                                                                                                                           Rise of the Planet of the Apes
## 7799                                                                                                                                            Avengers, The
## 7800                                                                                                                                                Kill List
## 7801                                                                                                                                    Paranormal Activity 3
## 7802                                                                                                                                                    Shame
## 7803                                                                                                                                            Puss in Boots
## 7804                                                                                                                                Adventures of Tintin, The
## 7805                                                                                                                                         Arthur Christmas
## 7806                                                                                                                                   Dark Knight Rises, The
## 7807                                                                                                                       Sherlock Holmes: A Game of Shadows
## 7808                                                                                                                  Human Centipede II (Full Sequence), The
## 7809                                                                                                                                                Chronicle
## 7810                                                                                                                                     Dr. Seuss' The Lorax
## 7811                                                                                                                                     The Raid: Redemption
## 7812                                                                                                                                  Cabin in the Woods, The
## 7815                                                                                                                                                 Boundin'
## 7816                                                                                                                                  Amazing Spider-Man, The
## 7817                                                                                                                             Ice Age 4: Continental Drift
## 7819                                                                                                                                             Total Recall
## 7820                                                                                                                                               ParaNorman
## 7821                                                                                                                                                  Samsara
## 7822                                                                                                                                                   Looper
## 7825                                                                                                                                                 Sinister
## 7826                                                                                                                                       Hotel Transylvania
## 7828                                                                                                                                           Wreck-It Ralph
## 7829                                                                                                                                  Silver Linings Playbook
## 7830                                                                                                                                               Life of Pi
## 7832                                                                                                                                                    Amour
## 7833                                                                                                                                    Rise of the Guardians
## 7838                                                                                                                                              Croods, The
## 7839                                                                                                                                               Iron Man 3
## 7841                                                                                                                                             Man of Steel
## 7842                                                                                                                                              Pacific Rim
## 7843                                                                                                                                              World War Z
## 7844                                                                                                                                                  Elysium
## 7845                                                                                                                                            American Mary
## 7846                                                                                                                                          Despicable Me 2
## 7847                                                                                                                                           Conjuring, The
## 7848                                                                                                                                                  Gravity
## 7849                                                                                                                                             Ender's Game
## 7850                                                                                                                                     Thor: The Dark World
## 7851                                                                                                                                                    Pieta
## 7853                                                                                                                                                   Frozen
## 7854                                                                                                                                              Snowpiercer
## 7855                                                                                                                     Paranormal Activity: The Marked Ones
## 7856                                                                                                                            Dragon Ball Z: Battle of Gods
## 7857                                                                                                                                                Divergent
## 7858                                                                                                                                                  RoboCop
## 7859                                                                                                                                             Interstellar
## 7860                                                                                                                                                 Non-Stop
## 7861                                                                                                                                   300: Rise of an Empire
## 7862                                                                                                                                    Mr. Peabody & Sherman
## 7863                                                                                                                                           Under the Skin
## 7864                                                                                                                                           Need for Speed
## 7865                                                                                                                      Captain America: The Winter Soldier
## 7866                                                                                                                                                     Noah
## 7867                                                                                                                                     The Raid 2: Berandal
## 7868                                                                                                                                 The Amazing Spider-Man 2
## 7869                                                                                                                                                   Oculus
## 7870                                                                                                                                                    Rio 2
## 7871                                                                                                                                            Transcendence
## 7872                                                                                                                               X-Men: Days of Future Past
## 7873                                                                                                                                                 Godzilla
## 7874                                                                                                                                               Maleficent
## 7876                                                                                                                               How to Train Your Dragon 2
## 7877                                                                                                                          Transformers: Age of Extinction
## 7878                                                                                                                                            Babadook, The
## 7879                                                                                                                           Dawn of the Planet of the Apes
## 7880                                                                                                                                  Guardians of the Galaxy
## 7881                                                                                                                                                Coherence
## 7882                                                                                                                                         Maze Runner, The
## 7883                                                                                                                                           Predestination
## 7884                                                                                                                                                John Wick
## 7885                                                                                                                                                    Ouija
## 7886                                                                                                                                               Big Hero 6
## 7887                                                                                                                       Dream Home (Wai dor lei ah yut ho)
## 7888                                                                                                                The Hobbit: The Battle of the Five Armies
## 7890                                                                                                                              Indian in the Cupboard, The
## 7892                                                                                                                                              Judge Dredd
## 7893                                                                                                                            Kid in King Arthur's Court, A
## 7894                                                                                                                                  Quick and the Dead, The
## 7895                                                                                                                                   Star Trek: Generations
## 7897                                                                                                                                             Black Beauty
## 7899                                                                                                                                                     Rudy
## 7900                                                                                                                                       Dances with Wolves
## 7901                                                                                                                                                   Batman
## 7903                                                                                                                                               Barbarella
## 7904                                                                                                                                     Operation Dumbo Drop
## 7905                                                                                                                                                Rock, The
## 7913                                                                                                                              Around the World in 80 Days
## 7916                                                                                                                                    Swiss Family Robinson
## 7920                                                                                                                                     Escape from New York
## 7926                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 7933                                                                                                                          Star Trek II: The Wrath of Khan
## 7936                                                                                                                                            Mars Attacks!
## 7937                                                                                                                                Men in Black (a.k.a. MIB)
## 7938                                                                                                                                        Starship Troopers
## 7940                                                                                                                                  Poseidon Adventure, The
## 7941                                                                                                                                 Honey, I Shrunk the Kids
## 7942                                                                                                                                                   Popeye
## 7943                                                                                                                                           Rocketeer, The
## 7944                                                                                                                                                     Tron
## 7949                                                                                                                                                King Kong
## 7950                                                                                                                               Rambo: First Blood Part II
## 7952                                                                                                                                    Young Sherlock Holmes
## 7955                                                                                                                                    Towering Inferno, The
## 7956                                                                                                                            Beyond the Poseidon Adventure
## 7958                                                                                                                                           Pork Chop Hill
## 7959                                                                                                               Allan Quatermain and the Lost City of Gold
## 7960                                                                                                                                               Iron Eagle
## 7961                                                                                                                                            Iron Eagle II
## 7962                                                                                                                                     Aces: Iron Eagle III
## 7963                                                                                                                                              Deliverance
## 7964                                                                                                                                            South Pacific
## 7969                                                                                                                                        Tora! Tora! Tora!
## 7971                                                                                                                                               Sister Act
## 7972                                                                                                                                            Forever Young
## 7974                                                                                                                                     Bear, The (Ours, L')
## 7976                                                                                                                                                 Red Dawn
## 7977                                                                                                                                        Lord of the Flies
## 7978                                                                                                                                   Force 10 from Navarone
## 7982                                                                                                                                           Kelly's Heroes
## 7983                                                                                                                                         Fantastic Voyage
## 7985                                                                                                                                               Alamo, The
## 7989                                                                                                                                               Get Shorty
## 7990                                                                                                                                                 Clueless
## 7991                                                                                                                                     Seven (a.k.a. Se7en)
## 7992                                                                                                                                             Broken Arrow
## 7994                                                                                                                                                Apollo 13
## 7995                                                                                                                                                    Congo
## 7998                                                                                                                                                 Net, The
## 7999                                                                                                                                               Waterworld
## 8000                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 8001                                                                                                       Interview with the Vampire: The Vampire Chronicles
## 8002                                                                                                                                                     Nell
## 8005                                                                                                                                          Specialist, The
## 8006                                                                                                                                                 Stargate
## 8007                                                                                                                              What's Eating Gilbert Grape
## 8009                                                                                                                               Ace Ventura: Pet Detective
## 8010                                                                                                                                 Clear and Present Danger
## 8015                                                                                                                                                    Speed
## 8016                                                                                                                                                True Lies
## 8017                                                                                                                                    Beverly Hills Cop III
## 8018                                                                                                                                              Cliffhanger
## 8020                                                                                                                                           Demolition Man
## 8021                                                                                                                                                Firm, The
## 8022                                                                                                                                            Fugitive, The
## 8024                                                                                                                                               Piano, The
## 8026                                                                                                                                     Sleepless in Seattle
## 8027                                                                                                                                                Tombstone
## 8028                                                                                                                                                    Ghost
## 8030                                                                                                                                       Dances with Wolves
## 8031                                                                                                                                             Pretty Woman
## 8033                                                                                                                                                   Eraser
## 8035                                                                                                                                                     Stag
## 8036                                                                                                                                              Hope Floats
## 8040                                                                                                                                Desperately Seeking Susan
## 8041                                                                                                                                      Shakespeare in Love
## 8047                                                                                                                                           Wild Wild West
## 8050                                                                                                                                            Runaway Bride
## 8051                                                                                                                                      Mosquito Coast, The
## 8056                                                                                                                                                 Stigmata
## 8066                                                                                                                                            Little Buddha
## 8067                                                                                                                                                  Go Fish
## 8072                                                                                                                                              Chasing Amy
## 8074                                                                                                           Nightmare on Elm Street 2: Freddy's Revenge, A
## 8075                                                                                                                    I Still Know What You Did Last Summer
## 8077                                                                                                                                       Cocoon: The Return
## 8078                                                                                                                                     Teaching Mrs. Tingle
## 8082                                                                                                                                                    X-Men
## 8085                                                                                                                                                   Bounce
## 8088                                                                                                                                            Heartbreakers
## 8092                                                                                                                                    Kissing Jessica Stein
## 8093                                                                                                                                      Sweetest Thing, The
## 8101                                                                                                                                      Final Destination 2
## 8104                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 8105                                                                                                                        Lagaan: Once Upon a Time in India
## 8111                                                                                                                                Manchurian Candidate, The
## 8112                                                                                                                                                   Eulogy
## 8114                                                                                                                House of Flying Daggers (Shi mian mai fu)
## 8117                                                                                                                                         Meet the Fockers
## 8119                                                                                                                                               Flightplan
## 8120                                                                                                                                 Squid and the Whale, The
## 8123                                                                                                                                      Memoirs of a Geisha
## 8126                                                                                                                                       Da Vinci Code, The
## 8127                                                                                                                                              Ratatouille
## 8128                                                                                                                                             Gray Matters
## 8132                                                                                                                                 Vicky Cristina Barcelona
## 8135                                                                                                              Far From Home: The Adventures of Yellow Dog
## 8136                                                                                                                      Secret Adventures of Tom Thumb, The
## 8137                                                                                                                                    Beverly Hills Cop III
## 8138                                                                                                                                             Black Beauty
## 8139                                                                                                                                                   Lassie
## 8142                                                                                                                                               Die Hard 2
## 8143                                                                                                                                Men in Black (a.k.a. MIB)
## 8146                                                                                                                                             Dr. Dolittle
## 8148                                                                                                                           Poltergeist II: The Other Side
## 8149                                                                                                                                          Lethal Weapon 3
## 8150                                                                                                                                             Return to Oz
## 8152                                                                                                                                          King Kong Lives
## 8153                                                                                                                                     Prince of Egypt, The
## 8155                                                                                                                                                  Rocky V
## 8160                                                                                                                     South Park: Bigger, Longer and Uncut
## 8161                                                                                                                                       Muppets From Space
## 8162                                                                                                                                 Blair Witch Project, The
## 8163                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 8164                                                                                                                                          Ghostbusters II
## 8165                                                                                                                                         Inspector Gadget
## 8166                                                                                                                                          Iron Giant, The
## 8168                                                                                                                                                 Stigmata
## 8169                                                                                                                                               Limey, The
## 8171                                                                                                                                 Who Framed Roger Rabbit?
## 8172                                                                                                                                     Being John Malkovich
## 8174                                                                                                                                              Toy Story 2
## 8175                                                                                                                                                 Magnolia
## 8184                                                                                                                                               Birds, The
## 8187                                                                                                                                      Crocodile Dundee II
## 8188                                                                                                                                              Matrix, The
## 8189                                                                                                                                         Live and Let Die
## 8191                                                                                                                                             Modern Times
## 8194                                                                                                                      Adventures of Baron Munchausen, The
## 8200                                                                                                               Asterix and the Gauls (Astérix le Gaulois)
## 8202                                                                                                                                             Hotel Rwanda
## 8203                                                                                                                                            Batman Begins
## 8207                                                                                                            Elementary Particles, The (Elementarteilchen)
## 8209                                                                                                                         Perfume: The Story of a Murderer
## 8211                                                                                                                                   No Country for Old Men
## 8216                                                                                                                                           Public Enemies
## 8220                                                                                                                                                Inception
## 8221                                                                                                         Asterix and the Vikings (Astérix et les Vikings)
## 8223                                                                                                                                                Toy Story
## 8224                                                                                                                              Father of the Bride Part II
## 8226                                                                                                                                                  Sabrina
## 8227                                                                                                                                             Sudden Death
## 8230                                                                                                                                             Bed of Roses
## 8231                                                                                                                                               Juror, The
## 8232                                                                                                                                             Broken Arrow
## 8233                                                                                                                                                City Hall
## 8235                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 8239                                                                                                                                       Executive Decision
## 8240                                                                                                                                                    Fargo
## 8241                                                                                                                 Homeward Bound II: Lost in San Francisco
## 8245                                                                                                                                         Mulholland Falls
## 8246                                                                                                                             Truth About Cats & Dogs, The
## 8250                                                                                                                                                  Twister
## 8251                                                                                                                                                Barb Wire
## 8252                                                                                                                                             Phantom, The
## 8254                                                                                                                                           Cable Guy, The
## 8257                                                                                                                                               Phenomenon
## 8260                                                                                                                      Willy Wonka & the Chocolate Factory
## 8264                                                                                                                                               Get Shorty
## 8272                                                                                                                                  Basketball Diaries, The
## 8273                                                                                                                                                    Congo
## 8277                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 8280                                                                                                                       Star Wars: Episode IV - A New Hope
## 8281                                                                                                                                                 Outbreak
## 8285                                                                                                                                                Tommy Boy
## 8287                                                                                                                                         Muriel's Wedding
## 8291                                                                                                                                           Demolition Man
## 8300                                                                                                                                                Space Jam
## 8301                                                                                     Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 8307                                                                                                                                    2001: A Space Odyssey
## 8309                                                                                                                                                    Laura
## 8316                                                                                                                                         Crying Game, The
## 8319                                                                                                                              People vs. Larry Flynt, The
## 8321                                                                                                                  Cinema Paradiso (Nuovo cinema Paradiso)
## 8323                                                                                                           Star Wars: Episode V - The Empire Strikes Back
## 8331                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 8337                                                                                                                                               Annie Hall
## 8339                                                                                                                                          Terminator, The
## 8340                                                                                                                                                Manhattan
## 8341                                                                                                                                            Graduate, The
## 8347                                                                                                                                         Deer Hunter, The
## 8356                                                                                                                       Butch Cassidy and the Sundance Kid
## 8357                                                                                                                                  When Harry Met Sally...
## 8367                                                                                                                                        Starship Troopers
## 8372                                                                                                                                       As Good as It Gets
## 8376                                                                                                                                          Midnight Cowboy
## 8380                                                                                                                                      Terms of Endearment
## 8381                                                                                                                                                 Rain Man
## 8383                                                                                                                                            Lethal Weapon
## 8386                                                                                                                               Back to the Future Part II
## 8388                                                                                                                                     D2: The Mighty Ducks
## 8391                                                                                                                                              'burbs, The
## 8392                                                                                                                                        Mighty Ducks, The
## 8396                                                                                                                                        Untouchables, The
## 8398                                                                                                                                                     Toys
## 8401                                                                                                                      Life Is Beautiful (La Vita è bella)
## 8407                                                                                                                               10 Things I Hate About You
## 8412                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 8422                                                                                                                                               Goldfinger
## 8423                                                                                                          Fistful of Dollars, A (Per un pugno di dollari)
## 8427                                                                                                                                           Trading Places
## 8432                                                                                                                                             Natural, The
## 8433                                                                                                                                             Midnight Run
## 8435                                                                                                                                   Last Picture Show, The
## 8437                                                                                                                             Fast Times at Ridgemont High
## 8439                                                                                                                                   League of Their Own, A
## 8440                                                                                                                               Stop! Or My Mom Will Shoot
## 8442                                                                                                                                              Bull Durham
## 8446                                                                                                                                             Hustler, The
## 8448                                                                                                                                                     Hook
## 8450                                                                                                                                               Caddyshack
## 8452                                                                                                                                  Pee-wee's Big Adventure
## 8460                                                                                                                                            Almost Famous
## 8461                                                                                                                                      Remember the Titans
## 8462                                                                                                              Legend of Drunken Master, The (Jui kuen II)
## 8463                                                                                                       How the Grinch Stole Christmas (a.k.a. The Grinch)
## 8469                                                                                                                                        Beverly Hills Cop
## 8471                                                                                                                                         Eddie Murphy Raw
## 8473                                                                                                                                                 Scarface
## 8476                                                                                                                        Man Who Shot Liberty Valance, The
## 8481                                                                                                                                             Training Day
## 8482                                                                                                                                                Zoolander
## 8485                                                                                                                                Man Who Wasn't There, The
## 8500                                                                                                                                                  My Girl
## 8502                                                                                                                          Confessions of a Dangerous Mind
## 8504                                                                                                                                               Old School
## 8505                                                                                                                                           Bruce Almighty
## 8507                                                                                                                         Shaolin Soccer (Siu lam juk kau)
## 8512                                                                                                                                             Mystic River
## 8513                                                                                                                                      Intolerable Cruelty
## 8517                                                                                                                                            Love Actually
## 8518                                                                                                                                                  Slacker
## 8519                                                                                                                                        Presumed Innocent
## 8520                                                                                                                          Battle Royale (Batoru rowaiaru)
## 8521                                                                                                                                                Teen Wolf
## 8533                                                                                                                         Dodgeball: A True Underdog Story
## 8536                                                                                                                                             Garden State
## 8539                                                                                                                                                   Primer
## 8542                                                                                                                                        National Treasure
## 8544                                                                                                                                   Eddie Murphy Delirious
## 8548                                                                                                                                              Fever Pitch
## 8549                                                                                                                                                    Crash
## 8553                                                                                                                          Me and You and Everyone We Know
## 8557                                                                                                                                   History of Violence, A
## 8566                                                                                                                                               Inside Man
## 8570                                                                                                                                Pursuit of Happyness, The
## 8580                                                                                                                                                      300
## 8584                                                                                                                 Pirates of the Caribbean: At World's End
## 8590                                                                                                                                                Atonement
## 8591                                                                                                                                         Eastern Promises
## 8592                                                                                                                                            Into the Wild
## 8593                                                                                                                                        American Gangster
## 8596                                                                                                                                              I Am Legend
## 8601                                                                                                                                        Meet the Spartans
## 8603                                                                                                                                                   Jumper
## 8606                                                                                                                                                 Iron Man
## 8607                                                                                                                                                    Taken
## 8608                                                                                                                                                 Watchmen
## 8614                                                                                                                                        Quantum of Solace
## 8617                                                                                                                                                 Valkyrie
## 8625                                                                                                                              Taking of Pelham 1 2 3, The
## 8637                                                                                                                                            Single Man, A
## 8657                                                                                                                                                Burlesque
## 8664                                                                                                                                    Hangover Part II, The
## 8665                                                                                                                                       X-Men: First Class
## 8667                                                                                                                                             Larry Crowne
## 8668                                                                                                                                          Horrible Bosses
## 8671                                                                                                                                                Help, The
## 8672                                                                                                                                       30 Minutes or Less
## 8680                                                                                                                                   Dark Knight Rises, The
## 8682                                                                                                                                                Project X
## 8691                                                                                                                                                      Ted
## 8694                                                                                                                                            Campaign, The
## 8700                                                                                                                                      Here Comes the Boom
## 8702                                                                                                                                  Silver Linings Playbook
## 8703                                                                                                                                                   Flight
## 8706                                                                                                                                               This Is 40
## 8708                                                                                                                                           Upstream Color
## 8711                                                                                                                                                Host, The
## 8718                                                                                                                                           Conjuring, The
## 8722                                                                                                                                              Just Wright
## 8724                                                                                                                            Jackass Presents: Bad Grandpa
## 8729                                                                                                                                          American Hustle
## 8731                                                                                                                                         Saving Mr. Banks
## 8734                                                                                                                                               Ride Along
## 8737                                                                                                                               X-Men: Days of Future Past
## 8738                                                                                                                                                  Blended
## 8744                                                                                                                                                Gone Girl
## 8745                                                                                                                                  Guardians of the Galaxy
## 8747                                                                                                                                            Let's Be Cops
## 8748                                                                                                               Two Days, One Night (Deux jours, une nuit)
## 8751                                                                                                                                       The Skeleton Twins
## 8757                                                                                                               Star Wars: Episode VII - The Force Awakens
## 8761                                                                                                                                   People, Places, Things
## 8766                                                                                                                                                Kung Fury
## 8768                                                                                                                       Batman v Superman: Dawn of Justice
## 8772                                                                                                                                   Straight Outta Compton
## 8777                                                                                                                                           Big Short, The
## 8790                                                                                                                                    Devil in a Blue Dress
## 8796                                                                                                                                              Client, The
## 8797                                                                                                                                             Forrest Gump
## 8809                                                                                                                                                   Batman
## 8812                                                                                                                                      Mission: Impossible
## 8818                                                                                                                                 Apple Dumpling Gang, The
## 8828                                                                                                                                      Weekend at Bernie's
## 8829                                                                                                                                           Basic Instinct
## 8836                                                                                                                                                 Fog, The
## 8837                                                                                                                                     Escape from New York
## 8849                                                                                                                                                   Aliens
## 8850                                                                                                                                           Apocalypse Now
## 8851                                                                                                                                                    Alien
## 8859                                                                                                                                          Terminator, The
## 8868                                                                                                                                       Back to the Future
## 8869                                                                                                                                                   Patton
## 8870                                                                                                                                               Highlander
## 8873                                                                                                                                       This Is Spinal Tap
## 8880                                                                                                                                           Amityville 3-D
## 8881                                                                                                                            Amityville II: The Possession
## 8895                                                                                                                                           Murder at 1600
## 8898                                                                                                                                      Conan the Barbarian
## 8902                                                                                                                                                Game, The
## 8909                                                                                                                                                  Titanic
## 8910                                                                                                                                        Big Lebowski, The
## 8911                                                                                                                                                   Fallen
## 8914                                                                                                                           X-Files: Fight the Future, The
## 8916                                                                                                                                               Armageddon
## 8917                                                                                                                                          Lethal Weapon 4
## 8930                                                                                                                                                Labyrinth
## 8932                                                                                                                                          Friday the 13th
## 8933                                                                                                                                   Friday the 13th Part 2
## 8934                                                                                                               Friday the 13th Part IV: The Final Chapter
## 8935                                                                                                                  Friday the 13th Part V: A New Beginning
## 8936                                                                                                                     Friday the 13th Part VI: Jason Lives
## 8937                                                                                                         Friday the 13th Part VIII: Jason Takes Manhattan
## 8939                                                                                                                                             Halloween II
## 8940                                                                                                                       Halloween III: Season of the Witch
## 8941                                                                                                                                               Prom Night
## 8943                                                                                                                           Poltergeist II: The Other Side
## 8944                                                                                                                                          Poltergeist III
## 8948                                                                                                                                                 Gremlins
## 8949                                                                                                                                             Goonies, The
## 8951                                                                                                                                            Soylent Green
## 8954                                                                                                                                     Jane Austen's Mafia!
## 8957                                                                                                                                Devil and Max Devlin, The
## 8958                                                                                                                                 Honey, I Shrunk the Kids
## 8960                                                                                                                                                   Popeye
## 8961                                                                                                                          Something Wicked This Way Comes
## 8965                                                                                                                                 Man with Two Brains, The
## 8968                                                                                                                                           Dead Zone, The
## 8969                                                                                                                                                     Cujo
## 8970                                                                                                                                     Children of the Corn
## 8973                                                                                                                                                   Legend
## 8974                                                                                                                                          Sixteen Candles
## 8975                                                                                                                                            Avengers, The
## 8976                                                                                                                                   NeverEnding Story, The
## 8977                                                                                                                           Attack of the Killer Tomatoes!
## 8987                                                                                                                                           Producers, The
## 8988                                                                                                                             History of the World: Part I
## 8993                                                                                                                           Ace Ventura: When Nature Calls
## 8995                                                                                                                               Ace Ventura: Pet Detective
## 8996                                                                                                                                     Addams Family Values
## 8997                                                                                                                                         Another Stakeout
## 9000                                                                                                                                           Apartment, The
## 9002                                                                                                                            Adventures of Robin Hood, The
## 9003                                                                                                                              Around the World in 80 Days
## 9006                                                                                                                                     2 Days in the Valley
## 9007                                                                                                                                 Apple Dumpling Gang, The
## 9010                                                                                                                                               Abyss, The
## 9015                                                                                                                                               Annie Hall
## 9017                                                                                                                                  Alien³ (a.k.a. Alien 3)
## 9021                                                                                                                                                 Anaconda
## 9022                                                                                                              Austin Powers: International Man of Mystery
## 9025                                                                                                                                       As Good as It Gets
## 9028                                                                                                                             Absent-Minded Professor, The
## 9029                                                                                                                     Apple Dumpling Gang Rides Again, The
## 9030                                                                                                                                              'burbs, The
## 9031                                                                                                          101 Dalmatians (One Hundred and One Dalmatians)
## 9032                                                                                                                                       Addams Family, The
## 9034                                                                                                                                            Avengers, The
## 9039                                                                                                                                               52 Pick-Up
## 9041                                                                                                                                                  Airport
## 9042                                                                                                                                              Airport '77
## 9043                                                                                                                                             Dead Ringers
## 9044                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 9048                                                                                                                                     Aces: Iron Eagle III
## 9049                                                                                                                                    Astronaut's Wife, The
## 9052                                                                                                                                7th Voyage of Sinbad, The
## 9058                                                                                                                                          American Psycho
## 9060                                                                                                                                          American Gigolo
## 9061                                                                                                                                                    Benji
## 9064                                                                                                                                           Action Jackson
## 9065                                                                                                                                  American President, The
## 9068                                                                                                                                              Taxi Driver
## 9070                                                                                                                                                   Clerks
## 9071                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 9072                                                                                                                                                 Outbreak
## 9075                                                                                                                                Shawshank Redemption, The
## 9076                                                                                                                                                Mask, The
## 9077                                                                                                                                                True Lies
## 9078                                                                                                                                     Addams Family Values
## 9083                                                                                                                                               Home Alone
## 9084                                                                                                                                       Dances with Wolves
## 9085                                                                                                                                Silence of the Lambs, The
## 9090                                                                                                                                        Wizard of Oz, The
## 9093                                                                                                                          One Flew Over the Cuckoo's Nest
## 9094                                                                                                                                               Goodfellas
## 9096                                                                                                                                 Star Trek: First Contact
## 9098                                                                                                                                      Tomorrow Never Dies
## 9099                                                                                                                             There's Something About Mary
## 9100                                                                                                                                                 Rain Man
## 9101                                                                                                                                      Breakfast Club, The
## 9102                                                                                                                                      Saving Private Ryan
## 9103                                                                                                                                                     Tron
## 9104                                                                                                                                   NeverEnding Story, The
## 9106                                                                                                                                                   Willow
## 9107                                                                                                                                        Untouchables, The
## 9108                                                                                                                                          My Cousin Vinny
## 9110                                                                                                                                      Shakespeare in Love
## 9111                                                                                                                                         Crocodile Dundee
## 9112                                                                                                                        Lock, Stock & Two Smoking Barrels
## 9114                                                                                                                                                 Superman
## 9115                                                                                                                                             Notting Hill
## 9116                                                                                                                    Austin Powers: The Spy Who Shagged Me
## 9118                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 9119                                                                                                                                 Thomas Crown Affair, The
## 9120                                                                                                                                                      Big
## 9123                                                                                                                                     Being John Malkovich
## 9126                                                                                                                                   Mission: Impossible II
## 9128                                                                                                                                             Best in Show
## 9129                                                                                                                                         Meet the Parents
## 9130                                                                                                                                                    Shrek
## 9132                                                                                                                                    M*A*S*H (a.k.a. MASH)
## 9133                                                                                                                                               Spider-Man
## 9140                                                                                                                                               Krays, The
## 9141                                                                                                                                            Batman Begins
## 9144                                                                                                                                               Get Shorty
## 9147                                                                                                                                              Judge Dredd
## 9152                                                                                                                                              Dragonheart
## 9154                                                                                                                          Wallace & Gromit: A Close Shave
## 9162                                                                                                                                                   Grease
## 9163                                                                                                                                                Liar Liar
## 9168                                                                                                                     Indiana Jones and the Temple of Doom
## 9174                                                                                                                                              Re-Animator
## 9175                                                                                                                                                 Magnolia
## 9177                                                                                                                                   Assault on Precinct 13
## 9184                                                                                                                   Lord of the Rings: The Two Towers, The
## 9189                                                                                                                                                Bad Santa
## 9195                                                                                                                      Ong-Bak: The Thai Warrior (Ong Bak)
## 9198                                                                                                                                                  Jumanji
## 9199                                                                                                                                                     Babe
## 9200                                                                                                                                               Pocahontas
## 9203                                                                                                                                                   Casper
## 9205                                                                                                                                        Santa Clause, The
## 9206                                                                                                                                           Lion King, The
## 9208                                                                                                                          Nightmare Before Christmas, The
## 9209                                                                                                                                   Brady Bunch Movie, The
## 9210                                                                                                                                               Home Alone
## 9212                                                                                                                                                  Aladdin
## 9214                                                                                                                                Silence of the Lambs, The
## 9215                                                                                                                          Snow White and the Seven Dwarfs
## 9216                                                                                                                                     Beauty and the Beast
## 9217                                                                                                                                                Pinocchio
## 9218                                                                                                                                          Aristocats, The
## 9219                                                                                                                                James and the Giant Peach
## 9220                                                                                                                                                Space Jam
## 9221                                                                                                                                          Harriet the Spy
## 9222                                                                                                                                        Wizard of Oz, The
## 9223                                                                                                                                    It's a Wonderful Life
## 9224                                                                                                                                            Love Bug, The
## 9225                                                                                                                                               Cinderella
## 9226                                                                                                                                             Mary Poppins
## 9227                                                                                                                                                    Dumbo
## 9229                                                                                                                     William Shakespeare's Romeo + Juliet
## 9230                                                                                                                      Willy Wonka & the Chocolate Factory
## 9231                                                                                                                               E.T. the Extra-Terrestrial
## 9234                                                                                                                                    To Kill a Mockingbird
## 9235                                                                                                                                      Blues Brothers, The
## 9236                                                                                                                                           101 Dalmatians
## 9237                                                                                                                                                   Grease
## 9239                                                                                                                                Men in Black (a.k.a. MIB)
## 9240                                                                                                                                      Wedding Singer, The
## 9242                                                                                                                                                    Rocky
## 9244                                                                                                                                                    Bambi
## 9245                                                                                                                                 Honey, I Shrunk the Kids
## 9246                                                                                                                                         Jungle Book, The
## 9247                                                                                                                                       Lady and the Tramp
## 9248                                                                                                                                      Little Mermaid, The
## 9249                                                                                                          101 Dalmatians (One Hundred and One Dalmatians)
## 9250                                                                                                                                                Peter Pan
## 9251                                                                                                                                    All Dogs Go to Heaven
## 9252                                                                                                                                          Sixteen Candles
## 9253                                                                                                                                   NeverEnding Story, The
## 9254                                                                                                                                              Beetlejuice
## 9255                                                                                                                                                Rush Hour
## 9257                                                                                                                                            Bug's Life, A
## 9258                                                                                                                                    Babe: Pig in the City
## 9262                                                                                                                      Ghostbusters (a.k.a. Ghost Busters)
## 9263                                                                                                                                          Iron Giant, The
## 9264                                                                                                                                       Christmas Story, A
## 9267                                                                                                                           Home Alone 2: Lost in New York
## 9268                                                                                                                                              Toy Story 2
## 9269                                                                                                                                         Romeo and Juliet
## 9270                                                                                                                                              Chicken Run
## 9271                                                                                                       How the Grinch Stole Christmas (a.k.a. The Grinch)
## 9272                                                                                                                                Emperor's New Groove, The
## 9273                                                                                                                                        Miss Congeniality
## 9274                                                                                                                                                 Spy Kids
## 9275                                                                                                                                    Bridget Jones's Diary
## 9276                                                                                                                                                    Shrek
## 9278                                                                                                                                              Rush Hour 2
## 9279                                                                                                                                           Monsters, Inc.
## 9280                                                                                                                                              Shallow Hal
## 9281                                                                  Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 9283                                                                                                                                 My Big Fat Greek Wedding
## 9285                                                                                                                                            Lilo & Stitch
## 9286                                                                                                                                                Mr. Deeds
## 9287                                                                                                             Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 9288                                                                                                                              Austin Powers in Goldmember
## 9290                                                                                                                                     Saturday Night Fever
## 9291                                                                                                                  Harry Potter and the Chamber of Secrets
## 9294                                                                                                                                     Bend It Like Beckham
## 9296                                                                                                                                           Bruce Almighty
## 9297                                                                                                                                             Finding Nemo
## 9298                                                                                                   Pirates of the Caribbean: The Curse of the Black Pearl
## 9299                                                                                                                                              Jungle Book
## 9301                                                                                                                                                      Elf
## 9304                                                                                                                                     Cheaper by the Dozen
## 9306                                                                                                                                                  Shrek 2
## 9307                                                                                                                 Harry Potter and the Prisoner of Azkaban
## 9308                                                                                                                                        Napoleon Dynamite
## 9309                                                                                                                                            Super Size Me
## 9310                                                                                                                           Now You See Him, Now You Don't
## 9312                                                                                                                                        Finding Neverland
## 9314                                                                                                          Lemony Snicket's A Series of Unfortunate Events
## 9315                                                                                                                        Charlie and the Chocolate Factory
## 9316                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 9317                                                                                                                                               Madagascar
## 9318                                                                                                                                           Cinderella Man
## 9321                                                                                                                                           Fantastic Four
## 9323                                                                                                                                        Pride & Prejudice
## 9325                                                                                          Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 9328                                                                                                                                           Over the Hedge
## 9329                                                                                                                                                     Cars
## 9331                                                                                                               Pirates of the Caribbean: Dead Man's Chest
## 9335                                                                                                                                    Stranger than Fiction
## 9336                                                                                                                                         Illusionist, The
## 9341                                                                                                                                          Shrek the Third
## 9342                                                                                                                 Pirates of the Caribbean: At World's End
## 9344                                                                                                                Fantastic Four: Rise of the Silver Surfer
## 9346                                                                                                                Harry Potter and the Order of the Phoenix
## 9347                                                                                                                                      Simpsons Movie, The
## 9349                                                                                                                                           Be Kind Rewind
## 9350                                                                                                                                               Darfur Now
## 9354                                                                                                           Sweeney Todd: The Demon Barber of Fleet Street
## 9355                                                                                                                              Hellboy II: The Golden Army
## 9357                                                                                                                                                   Jumper
## 9362                                                                                                                                                  Hancock
## 9366                                                                                                                                Shawshank Redemption, The
## 9378                                                                                                                                            Blood Diamond
## 9383                                                                                                                                         Hurt Locker, The
## 9389                                                                                                                                       Bourne Legacy, The
## 9390                                                                                                                                             Intouchables
## 9392                                                                                                                                                 Oblivion
## 9393                                                                                                                                        From the Sky Down
## 9401                                                                                                         Birdman: Or (The Unexpected Virtue of Ignorance)
## 9404                                                                                                                                          American Sniper
## 9405                                                                                                                                                John Wick
## 9406                                                                                                                                             Nightcrawler
## 9409                                                                                                                                                 Blackhat
## 9411                                                                                                                                                  Ant-Man
## 9418                                                                                                                                  American President, The
## 9420                                                                                                                               Postman, The (Postino, Il)
## 9421                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 9423                                                                                                                                                  Rob Roy
## 9424                                                                                                                                              Hoop Dreams
## 9426                                                                                                                                          Specialist, The
## 9428                                                                                                                                                True Lies
## 9430                                                                                                                                            Fugitive, The
## 9432                                                                                                                                  Remains of the Day, The
## 9433                                                                                                                                Robin Hood: Men in Tights
## 9437                                                                                                                                                   Ransom
## 9438                                                                                                                   Homeward Bound: The Incredible Journey
## 9441                                                                                                                   Children of the Corn IV: The Gathering
## 9446                                                                                                                                               Annie Hall
## 9447                                                                                                                                               Sting, The
## 9450                                                                                                                                  When Harry Met Sally...
## 9452                                                                                                                   Star Trek VI: The Undiscovered Country
## 9454                                                                                                                            Star Trek IV: The Voyage Home
## 9456                                                                                                                   Jungle2Jungle (a.k.a. Jungle 2 Jungle)
## 9457                                                                                                                   Romy and Michele's High School Reunion
## 9462                                                                                                                                          Full Monty, The
## 9465                                                                                                                                                 Rain Man
## 9468                                                                                                                                   Lord of the Rings, The
## 9469                                                                                                                                              Beetlejuice
## 9471                                                                                                                                          My Cousin Vinny
## 9478                                                                                                                                         Sixth Sense, The
## 9489                                                                                                                                          Erin Brockovich
## 9493                                                                                                                                              Chicken Run
## 9499                                                                                                                                                Cast Away
## 9509                                                                                                      League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 9513                                                                                                                               Passion of the Christ, The
## 9515                                                                                                                                                Apollo 13
## 9517                                                                                                                               Die Hard: With a Vengeance
## 9518                                                                                                                                             First Knight
## 9519                                                                                                                          Dumb & Dumber (Dumb and Dumber)
## 9525                                                                                                                               Ace Ventura: Pet Detective
## 9534                                                                                                                                     Beauty and the Beast
## 9538                                                                                                                                       Gone with the Wind
## 9543                                                                                                               Star Wars: Episode VI - Return of the Jedi
## 9546                                                                                                                                               Local Hero
## 9548                                                                                                                                       Back to the Future
## 9550                                                                                                                                       This Is Spinal Tap
## 9555                                                                                                                                          Ordinary People
## 9563                                                                                                                                                  Copycat
## 9564                                                                                                                           Bridges of Madison County, The
## 9583                                                                                                                                                   Aliens
## 9588                                                                                                                                               Highlander
## 9589                                                                                                                                                 Face/Off
## 9590                                                                                                                                Men in Black (a.k.a. MIB)
## 9592                                                                                                                                        Big Lebowski, The
## 9599                                                                                                                                           Simple Plan, A
## 9600                                                                                                                                                 Fly, The
## 9601                                                                                                                                              Fly II, The
## 9602                                                                                                                                              Matrix, The
## 9607                                                                                                                                                 Predator
## 9610                                                                                                                                               Billy Jack
## 9611                                                                                                                                                Toy Story
## 9613                                                                                                                              Dracula: Dead and Loving It
## 9619                                                                                                                                          Dead Presidents
## 9622                                                                                                                                       Mr. Holland's Opus
## 9624                                                                                                                                              Black Sheep
## 9625                                                                                                                                          Beautiful Girls
## 9626                                                                                                                                             Broken Arrow
## 9627                                                                                                                                            Happy Gilmore
## 9628                                                                                                                                   Muppet Treasure Island
## 9630                                                                                                                      Rumble in the Bronx (Hont faan kui)
## 9631                                                                                                                                            Birdcage, The
## 9634                                                                                                              Far From Home: The Adventures of Yellow Dog
## 9637                                                                                                                                      Legends of the Fall
## 9645                                                                                                                                        Perez Family, The
## 9648                                                                                                                                                 Stargate
## 9651                                                                                                                                              Client, The
## 9654                                                                                                                                         Jungle Book, The
## 9656                                                                                                                                                 Maverick
## 9660                                                                                                                                              Cliffhanger
## 9662                                                                                                                                                Firm, The
## 9664                                                                                                                                      In the Line of Fire
## 9671                                                                                                                                                     Rudy
## 9676                                                                                                                                                    Ghost
## 9679                                                                                                                                                   Batman
## 9683                                                                                                                 Homeward Bound II: Lost in San Francisco
## 9687                                                                                                                                              Primal Fear
## 9688                                                                                                                                  All Dogs Go to Heaven 2
## 9689                                                                                                                                               Sgt. Bilko
## 9690                                                                                                                                      Mission: Impossible
## 9692                                                                                                                                              Dragonheart
## 9693                                                                                                                                                 Faithful
## 9694                                                                                                                                          Substitute, The
## 9696                                                                                                                             Truth About Cats & Dogs, The
## 9698                                                                                                                                                  Flipper
## 9699                                                                                                                                             Multiplicity
## 9700                                                                                                                                               Craft, The
## 9703                                                                                                                                                 Spy Hard
## 9705                                                                                                                                           Cable Guy, The
## 9706                                                                                                                                     Nutty Professor, The
## 9707                                                                                                                                         Escape from L.A.
## 9708                                                                                                                                                  Tin Cup
## 9710                                                                                                                                      Sound of Music, The
## 9715                                                                                                                                                  Jumanji
## 9716                                                                                                                                  American President, The
## 9718                                                                                                                       Star Wars: Episode IV - A New Hope
## 9719                                                                                                                                        Santa Clause, The
## 9722                                                                                                                                                Mask, The
## 9726                                                                                              Englishman Who Went Up a Hill But Came Down a Mountain, The
## 9729                                                                                                                                         Schindler's List
## 9730                                                                                                                                     Sleepless in Seattle
## 9731                                                                                                                                             Blade Runner
## 9732                                                                                                                                               Home Alone
## 9734                                                                                                                                       Dances with Wolves
## 9735                                                                                                                                                   Batman
## 9736                                                                                                                                             Pretty Woman
## 9737                                                                                                                                            Trainspotting
## 9738                                                                                                                            Independence Day (a.k.a. ID4)
## 9743                                                                                                                                         To Catch a Thief
## 9744                                                                                                                                      Father of the Bride
## 9747                                                                                                                      Willy Wonka & the Chocolate Factory
## 9749                                                                                                                                             My Left Foot
## 9751                                                                                                                                      Princess Bride, The
## 9753                                                                                                                                                   Aliens
## 9763                                                                                                                                                  Michael
## 9766                                                                                                                                                  Titanic
## 9771                                                                                                                                    Babe: Pig in the City
## 9772                                                                                                                                          Karate Kid, The
## 9774                                                                                                                                    Peggy Sue Got Married
## 9776                                                                                                                                   Little Shop of Horrors
## 9778                                                                                                                                          Heaven Can Wait
## 9779                                                                                                                                                Airplane!
## 9780                                                                                                                                                      Big
## 9782                                                                                                                                             Time Bandits
## 9783                                                                                                                                               Moonstruck
## 9784                                                                                                                                   Cider House Rules, The
## 9785                                                                                                                                               Sister Act
## 9787                                                                                                                                                Gladiator
## 9789                                                                                                                                       Perfect Storm, The
## 9792                                                                                                                                           Monsters, Inc.
## 9793                                                                                                                                           Ocean's Eleven
## 9794                                                                                                                                           Kate & Leopold
## 9797                                                                                                                                                  Ice Age
## 9798                                                                                                                                 My Big Fat Greek Wedding
## 9800                                                                                                                                     Bourne Identity, The
## 9804                                                                                                                                             Pianist, The
## 9805                                                                                                                                     Bend It Like Beckham
## 9806                                                                                                                                                    Holes
## 9807                                                                                                                                           Bruce Almighty
## 9808                                                                                                                                             Finding Nemo
## 9810                                                                                                                                           School of Rock
## 9811                                                                                                                                        Kill Bill: Vol. 1
## 9812                                                                                                                                                 Big Fish
## 9814                                                                                                                    Eternal Sunshine of the Spotless Mind
## 9816                                                                                                                                            Terminal, The
## 9819                                                                                                                    Sky Captain and the World of Tomorrow
## 9822                                                                                                                                 Spirit of St. Louis, The
## 9824                                                                                                                                      Million Dollar Baby
## 9825                                                                                                                                             Hotel Rwanda
## 9826                                                                                                                                             Aviator, The
## 9828                                                                                                              Howl's Moving Castle (Hauru no ugoku shiro)
## 9830                                                                                                                    Hitchhiker's Guide to the Galaxy, The
## 9831                                                                                                                                           Over the Hedge
## 9832                                                                                                                                                     Cars
## 9833                                                                                                                                          Lake House, The
## 9834                                                                                                                                    Stranger than Fiction
## 9835                                                                                                                                                 Stardust
## 9838                                                                                                                                                  Jumanji
## 9845                                                                                                                                                   Casper
## 9848                                                                                                                                             Pulp Fiction
## 9854                                                                                                                                              Richie Rich
## 9855                                                                                                                                     Addams Family Values
## 9856                                                                                                                                           Mrs. Doubtfire
## 9861                                                                                                                                                Pinocchio
## 9863                                                                                                                                     Nutty Professor, The
## 9867                                                                                                                                             Mary Poppins
## 9873                                                                                                                   Romy and Michele's High School Reunion
## 9877                                                                                                                                                    Rocky
## 9882                                                                                                                                 Honey, I Shrunk the Kids
## 9883                                                                                                                                         Parent Trap, The
## 9884                                                                                                                                     Nutty Professor, The
## 9889                                                                                                                 Police Academy 2: Their First Assignment
## 9895                                                                                                                                         Romeo and Juliet
## 9897                                                                                                                           Nutty Professor II: The Klumps
## 9898                                                                                                                                         Meet the Parents
## 9899                                                                                                                                         Charlie's Angels
## 9900                                                                                                                          Crocodile Dundee in Los Angeles
## 9902                                                                                                                                             Donnie Darko
## 9907                                                                                                                                               Spider-Man
## 9915                                                                                                                                        Definitely, Maybe
## 9921                                                                                                                                                  Sabrina
## 9922                                                                                                                                             Sudden Death
## 9923                                                                                                                              Dracula: Dead and Loving It
## 9924                                                                                                                                                    Nixon
## 9935                                                                                                                                                 Bio-Dome
## 9941                                                                                                                                              Black Sheep
## 9945                                                                                                                                            Happy Gilmore
## 9951                                                                                                                                       Executive Decision
## 9957                                                                                                                                               Sgt. Bilko
## 9958                                                                                                                                               Diabolique
## 9959                                                                                                                                      Mission: Impossible
## 9962                                                                                                                            Kids in the Hall: Brain Candy
## 9964                                                                                                                  Mystery Science Theater 3000: The Movie
## 9965                                                                                                                                                Space Jam
## 9972                                                                                                                                               Craft, The
## 9975                                                                                                                                                Barb Wire
## 9976                                                                                                                                                 Spy Hard
## 9978                                                                                                                                             Arrival, The
## 9979                                                                                                                                             Phantom, The
## 9982                                                                                                                                           Cable Guy, The
## 9989                                                                                                                                                   Kazaam
## 10002                                                                                                                              Terminator 2: Judgment Day
## 10014                                                                                                                                     She's Gotta Have It
## 10021                                                                                                                             Unsinkable Molly Brown, The
## 10024                                                                                                                                               Toy Story
## 10025                                                                                                                                                 Jumanji
## 10026                                                                                                                                    Seven (a.k.a. Se7en)
## 10028                                                                                                                                              Braveheart
## 10029                                                                                                                                               Apollo 13
## 10030                                                                                                                      Star Wars: Episode IV - A New Hope
## 10034                                                                                                                                           Jurassic Park
## 10037                                                                                                                               Silence of the Lambs, The
## 10041                                                                                                                                              Casablanca
## 10043                                                                                                                                                Die Hard
## 10044                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 10045                                                                                                                                                  Aliens
## 10051                                                                                                                                      Dead Poets Society
## 10053                                                                                                                                      Back to the Future
## 10054                                                                                                                                        Truman Show, The
## 10055                                                                                                                                                Rain Man
## 10056                                                                                                                                      Mask of Zorro, The
## 10057                                                                                                                                     Saving Private Ryan
## 10059                                                                                                                                                Rushmore
## 10060                                                                                                                                             Matrix, The
## 10061                                                                                                               Star Wars: Episode I - The Phantom Menace
## 10062                                                                                                                               Run Lola Run (Lola rennt)
## 10065                                                                                                                                Ferris Bueller's Day Off
## 10067                                                                                                                                             Toy Story 2
## 10068                                                                                                                                           High Fidelity
## 10069                                                                                                                                               Gladiator
## 10070                                                                                                                                      Gone in 60 Seconds
## 10071                                                                                                                                            Patriot, The
## 10072                                                                                                                                                   X-Men
## 10073                                                                                                                                           Almost Famous
## 10074                                                                                                                                     Requiem for a Dream
## 10075                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 10076                                                                                                                                                  Snatch
## 10077                                                                                                                                         What Women Want
## 10079                                                                                                                                       Miss Congeniality
## 10080                                                                                                                              O Brother, Where Art Thou?
## 10082                                                                                                                                   Bridget Jones's Diary
## 10084                                                                                                                                                   Shrek
## 10085                                                                                                                                          Legally Blonde
## 10086                                                                                                                                             Others, The
## 10088                                                                                                                                          Monsters, Inc.
## 10089                                                                                                                                          Ocean's Eleven
## 10090                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 10091                                                                                                                                   Royal Tenenbaums, The
## 10092                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 10093                                                                                                                                       Beautiful Mind, A
## 10094                                                                                                                                                 Ice Age
## 10095                                                                                                                                              Spider-Man
## 10096                                                                                                            Star Wars: Episode II - Attack of the Clones
## 10097                                                                                                                                    Bourne Identity, The
## 10098                                                                                                                                         Minority Report
## 10099                                                                                                                                               Ring, The
## 10100                                                                                                                                             Equilibrium
## 10101                                                                                                                  Lord of the Rings: The Two Towers, The
## 10102                                                                                                                                     Catch Me If You Can
## 10103                                                                                                                                            Pianist, The
## 10104                                                                                                                                        X2: X-Men United
## 10105                                                                                                                                            Finding Nemo
## 10106                                                                                                                                           28 Days Later
## 10107                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 10109                                                                                                                                          School of Rock
## 10110                                                                                                                                       Kill Bill: Vol. 1
## 10111                                                                                                                                 Matrix Revolutions, The
## 10112                                                                                                                                       Last Samurai, The
## 10113                                                                                                                                                Big Fish
## 10114                                                                                                          Lord of the Rings: The Return of the King, The
## 10115                                                                                                                                    The Butterfly Effect
## 10116                                                                                                                   Eternal Sunshine of the Spotless Mind
## 10117                                                                                                                                       Kill Bill: Vol. 2
## 10118                                                                                                                                                    Troy
## 10119                                                                                                                                        Band of Brothers
## 10120                                                                                                                                                I, Robot
## 10121                                                                                                                                       Shaun of the Dead
## 10122                                                                                                                                           The Machinist
## 10123                                                                                                                                        Incredibles, The
## 10124                                                                                                                                             Constantine
## 10125                                                                                                                                           Batman Begins
## 10126                                                                                                                                             Lord of War
## 10127                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 10128                                                                                                                                          V for Vendetta
## 10129                                                                                                                                   Thank You for Smoking
## 10130                                                                                                                                      Da Vinci Code, The
## 10131                                                                                                                                    Little Miss Sunshine
## 10132                                                                                                                                        Illusionist, The
## 10133                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 10134                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 10135                                                                                                                                           Departed, The
## 10136                                                                                                                                           Casino Royale
## 10138                                                                                                                                                Hot Fuzz
## 10139                                                                                                                                                  Zodiac
## 10140                                                                                                                                                     300
## 10141                                                                                                                                              Grindhouse
## 10142                                                                                                                                            Spider-Man 3
## 10143                                                                                                                                              Knocked Up
## 10144                                                                                                                                          28 Weeks Later
## 10145                                                                                                                Pirates of the Caribbean: At World's End
## 10146                                                                                                                                        Ocean's Thirteen
## 10147                                                                                                                                             Death Proof
## 10148                                                                                                                                   Live Free or Die Hard
## 10149                                                                                                                                            Transformers
## 10150                                                                                                               Harry Potter and the Order of the Phoenix
## 10151                                                                                                                                                Stardust
## 10152                                                                                                                                     Simpsons Movie, The
## 10153                                                                                                                                   Bourne Ultimatum, The
## 10154                                                                                                                                                Superbad
## 10155                                                                                                                                            3:10 to Yuma
## 10156                                                                                                                                           Into the Wild
## 10157                                                                                                                                 Darjeeling Limited, The
## 10158                                                                                                                                       American Gangster
## 10160                                                                                                                                             I Am Legend
## 10162                                                                                                          Sweeney Todd: The Demon Barber of Fleet Street
## 10164                                                                                                                                        Dark Knight, The
## 10165                                                                                                                                                Iron Man
## 10167                                                                                                                                      Burn After Reading
## 10168                                                                                                                    Curious Case of Benjamin Button, The
## 10169                                                                                                                                    Inglourious Basterds
## 10170                                                                                                                                X-Men Origins: Wolverine
## 10171                                                                                                                                               Star Trek
## 10173                                                                                                                                           Hangover, The
## 10174                                                                                                                                                  Avatar
## 10175                                                                                                                                          Shutter Island
## 10176                                                                                                                                               Inception
## 10177                                                                                                                             Scott Pilgrim vs. the World
## 10178                                                                                                                                               127 Hours
## 10179                                                                                                                                              Black Swan
## 10180                                                                                                                                               True Grit
## 10181                                                                                                                                       Midnight in Paris
## 10182                                                                                                                      Captain America: The First Avenger
## 10183                                                                                                                          Rise of the Planet of the Apes
## 10184                                                                                                                                               Moneyball
## 10185                                                                                                                                           Avengers, The
## 10186                                                                                                                                  Dark Knight Rises, The
## 10189                                                                                                                                             Cloud Atlas
## 10190                                                                                                                                              Life of Pi
## 10191                                                                                                                                        Django Unchained
## 10192                                                                                                                                 Star Trek Into Darkness
## 10193                                                                                                                                             World War Z
## 10194                                                                                                                                              About Time
## 10195                                                                                                                                                 Gravity
## 10196                                                                                                                                        12 Years a Slave
## 10197                                                                                                                                      Dallas Buyers Club
## 10199                                                                                                                                            Interstellar
## 10200                                                                                                                                                Whiplash
## 10201                                                                                                                                 Guardians of the Galaxy
## 10202                                                                                                                                         American Sniper
## 10203                                                                                                                                              Ex Machina
## 10204                                                                                                                                      The Imitation Game
## 10205                                                                                                                                The Theory of Everything
## 10207                                                                                                              Star Wars: Episode VII - The Force Awakens
## 10208                                                                                                                                                Deadpool
## 10209                                                                                                                              Captain America: Civil War
## 10210                                                                                                                                             The Martian
## 10211                                                                                                                      Batman v Superman: Dawn of Justice
## 10212                                                                                                                                            The Revenant
## 10213                                                                                                                                               Spotlight
## 10214                                                                                                                               The Huntsman Winter's War
## 10216                                                                                                                                                 Jumanji
## 10218                                                                                                                                               GoldenEye
## 10219                                                                                                                                        Cutthroat Island
## 10221                                                                                                                          Ace Ventura: When Nature Calls
## 10222                                                                                                                                              Get Shorty
## 10224                                                                                                                                         Dangerous Minds
## 10226                                                                                                                                                    Babe
## 10229                                                                                                                                           Mortal Kombat
## 10231                                                                                                                                              Pocahontas
## 10233                                                                                                                             Indian in the Cupboard, The
## 10234                                                                                Don't Be a Menace to South Central While Drinking Your Juice in the Hood
## 10235                                                                                                                                                Bio-Dome
## 10237                                                                                                                                     From Dusk Till Dawn
## 10238                                                                                                                                                Shopping
## 10239                                                                                                                                           Bottle Rocket
## 10240                                                                                                                                           Happy Gilmore
## 10241                                                                                                                                  Muppet Treasure Island
## 10243                                                                                                                                             Taxi Driver
## 10244                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 10245                                                                                                                                                Bad Boys
## 10247                                                                                                                                               Apollo 13
## 10248                                                                                                                                          Batman Forever
## 10249                                                                                                                                                  Casper
## 10250                                                                                                                                                   Congo
## 10251                                                                                                                                               Desperado
## 10252                                                                                                                              Die Hard: With a Vengeance
## 10253                                                                                                                                            First Knight
## 10254                                                                                                                        Free Willy 2: The Adventure Home
## 10255                                                                                                                                         Johnny Mnemonic
## 10256                                                                                                                                             Judge Dredd
## 10258                                                                                                                                       Lord of Illusions
## 10259                                                                                                                                                Mallrats
## 10260                                                                                                                                                Net, The
## 10261                                                                                                                                               Showgirls
## 10263                                                                                                                                              Waterworld
## 10267                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 10270                                                                                                                                          Goofy Movie, A
## 10273                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 10274                                                                                                                                                  Junior
## 10275                                                                                                                           Kid in King Arthur's Court, A
## 10278                                                                                                                                             Major Payne
## 10279                                                                                                                                    Natural Born Killers
## 10280                                                                                                                                                Outbreak
## 10284                                                                                                                                                Stargate
## 10288                                                                                                                                               Tank Girl
## 10289                                                                                                                                               Tommy Boy
## 10290                                                                                                                             What's Eating Gilbert Grape
## 10291                                                                                                                                              Virtuosity
## 10292                                                                                                                              Ace Ventura: Pet Detective
## 10293                                                                                                                                Clear and Present Danger
## 10294                                                                                                                                                Crooklyn
## 10298                                                                                                                                               Mask, The
## 10299                                                                                                                                                Maverick
## 10300                                                                                                                                             Richie Rich
## 10301                                                                                                                                                   Speed
## 10302                                                                                                                                               True Lies
## 10303                                                                                                                                 In the Mouth of Madness
## 10304                                                                                                                                           Above the Rim
## 10305                                                                                                                                    Addams Family Values
## 10306                                                                                                                                                Airheads
## 10308                                                                                                                                           Carlito's Way
## 10309                                                                                                                                               Coneheads
## 10310                                                                                                                                      Dazed and Confused
## 10311                                                                                                                                          Demolition Man
## 10314                                                                                                                                    Hot Shots! Part Deux
## 10316                                                                                                                                     In the Line of Fire
## 10318                                                                                                                                              Kalifornia
## 10320                                                                                                                                        Last Action Hero
## 10322                                                                                                                                  Much Ado About Nothing
## 10323                                                                                                                                          Mrs. Doubtfire
## 10324                                                                                                                                    Next Karate Kid, The
## 10325                                                                                                                                        Perfect World, A
## 10327                                                                                                                                          Poetic Justice
## 10328                                                                                                                                                Ref, The
## 10330                                                                                                                                          Romper Stomper
## 10333                                                                                                                         Nightmare Before Christmas, The
## 10336                                                                                                                                     Little Rascals, The
## 10337                                                                                                                                  Brady Bunch Movie, The
## 10338                                                                                                                                              Home Alone
## 10340                                                                                                                              Terminator 2: Judgment Day
## 10344                                                                                                                         Snow White and the Seven Dwarfs
## 10346                                                                                                                                               Pinocchio
## 10347                                                                                                                                            Pretty Woman
## 10349                                                                                                                                             Heavy Metal
## 10351                                                                                                                                 All Dogs Go to Heaven 2
## 10352                                                                                                                                     Mission: Impossible
## 10353                                                                                                                                             Dragonheart
## 10354                                                                                                                                               Space Jam
## 10355                                                                                                                                         Substitute, The
## 10356                                                                                                                                              Quest, The
## 10357                                                                                                                            Truth About Cats & Dogs, The
## 10358                                                                                                                                            Multiplicity
## 10359                                                                                                                                               Rock, The
## 10361                                                                                                                                                 Twister
## 10362                                                                                                                                               Barb Wire
## 10364                                                                                                                                                 Thinner
## 10366                                                                                                                                            Arrival, The
## 10367                                                                                                                                            Phantom, The
## 10369                                                                                                                           Independence Day (a.k.a. ID4)
## 10370                                                                                                                                          Cable Guy, The
## 10371                                                                                                                                                 Kingpin
## 10372                                                                                                                                                  Eraser
## 10373                                                                                                                                    Nutty Professor, The
## 10374                                                                                                                                        Frighteners, The
## 10375                                                                                                                                              Phenomenon
## 10376                                                                                                                                                  Ransom
## 10377                                                                                                                                        Escape from L.A.
## 10379                                                                                                                               Island of Dr. Moreau, The
## 10383                                                                                                                                   2001: A Space Odyssey
## 10386                                                                                                                  Homeward Bound: The Incredible Journey
## 10387                                                                                                                                           Cool Runnings
## 10388                                                                                                                                              Cinderella
## 10389                                                                                                                                 Sword in the Stone, The
## 10390                                                                                                                           Robin Hood: Prince of Thieves
## 10391                                                                                                                                                   Dumbo
## 10392                                                                                                                                     Alice in Wonderland
## 10393                                                                                                                                  Fox and the Hound, The
## 10395                                                                                                                             Ghost and the Darkness, The
## 10396                                                                                                                    William Shakespeare's Romeo + Juliet
## 10400                                                                                                                                          Reservoir Dogs
## 10402                                                                                                                                              Doors, The
## 10403                                                                                                                                        Crying Game, The
## 10405                                                                                                                                                 Top Gun
## 10406                                                                                                                             People vs. Larry Flynt, The
## 10409                                                                                                                         Monty Python and the Holy Grail
## 10412                                                                                                                                Sex, Lies, and Videotape
## 10430                                                                                                                                     Blues Brothers, The
## 10433                                                                                                                                                 Amadeus
## 10437                                                                                                                                                   Glory
## 10439                                                                                                                                      Dead Poets Society
## 10444                                                                                                                                             Stand by Me
## 10454                                                                                                                                                Heathers
## 10455                                                                                                                                      This Is Spinal Tap
## 10458                                                                                                                                    Pink Floyd: The Wall
## 10459                                                                                                                                     Killing Fields, The
## 10460                                                                                                                                         Field of Dreams
## 10461                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 10462                                                                                                                         American Werewolf in London, An
## 10463                                                                                                                         Dracula (Bram Stoker's Dracula)
## 10464                                                                                                                                                Candyman
## 10467                                                                                                                              Nightmare on Elm Street, A
## 10468                                                                                                                                               Omen, The
## 10469                                                                                                                                Star Trek: First Contact
## 10471                                                                                                                                      Jingle All the Way
## 10472                                                                                                                                          101 Dalmatians
## 10473                                                                                                                                              Die Hard 2
## 10474                                                                                                                  Star Trek VI: The Undiscovered Country
## 10476                                                                                                                                          Batman Returns
## 10479                                                                                                                                           Mars Attacks!
## 10483                                                                                                                         Beavis and Butt-Head Do America
## 10485                                                                                                                               Last of the Mohicans, The
## 10486                                                                                                                                            Dante's Peak
## 10487                                                                                                                                               Pest, The
## 10488                                                                                                                                            Lost Highway
## 10490                                                                                                                                              Saint, The
## 10491                                                                                                                                               Liar Liar
## 10492                                                                                                                                                Anaconda
## 10494                                                                                                                                                 Volcano
## 10495                                                                                                             Austin Powers: International Man of Mystery
## 10496                                                                                                                                      Fifth Element, The
## 10497                                                                                                                          Lost World: Jurassic Park, The
## 10498                                                                                                                                                 Con Air
## 10499                                                                                                                                          Batman & Robin
## 10501                                                                                                                                                Face/Off
## 10502                                                                                                                               Men in Black (a.k.a. MIB)
## 10503                                                                                                                                                 Contact
## 10506                                                                                                                                                   Spawn
## 10507                                                                                                                                Free Willy 3: The Rescue
## 10508                                                                                                                                       Conspiracy Theory
## 10509                                                                                                                                                   Steel
## 10510                                                                                                                                                   Mimic
## 10511                                                                                                                                           Air Force One
## 10514                                                                                                                                             Chasing Amy
## 10515                                                                                                                         I Know What You Did Last Summer
## 10516                                                                                                                                    The Devil's Advocate
## 10517                                                                                                                                                 Gattaca
## 10519                                                                                                                                                 Witness
## 10520                                                                                                                                       Starship Troopers
## 10521                                                                                                                             Mortal Kombat: Annihilation
## 10523                                                                                                                                     Alien: Resurrection
## 10525                                                                                                                                            Home Alone 3
## 10526                                                                                                                                                 Titanic
## 10527                                                                                                                                            Jackie Brown
## 10530                                                                                                                                               Hard Rain
## 10532                                                                                                                                             Spice World
## 10533                                                                                                                                             Deep Rising
## 10534                                                                                                                                     Wedding Singer, The
## 10535                                                                                                                                                  Sphere
## 10537                                                                                                                                        King of New York
## 10538                                                                                                                                           U.S. Marshals
## 10539                                                                                                                                Barney's Great Adventure
## 10540                                                                                                                                             He Got Game
## 10541                                                                                                                           Mr. Nice Guy (Yat goh ho yan)
## 10542                                                                                                                                              Species II
## 10543                                                                                                                                             Deep Impact
## 10544                                                                                                                                                Godzilla
## 10545                                                                                                                          Fear and Loathing in Las Vegas
## 10546                                                                                                                          X-Files: Fight the Future, The
## 10547                                                                                                                                            Dr. Dolittle
## 10550                                                                                                                                              Armageddon
## 10551                                                                                                                                          Small Soldiers
## 10552                                                                                                                            There's Something About Mary
## 10553                                                                                                                                  French Connection, The
## 10556                                                                                                                                                Repo Man
## 10559                                                                                                                                         Friday the 13th
## 10561                                                                                                                                            Child's Play
## 10568                                                                                                                                      Mask of Zorro, The
## 10571                                                                                                                             Back to the Future Part III
## 10573                                                                                                                                                    Dune
## 10574                                                                                                                                Godfather: Part III, The
## 10576                                                                                                                                     Black Cauldron, The
## 10577                                                                                                                                             Hocus Pocus
## 10578                                                                                                                                Honey, I Shrunk the Kids
## 10579                                                                                                                                         Negotiator, The
## 10580                                                                                                                                             BASEketball
## 10583                                                                                                                                      Lady and the Tramp
## 10584                                                                                                                                     Little Mermaid, The
## 10585                                                                                                                                       Mighty Ducks, The
## 10586                                                                                                                                               Peter Pan
## 10587                                                                                                                                Rescuers Down Under, The
## 10588                                                                                                                                           Rescuers, The
## 10590                                                                                                                                         Sleeping Beauty
## 10591                                                                                                                                                    Tron
## 10594                                                                                                                                      Addams Family, The
## 10599                                                                                                                     American Tail: Fievel Goes West, An
## 10600                                                                                                                                                  Legend
## 10602                                                                                                                                                   House
## 10603                                                                                                                                 Gods Must Be Crazy, The
## 10604                                                                                                                      Henry: Portrait of a Serial Killer
## 10605                                                                                                                                  NeverEnding Story, The
## 10606                                                                                                                                     Surf Nazis Must Die
## 10607                                                                                                                                                   Blade
## 10611                                                                                                                                              Dirty Work
## 10614                                                                                                                                         Say Anything...
## 10616                                                                                                                                               Rush Hour
## 10620                                                                                                                                     Edward Scissorhands
## 10621                                                                                                                                                    Antz
## 10622                                                                                                                                         My Cousin Vinny
## 10624                                                                                                                        Bride of Chucky (Child's Play 4)
## 10626                                                                                                                                           Pleasantville
## 10627                                                                                                                     Life Is Beautiful (La Vita è bella)
## 10628                                                                                                                      Tales from the Darkside: The Movie
## 10630                                                                                                                                           Waterboy, The
## 10631                                                                                                                                          Meet Joe Black
## 10632                                                                                                                                      Enemy of the State
## 10633                                                                                                                                           Bug's Life, A
## 10635                                                                                                                                          Police Academy
## 10636                                                                                                                                         Very Bad Things
## 10637                                                                                                                                          Simple Plan, A
## 10638                                                                                                                                    Prince of Egypt, The
## 10641                                                                                                                              Rambo: First Blood Part II
## 10642                                                                                                                        First Blood (Rambo: First Blood)
## 10643                                                                                                                                               Rambo III
## 10644                                                                                                                                     Romancing the Stone
## 10646                                                                                                                                               Rocky III
## 10647                                                                                                                                                Rocky IV
## 10648                                                                                                                                                 Rocky V
## 10651                                                                                                                               Karate Kid, Part III, The
## 10652                                                                                                                                         You've Got Mail
## 10654                                                                                                                                            Faculty, The
## 10655                                                                                                                                        Mighty Joe Young
## 10657                                                                                                                                               Gate, The
## 10660                                                                                                                          Texas Chainsaw Massacre 2, The
## 10662                                                                                                                                        Crocodile Dundee
## 10663                                                                                                                                                 Payback
## 10664                                                                                                             Fantastic Planet, The (Planète sauvage, La)
## 10666                                                                                                                                             Logan's Run
## 10668                                                                                                                                        Cruel Intentions
## 10670                                                                                                                                            Dead Ringers
## 10671                                                                                                                                           Baby Geniuses
## 10674                                                                                                                              10 Things I Hate About You
## 10676                                                                                                                          Twin Dragons (Shuang long hui)
## 10679                                                                                                                                              Entrapment
## 10680                                                                                                                                              Idle Hands
## 10681                                                                                                                                              Mummy, The
## 10682                                                                                                               Star Wars: Episode I - The Phantom Menace
## 10683                                                                                                                          Rocky Horror Picture Show, The
## 10684                                                                                                                                            Notting Hill
## 10685                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 10688                                                                                                                                               Big Daddy
## 10689                                                                                                                                           Arachnophobia
## 10690                                                                                                                    South Park: Bigger, Longer and Uncut
## 10691                                                                                                                                          Wild Wild West
## 10692                                                                                                                                            American Pie
## 10694                                                                                                                                Blair Witch Project, The
## 10696                                                                                                                                             Lake Placid
## 10698                                                                                                                                         Ghostbusters II
## 10699                                                                                                                                        Inspector Gadget
## 10700                                                                                                                                           Deep Blue Sea
## 10701                                                                                                                                             Mystery Men
## 10702                                                                                                                                           Runaway Bride
## 10704                                                                                                                                     Mosquito Coast, The
## 10705                                                                                                                                  Little Shop of Horrors
## 10706                                                                                                                                         Iron Giant, The
## 10708                                                                                                                                               Bowfinger
## 10709                                                                                                                                               Airplane!
## 10710                                                                                                                                                     Big
## 10711                                                                                                                                           Problem Child
## 10713                                                                                                                                       Universal Soldier
## 10716                                                                                                                                             Blue Streak
## 10717                                                                                                                                                Caligula
## 10720                                                                                                                                               Excalibur
## 10721                                                                                Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak)
## 10722                                                                                                                                             Three Kings
## 10723                                                                                                                                           Monkey Shines
## 10724                                                                                                                                                Phantasm
## 10725                                                                                                                                          Risky Business
## 10734                                                                                                                          Home Alone 2: Lost in New York
## 10736                                                                                                                                            Time Bandits
## 10737                                                                                                                                                    Bats
## 10739                                                                                                                                Who Framed Roger Rabbit?
## 10742                                                                                                                                    Bride of Re-Animator
## 10744                                                                                                                                             Re-Animator
## 10747                                                                                                                                              Spaceballs
## 10750                                                                                                                                                   Dogma
## 10751                                                                                             Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 10752                                                                                                                                           Sleepy Hollow
## 10753                                                                                                                                World Is Not Enough, The
## 10754                                                                                                                                        Fatal Attraction
## 10757                                                                                                                                             End of Days
## 10759                                                                                                                              Deuce Bigalow: Male Gigolo
## 10760                                                                                                                                         Green Mile, The
## 10762                                                                                                                                                Magnolia
## 10763                                                                                                                                        Any Given Sunday
## 10765                                                                                                                                            Galaxy Quest
## 10767                                                                                                                            Fast Times at Ridgemont High
## 10770                                                                                                                                           Wayne's World
## 10771                                                                                                                                         Wayne's World 2
## 10772                                                                                                                                  League of Their Own, A
## 10773                                                                                                                                           Patriot Games
## 10776                                                                                                                                            Mariachi, El
## 10777                                                                                                                                                Scream 3
## 10778                                                                                                                                    Boondock Saints, The
## 10780                                                                                                                                             Pitch Black
## 10782                                                                                                                             Hoosiers (a.k.a. Best Shot)
## 10783                                                                                                                                             Bull Durham
## 10787                                                                                                                                            Jungle Fever
## 10788                                                                                                                            Teenage Mutant Ninja Turtles
## 10789                                                                                                 Teenage Mutant Ninja Turtles II: The Secret of the Ooze
## 10790                                                                                                                        Teenage Mutant Ninja Turtles III
## 10791                                                                                                                                   Good Morning, Vietnam
## 10792                                                                                                                      Close Encounters of the Third Kind
## 10796                                                                                                                                                    Hook
## 10798                                                                                                                                                Predator
## 10801                                                                                                                                     Love and Basketball
## 10802                                                                                                                                                   U-571
## 10803                                                                                                                                             Carnosaur 2
## 10804                                                                                                                             Carnosaur 3: Primal Species
## 10807                                                                                                                                       Battlefield Earth
## 10808                                                                                                                                               Road Trip
## 10809                                                                                                                                  Mission: Impossible II
## 10810                                                                                                                                         Blazing Saddles
## 10812                                                                                                                                  Light Years (Gandahar)
## 10813                                                                                                                                                 Porky's
## 10816                                                                                                                                                 Mad Max
## 10817                                                                                                                           Road Warrior, The (Mad Max 2)
## 10818                                                                                                                              Mad Max Beyond Thunderdome
## 10820                                                                                                                                      Gone in 60 Seconds
## 10821                                                                                                                                               Near Dark
## 10824                                                                                                                             Big Trouble in Little China
## 10825                                                                                                                                              Titan A.E.
## 10826                                                                                                                                             Chicken Run
## 10827                                                                                                                                      Me, Myself & Irene
## 10828                                                                                                                                            Patriot, The
## 10829                                                                                                                                      Perfect Storm, The
## 10831                                                                                                                                             Scary Movie
## 10832                                                                                                                                                   X-Men
## 10833                                                                                                                          Nutty Professor II: The Klumps
## 10834                                                                                                                                              Hollow Man
## 10836                                                                                                                                       Tao of Steve, The
## 10837                                                                                                                                       Replacements, The
## 10838                                                                                                                                             Bring It On
## 10840                                                                                                                                     Remember the Titans
## 10841                                                                                                                                              Hellraiser
## 10844                                                                                                                                               Tigerland
## 10845                                                                                                                                         Ladies Man, The
## 10846                                                                                                                                                Ghoulies
## 10847                                                                                                                                             Ghoulies II
## 10848                                                                                                                                            Billy Elliot
## 10851                                                                                                                                        Charlie's Angels
## 10852                                                                                                                                            Little Nicky
## 10853                                                                                                                                            6th Day, The
## 10854                                                                                                                                             Unbreakable
## 10855                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 10856                                                                                                                            Planes, Trains & Automobiles
## 10861                                                                                                                                   Dude, Where's My Car?
## 10862                                                                                                                                         What Women Want
## 10863                                                                                                                                       Finding Forrester
## 10864                                                                                                                                               Cast Away
## 10865                                                                                                                                       Miss Congeniality
## 10868                                                                                                                                     Save the Last Dance
## 10869                                                                                                                                    Wedding Planner, The
## 10870                                                                                                                                       Beverly Hills Cop
## 10873                                                                                                                                          Lost Boys, The
## 10874                                                                                                                                      Monster Squad, The
## 10875                                                                                                                                                Hannibal
## 10876                                                                                                                                    Revenge of the Nerds
## 10877                                                                                                                                      Enemy at the Gates
## 10879                                                                                                                                                Spy Kids
## 10881                                                                                                                                   Bridget Jones's Diary
## 10882                                                                                                                                     Freddy Got Fingered
## 10884                                                                                                                                      Mummy Returns, The
## 10886                                                                                                                                        Knight's Tale, A
## 10888                                                                                                                                            Moulin Rouge
## 10889                                                                                                                                            Pearl Harbor
## 10890                                                                                                                                             Animal, The
## 10891                                                                                                                                               Evolution
## 10892                                                                                                                                               Swordfish
## 10895                                                                                                                                 Lara Croft: Tomb Raider
## 10897                                                                                                                            A.I. Artificial Intelligence
## 10898                                                                                                                                              Sexy Beast
## 10899                                                                                                                                           Scary Movie 2
## 10900                                                                                                                            Cheech & Chong's Nice Dreams
## 10901                                                                                                                                                Suspiria
## 10903                                                                                                                                           Game of Death
## 10906                                                                                                                                          Legally Blonde
## 10907                                                                                                                                              Score, The
## 10908                                                                                                                                                    More
## 10910                                                                                                                                                  Colors
## 10912                                                                                                                          Return of the Living Dead, The
## 10914                                                                                                                        Bill & Ted's Excellent Adventure
## 10916                                                                                                                                               Kickboxer
## 10917                                                                                                                                               Leviathan
## 10918                                                                                                                                         Little Monsters
## 10919                                                                                                                                      Look Who's Talking
## 10921                                                                                                                                       Jurassic Park III
## 10924                                                                                                                                      Planet of the Apes
## 10925                                                                                                                                             Basket Case
## 10926                                                                                                                                             Rush Hour 2
## 10928                                                                                                                                          American Pie 2
## 10929                                                                                                                                             Others, The
## 10930                                                                                                                                                Rat Race
## 10931                                                                                                                          Jay and Silent Bob Strike Back
## 10932                                                                                                                                        Jeepers Creepers
## 10933                                                                                                                                                 Glitter
## 10934                                                                                                                                            Training Day
## 10936                                                                                                                                               Zoolander
## 10937                                                                                                                                             Serendipity
## 10939                                                                                                                                        Mulholland Drive
## 10941                                                                                                                                               From Hell
## 10945                                                                                                                                          Monsters, Inc.
## 10946                                                                                                                                             Shallow Hal
## 10947                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 10948                                                                                                                                            Black Knight
## 10949                                                                                                                                        Beastmaster, The
## 10950                                                                                                                                          Ocean's Eleven
## 10951                                                                                                                                  Not Another Teen Movie
## 10952                                                                                                                                             Vanilla Sky
## 10954                                                                                                                              Bill & Ted's Bogus Journey
## 10955                                                                                                           Spacehunter: Adventures in the Forbidden Zone
## 10956                                                                                                                                                How High
## 10961                                                                                                                                           Orange County
## 10962                                                                                                                                     Conan the Destroyer
## 10963                                                                                                                             Dragon: The Bruce Lee Story
## 10965                                                                                                                                              Rollerball
## 10967                                                                                                                                          Super Troopers
## 10968                                                                                                                                     Bad News Bears, The
## 10970                                                                                                                                   40 Days and 40 Nights
## 10971                                                                                                                                        We Were Soldiers
## 10974                                                                                                                                              Motel Hell
## 10975                                                                          Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le)
## 10976                                                                                                                                                 Ice Age
## 10977                                                                                                                                           Resident Evil
## 10979                                                                                                                                              Panic Room
## 10980                                                                                                                           National Lampoon's Van Wilder
## 10981                                                                                                                                                 Frailty
## 10982                                                                                                                                My Big Fat Greek Wedding
## 10983                                                                                                                                       The Scorpion King
## 10986                                                                                                            Star Wars: Episode II - Attack of the Clones
## 10987                                                                                                                                                Insomnia
## 10988                                                                                                                                      Undercover Brother
## 10989                                                                                                                                    Bourne Identity, The
## 10990                                                                                                                                         Minority Report
## 10991                                                                                                                                               Mr. Deeds
## 10992                                                                                                                                  Look Who's Talking Now
## 10993                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 10994                                                                                                                                           Reign of Fire
## 10995                                                                                                                                       Road to Perdition
## 10996                                                                                                                             Austin Powers in Goldmember
## 10997                                                                                                                                                   Signs
## 10998                                                                                                                   Spy Kids 2: The Island of Lost Dreams
## 10999                                                                                                                                                     xXx
## 11000                                                                                                                                              Blue Crush
## 11002                                                                                                                                              Hot Shots!
## 11003                                                                                                                                              Barbershop
## 11004                                                                                                                                        Transporter, The
## 11005                                                                                                                                    Ernest Scared Stupid
## 11006                                                                                                                                               Secretary
## 11008                                                                                                                                             Tuxedo, The
## 11009                                                                                                                                              Red Dragon
## 11013                                                                                                                                               Ring, The
## 11015                                                                                                                    Jason Goes to Hell: The Final Friday
## 11016                                                                                                                                        Faces of Death 2
## 11017                                                                                                                                          Faces of Death
## 11018                                                                                                                                        Faces of Death 3
## 11019                                                                                                                                        Faces of Death 4
## 11021                                                                                                                                                  8 Mile
## 11022                                                                                                                 Harry Potter and the Chamber of Secrets
## 11023                                                                                                                                         Treasure Planet
## 11026                                                                                                                                          Hot Chick, The
## 11027                                                                                                                                       Maid in Manhattan
## 11030                                                                                                                                          Antwone Fisher
## 11031                                                                                                                                       Gangs of New York
## 11034                                                                                                                                                 Chicago
## 11037                                                                                                                            How to Lose a Guy in 10 Days
## 11038                                                                                                                                        Shanghai Knights
## 11039                                                                                                                                               Daredevil
## 11040                                                                                                                                              Old School
## 11041                                                                                                                                 Bringing Down the House
## 11042                                                                                                                                        Tears of the Sun
## 11043                                                                                                                                    Bend It Like Beckham
## 11045                                                                                                                                             Phone Booth
## 11046                                                                                                                                        Anger Management
## 11047                                                                                                                                    Malibu's Most Wanted
## 11048                                                                                                                                   Andromeda Strain, The
## 11050                                                                                                                                        X2: X-Men United
## 11051                                                                                                                                          Daddy Day Care
## 11052                                                                                                                                    Matrix Reloaded, The
## 11053                                                                                                                                          Bruce Almighty
## 11055                                                                                                                                        Italian Job, The
## 11056                                                                                                                                              Wrong Turn
## 11057                                                                                                          2 Fast 2 Furious (Fast and the Furious 2, The)
## 11059                                                                                                                                           28 Days Later
## 11060                                                                                                                         Charlie's Angels: Full Throttle
## 11061                                                                                                                                                    Hulk
## 11062                                                                                                                      Terminator 3: Rise of the Machines
## 11064                                                                                                                                             Bad Boys II
## 11066                                                                                                              Lara Croft Tomb Raider: The Cradle of Life
## 11067                                                                                                                                              Seabiscuit
## 11068                                                                                                                                 Spy Kids 3-D: Game Over
## 11069                                                                                                                     Remo Williams: The Adventure Begins
## 11070                                                                                                                       American Wedding (American Pie 3)
## 11071                                                                                                                                           Freaky Friday
## 11072                                                                                                                                                S.W.A.T.
## 11073                                                                                                                                            Brain Damage
## 11074                                                                                                                                        Freddy vs. Jason
## 11076                                                                                                                                                Commando
## 11077                                                                                                                                      Jeepers Creepers 2
## 11078                                                                                                                                             Cabin Fever
## 11082                                                                                                                                              Underworld
## 11084                                                                                                                                              Videodrome
## 11087                                                                                                                      Monty Python's The Meaning of Life
## 11089                                                                                                                                            Ginger Snaps
## 11090                                                                                                                           Ninja Scroll (Jûbei ninpûchô)
## 11091                                                                                                                                          School of Rock
## 11094                                                                                                                                                   Radio
## 11095                                                                                                                                           Scary Movie 3
## 11096                                                                                                                                           Interstate 60
## 11097                                                                                                                                 Matrix Revolutions, The
## 11098                                                                                                                                                     Elf
## 11099                                                                                                         Master and Commander: The Far Side of the World
## 11100                                                                                                                                                 Gothika
## 11101                                                                                                                                                21 Grams
## 11102                                                                                                                                               Bad Santa
## 11103                                                                                                                                           New Jack City
## 11107                                                                                                                                               Teen Wolf
## 11108                                                                                                                                            Witches, The
## 11109                                                                                                                                Witches of Eastwick, The
## 11113                                                                                                                                              Leprechaun
## 11115                                                                                                                                       Last Samurai, The
## 11116                                                                                                                                                Big Fish
## 11118                                                                                                                                    Cheaper by the Dozen
## 11120                                                                                                                                    The Butterfly Effect
## 11122                                                                                                                                          50 First Dates
## 11123                                                                                                                                    King Solomon's Mines
## 11125                                                                                                                              Passion of the Christ, The
## 11126                                                                                                                                                 Hidalgo
## 11127                                                                                                                                         Starsky & Hutch
## 11128                                                                                                                                     Girl Next Door, The
## 11129                                                                                                                                        Dawn of the Dead
## 11131                                                                                                                                        Ladykillers, The
## 11132                                                                                                                                                 Hellboy
## 11133                                                                                                                                        Dawn of the Dead
## 11134                                                                                                                                                Munchies
## 11137                                                                                                                                             Man on Fire
## 11138                                                                                                                                             Van Helsing
## 11139                                                                                                                                                    Troy
## 11143                                                                                                                                  Look Who's Talking Too
## 11144                                                                                                                                               Explorers
## 11146                                                                                                                                                    Dune
## 11148                                                                                                                                 Tremors II: Aftershocks
## 11149                                                                                                                           Tremors 3: Back to Perfection
## 11150                                                                                                                       Samurai Fiction (SF: Episode One)
## 11152                                                                                                                                             From Beyond
## 11153                                                                                                                                                   Dolls
## 11156                                                                                                                                                 Shrek 2
## 11157                                                                                                                                 Day After Tomorrow, The
## 11158                                                                                                                                              Soul Plane
## 11159                                                                                                                Harry Potter and the Prisoner of Azkaban
## 11160                                                                                                                              Chronicles of Riddick, The
## 11161                                                                                                                                     Garfield: The Movie
## 11162                                                                                                                                     Stepford Wives, The
## 11163                                                                                                                                       Napoleon Dynamite
## 11164                                                                                                                                                  Freaks
## 11165                                                                                                                             Around the World in 80 Days
## 11166                                                                                                                        Dodgeball: A True Underdog Story
## 11168                                                                                                                                            White Chicks
## 11169                                                                                                                                         Fahrenheit 9/11
## 11170                                                                                                                                            Spider-Man 2
## 11172                                                                                                                                             King Arthur
## 11174                                                                                                                                                I, Robot
## 11175                                                                                                                                   Bourne Supremacy, The
## 11176                                                                                                                                            Village, The
## 11178                                                                                                                                              Collateral
## 11179                                                                                                                     Harold and Kumar Go to White Castle
## 11180                                                                                                                                 AVP: Alien vs. Predator
## 11181                                                                                                                                               Yu-Gi-Oh!
## 11182                                                                                                                                     Night of the Demons
## 11183                                                                                                                            SuperBabies: Baby Geniuses 2
## 11184                                                                                                                               Resident Evil: Apocalypse
## 11188                                                                                                                                                  Primer
## 11189                                                                                                                              Team America: World Police
## 11190                                                                                                                           Fearless Vampire Killers, The
## 11191                                                                                                                                             Grudge, The
## 11192                                                                                                                                                Sideways
## 11195                                                                                                                                        Incredibles, The
## 11196                                                                                                                                       National Treasure
## 11197                                                                                                                                          Ocean's Twelve
## 11200                                                                                                                                             Hobbit, The
## 11201                                                                                                                                Raiders of Atlantis, The
## 11203                                                                                                                 Better Tomorrow, A (Ying hung boon sik)
## 11204                                                                                                                                      Prince of Darkness
## 11206                                                                                                                                           Frankenhooker
## 11208                                                                                                             Hearts of Darkness: A Filmmakers Apocalypse
## 11211                                                                                                                              From the Earth to the Moon
## 11216                                                                                                                                  Daria: Is It Fall Yet?
## 11217                                                                                                                                         Ali G Indahouse
## 11220                                                                                                                                    Battlestar Galactica
## 11223                                                                                                Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka)
## 11224                                                                                                         Lemony Snicket's A Series of Unfortunate Events
## 11225                                                                                                                                       Ju-on: The Grudge
## 11227                                                                                                                        Ginger Snaps Back: The Beginning
## 11228                                                                                                             Starship Troopers 2: Hero of the Federation
## 11229                                                                                                   Interstella 5555: The 5tory of the 5ecret 5tar 5ystem
## 11231                                                                                                                                               Spanglish
## 11233                                                                                                                                       Scanner Darkly, A
## 11237                                                                                                                                            Aviator, The
## 11238                                                                                                                                           Woodsman, The
## 11239                                                                                                                                        Meet the Fockers
## 11241                                                                                                                                            Coach Carter
## 11242                                                                                                               Beastmaster 2: Through the Portal of Time
## 11243                                                                                                                                       Are We There Yet?
## 11244                                                                                                                                               Boogeyman
## 11246                                                                                                                                                   Hitch
## 11247                                                                                                                                             Constantine
## 11248                                                                                                                                Kung Fu Hustle (Gong fu)
## 11249                                                                                                      Thief and the Cobbler, The (a.k.a. Arabian Knight)
## 11252                                                                                                                                                  Sahara
## 11253                                                                                                                   Hitchhiker's Guide to the Galaxy, The
## 11255                                                                                                                                            House of Wax
## 11258                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 11259                                                                                                                                        Mr. & Mrs. Smith
## 11261                                                                                                                                        Land of the Dead
## 11262                                                                                                                                       War of the Worlds
## 11263                                                                                                                                          Fantastic Four
## 11264                                                                                                                                        Wedding Crashers
## 11265                                                                                                                                             Island, The
## 11266                                                                                                                                                Serenity
## 11267                                                                                                                                          Broken Flowers
## 11268                                                                                                                          Deuce Bigalow: European Gigolo
## 11269                                                                                                                                 40-Year-Old Virgin, The
## 11270                                                                                                                                           Transporter 2
## 11271                                                                                                                                             Lord of War
## 11272                                                                                                    Family Guy Presents Stewie Griffin: The Untold Story
## 11273                                                                                                                                               Aeon Flux
## 11276                                                                                                                                     Kiss Kiss Bang Bang
## 11277                                                                                                                                        Proposition, The
## 11278                                                                                                                                                  Saw II
## 11279                                                                                                                                                 Jarhead
## 11280                                                                                                                                  Get Rich or Die Tryin'
## 11281                                                                                                                                       Pride & Prejudice
## 11283                                                                                                                     Harry Potter and the Goblet of Fire
## 11284                                                                                                                                             Match Point
## 11285                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 11286                                                                                                                                               King Kong
## 11288                                                                                                                                  Fun with Dick and Jane
## 11289                                                                                                                                                  Hostel
## 11290                                                                                                                                           Grandma's Boy
## 11291                                                                                                                                                   Troll
## 11292                                                                                                                                              Date Movie
## 11294                                                                                                                                               16 Blocks
## 11296                                                                                                                                   Thank You for Smoking
## 11299                                                                                                                                    Hills Have Eyes, The
## 11302                                                                                                                                           Scary Movie 4
## 11304                                                                                                    Protector, The (a.k.a. Warrior King) (Tom yum goong)
## 11305                                                                                                                                 Mission: Impossible III
## 11306                                                                                                                                      Da Vinci Code, The
## 11308                                                                                                                                             Nacho Libre
## 11309                                                                                                                                                   Click
## 11310                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 11311                                                                                                                                      You, Me and Dupree
## 11312                                                                                                                                               Clerks II
## 11314                                                                                    Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The)
## 11315                                                                                                                         Garfield: A Tail of Two Kitties
## 11316                                                                                                                                    Little Miss Sunshine
## 11317                                                                                                                                              Little Man
## 11318                                                                                                                                       Snakes on a Plane
## 11319                                                                                                             Talladega Nights: The Ballad of Ricky Bobby
## 11320                                                                                                                                     Night at the Museum
## 11322                                                                                                                               Pursuit of Happyness, The
## 11323                                                                                                                                                   Crank
## 11325                                                                                                                                                Beerfest
## 11326                                                                                                                                               Crossover
## 11328                                                                                                                                           Fountain, The
## 11329                                                                                                                                              Apocalypto
## 11330                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 11331                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 11333                                                                                                                                           Grudge 2, The
## 11335                                                                                                                                                Shortbus
## 11338                                                                                                                                                 Saw III
## 11340                                                                                                                                       Déjà Vu (Deja Vu)
## 11341                                                                                                          National Lampoon's Van Wilder: The Rise of Taj
## 11342                                                                                                                                                Turistas
## 11343                                                                                                                                           Blood Diamond
## 11344                                                                                                                                                  Eragon
## 11345                                                                                                                                            Rocky Balboa
## 11348                                                                                                                                                   Kenny
## 11349                                                                                                                                            Smokin' Aces
## 11350                                                                                                                                              Epic Movie
## 11351                                                                                                                                                  Norbit
## 11352                                                                                                                                             Ratatouille
## 11353                                                                                                                                                Hot Fuzz
## 11356                                                                                                                                                     300
## 11358                                                                                                                                 Hills Have Eyes II, The
## 11359                                                                                                                                         Blades of Glory
## 11360                                                                                                                                              Grindhouse
## 11361                                                                                                                                                Sunshine
## 11362                                                                                                                                               Disturbia
## 11363                                                                                                    Aqua Teen Hunger Force Colon Movie Film for Theaters
## 11365                                                                                                                                            Spider-Man 3
## 11367                                                                                                                                              Knocked Up
## 11368                                                                                                                                          28 Weeks Later
## 11369                                                                                                                                         Shrek the Third
## 11370                                                                                                                Pirates of the Caribbean: At World's End
## 11372                                                                                                                                        Ocean's Thirteen
## 11374                                                                                                                                             Death Proof
## 11376                                                                                                                                   Live Free or Die Hard
## 11377                                                                                                                                            Transformers
## 11378                                                                                                               Harry Potter and the Order of the Phoenix
## 11379                                                                                                                                     Across the Universe
## 11380                                                                                                                                     Simpsons Movie, The
## 11381                                                                                                                                   Bourne Ultimatum, The
## 11382                                                                                                                                        Bratz: The Movie
## 11385                                                                                                                                             Rush Hour 3
## 11386                                                                                                                                          Rocket Science
## 11387                                                                                                                                           Planet Terror
## 11392                                                                                                                               Resident Evil: Extinction
## 11393                                                                                                                                         Good Luck Chuck
## 11395                                                                                                                                 Darjeeling Limited, The
## 11397                                                                                                                                                  Saw IV
## 11399                                                                                                                                       American Gangster
## 11400                                                                                                                      Before the Devil Knows You're Dead
## 11402                                                                                                                                          Be Kind Rewind
## 11403                                                                                                                                                 Beowulf
## 11404                                                                                                                                         Southland Tales
## 11406                                                                                                                                             I Am Legend
## 11407                                                                                                                            Futurama: Bender's Big Score
## 11408                                                                                                                                                    Juno
## 11409                                                                                                                                        Bucket List, The
## 11410                                                                                                          Sweeney Todd: The Demon Barber of Fleet Street
## 11411                                                                                                                      National Treasure: Book of Secrets
## 11413                                                                                                                     AVPR: Aliens vs. Predator - Requiem
## 11414                                                                                                                                             Cloverfield
## 11415                                                                                                                                         Rambo (Rambo 4)
## 11416                                                                                                                                       Meet the Spartans
## 11417                                                                                                                             Hellboy II: The Golden Army
## 11419                                                                                                                                                  Jumper
## 11420                                                                                                                                      Witless Protection
## 11421                                                                                                                                               10,000 BC
## 11422                                                                                                                                           Bank Job, The
## 11424                                                                                                                                          Love Guru, The
## 11427                                                                                                                                         Never Back Down
## 11428                                                                                                                                                      21
## 11429                                                                                                                                              Ruins, The
## 11430                                                                                                                               Forgetting Sarah Marshall
## 11431                                                                                                                                         Superhero Movie
## 11432                                                                                                               Harold & Kumar Escape from Guantanamo Bay
## 11433                                                                                                                                                Iron Man
## 11434                                                                                                                                                   Taken
## 11435                                                                                                                                               Fall, The
## 11436                                                                                                      Indiana Jones and the Kingdom of the Crystal Skull
## 11437                                                                                                                                           Kung Fu Panda
## 11438                                                                                                                           You Don't Mess with the Zohan
## 11440                                                                                                                                          Happening, The
## 11441                                                                                                                                                  WALL·E
## 11442                                                                                                                                                  Wanted
## 11443                                                                                                                                                 Hancock
## 11444                                                                                                                                               Get Smart
## 11447                                                                                                                   It's the Great Pumpkin, Charlie Brown
## 11449                                                                                                                                                Watchmen
## 11450                                                                                                                                                   Felon
## 11452                                                                                                                                       Pineapple Express
## 11453                                                                                                                                          Tropic Thunder
## 11454                                                                                                                                              Death Race
## 11455                                                                                                                                      Burn After Reading
## 11456                                                                                                                                          Disaster Movie
## 11457                                                                                                                                        Onion Movie, The
## 11458                                                                                                                                               Max Payne
## 11459                                                                                                                              Zack and Miri Make a Porno
## 11461                                                                                                                      High School Musical 3: Senior Year
## 11462                                                                                                                                 Futurama: Bender's Game
## 11463                                                                                                                                               Road, The
## 11465                                                                                                                                       Quantum of Solace
## 11466                                                                                                                                             Role Models
## 11467                                                                                                                                 Beverly Hills Chihuahua
## 11468                                                                                                                                                Splinter
## 11470                                                                                                                                                Twilight
## 11472                                                                                                                           Starship Troopers 3: Marauder
## 11478                                                                                                                                                Valkyrie
## 11480                                                                                                                 Poultrygeist: Night of the Chicken Dead
## 11482                                                                                                                                               Outlander
## 11483                                                                                                                                           Grudge 3, The
## 11485                                                                                                                    Futurama: Into the Wild Green Yonder
## 11486                                                                                                                              Afro Samurai: Resurrection
## 11488                                                                                                                    Ong-Bak 2: The Beginning (Ong Bak 2)
## 11490                                                                                                                               Anvil! The Story of Anvil
## 11491                                                                                                                                      Observe and Report
## 11492                                                                                                                                           Adventureland
## 11493                                                                                                            Fast & Furious (Fast and the Furious 4, The)
## 11498                                                                                                                                X-Men Origins: Wolverine
## 11499                                                                                                                                               Star Trek
## 11500                                                                                                                                  Great Buck Howard, The
## 11501                                                                                                                                         Angels & Demons
## 11502                                                                                                                                               Chop Shop
## 11503                                                                                                                                         Drag Me to Hell
## 11505                                      Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono)
## 11506                                                                                                                                             Dance Flick
## 11507                                                                                                                                           Hangover, The
## 11508                                                                                                                             Taking of Pelham 1 2 3, The
## 11510                                                                                                                                          Public Enemies
## 11511                                                                                                                               Daria: Is It College Yet?
## 11512                                                                                                                  Watchmen: Tales of the Black Freighter
## 11514                                                                                                                  Harry Potter and the Half-Blood Prince
## 11515                                                                                                                                              District 9
## 11517                                                                                                                                                 Troll 2
## 11518                                                                                                                                                       9
## 11521                                                                                                                                                 Extract
## 11522                                                                                                                                     Paranormal Activity
## 11526                                                                                                                                            Next Day Air
## 11528                                                                                                                               Where the Wild Things Are
## 11529                                                                                                                                     Law Abiding Citizen
## 11531                                                                                                                                          Black Dynamite
## 11533                                                                                                                                        Merry Madagascar
## 11538                                                                                                                                             Daybreakers
## 11539                                                                                                                                        Book of Eli, The
## 11544                                                                                                                                    From Paris with Love
## 11545                                                                                                                                       Brooklyn's Finest
## 11547                                                                                                                                         Leaves of Grass
## 11548                                                                                                                                    Slammin' Salmon, The
## 11549                                                                                                                                    Hot Tub Time Machine
## 11552                                                                                                                                  Five Minutes of Heaven
## 11553                                                                                                                                              Iron Man 2
## 11554                                                                                                                                              Four Lions
## 11555                                                                                                                                     You Don't Know Jack
## 11556                                                                                                                                              Robin Hood
## 11557                                                                                                                                    Get Him to the Greek
## 11558                                                                                                                                                  Splice
## 11559                                                                                                                                                    Exam
## 11560                                                                                                                                             A-Team, The
## 11562                                                                                                                                           Winter's Bone
## 11563                                                                                                                             Twilight Saga: Eclipse, The
## 11565                                                                                                                                               Predators
## 11568                                                                                                                                 Kids Are All Right, The
## 11569                                                                                                                           Serbian Film, A (Srpski film)
## 11572                                                                                                                                                Ip Man 2
## 11573                                                                                                                                        Expendables, The
## 11575                                                                                                                                          Animal Kingdom
## 11576                                                                                                                                    Piranha (Piranha 3D)
## 11577                                                                                      Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese)
## 11582                                                                                                                                               Let Me In
## 11583                                                                                                                                                   Devil
## 11584                                                                                                                                                  Kaboom
## 11585                                                                                                                                               127 Hours
## 11588                                                                                                  1990: The Bronx Warriors (1990: I guerrieri del Bronx)
## 11592                                                                                                                                         Loved Ones, The
## 11597                                                                                                                                        Cowboys & Aliens
## 11599                                                                                                                                                    Paul
## 11605                                                                                                                                                 Win Win
## 11607                                                                                                                 Fast Five (Fast and the Furious 5, The)
## 11612                                                                                                                                      Everything Must Go
## 11614                                                                                                                                         Horrible Bosses
## 11617                                                                                                                                                   Drive
## 11618                                                                                                                      Captain America: The First Avenger
## 11620                                                                                                                          Rise of the Planet of the Apes
## 11621                                                                                                                                           Another Earth
## 11623                                                                                                                                               Red State
## 11624                                                                                                                                               Contagion
## 11627                                                                                                                                                   50/50
## 11628                                                                                                                             We Need to Talk About Kevin
## 11629                                                                                                                                                 Carnage
## 11630                                                                                                                                             Margin Call
## 11632                                                                                                                                      Expendables 2, The
## 11637                                                                                                                                               Grey, The
## 11638                                                                                                                                         Innkeepers, The
## 11640                                                                                                                                             John Carter
## 11641                                                                                                                                                    Goon
## 11643                                                                                                                       American Reunion (American Pie 4)
## 11647                                                                                                                                              Battleship
## 11650                                                                                                                           Pirates! Band of Misfits, The
## 11654                                                                 Dragon Ball: Sleeping Princess in Devil's Castle (Doragon bôru: Majinjô no nemuri hime)
## 11655 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)
## 11656                                                               Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen)
## 11658                                                              Dragon Ball Z: The Return of Cooler (Doragon bôru Z 6: Gekitotsu! Hyakuoku pawâ no senshi)
## 11662                                                                                                                             Beasts of the Southern Wild
## 11663                                                                    Dragon Ball Z: Bio-Broly (Doragon bôru Z 11: Sûpâ senshi gekiha! Katsu no wa ore da)
## 11664                                                                  Dragon Ball Z: Fusion Reborn (Doragon bôru Z 12: Fukkatsu no fyushon!! Gokû to Bejîta)
## 11665                                                                                                                                            Total Recall
## 11666                                                Dragon Ball Z: Wrath of the Dragon (Doragon bôru Z 13: Ryûken bakuhatsu!! Gokû ga yaraneba dare ga yaru)
## 11669                                                           Dragon Ball GT: A Hero's Legacy (Doragon bôru GT: Gokû gaiden! Yûki no akashi wa sû-shin-chû)
## 11671                                                                                                                                           Campaign, The
## 11672                                                                                                                                              ParaNorman
## 11673                                                                                                                                                 Lawless
## 11674                                                                                                                                           Pitch Perfect
## 11676                                                                                                                                                   Dredd
## 11681                                                                                                                                     Killing Them Softly
## 11682                                                                                                                                          Wreck-It Ralph
## 11684                                                                                                                                                  Flight
## 11686                                                                                                                                                 Redline
## 11690                                                                                                                                            Jack Reacher
## 11693                                                                                                                                          Gangster Squad
## 11698                                                                                                                                                Oblivion
## 11699                                                                                                                                             Pain & Gain
## 11703                                                                                                                                       Great Gatsby, The
## 11705                                                                                                          Fast & Furious 6 (Fast and the Furious 6, The)
## 11707                                                                                                                                            Man of Steel
## 11709                                                                                                                                             Pacific Rim
## 11710                                                                                                                                             World War Z
## 11711                                                                                                                                                 Elysium
## 11712                                                                                                                                        Lone Ranger, The
## 11713                                                                                                                                       Fruitvale Station
## 11714                                                                                                                                          Conjuring, The
## 11715                                                                                                                                          Wolverine, The
## 11719                                                                                                                                                 Don Jon
## 11721                                                                                                                                            Ender's Game
## 11724                                                                                                                         The Hunger Games: Catching Fire
## 11725                                                                                                                    Hobbit: The Desolation of Smaug, The
## 11726                                                                                                                                                47 Ronin
## 11729                                                                                                                        Secret Life of Walter Mitty, The
## 11731                                                                                                                                           Lone Survivor
## 11732                                                                                                                       Anchorman 2: The Legend Continues
## 11734                                                                                                                           Dragon Ball Z: Battle of Gods
## 11735                                                                                                                             Dragon ball Z 04: Lord Slug
## 11736                                                                                        Dragon Ball: The Path to Power (Doragon bôru: Saikyô e no michi)
## 11737                                                                                                                                               Divergent
## 11740                                                                                                                                 Nymphomaniac: Volume II
## 11744                                                                                                                                          Need for Speed
## 11745                                                                                                                                               Bad Words
## 11746                                                                                                                                                    Noah
## 11749                                                                                                                                                   Locke
## 11750                                                                                                                                                    Lucy
## 11752                                                                                                                                                Godzilla
## 11753                                                                                                                                             Kelly & Cal
## 11754                                                                                                                                              Maleficent
## 11756                                                                                                                      Mission: Impossible - Rogue Nation
## 11759                                                                                                                                                 Boyhood
## 11760                                                                                                                                           Babadook, The
## 11763                                                                                                                          Dawn of the Planet of the Apes
## 11764                                                                                                                                     Purge: Anarchy, The
## 11767                                                                                                                            Teenage Mutant Ninja Turtles
## 11768                                                                                                                            Sin City: A Dame to Kill For
## 11770                                                                                                                                        Maze Runner, The
## 11772                                                                                                                                                    Tusk
## 11775                                                                                                                                               John Wick
## 11779                                                                                                                      Simpsons: The Longest Daycare, The
## 11780                                                                                                                                                       9
## 11781                                                                                                                                      Stonehearst Asylum
## 11783                                                                                                                   The Hunger Games: Mockingjay - Part 1
## 11784                                                                                                                                       Dear White People
## 11786                                                                                                                                          Jurassic World
## 11787                                                                                                                                              The Voices
## 11788                                                                                                               The Hobbit: The Battle of the Five Armies
## 11789                                                                                                                            Kingsman: The Secret Service
## 11790                                                                                                                                                 Chappie
## 11791                                                                                                                                              It Follows
## 11795                                                                                                                                                 Ant-Man
## 11797                                                                                                                                       X-Men: Apocalypse
## 11798                                                                                                                          Rudolph the Red-Nosed Reindeer
## 11799                                                                                                                                                    Dope
## 11801                                                                                                                                             Backcountry
## 11802                                                                                                                                                    Muck
## 11803                                                                                                                                             The Lobster
## 11805                                                                                                                                                 Minions
## 11806                                                                                                                                         The Jungle Book
## 11809                                                                                                                                                 Sicario
## 11810                                                                                                                                               The Witch
## 11812                                                                                                                                               Deathgasm
## 11815                                                                                                                                          Big Short, The
## 11816                                                                                                                                     10 Cloverfield Lane
## 11817                                                                                                                                    The Brothers Grimsby
## 11819                                                                                                                                                    Hush
## 11821                                                                                                                                          The Video Dead
## 11822                                                                                                                                         The Conjuring 2
## 11823                                                                                                                           Kingsglaive: Final Fantasy XV
## 11826                                                                                                                                                  Casino
## 11835                                                                                                                                         Pallbearer, The
## 11838                                                                                                                            Monty Python's Life of Brian
## 11839                                                                                                                              E.T. the Extra-Terrestrial
## 11849                                                                                                                                                 Titanic
## 11851                                                                                                                                             Deep Impact
## 11854                                                                                                                                                   Rocky
## 11861                                                                                                                                                      54
## 11866                                                                                                                                          Wing Commander
## 11870                                                                                                                                                Superman
## 11874                                                                                                                                               Toy Story
## 11875                                                                                                                                        Grumpier Old Men
## 11880                                                                                                                                                Stargate
## 11882                                                                                                                                             Client, The
## 11885                                                                                                                                                Maverick
## 11887                                                                                                                                                 Timecop
## 11888                                                                                                                                          Demolition Man
## 11889                                                                                                                                           Jurassic Park
## 11890                                                                                                                                              Piano, The
## 11891                                                                                                                               Robin Hood: Men in Tights
## 11895                                                                                                                                                  Batman
## 11897                                                                                                                                                  Eraser
## 11898                                                                                                                                               Lone Star
## 11899                                                                                                                                          Godfather, The
## 11900                                                                                                                               Island of Dr. Moreau, The
## 11901                                                                                                                                     Singin' in the Rain
## 11908                                                                                                                            Monty Python's Life of Brian
## 11909                                                                                                                                              Abyss, The
## 11911                                                                                                                                     Princess Bride, The
## 11913                                                                                      Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 11914                                                                                                                                   To Kill a Mockingbird
## 11915                                                                                                                                          Apocalypse Now
## 11918                                                                                                                                 Godfather: Part II, The
## 11919                                                                                                                                                 Amadeus
## 11920                                                                                                                                              Sting, The
## 11921                                                                                                                                         Terminator, The
## 11925                                                                                                                                           Groundhog Day
## 11931                                                                                                                                             Real Genius
## 11932                                                                                                                                Star Trek: First Contact
## 11933                                                                                                                                             Sling Blade
## 11934                                                                                                                           Star Trek IV: The Voyage Home
## 11935                                                                                                                                            Benny & Joon
## 11936                                                                                                             Austin Powers: International Man of Mystery
## 11937                                                                                                                               Men in Black (a.k.a. MIB)
## 11940                                                                                                                                                 Titanic
## 11941                                                                                                                                              Armageddon
## 11942                                                                                                                                               Labyrinth
## 11943                                                                                                                                             Poltergeist
## 11944                                                                                                                                                Gremlins
## 11945                                                                                                                                            Goonies, The
## 11947                                                                                                                             Back to the Future Part III
## 11948                                                                                                                    Indiana Jones and the Temple of Doom
## 11949                                                                                                                                           Weird Science
## 11951                                                                                                                                                   Blade
## 11952                                                                                                                                             Beetlejuice
## 11954                                                                                                                                                Rounders
## 11957                                                                                                                          2010: The Year We Make Contact
## 11958                                                                                                                                           Bug's Life, A
## 11959                                                                                                                                                  Fletch
## 11961                                                                                                                                         You've Got Mail
## 11965                                                                                                                                                eXistenZ
## 11967                                                                                                                                          Arlington Road
## 11968                                                                                                                                Blair Witch Project, The
## 11969                                                                                                                                                     Big
## 11971                                                                                                                                            Total Recall
## 11972                                                                                                                                              Fight Club
## 11973                                                                                                                                        Live and Let Die
## 11975                                                                                                                                            Falling Down
## 11977                                                                                                                                                Scrooged
## 11978                                                                                                                                         Green Mile, The
## 11979                                                                                                                                        Scent of a Woman
## 11981                                                                                                                                               Frequency
## 11983                                                                                                                                                   X-Men
## 11984                                                                                                                                        Meet the Parents
## 11986                                                                                                                                      Enemy at the Gates
## 11988                                                                                                                                                   Shrek
## 11989                                                                                                                        Bill & Ted's Excellent Adventure
## 11994                                                                                                                              Bill & Ted's Bogus Journey
## 11996                                                                                                                                              Brainstorm
## 11997                                                                                                                                       Time Machine, The
## 12001                                                                                                                                                Identity
## 12002                                                                                                                      Terminator 3: Rise of the Machines
## 12007                                                                                                                                               Explorers
## 12011                                                                                                                                          Blade: Trinity
## 12012                                                                                                                                             Jacket, The
## 12018                                                                                                                                    Hills Have Eyes, The
## 12020                                                                                                                                 Quick and the Dead, The
## 12021                                                                                                                                      Secret Garden, The
## 12025                                                                                                                                            My Left Foot
## 12026                                                                                                                                    Arsenic and Old Lace
## 12029                                                                                                                                               Peter Pan
## 12032                                                                                                                                         Blazing Saddles
## 12034                                                                                                      How the Grinch Stole Christmas (a.k.a. The Grinch)
## 12037                                                                                                                                           Blood Diamond
## 12038                                                                                                                                                Stardust
## 12040                                                                                                                                                    Heat
## 12041                                                                                                                                               GoldenEye
## 12043                                                                                                                                                    Babe
## 12044                                                                                                                                                Clueless
## 12046                                                                                                                                      Mr. Holland's Opus
## 12047                                                                                                                                     From Dusk Till Dawn
## 12048                                                                                                                                               Screamers
## 12049                                                                                                                                            Broken Arrow
## 12050                                                                                                                                              Braveheart
## 12052                                                                                                                                           Birdcage, The
## 12053                                                                                                                                            Crimson Tide
## 12054                                                                                                                                               Desperado
## 12055                                                                                                                              Die Hard: With a Vengeance
## 12056                                                                                                                                             Judge Dredd
## 12057                                                                                                                                                Net, The
## 12058                                                                                                                                              Waterworld
## 12060                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 12061                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 12063                                                                                                                                    Natural Born Killers
## 12064                                                                                                                                                Outbreak
## 12066                                                                                                                                            Pulp Fiction
## 12069                                                                                                                                  Star Trek: Generations
## 12070                                                                                                                                 While You Were Sleeping
## 12071                                                                                                                              Ace Ventura: Pet Detective
## 12072                                                                                                                                Clear and Present Danger
## 12074                                                                                                                                            Forrest Gump
## 12075                                                                                                                                          Lion King, The
## 12076                                                                                                                                               Mask, The
## 12077                                                                                                                                                   Speed
## 12078                                                                                                                                               True Lies
## 12079                                                                                                                                                Airheads
## 12080                                                                                                                                          Demolition Man
## 12081                                                                                                                                           Fugitive, The
## 12082                                                                                                                                           Jurassic Park
## 12083                                                                                                                                          Mrs. Doubtfire
## 12084                                                                                                                                            Blade Runner
## 12086                                                                                                                                              Home Alone
## 12087                                                                                                                                                   Ghost
## 12088                                                                                                                                                 Aladdin
## 12090                                                                                                                                      Dances with Wolves
## 12091                                                                                                                                                  Batman
## 12092                                                                                                                               Silence of the Lambs, The
## 12093                                                                                                                                    Beauty and the Beast
## 12094                                                                                                                                            Pretty Woman
## 12095                                                                                                                                                   Fargo
## 12096                                                                                                                                     Mission: Impossible
## 12097                                                                                                         Wallace & Gromit: The Best of Aardman Animation
## 12098                                                                                                                                               Rock, The
## 12099                                                                                                                                                 Twister
## 12101                                                                                                                         Wallace & Gromit: A Close Shave
## 12103                                                                                                                           Independence Day (a.k.a. ID4)
## 12104                                                                                                                               Crow: City of Angels, The
## 12105                                                                                                                                        Escape from L.A.
## 12107                                                                                                                                   2001: A Space Odyssey
## 12108                                                                                                                                                Die Hard
## 12110                                                                                                                                    Fish Called Wanda, A
## 12112                                                                                                                              E.T. the Extra-Terrestrial
## 12115                                                                                                                    Wallace & Gromit: The Wrong Trousers
## 12122                                                                                                                                          Apocalypse Now
## 12124                                                                                                                                                   Alien
## 12126                                                                                                                                                     Ran
## 12128                                                                                                                                       Full Metal Jacket
## 12129                                                                                                                Grand Day Out with Wallace and Gromit, A
## 12131                                                                                                                                            Shining, The
## 12134                                                                                                                                      Back to the Future
## 12135                                                                                                                                                   Akira
## 12136                                                                                                                                      Young Frankenstein
## 12140                                                                                                                                                  Grease
## 12141                                                                                                                                                    Jaws
## 12142                                                                                                                                           Jerry Maguire
## 12145                                                                                                                                                 Con Air
## 12146                                                                                                                               Men in Black (a.k.a. MIB)
## 12147                                                                                                                                                 Contact
## 12148                                                                                                                                                   Spawn
## 12150                                                                                                                                                 Gattaca
## 12152                                                                                                                                        Truman Show, The
## 12153                                                                                                                                       Good Will Hunting
## 12154                                                                                                                                                 Titanic
## 12155                                                                                                                                       Big Lebowski, The
## 12156                                                                                                                                     Blues Brothers 2000
## 12157                                                                                                                                                  Sphere
## 12158                                                                                                                                      As Good as It Gets
## 12159                                                                                                                                              Armageddon
## 12160                                                                                                                            There's Something About Mary
## 12161                                                                                                                                                Rain Man
## 12163                                                                                                                                     Breakfast Club, The
## 12164                                                                                                                                           Lethal Weapon
## 12165                                                                                                                                         Lethal Weapon 2
## 12168                                                                                                                             Back to the Future Part III
## 12169                                                                                                                                                    Dune
## 12170                                                                                                                                Honey, I Shrunk the Kids
## 12171                                                                                                                                     Little Mermaid, The
## 12179                                                                                                                                     Edward Scissorhands
## 12181                                                                                                                                           Bug's Life, A
## 12182                                                                                                                                                Rushmore
## 12183                                                                                                                                         Howard the Duck
## 12185                                                                                                                                             Logan's Run
## 12186                                                                                                                                      Planet of the Apes
## 12187                                                                                                                                        Cruel Intentions
## 12190                                                                                                                                                Election
## 12192                                                                                                               Star Wars: Episode I - The Phantom Menace
## 12193                                                                                                                                                Superman
## 12194                                                                                                                                             Superman II
## 12195                                                                                                                                            Notting Hill
## 12198                                                                                                                                            American Pie
## 12199                                                                                                                                      Muppets From Space
## 12200                                                                                                                                Blair Witch Project, The
## 12204                                                                                                                                                     Big
## 12205                                                                                                                                       Universal Soldier
## 12206                                                                                                                                         American Beauty
## 12207                                                                                                                                            Total Recall
## 12211                                                                                                                                                 RoboCop
## 12212                                                                                                                                               RoboCop 2
## 12213                                                                                                                                Who Framed Roger Rabbit?
## 12218                                                                                                                                           Sleepy Hollow
## 12219                                                                                                                                             Toy Story 2
## 12221                                                                                                                                  Cider House Rules, The
## 12222                                                                                                                                            Galaxy Quest
## 12225                                                                                                                                Buffy the Vampire Slayer
## 12228                                                                                                                                 Great Muppet Caper, The
## 12229                                                                                                                             Muppets Take Manhattan, The
## 12230                                                                                                                                         Erin Brockovich
## 12231                                                                                                                                         Thelma & Louise
## 12233                                                                                                                                       Creature Comforts
## 12234                                                                                                                            Teenage Mutant Ninja Turtles
## 12235                                                                                                 Teenage Mutant Ninja Turtles II: The Secret of the Ooze
## 12238                                                                                                                                               Gladiator
## 12239                                                                                                                                  Mission: Impossible II
## 12243                                                                                                                              Mad Max Beyond Thunderdome
## 12244                                                                                                                                             Chicken Run
## 12245                                                                                                                                            Patriot, The
## 12247                                                                                                                                             Bring It On
## 12248                                                                                                                                           Almost Famous
## 12249                                                                                                                                        Charlie's Angels
## 12251                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 12253                                                                                                                              O Brother, Where Art Thou?
## 12254                                                                                                                    Don't Tell Mom the Babysitter's Dead
## 12255                                                                                                                                             Cherry 2000
## 12256                                                                                                                                   Bridget Jones's Diary
## 12257                                                                                                                                      Mummy Returns, The
## 12258                                                                                                                                                   Shrek
## 12259                                                                                                                       Final Fantasy: The Spirits Within
## 12260                                                                                                                                          Legally Blonde
## 12263                                                                                                                          Return of the Living Dead, The
## 12265                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 12266                                                                                                                                          Ocean's Eleven
## 12267                                                                                                                                   Royal Tenenbaums, The
## 12268                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 12269                                                                                                                                       Time Machine, The
## 12271                                                                                                                                                Blade II
## 12273                                                                                                            Star Wars: Episode II - Attack of the Clones
## 12274                                                                                                                                         Minority Report
## 12275                                                                                                                                                   Signs
## 12278                                                                                                                                            Strange Brew
## 12279                                                                                                                                   Bowling for Columbine
## 12281                                                                                                                 Harry Potter and the Chamber of Secrets
## 12283                                                                                                                                       Last Unicorn, The
## 12284                                                                                                                                               Daredevil
## 12285                                                                                                                                             Phone Booth
## 12286                                                                                                                                   Andromeda Strain, The
## 12287                                                                                                                                          Fahrenheit 451
## 12288                                                                                                                                                Wiz, The
## 12291                                                                                                                                    Matrix Reloaded, The
## 12292                                                                                                                                            Finding Nemo
## 12293                                                                                                                      Terminator 3: Rise of the Machines
## 12296                                                                                                                                                THX 1138
## 12297                                                                                                                                       Pink Panther, The
## 12301                                                                                                                                       Kill Bill: Vol. 1
## 12302                                                                                                                                 Matrix Revolutions, The
## 12304                                                                                                                                       Last Samurai, The
## 12306                                                                                                                                                Paycheck
## 12311                                                                                                                                       Kill Bill: Vol. 2
## 12313                                                                                                                                               Bedazzled
## 12320                                                                                                                Harry Potter and the Prisoner of Azkaban
## 12322                                                                                                                                         Fahrenheit 9/11
## 12324                                                                                                                                                I, Robot
## 12327                                                                                                                                                     Ray
## 12329                                                                                                                                Twilight Zone: The Movie
## 12330                                                                                                                                         Nuns on the Run
## 12331                                                                                                                                       Bring It On Again
## 12333                                                                                                                                                 Wizards
## 12334                                                                                                                                                 Elektra
## 12336                                                                                                                                Kung Fu Hustle (Gong fu)
## 12338                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 12340                                                                                                                                             Island, The
## 12342                                                                                                    Family Guy Presents Stewie Griffin: The Untold Story
## 12345                                                                                                        Wallace & Gromit in The Curse of the Were-Rabbit
## 12346                                                                                                                                            Descent, The
## 12349                                                                                                                                   X-Men: The Last Stand
## 12351                                                                                                                                             Half Nelson
## 12353                                                                                                                                                   Sicko
## 12354                                                                                                                                                 Jumanji
## 12358                                                                                                                                                    Babe
## 12362                                                                                                                                              Braveheart
## 12363                                                                                                                                             Taxi Driver
## 12365                                                                                                                                               Apollo 13
## 12379                                                                                                                                          Lion King, The
## 12381                                                                                                                                           Jurassic Park
## 12385                                                                                                                                                 Aladdin
## 12392                                                                                                                                    Nutty Professor, The
## 12394                                                                                                                                       Wizard of Oz, The
## 12395                                                                                                                                   2001: A Space Odyssey
## 12397                                                                                                                                          Reservoir Dogs
## 12399                                                                                                                              E.T. the Extra-Terrestrial
## 12400                                                                                                                         Monty Python and the Holy Grail
## 12403                                                                                                                                     Clockwork Orange, A
## 12407                                                                                                                                                   Alien
## 12410                                                                                                                                           Groundhog Day
## 12413                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 12419                                                                                                                           Star Trek IV: The Voyage Home
## 12422                                                                                                             Austin Powers: International Man of Mystery
## 12425                                                                                                                               Men in Black (a.k.a. MIB)
## 12427                                                                                                                                               G.I. Jane
## 12433                                                                                                                                        Truman Show, The
## 12444                                                                                                                            There's Something About Mary
## 12449                                                                                                                                     Saving Private Ryan
## 12450                                                                               Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 12465                                                                                                                          Rocky Horror Picture Show, The
## 12466                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 12476                                                                                                                                   House on Haunted Hill
## 12486                                                                                                                                                 Network
## 12487                                                                                                                                    Virgin Suicides, The
## 12492                                                                                                                                      Perfect Storm, The
## 12498                                                                                                                                            Billy Elliot
## 12499                                                                                                                                        Charlie's Angels
## 12502                                                                                                                                             Unbreakable
## 12506                                                                                                                                   Dude, Where's My Car?
## 12507                                                                                                                                         What Women Want
## 12508                                                                                                                                               Cast Away
## 12514                                                                                                                                                   Shrek
## 12524                                                                                                                                        Jeepers Creepers
## 12526                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 12536                                                                                                                                           Reign of Fire
## 12540                                                                                                                                              Ghost Ship
## 12548                                                                                                                                            Finding Nemo
## 12550                                                                                                                      Terminator 3: Rise of the Machines
## 12551                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 12567                                                                                                                Harry Potter and the Prisoner of Azkaban
## 12568                                                                                                                                           Super Size Me
## 12575                                                                                                                                             Grudge, The
## 12576                                                                                                                                       National Treasure
## 12583                                                                                                                                       War of the Worlds
## 12587                                                                                                                     Harry Potter and the Goblet of Fire
## 12589                                                                                                                                          V for Vendetta
## 12594                                                                                                                                           Casino Royale
## 12617                                                                                                                                               Toy Story
## 12618                                                                                                                                                 Jumanji
## 12619                                                                                                                                                 Sabrina
## 12620                                                                                                                                               Apollo 13
## 12621                                                                                                                      Star Wars: Episode IV - A New Hope
## 12622                                                                                                                              Ace Ventura: Pet Detective
## 12624                                                                                                                                               Mask, The
## 12625                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 12626                                                                                                                                           Jurassic Park
## 12627                                                                                                                                               RoboCop 3
## 12628                                                                                                                                                   Ghost
## 12629                                                                                                                                                 Aladdin
## 12630                                                                                                                                                  Batman
## 12631                                                                                                                                     Mission: Impossible
## 12632                                                                                                                                                 Twister
## 12633                                                                                                                                           Trainspotting
## 12634                                                                                                                           Independence Day (a.k.a. ID4)
## 12635                                                                                                                                   2001: A Space Odyssey
## 12636                                                                                                                              E.T. the Extra-Terrestrial
## 12637                                                                                                                                                 Top Gun
## 12638                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 12639                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 12640                                                                                                                      Indiana Jones and the Last Crusade
## 12641                                                                                                             Austin Powers: International Man of Mystery
## 12642                                                                                                                               Men in Black (a.k.a. MIB)
## 12643                                                                                                                                                 Titanic
## 12644                                                                                                                                              Armageddon
## 12645                                                                                                                                 Poseidon Adventure, The
## 12646                                                                                                                                 Gods Must Be Crazy, The
## 12647                                                                                                                               Karate Kid, Part III, The
## 12648                                                                                                                                             Matrix, The
## 12649                                                                                                               Star Wars: Episode I - The Phantom Menace
## 12650                                                                                                                                                Superman
## 12651                                                                                                                                             Superman II
## 12652                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 12653                                                                                                                                Ferris Bueller's Day Off
## 12654                                                                                                                                               Bamba, La
## 12655                                                                                                                                               Gladiator
## 12656                                                                                                                                              Predator 2
## 12657                                                                                                                                                 Mad Max
## 12658                                                                                                                                                   X-Men
## 12659                                                                                                                 Godzilla 2000 (Gojira ni-sen mireniamu)
## 12660                                                                                                                                                   Shrek
## 12661                                                                                                                                          Monsters, Inc.
## 12662                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 12663                                                                                                                                              Spider-Man
## 12664                                                                                                                  Lord of the Rings: The Two Towers, The
## 12665                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 12666                                                                                                          Lord of the Rings: The Return of the King, The
## 12667                                                                                                                                                  Robots
## 12668                                                                                                                              Good Night, and Good Luck.
## 12669                                                                                                                                   Underworld: Evolution
## 12670                                                                                                                                             Silent Hill
## 12671                                                                                                                                           Blood Diamond
## 12672                                                                                                                                                 Jumanji
## 12675                                                                                                                                               GoldenEye
## 12677                                                                                                                                             Money Train
## 12682                                                                                                                           How to Make an American Quilt
## 12683                                                                                                                                     Usual Suspects, The
## 12685                                                                                                                                            Nick of Time
## 12686                                                                                                                                     Vampire in Brooklyn
## 12687                                                                                                                                            Broken Arrow
## 12688                                                                                                                                               City Hall
## 12689                                                                                                                          Bridges of Madison County, The
## 12691                                                                                                                                           Birdcage, The
## 12693                                                                                                                                     Scarlet Letter, The
## 12695                                                                                                                                             Heavy Metal
## 12700                                                                                                                                              Striptease
## 12705                                                                                                                                              Phenomenon
## 12711                                                                                                                                                    Safe
## 12713                                                                                                                Three Colors: White (Trzy kolory: Bialy)
## 12714                                                                                                                               Shawshank Redemption, The
## 12715                                                                                                              In the Realm of the Senses (Ai no corrida)
## 12716                                                                                                                                              Piano, The
## 12721                                                                                                                                     Singin' in the Rain
## 12727                                                                                                                 Manon of the Spring (Manon des sources)
## 12728                                                                                                                         Monty Python and the Holy Grail
## 12732                                                                                      Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 12734                                                                                                                                              Goodfellas
## 12741                                                                                                                      Unbearable Lightness of Being, The
## 12743                                                                                                                         Dracula (Bram Stoker's Dracula)
## 12745                                                                                                                                  Picnic at Hanging Rock
## 12750                                                                                                                                         You've Got Mail
## 12761                                                                                                                                               Gladiator
## 12768                                                                                                                                            Billy Elliot
## 12780                                                                                                                                            Donnie Darko
## 12781                                                                                               That Obscure Object of Desire (Cet obscur objet du désir)
## 12783                                                                                                                                          Don't Look Now
## 12786                                                                                                                                         Simone (S1m0ne)
## 12788                                                                                                                                          White Oleander
## 12792                                                                                                                             Irreversible (Irréversible)
## 12793                                                                                                                                              Straw Dogs
## 12803                                                                                                                                           Dreamers, The
## 12810                                                                                                                                           Genghis Blues
## 12814                                                                       Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom)
## 12821                                                                                                                                           Notebook, The
## 12835                                                                                                               Green Street Hooligans (a.k.a. Hooligans)
## 12837                                                                                                                                           Tony Takitani
## 12838                                                                                                                                                  Volver
## 12841                                                                                                                                        Illusionist, The
## 12842                                                                                                                                           Fountain, The
## 12847                                                                                                                                           Paranoid Park
## 12850                                                                                                                                Vicky Cristina Barcelona
## 12854                                                                                                                                                    Nana
## 12857                                                                                                                                    (500) Days of Summer
## 12859                                                                                                                       Still Walking (Aruitemo aruitemo)
## 12860                                                                                                                                                  Avatar
## 12863                                                                                                                                               Inception
## 12864                                                                                                                                     Social Network, The
## 12866                                                                                                                                              Black Swan
## 12868                                                                                                                                               True Grit
## 12869                                                                                                                                               GoldenEye
## 12870                                                                                                                                              Get Shorty
## 12877                                                                                                                                          Batman Forever
## 12878                                                                                                                                                   Congo
## 12879                                                                                                                              Die Hard: With a Vengeance
## 12880                                                                                                                                              Waterworld
## 12884                                                                                                                                    Natural Born Killers
## 12885                                                                                                                                                Outbreak
## 12888                                                                                                                                                Stargate
## 12890                                                                                                                                  Star Trek: Generations
## 12892                                                                                                                              Ace Ventura: Pet Detective
## 12895                                                                                                                                               Mask, The
## 12896                                                                                                                                               True Lies
## 12897                                                                                                                                    Addams Family Values
## 12898                                                                                                                                   Beverly Hills Cop III
## 12899                                                                                                                                             Cliffhanger
## 12900                                                                                                                                               Coneheads
## 12901                                                                                                                                               Firm, The
## 12902                                                                                                                                           Fugitive, The
## 12905                                                                                                                                                  Batman
## 12909                                                                                                                                              Get Shorty
## 12912                                                                                                                                                  Friday
## 12913                                                                                                                                           Bottle Rocket
## 12916                                                                                                                                                 Rob Roy
## 12922                                                                                                                                        Corrina, Corrina
## 12925                                                                                                                                                   Speed
## 12927                                                                                                                                           Jurassic Park
## 12929                                                                                                                                              Serial Mom
## 12934                                                                                                                                        Frighteners, The
## 12946                                                                                                                                         Terminator, The
## 12956                                                                                                                                             Sling Blade
## 12967                                                                                                                                              Armageddon
## 12968                                                                                                                                          Small Soldiers
## 12969                                                                                                                            There's Something About Mary
## 12971                                                                                                                                           Lethal Weapon
## 12972                                                                                                                                               Jerk, The
## 12979                                                                                                                                                  Fletch
## 12983                                                                                                                                             Matrix, The
## 12998                                                                                                                                                Scrooged
## 13000                                                                                                                                                Magnolia
## 13003                                                                                                                            Fast Times at Ridgemont High
## 13005                                                                                                                                           Wayne's World
## 13021                                                                                                                                            Patriot, The
## 13025                                                                                                                 Naked Gun 2 1/2: The Smell of Fear, The
## 13027                                                                                                                                            Best in Show
## 13028                                                                                                                                               Tigerland
## 13029                                                                                                                                       Miss Congeniality
## 13034                                                                                                                                     Freddy Got Fingered
## 13039                                                                                                                                                   Twins
## 13040                                                                                                                        Bill & Ted's Excellent Adventure
## 13043                                                                                                                                               Novocaine
## 13045                                                                                                                                             Vanilla Sky
## 13051                                                                                                                                         Minority Report
## 13052                                                                                                                                        Ladykillers, The
## 13053                                                                                                                                            Strange Brew
## 13055                                                                                                                                        Punch-Drunk Love
## 13056                                                                                                                                              Adaptation
## 13057                                                                                                                                          Bruce Almighty
## 13058                                                                                                                                                 Tremors
## 13064                                                                                                                        Dodgeball: A True Underdog Story
## 13068                                                                                                                                 40-Year-Old Virgin, The
## 13069                                                                                                                                               Toy Story
## 13073                                                                                                                                            Forrest Gump
## 13074                                                                                                                              Terminator 2: Judgment Day
## 13077                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 13079                                                                                                                               Hunt for Red October, The
## 13080                                                                                                                                     Saving Private Ryan
## 13081                                                                                                                                         Few Good Men, A
## 13082                                                                                                                                      American History X
## 13084                                                                                                                                         American Beauty
## 13087                                                                                                                                             Toy Story 2
## 13090                                                                                                                                  Mission: Impossible II
## 13093                                                                                                                                      Me, Myself & Irene
## 13096                                                                                                                                             Unbreakable
## 13097                                                                                                                                         Family Man, The
## 13099                                                                                                                                      Mummy Returns, The
## 13101                                                                                                                                            Pearl Harbor
## 13102                                                                                                                                             Rush Hour 2
## 13106                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 13111                                                                                                                                    Bourne Identity, The
## 13112                                                                                                                                         Minority Report
## 13113                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 13114                                                                                                                             Austin Powers in Goldmember
## 13115                                                                                                                                              Red Dragon
## 13117                                                                                                                                     Catch Me If You Can
## 13119                                                                                                                                        Anger Management
## 13120                                                                                                                                    Matrix Reloaded, The
## 13121                                                                                                                                          Bruce Almighty
## 13122                                                                                                                                            Finding Nemo
## 13123                                                                                                                                        Italian Job, The
## 13124                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 13127                                                                                                                                    The Butterfly Effect
## 13128                                                                                                                                          50 First Dates
## 13131                                                                                                                                 Day After Tomorrow, The
## 13133                                                                                                                                            White Chicks
## 13134                                                                                                                                                I, Robot
## 13135                                                                                                                                   Bourne Supremacy, The
## 13137                                                                                                                                       National Treasure
## 13138                                                                                                                                        Meet the Fockers
## 13140                                                                                                                                                Sin City
## 13143                                                                                                                                        Wedding Crashers
## 13145                                                                                                                                             Lord of War
## 13146                                                                                                                     Harry Potter and the Goblet of Fire
## 13147                                                                                                                                              Inside Man
## 13148                                                                                                                                      Da Vinci Code, The
## 13150                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 13151                                                                                                                Pirates of the Caribbean: At World's End
## 13152                                                                                                               Harry Potter and the Order of the Phoenix
## 13153                                                                                                                                     Simpsons Movie, The
## 13155                                                                                                                                             I Am Legend
## 13158                                                                                                                                                Iron Man
## 13160                                                                                                                                                  Ip Man
## 13161                                                                                                                                    Inglourious Basterds
## 13162                                                                                                                                               Star Trek
## 13164                                                                                                                  Harry Potter and the Half-Blood Prince
## 13169                                                                                                                                                     Red
## 13170                                                                              Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro)
## 13172                                                                                                                                        The Hunger Games
## 13174                                                                                                                        Girl with the Dragon Tattoo, The
## 13177                                                                                                                                                 Skyfall
## 13178                                                                                                                                        Django Unchained
## 13179                                                                                                                                              Iron Man 3
## 13180                                                                                                                         The Hunger Games: Catching Fire
## 13186                                                                                                                                        Grumpier Old Men
## 13187                                                                                                                             Father of the Bride Part II
## 13189                                                                                                                          Ace Ventura: When Nature Calls
## 13191                                                                                                                                               Assassins
## 13192                                                                                                                                           Mortal Kombat
## 13193                                                                                                                              Postman, The (Postino, Il)
## 13196                                                                                                                                                  Casper
## 13197                                                                                                                                                   Congo
## 13200                                                                                                                                                 Hackers
## 13201                                                                                                                                         Johnny Mnemonic
## 13203                                                                                                                                       Lord of Illusions
## 13204                                                                                                                 Mighty Morphin Power Rangers: The Movie
## 13205                                                                                                                                                Net, The
## 13206                                                                                                                                             Nine Months
## 13207                                                                                                                                           Prophecy, The
## 13208                                                                                                                                                 Species
## 13209                                                                                                        To Wong Foo, Thanks for Everything! Julie Newmar
## 13210                                                                                                                                              Waterworld
## 13211                                                                                                                                           Billy Madison
## 13213                                                                                                                                       Dolores Claiborne
## 13216                                                                                                                                      Heavenly Creatures
## 13217                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 13220                                                                                                                                            Little Women
## 13221                                                                                                                                              Mixed Nuts
## 13222                                                                                                                                  Miracle on 34th Street
## 13223                                                                                                                                                    Nell
## 13225                                                                                                                                           Poison Ivy II
## 13233                                                                                                                                               Tank Girl
## 13236                                                                                                                                 While You Were Sleeping
## 13239                                                                                                                                             Client, The
## 13240                                                                                                                                        Flintstones, The
## 13242                                                                                                                             Four Weddings and a Funeral
## 13243                                                                                                                                          Lion King, The
## 13244                                                                         Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 13247                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 13248                                                                                                                                             Richie Rich
## 13251                                                                                   Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 13253                                                                                                                                        Another Stakeout
## 13254                                                                                                                                   Beverly Hills Cop III
## 13256                                                                                                                                             Cliffhanger
## 13257                                                                                                                                     Cops and Robbersons
## 13259                                                                                                                                               Firm, The
## 13261                                                                                                                                    Hot Shots! Part Deux
## 13262                                                                                                                                    Hudsucker Proxy, The
## 13264                                                                                                                                        Last Action Hero
## 13266                                                                                                                                            Philadelphia
## 13267                                                                                                                                               RoboCop 3
## 13268                                                                                                                               Robin Hood: Men in Tights
## 13269                                                                                                                                        Schindler's List
## 13271                                                                                                                                       Super Mario Bros.
## 13273                                                                                                                         Nightmare Before Christmas, The
## 13275                                                                                                                                            True Romance
## 13276                                                                                                                                              Home Alone
## 13277                                                                                                                                                   Ghost
## 13278                                                                                                                                                 Aladdin
## 13280                                                                                                                                      Dances with Wolves
## 13283                                                                                                                         Snow White and the Seven Dwarfs
## 13284                                                                                                                                    Beauty and the Beast
## 13286                                                                                                                                             Heavy Metal
## 13289                                                                                                                                    Operation Dumbo Drop
## 13290                                                                                                                                        Oliver & Company
## 13292                                                                                                                                               Toy Story
## 13293                                                                                                                                 American President, The
## 13297                                                                                                                          Ace Ventura: When Nature Calls
## 13298                                                                                                                                              Get Shorty
## 13299                                                                                                                                       Leaving Las Vegas
## 13305                                                                                                                                                    Babe
## 13310                                                                                                                           How to Make an American Quilt
## 13313                                                                                                                                      Mr. Holland's Opus
## 13316                                                                                                                                         Misérables, Les
## 13318                                                                                                                                Antonia's Line (Antonia)
## 13321                                                                                                                          Bridges of Madison County, The
## 13322                                                                                                                                              Braveheart
## 13324                                                                                                                                Boys of St. Vincent, The
## 13325                                                                                                                 Star Maker, The (Uomo delle stelle, L')
## 13326                                                                                                                              NeverEnding Story III, The
## 13328                                                                                                                                  Brothers McMullen, The
## 13333                                                                                                                                                Clockers
## 13334                                                                                                                                                   Congo
## 13335                                                                                                                                                   Crumb
## 13337                                                                                                                                         Johnny Mnemonic
## 13339                                                                                                                                                Mallrats
## 13340                                                                                                                                             Nine Months
## 13342                                                                                                                                            Strange Days
## 13344                                                                                                                                              Waterworld
## 13348                                                                                                                                        Don Juan DeMarco
## 13350                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 13354                                                                                                                                             Hoop Dreams
## 13357                                                                                                                                                    I.Q.
## 13361                                                                                                                                            Little Women
## 13362                                                                                                                                       Ladybird Ladybird
## 13364                                                                                                                                     Legends of the Fall
## 13367                                                                                                              Mary Shelley's Frankenstein (Frankenstein)
## 13368                                                                                                                                                    Nell
## 13369                                                                                                                                      Nina Takes a Lover
## 13370                                                                                                                                    Natural Born Killers
## 13372                                                                                                                                                Outbreak
## 13376                                                                                                                         Queen Margot (Reine Margot, La)
## 13377                                                                                                                           Ready to Wear (Pret-A-Porter)
## 13381                                                                                                                               Secret of Roan Inish, The
## 13382                                                                                                                                                Stargate
## 13385                                                                                                            Strawberry and Chocolate (Fresa y chocolate)
## 13386                                                                                                                                          Sum of Us, The
## 13388                                                                                                                                               Tom & Viv
## 13389                                                                                                                                   Village of the Damned
## 13393                                                                                                                                   Bullets Over Broadway
## 13395                                                                                                                                        Jungle Book, The
## 13399                                                                                                                                           Reality Bites
## 13400                                                                                   Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 13401                                                                                                                                Beverly Hillbillies, The
## 13402                                                                                                                                           Boxing Helena
## 13405                                                                                                                  Farewell My Concubine (Ba wang bie ji)
## 13406                                                                                                                                               Firm, The
## 13408                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 13409                                                                                                                               House of the Spirits, The
## 13412                                                                                                                          What's Love Got to Do with It?
## 13413                                                                                                                                           Jurassic Park
## 13414                                                                                                                                              Kalifornia
## 13417                                                                                                                                          Mrs. Doubtfire
## 13419                                                                                                                                            Philadelphia
## 13423                                                                                                                                      Secret Garden, The
## 13427                                                                                                                                    Sleepless in Seattle
## 13432                                                                                                                                      Bhaji on the Beach
## 13434                                                                                                                                              Home Alone
## 13435                                                                                                                                                   Ghost
## 13436                                                                                                                                                 Aladdin
## 13437                                                                                                                              Terminator 2: Judgment Day
## 13438                                                                                                                                      Dances with Wolves
## 13439                                                                                                                                                  Batman
## 13442                                                                                                                                    Beauty and the Beast
## 13444                                                                                                                                            Pretty Woman
## 13446                                                                                                                                               Jane Eyre
## 13447                                                                                                                                         Aristocats, The
## 13449                                                                                                                                              Diabolique
## 13450                                                                                                                                           Moll Flanders
## 13451                                                                                                                               James and the Giant Peach
## 13454                                                                                                                            Truth About Cats & Dogs, The
## 13456                                                                                                                                              Craft, The
## 13458                                                                                                                                    Month by the Lake, A
## 13459                                                                                                                  Carmen Miranda: Bananas Is My Business
## 13462                                                                                                                           Independence Day (a.k.a. ID4)
## 13463                                                                                                                            Hunchback of Notre Dame, The
## 13464                                                                                                                                          Cable Guy, The
## 13465                                                                                                                            Adventures of Pinocchio, The
## 13466                                                                                                                                   First Wives Club, The
## 13467                                                                                                            Story of Xinghua, The (Xinghua san yue tian)
## 13468                                                                                                                                           Twelfth Night
## 13470                                                                                                                                                Die Hard
## 13473                                                                                                                    William Shakespeare's Romeo + Juliet
## 13476                                                                                                                                        Bonnie and Clyde
## 13479                                                                                                                                         Mina Tannenbaum
## 13482                                                                                                                                               Toy Story
## 13483                                                                                                                                                 Sabrina
## 13485                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 13487                                                                                                                                      Mr. Holland's Opus
## 13488                                                                                                                                             Black Sheep
## 13489                                                                                                                                            Broken Arrow
## 13491                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 13497                                                                                                                                     Mission: Impossible
## 13498                                                                                                                           Kids in the Hall: Brain Candy
## 13500                                                                                                                                               Rock, The
## 13501                                                                                                                                                 Twister
## 13502                                                                                                                                              Striptease
## 13503                                                                                                                                           Trainspotting
## 13504                                                                                                                           Independence Day (a.k.a. ID4)
## 13506                                                                                                                                                  Eraser
## 13507                                                                                                                                              Phenomenon
## 13508                                                                                                                                                 Tin Cup
## 13509                                                                                                                     Willy Wonka & the Chocolate Factory
## 13510                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 13512                                                                                                                         Beavis and Butt-Head Do America
## 13513                                                                                                                                                 Jumanji
## 13515                                                                                                                                 American President, The
## 13516                                                                                                                                              Get Shorty
## 13517                                                                                                                                         Dangerous Minds
## 13519                                                                                                                                                Clueless
## 13521                                                                                                                                      Mr. Holland's Opus
## 13522                                                                                                                                            Broken Arrow
## 13523                                                                                                                                           Happy Gilmore
## 13526                                                                                                                                          Batman Forever
## 13527                                                                                                                                                   Congo
## 13528                                                                                                                                               Desperado
## 13529                                                                                                                              Die Hard: With a Vengeance
## 13530                                                                                                                                                Net, The
## 13532                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 13533                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 13534                                                                                                                                                  Junior
## 13536                                                                                                                                            Little Women
## 13537                                                                                                                                    Natural Born Killers
## 13538                                                                                                                                            Pulp Fiction
## 13539                                                                                                                                                Stargate
## 13541                                                                                                                             What's Eating Gilbert Grape
## 13543                                                                                                                              Ace Ventura: Pet Detective
## 13544                                                                                                       Adventures of Priscilla, Queen of the Desert, The
## 13545                                                                                                                                             Client, The
## 13550                                                                                                                                                   Speed
## 13551                                                                                                                                               True Lies
## 13552                                                                                                                                               Coneheads
## 13553                                                                                                                                                    Dave
## 13554                                                                                                                                               Firm, The
## 13555                                                                                                                                           Fugitive, The
## 13556                                                                                                                                           Jurassic Park
## 13558                                                                                                                                          Mrs. Doubtfire
## 13561                                                                                                                               Robin Hood: Men in Tights
## 13563                                                                                                                                    Sleepless in Seattle
## 13566                                                                                                                                   Three Musketeers, The
## 13567                                                                                                                                               Tombstone
## 13568                                                                                                                                              Home Alone
## 13569                                                                                                                                                 Aladdin
## 13570                                                                                                                                                  Batman
## 13571                                                                                                                               Silence of the Lambs, The
## 13573                                                                                                                                    Beauty and the Beast
## 13575                                                                                                                                                   Fargo
## 13576                                                                                                                                     Mission: Impossible
## 13577                                                                                                                            Truth About Cats & Dogs, The
## 13578                                                                                                                                               Rock, The
## 13579                                                                                                                                                 Twister
## 13580                                                                                                                         Wallace & Gromit: A Close Shave
## 13582                                                                                                                           Independence Day (a.k.a. ID4)
## 13583                                                                                                                                              Phenomenon
## 13588                                                                                                                                            Mary Poppins
## 13589                                                                                                                     Willy Wonka & the Chocolate Factory
## 13591                                                                                                                            Monty Python's Life of Brian
## 13592                                                                                                                              E.T. the Extra-Terrestrial
## 13594                                                                                                                         Monty Python and the Holy Grail
## 13595                                                                                                                                    English Patient, The
## 13597                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 13602                                                                                                                                            Shining, The
## 13604                                                                                                                                           Groundhog Day
## 13605                                                                                                                                      Back to the Future
## 13608                                                                                                                      Indiana Jones and the Last Crusade
## 13610                                                                                                                                         Field of Dreams
## 13612                                                                                                                                                  Grease
## 13613                                                                                                                                           Mars Attacks!
## 13614                                                                                                                                           Jerry Maguire
## 13615                                                                                                                                         Raising Arizona
## 13616                                                                                                                                                  Scream
## 13617                                                                                                                                               Liar Liar
## 13619                                                                                                             Austin Powers: International Man of Mystery
## 13621                                                                                                                                                Face/Off
## 13622                                                                                                                               Men in Black (a.k.a. MIB)
## 13625                                                                                                                                                 Witness
## 13628                                                                                                                                     Wedding Singer, The
## 13629                                                                                                                                      As Good as It Gets
## 13630                                                                                                                          X-Files: Fight the Future, The
## 13631                                                                                                                                              Armageddon
## 13632                                                                                                                                                Rain Man
## 13633                                                                                                                                     Breakfast Club, The
## 13634                                                                                                                              Back to the Future Part II
## 13635                                                                                                                                Honey, I Shrunk the Kids
## 13636                                                                                                                                                  Splash
## 13637                                                                                                                    Indiana Jones and the Temple of Doom
## 13639                                                                                                                                         Few Good Men, A
## 13641                                                                                                                                         My Cousin Vinny
## 13642                                                                                                                                           Pleasantville
## 13643                                                                                                                                      American History X
## 13644                                                                                                                                      Enemy of the State
## 13645                                                                                                                                           Bug's Life, A
## 13650                                                                                                                                              Mummy, The
## 13651                                                                                                               Star Wars: Episode I - The Phantom Menace
## 13652                                                                                                                                                Superman
## 13655                                                                                                                                Blair Witch Project, The
## 13656                                                                                                                                          Eyes Wide Shut
## 13657                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 13659                                                                                                                                Thomas Crown Affair, The
## 13660                                                                                                                                               Airplane!
## 13666                                                                                                                                                   Dogma
## 13667                                                                                                                                           Sleepy Hollow
## 13670                                                                                                                                  League of Their Own, A
## 13672                                                                                                                                         Thelma & Louise
## 13673                                                                                                                                        Double Indemnity
## 13676                                                                                                                                               Gladiator
## 13677                                                                                                                                             Chicken Run
## 13678                                                                                                                                            Patriot, The
## 13679                                                                                                                                      Perfect Storm, The
## 13680                                                                                                                                                   X-Men
## 13682                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 13687                                                                                                                                                 Memento
## 13689                                                                                                                                            Moulin Rouge
## 13690                                                                                                                                             Others, The
## 13692                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 13697                                                                                                                                       Beautiful Mind, A
## 13698                                                                                                                                                 Ice Age
## 13699                                                                                                                                My Big Fat Greek Wedding
## 13700                                                                                                                                              Spider-Man
## 13702                                                                                                            Star Wars: Episode II - Attack of the Clones
## 13704                                                                                                                                         Minority Report
## 13705                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 13707                                                                                                                                               Ring, The
## 13708                                                                                                                  Lord of the Rings: The Two Towers, The
## 13709                                                                                                                                                 Chicago
## 13712                                                                                                                                          Bruce Almighty
## 13717                                                                                                                                          School of Rock
## 13723                                                                                                          Lord of the Rings: The Return of the King, The
## 13728                                                                                                                Harry Potter and the Prisoner of Azkaban
## 13729                                                                                                                                            Spider-Man 2
## 13733                                                                                                                                       Shaun of the Dead
## 13734                                                                                                                                     Million Dollar Baby
## 13735                                                                                                                       Charlie and the Chocolate Factory
## 13736                                                                                                                                                Sin City
## 13737                                                                                                                                             Fever Pitch
## 13738                                                                                                                                           Batman Begins
## 13739                                                                                                                                                Serenity
## 13740                                                                                                                                 40-Year-Old Virgin, The
## 13742                                                                                                                     Harry Potter and the Goblet of Fire
## 13745                                                                                                                                      Da Vinci Code, The
## 13750                                                                                                                                              Knocked Up
## 13752                                                                                                                                 Darjeeling Limited, The
## 13755                                                                                                      Indiana Jones and the Kingdom of the Crystal Skull
## 13756                                                                                                                                                Watchmen
## 13758                                                                                                                                              The Island
## 13762                                                                                                                                      International, The
## 13763                                                                                                                                               Duplicity
## 13764                                                                                                                     The Butterfly Effect 3: Revelations
## 13778                                                                                                                                               Tank Girl
## 13789                                                                                                                            20,000 Leagues Under the Sea
## 13791                                                                                                                                                   Alien
## 13794                                                                                                                                             Under Siege
## 13836                                                                                                                                       Leaving Las Vegas
## 13840                                                                                                                                              Juror, The
## 13842                                                                                                                                           Birdcage, The
## 13846                                                                                                                               James and the Giant Peach
## 13848                                                                                                                                                 Twister
## 13849                                                                                                                                      I Shot Andy Warhol
## 13851                                                                                                                           Independence Day (a.k.a. ID4)
## 13852                                                                                                                            Hunchback of Notre Dame, The
## 13855                                                                                                                                   First Wives Club, The
## 13862                                                                                                                     Willy Wonka & the Chocolate Factory
## 13869                                                                                                                                            Dante's Peak
## 13871                                                                                                                                              Saint, The
## 13873                                                                                                                  Romy and Michele's High School Reunion
## 13874                                                                                                                                                 Volcano
## 13883                                                                                                                                           Air Force One
## 13885                                                                                                                             Dracula: Dead and Loving It
## 13887                                                                                                                                               Assassins
## 13888                                                                                                                                                    Babe
## 13894                                                                                                                                             Major Payne
## 13903                                                                                                                                            Stupids, The
## 13919                                                                                                                                           Waterboy, The
## 13920                                                                                                                Police Academy 2: Their First Assignment
## 13921                                                                                                                      Police Academy 3: Back in Training
## 13922                                                                                                                    Police Academy 4: Citizens on Patrol
## 13923                                                                                                               Police Academy 5: Assignment: Miami Beach
## 13929                                                                                                                              Deuce Bigalow: Male Gigolo
## 13930                                                                                                                                      Who's Harry Crumb?
## 13933                                                                                                                          Nutty Professor II: The Klumps
## 13935                                                                                                                                            Little Nicky
## 13937                                                                                                                                   Dude, Where's My Car?
## 13938                                                                                                                                    Beverly Hills Cop II
## 13940                                                                                                                                             Animal, The
## 13948                                                                                                                 Dumb and Dumberer: When Harry Met Lloyd
## 13949                                                                                                                                          Johnny English
## 13950                                                                                                                                                  Duplex
## 13955                                                                                                                                            White Chicks
## 13961                                                                                                                                       Pink Panther, The
## 13964                                                                                                                                           Scary Movie 4
## 13966                                                                                                                                              Little Man
## 13967                                                                                                                                                  Norbit
## 13968                                                                                                                                      Mr. Bean's Holiday
## 13972                                                                                                                                           Balls of Fury
## 13973                                                                                                                                       Meet the Spartans
## 13975                                                                                                                                         Superhero Movie
## 13978                                                                                                                           You Don't Mess with the Zohan
## 13987                                                                                                                                                 Killers
## 13992                                                                                                                                     Dinner for Schmucks
## 13993                                                                                                                                                  Easy A
## 13996                                                                                                                                          Little Fockers
## 14000                                                                                                                                        The Hunger Games
## 14009                                                                                                                                           That's My Boy
## 14013                                                                                                                                        World's End, The
## 14016                                                                                                                                             Grown Ups 2
## 14018                                                                                                                         The Hunger Games: Catching Fire
## 14029                                                                                                                                      Dumb and Dumber To
## 14030                                                                                                                                  Paul Blart: Mall Cop 2
## 14035                                                                                                                                                 Jumanji
## 14036                                                                                                                                                    Heat
## 14037                                                                                                                                               GoldenEye
## 14039                                                                                                                          Ace Ventura: When Nature Calls
## 14043                                                                                                                                                Clueless
## 14044                                                                                                                                           Mortal Kombat
## 14048                                                                                                                                      Mr. Holland's Opus
## 14049                                                                                                                                               Screamers
## 14050                                                                                                                                            Broken Arrow
## 14054                                                                                                                                                Bad Boys
## 14055                                                                                                                                               Apollo 13
## 14056                                                                                                                                                 Rob Roy
## 14057                                                                                                                                          Batman Forever
## 14058                                                                                                                                                   Congo
## 14061                                                                                                                              Die Hard: With a Vengeance
## 14062                                                                                                                                         Johnny Mnemonic
## 14063                                                                                                                                             Judge Dredd
## 14064                                                                                                                                       Lord of Illusions
## 14065                                                                                                                 Mighty Morphin Power Rangers: The Movie
## 14066                                                                                                                                             Nine Months
## 14067                                                                                                                                           Prophecy, The
## 14068                                                                                                                                               Showgirls
## 14069                                                                                                                                                 Species
## 14071                                                                                                                                              Waterworld
## 14073                                                                                                                                        Don Juan DeMarco
## 14074                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 14076                                                                                                                                            Forget Paris
## 14078                                                                                                                                                    I.Q.
## 14079                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 14080                                                                                                                                     Legends of the Fall
## 14081                                                                                                              Mary Shelley's Frankenstein (Frankenstein)
## 14082                                                                                                                                    Natural Born Killers
## 14083                                                                                                                                                Outbreak
## 14087                                                                                                                                         Specialist, The
## 14088                                                                                                                                                Stargate
## 14089                                                                                                                                       Santa Clause, The
## 14092                                                                                                             Tales from the Crypt Presents: Demon Knight
## 14093                                                                                                                                  Star Trek: Generations
## 14094                                                                                                                                     Tales from the Hood
## 14095                                                                                                                                   Village of the Damned
## 14096                                                                                                                                               Tommy Boy
## 14097                                                                                                                                 While You Were Sleeping
## 14098                                                                                                                              Ace Ventura: Pet Detective
## 14099                                                                                                                                Clear and Present Danger
## 14100                                                                                                                                             Client, The
## 14101                                                                                                                                               Crow, The
## 14102                                                                                                                                        Flintstones, The
## 14104                                                                                                                             Four Weddings and a Funeral
## 14105                                                                                                                                        Jungle Book, The
## 14106                                                                                                                                          Lion King, The
## 14107                                                                         Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A)
## 14108                                                                                                                                               Mask, The
## 14110                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 14111                                                                                                                                                   Speed
## 14113                                                                                                                                                Airheads
## 14114                                                                                                                                   Beverly Hills Cop III
## 14115                                                                                                                                          Body Snatchers
## 14116                                                                                                            City Slickers II: The Legend of Curly's Gold
## 14117                                                                                                                                             Cliffhanger
## 14118                                                                                                                                               Coneheads
## 14119                                                                                                                                                    Dave
## 14120                                                                                                                                          Demolition Man
## 14121                                                                                                                                               Firm, The
## 14122                                                                                                                                              Free Willy
## 14124                                                                                                                                    Hot Shots! Part Deux
## 14128                                                                                                                                        Last Action Hero
## 14130                                                                                                                                          Mrs. Doubtfire
## 14131                                                                                                                                            Philadelphia
## 14132                                                                                                                                              Piano, The
## 14133                                                                                                                               Robin Hood: Men in Tights
## 14135                                                                                                                             Searching for Bobby Fischer
## 14136                                                                                                                                              Serial Mom
## 14137                                                                                                                                    Sleepless in Seattle
## 14138                                                                                                                            So I Married an Axe Murderer
## 14139                                                                                                                         Nightmare Before Christmas, The
## 14140                                                                                                                                   Three Musketeers, The
## 14143                                                                                                                                                   Ghost
## 14144                                                                                                                                                 Aladdin
## 14147                                                                                                                                                  Batman
## 14149                                                                                                                                            Pretty Woman
## 14150                                                                                                                         Candyman: Farewell to the Flesh
## 14152                                                                                                                                             Heavy Metal
## 14154                                                                                                                                                 Twister
## 14156                                                                                                                           Independence Day (a.k.a. ID4)
## 14158                                                                                                                                 American President, The
## 14161                                                                                                                                       Leaving Las Vegas
## 14164                                                                                                                                      Mr. Holland's Opus
## 14166                                                                                                                                              Waterworld
## 14168                                                                                                     Like Water for Chocolate (Como agua para chocolate)
## 14169                                                                                                                                     Legends of the Fall
## 14172                                                                                                                                        Muriel's Wedding
## 14173                                                                                                                             Four Weddings and a Funeral
## 14174                                                                                                                                          Lion King, The
## 14175                                                                                                                                                Maverick
## 14179                                                                                                                                 Remains of the Day, The
## 14182                                                                                                                                              Home Alone
## 14183                                                                                                                                                   Ghost
## 14184                                                                                                                                                 Aladdin
## 14186                                                                                                                                                  Batman
## 14188                                                                                                                                            Pretty Woman
## 14189                                                                                                                                     Mission: Impossible
## 14190                                                                                                                                               Rock, The
## 14193                                                                                                                                  Breakfast at Tiffany's
## 14196                                                                                                                                        Some Like It Hot
## 14198                                                                                                                                            My Fair Lady
## 14202                                                                                                                     Willy Wonka & the Chocolate Factory
## 14210                                                                                                                                         Terminator, The
## 14211                                                                                                                                                   Glory
## 14212                                                                                                                                      Dead Poets Society
## 14213                                                                                                                                           Graduate, The
## 14216                                                                                                                                      Back to the Future
## 14218                                                                                                                      Indiana Jones and the Last Crusade
## 14221                                                                                                                                                  Grease
## 14222                                                                                                                                                    Jaws
## 14223                                                                                                                                           Jerry Maguire
## 14225                                                                                                                               Men in Black (a.k.a. MIB)
## 14228                                                                                                                                        Truman Show, The
## 14232                                                                                                                                      As Good as It Gets
## 14234                                                                                                                            There's Something About Mary
## 14236                                                                                                                                     Breakfast Club, The
## 14237                                                                                                                              Back to the Future Part II
## 14238                                                                                                                                     Little Mermaid, The
## 14239                                                                                                                                                  Splash
## 14240                                                                                                                    Indiana Jones and the Temple of Doom
## 14243                                                                                                                                     Edward Scissorhands
## 14246                                                                                                                                           Bug's Life, A
## 14248                                                                                                                                     Romancing the Stone
## 14249                                                                                                                                        Crocodile Dundee
## 14251                                                                                                                          Rocky Horror Picture Show, The
## 14252                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 14255                                                                                                                                              Moonstruck
## 14258                                                                                                                                Talented Mr. Ripley, The
## 14259                                                                                                                                  League of Their Own, A
## 14260                                                                                                                                           Patriot Games
## 14262                                                                                                                                         Erin Brockovich
## 14263                                                                                                                      Close Encounters of the Third Kind
## 14266                                                                                                                                                Chocolat
## 14267                                                                                                                                               Cast Away
## 14268                                                                                                                              O Brother, Where Art Thou?
## 14270                                                                                                                                       Beverly Hills Cop
## 14272                                                                                                                                                   Shrek
## 14274                                                                                                                                          Monsters, Inc.
## 14279                                                                                                                                My Big Fat Greek Wedding
## 14280                                                                                                                                             About a Boy
## 14283                                                                                                                                            Finding Nemo
## 14285                                                                                                                                          School of Rock
## 14286                                                                                                                                           Love Actually
## 14287                                                                                                                                                Big Fish
## 14289                                                                                                                                                 Shrek 2
## 14290                                                                                                                                            Spider-Man 2
## 14295                                                                                                                                               King Kong
## 14297                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 14299                                                                                                                                           Casino Royale
## 14300                                                                                                                                             Ratatouille
## 14304                                                                                                      Indiana Jones and the Kingdom of the Crystal Skull
## 14305                                                                                                                                                  WALL·E
## 14309                                                                                                                                     Alice in Wonderland
## 14315                                                                                                         What Women Want (a.k.a. I Know a Woman's Heart)
## 14317                                                                                                                                                  Casino
## 14319                                                                                                                                                  Friday
## 14320                                                                                                                                           Happy Gilmore
## 14322                                                                                                                                             Taxi Driver
## 14324                                                                                                                                            Crimson Tide
## 14325                                                                                                                                              Waterworld
## 14327                                                                                                                      Star Wars: Episode IV - A New Hope
## 14328                                                                                                                                                Outbreak
## 14330                                                                                                                                                Stargate
## 14332                                                                                                                              Ace Ventura: Pet Detective
## 14333                                                                                                                                               Crow, The
## 14335                                                                                                                                               Mask, The
## 14336                                                                                                                                          Demolition Man
## 14337                                                                                                                                           Jurassic Park
## 14339                                                                                                                         Nightmare Before Christmas, The
## 14342                                                                                                                                               Rock, The
## 14343                                                                                                                           Independence Day (a.k.a. ID4)
## 14345                                                                                                                                            Citizen Kane
## 14346                                                                                                                             Ghost and the Darkness, The
## 14347                                                                                                                                          Reservoir Dogs
## 14349                                                                                                                 Cinema Paradiso (Nuovo cinema Paradiso)
## 14350                                                                                                                         One Flew Over the Cuckoo's Nest
## 14351                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 14354                                                                                                                                   Boot, Das (Boat, The)
## 14355                                                                                                                                      Dead Poets Society
## 14356                                                                                                                                               Chinatown
## 14357                                                                                                                                           Groundhog Day
## 14359                                                                                                                                           Jerry Maguire
## 14360                                                                                                                                                 Con Air
## 14361                                                                                                                               Men in Black (a.k.a. MIB)
## 14363                                                                                                                                       L.A. Confidential
## 14369                                                                                                                                            Postman, The
## 14370                                                                                                                                     Wedding Singer, The
## 14371                                                                                                                                      As Good as It Gets
## 14374                                                                                                                             Back to the Future Part III
## 14376                                                                                                                    Indiana Jones and the Temple of Doom
## 14382                                                                                                               Star Wars: Episode I - The Phantom Menace
## 14383                                                                                                                               Run Lola Run (Lola rennt)
## 14384                                                                                                                                            American Pie
## 14385                                                                                                                                Blair Witch Project, The
## 14386                                                                                                                                        Sixth Sense, The
## 14387                                                                                                                             National Lampoon's Vacation
## 14390                                                                                                                                            Total Recall
## 14394                                                                                                                                            Galaxy Quest
## 14396                                                                                                                                              Encino Man
## 14397                                                                                                                                       Final Destination
## 14398                                                                                                                                                Red Dawn
## 14399                                                                                                                                          Grumpy Old Men
## 14400                                                                                                                      Close Encounters of the Third Kind
## 14402                                                                                                                                       Battlefield Earth
## 14404                                                                                                                                        Meet the Parents
## 14406                                                                                                                                                  Snatch
## 14407                                                                                                                                                Chocolat
## 14416                                                                                                                                                 Ice Age
## 14419                                                                                                                                         Minority Report
## 14420                                                                                                                                       Road to Perdition
## 14421                                                                                                                                                   Signs
## 14422                                                                                                                                               Ring, The
## 14426                                                                                                                            City of God (Cidade de Deus)
## 14427                                                                                                                                    Matrix Reloaded, The
## 14428                                                                                                                                          Bruce Almighty
## 14430                                                                                                                                        Italian Job, The
## 14431                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 14432                                                                                                                                     Dirty Pretty Things
## 14433                                                                                                                                     Lost in Translation
## 14435                                                                                                                                            Mystic River
## 14436                                                                                                                                       Kill Bill: Vol. 1
## 14437                                                                                                                                 Matrix Revolutions, The
## 14439                                                                                                                                    The Butterfly Effect
## 14440                                                                                                                   Eternal Sunshine of the Spotless Mind
## 14441                                                                                                                                       Kill Bill: Vol. 2
## 14443                                                                                                                                                 Shrek 2
## 14444                                                                                                                                           Super Size Me
## 14445                                                                                                                                            Spider-Man 2
## 14446                                                                                                                                                I, Robot
## 14447                                                                                                       Maria Full of Grace (Maria, Llena eres de gracia)
## 14448                                                                                                                               Manchurian Candidate, The
## 14449                                                                                                                                            Garden State
## 14450                                                                                                                                              Collateral
## 14451                                                                                                        Motorcycle Diaries, The (Diarios de motocicleta)
## 14452                                                                                                                                       Shaun of the Dead
## 14453                                                                                                                                                Sideways
## 14454                                                                                                                                        Incredibles, The
## 14457                                                                                                                       Charlie and the Chocolate Factory
## 14461                                                                                                                                           Batman Begins
## 14462                                                                                                                                        Wedding Crashers
## 14463                                                                                                                                                Serenity
## 14465                                                                                                                              Good Night, and Good Luck.
## 14469                                                                                                                                   Thank You for Smoking
## 14470                                                                                                                                                  Tsotsi
## 14471                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 14474                                                                                                                               Pursuit of Happyness, The
## 14475                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 14478                                                                                                                                           Prestige, The
## 14479                                                                                                                                   Letters from Iwo Jima
## 14480                                                                                                                                             Ratatouille
## 14482                                                                                                                                            Transformers
## 14483                                                                                                                                     Simpsons Movie, The
## 14484                                                                                                                                                Superbad
## 14486                                                                                                                                  No Country for Old Men
## 14487                                                                                                                                             I Am Legend
## 14488                                                                                                                                                    Juno
## 14491                                                                                                                                                Iron Man
## 14495                                                                                                                                     Slumdog Millionaire
## 14497                                                                                                                                             Frost/Nixon
## 14498                                                                                                                                             Reader, The
## 14500                                                                                                                                               Star Trek
## 14503                                                                                                                                        Hurt Locker, The
## 14508                                                                                                                                          Shutter Island
## 14509                                                                                                                                                Kick-Ass
## 14513                                                                                                                                            Sudden Death
## 14522                                                                                                                                               Jury Duty
## 14523                                                                                                                                                 Species
## 14533                                                                                                             Tales from the Crypt Presents: Demon Knight
## 14534                                                                                                                                  Star Trek: Generations
## 14535                                                                                                                                   Village of the Damned
## 14538                                                                                                                                          I Love Trouble
## 14544                                                                                                                                               RoboCop 3
## 14548                                                                                                                                              Craft, The
## 14553                                                                                                                                              Relic, The
## 14557                                                                                                                                      Lawnmower Man, The
## 14574                                                                                                                        Amityville 1992: It's About Time
## 14590                                                                                                                         I Know What You Did Last Summer
## 14592                                                                                                                                                Phantoms
## 14593                                                                                                                                     Alien: Resurrection
## 14595                                                                                                                                             Deep Rising
## 14597                                                                                                                                              Armageddon
## 14601                                                                                                           Nightmare on Elm Street 5: The Dream Child, A
## 14602                                                                   Freddy's Dead: The Final Nightmare (Nightmare on Elm Street Part 6: Freddy's Dead, A)
## 14604                                                                                                                                  Friday the 13th Part 2
## 14606                                                                                                                                            Halloween II
## 14607                                                                                                                      Halloween III: Season of the Witch
## 14608                                                                                                                Halloween 4: The Return of Michael Myers
## 14609                                                                                                                                           Prom Night II
## 14611                                                                                                                          Poltergeist II: The Other Side
## 14615                                                                                                                                 Poseidon Adventure, The
## 14616                                                                                                                                     Disturbing Behavior
## 14618                                                                                                                                  Trip to Bountiful, The
## 14620                                                                                                                                                    Tron
## 14623                                                                                                        Graveyard Shift (Stephen King's Graveyard Shift)
## 14626                                                                                                                                          Needful Things
## 14627                                                                                                                                                    Cujo
## 14630                                                                                                                              House II: The Second Story
## 14631                                                                                                                                         Rosemary's Baby
## 14632                                                                                                                          Attack of the Killer Tomatoes!
## 14634                                                                                                                                                      54
## 14641                                                                                                                               Desperately Seeking Susan
## 14646                                                                                                                                Karate Kid, Part II, The
## 14649                                                                                                                                          At First Sight
## 14654                                                         Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre)
## 14655                                                                                                                                           Deadly Friend
## 14667                                                                                                                                             Superman II
## 14669                                                                                                                                   Thirteenth Floor, The
## 14673                                                                                                                                          Wild Wild West
## 14674                                                                                                                                           Summer of Sam
## 14677                                                                                                                                             Lake Placid
## 14680                                                                                                                                           Deep Blue Sea
## 14684                                                                                                                                         Damien: Omen II
## 14691                                                                                                                                          Drive Me Crazy
## 14697                                                                                                                                   Bringing Out the Dead
## 14702                                                                                                                                             Creepshow 2
## 14703                                                                                                                                             Re-Animator
## 14704                                                                                                                                                 Piranha
## 14706                                                                                                                                       Anywhere But Here
## 14718                                                                                                                                           Forever Young
## 14719                                                                                                                                                Scream 3
## 14723                                                                                                                                        Who's That Girl?
## 14726                                                                                                                                                Red Dawn
## 14727                                                                                                                                   Good Morning, Vietnam
## 14732                                                                                                                                         American Psycho
## 14735                                                                                                                                  Mission: Impossible II
## 14737                                                                                                                                      Toxic Avenger, The
## 14739                                                                                                                                            Sleepwalkers
## 14741                                                                                                        F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion)
## 14743                                                                                                                                              Hollow Man
## 14744                                                                                                                                             Pumpkinhead
## 14745                                                                                                                                          Sleepaway Camp
## 14747                                                                                                                                               Supergirl
## 14751                                                                                                                                                Ghoulies
## 14753                                                                                                                                             Unbreakable
## 14756                                                                                                                                         What Women Want
## 14762                                                                                                                                       Jaws: The Revenge
## 14769                                                                                                                                                C.H.U.D.
## 14770                                                                                                                                           Forsaken, The
## 14778                                                                                                                                          Johnny Be Good
## 14780                                                                                                                                                Watchers
## 14783                                                                                                                                           Punisher, The
## 14784                                                                                                                                   America's Sweethearts
## 14788                                                                                                                                             Basket Case
## 14793                                                                                                                                         Invasion U.S.A.
## 14796                                                                                                                                                 48 Hrs.
## 14797                                                                                                                                                Slackers
## 14798                                                                                                                                            Sandlot, The
## 14802                                                                                                                                  Joe Versus the Volcano
## 14804                                                                                                                             Three Men and a Little Lady
## 14805                                                                                                                                                  Nomads
## 14806                                                                                                                                               Temp, The
## 14810                                                                                                                                               Mr. Deeds
## 14811                                                                                                                                         Dangerous Minds
## 14813                                                                                                                               Shawshank Redemption, The
## 14814                                                                                                                                        Schindler's List
## 14816                                                                                                                                             Primal Fear
## 14817                                                                                                                                              Craft, The
## 14832                                                                                                                                        Bonnie and Clyde
## 14837                                                                                                                                                   Glory
## 14844                                                                                                                                             Wag the Dog
## 14846                                                                                                                                    Strangers on a Train
## 14848                                                                                                                                         Say Anything...
## 14849                                                                                                                                               Elizabeth
## 14850                                                                                                                               Run Lola Run (Lola rennt)
## 14851                                                                                                                                         American Beauty
## 14854                                                                                                                                       Conversation, The
## 14860                                                                                                                            Talk to Her (Hable con Ella)
## 14861                                                                                                                                                Dogfight
## 14873                                                                                                                                       Book of Life, The
## 14880                                                                                                            Lives of Others, The (Das leben der Anderen)
## 14882                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 14886                                                                                                                                                    Juno
## 14887                                                                                                                                               Toy Story
## 14890                                                                                                                                              Braveheart
## 14891                                                                                                                                                  Clerks
## 14892                                                                                                 Léon: The Professional (a.k.a. The Professional) (Léon)
## 14895                                                                                                                                            Forrest Gump
## 14896                                                                                                                                          Lion King, The
## 14897                                                                                                                                           Jurassic Park
## 14898                                                                                                                                        Schindler's List
## 14900                                                                                                                                                 Aladdin
## 14901                                                                                                                              Terminator 2: Judgment Day
## 14902                                                                                                                               Silence of the Lambs, The
## 14903                                                                                                                                    Beauty and the Beast
## 14904                                                                                                                                            Pretty Woman
## 14907                                                                                                                                          Godfather, The
## 14909                                                                                                                                             Rear Window
## 14910                                                                                                                                      North by Northwest
## 14911                                                                                                                                              Casablanca
## 14914                                                                                                                                                Die Hard
## 14915                                                                                                                                        Bonnie and Clyde
## 14916                                                                                                                                           Dirty Dancing
## 14917                                                                                                                                          Reservoir Dogs
## 14919                                                                                                                         One Flew Over the Cuckoo's Nest
## 14922                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 14923                                                                                                                                                  Aliens
## 14926                                                                                                                                      Lawrence of Arabia
## 14927                                                                                                                                   To Kill a Mockingbird
## 14928                                                                                                                                          Apocalypse Now
## 14931                                                                                                                                              Goodfellas
## 14932                                                                                                                                                  Psycho
## 14933                                                                                                                                 Godfather: Part II, The
## 14934                                                                                                                                             Raging Bull
## 14935                                                                                                                                         Terminator, The
## 14937                                                                                                                                           Groundhog Day
## 14939                                                                                                                                      Back to the Future
## 14941                                                                                                                      Indiana Jones and the Last Crusade
## 14942                                                                                                                                                    Jaws
## 14943                                                                                                                                      Fifth Element, The
## 14944                                                                                                                               Men in Black (a.k.a. MIB)
## 14945                                                                                                                                                 Titanic
## 14947                                                                                                                          Fear and Loathing in Las Vegas
## 14948                                                                                                                                           Exorcist, The
## 14949                                                                                                                                           Lethal Weapon
## 14951                                                                                                                                     Saving Private Ryan
## 14955                                                                                                                       Lock, Stock & Two Smoking Barrels
## 14956                                                                                                                                             Matrix, The
## 14957                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 14958                                                                                                                                                     Big
## 14959                                                                                                                                Ferris Bueller's Day Off
## 14960                                                                                                                                              Fight Club
## 14961                                                                                                                                    Being John Malkovich
## 14962                                                                                                                                              Spaceballs
## 14963                                                                                                                                           Wayne's World
## 14964                                                                                                                                            Animal House
## 14965                                                                                                                      Close Encounters of the Third Kind
## 14966                                                                                                                                                Predator
## 14967                                                                                                                                              Caddyshack
## 14968                                                                                                                                               Gladiator
## 14969                                                                                                         Naked Gun: From the Files of Police Squad!, The
## 14971                                                                                                                                                 Memento
## 14975                                                                                                                                   Royal Tenenbaums, The
## 14977                                                                                                                                              Adaptation
## 14978                                                                                                                                             Equilibrium
## 14979                                                                                                                  Lord of the Rings: The Two Towers, The
## 14983                                                                                                          Lord of the Rings: The Return of the King, The
## 14984                                                                                                                   Eternal Sunshine of the Spotless Mind
## 14985                                                                                                                                       Napoleon Dynamite
## 14987                                                                                                                                            Garden State
## 14988                                                                                                                                                Sideways
## 14989                                                                                                                                           The Machinist
## 14991                                                                                                             Howl's Moving Castle (Hauru no ugoku shiro)
## 14992                                                                                                                   Hitchhiker's Guide to the Galaxy, The
## 14993                                                                                                                                        Mr. & Mrs. Smith
## 14994                                                                                                                                          Broken Flowers
## 14995                                                                                                                                 40-Year-Old Virgin, The
## 14999                                                                                                             Talladega Nights: The Ballad of Ricky Bobby
## 15001                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 15002                                                                                                                                           Departed, The
## 15008                                                                                                                                        Dark Knight, The
## 15009                                                                                                                               Forgetting Sarah Marshall
## 15012                                                                                                                                  Dark Knight Rises, The
## 15013                                                                                                                                        Moonrise Kingdom
## 15014                                                                                                                                         American Sniper
## 15015                                                                                                                             Father of the Bride Part II
## 15016                                                                                                                                                Clueless
## 15018                                                                                                                                 While You Were Sleeping
## 15020                                                                                                                             Four Weddings and a Funeral
## 15024                                                                                                                                      Gone with the Wind
## 15036                                                                                                                                                  Willow
## 15039                                                                                                                                                Election
## 15043                                                                                                                                         American Beauty
## 15044                                                                                                                                           Sleepy Hollow
## 15050                                                                                                                                       Maid in Manhattan
## 15051                                                                                                                            How to Lose a Guy in 10 Days
## 15052                                                                                                              Lara Croft Tomb Raider: The Cradle of Life
## 15059                                                                                                                                                    Troy
## 15068                                                                                                                                  Lars and the Real Girl
## 15071                                                                                                                                                      Up
## 15073                                                                                                                               Where the Wild Things Are
## 15074                                                                                                                                               Inception
## 15079                                                                                                                         The Hunger Games: Catching Fire
## 15083                                                                                                                                             Zoolander 2
## 15084                                                                                                                         Pride and Prejudice and Zombies
## 15087                                                                                                                                                 Jumanji
## 15088                                                                                                                                   Sense and Sensibility
## 15089                                                                                                                                              Persuasion
## 15091                                                                                                                                    Seven (a.k.a. Se7en)
## 15093                                                                                                                          Bridges of Madison County, The
## 15094                                                                                                                                              Braveheart
## 15095                                                                                                                       Beauty of the Day (Belle de jour)
## 15096                                                                                                                                                   Congo
## 15097                                                                                                                                                 Hackers
## 15098                                                                                                                                              Waterworld
## 15099                                                                                                                                            Pulp Fiction
## 15100                                                                                                                                                Stargate
## 15104                                                                                                                                               Mask, The
## 15106                                                                                                                                               True Lies
## 15107                                                                                                                                              Free Willy
## 15109                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 15111                                                                                                                                  Much Ado About Nothing
## 15114                                                                                                                                       Super Mario Bros.
## 15115                                                                                                                                                 Aladdin
## 15122                                                                                                                                               Rock, The
## 15123                                                                                                                                                 Twister
## 15128                                                                                                                                   American in Paris, An
## 15129                                                                                                                                  Breakfast at Tiffany's
## 15133                                                                                                                                          Apartment, The
## 15139                                                                                                                                   2001: A Space Odyssey
## 15146                                                                                                                                               Pollyanna
## 15147                                                                                                                                         Shaggy Dog, The
## 15148                                                                                                                                   Swiss Family Robinson
## 15149                                                                                                                            20,000 Leagues Under the Sea
## 15150                                                                                                                                              Cinderella
## 15151                                                                                                                                 Sword in the Stone, The
## 15153                                                                                                                                                   Dumbo
## 15154                                                                                                                                     Alice in Wonderland
## 15155                                                                                                                                     Sound of Music, The
## 15156                                                                                                                                         Great Race, The
## 15159                                                                                                                                    English Patient, The
## 15163                                                                                                                                                  Psycho
## 15165                                                                                                                                           Graduate, The
## 15168                                                                                                                                                Fantasia
## 15169                                                                                                                                          Big Sleep, The
## 15172                                                                                                                                               Blob, The
## 15173                                                                                                                                             Sling Blade
## 15174                                                                                                                                           Jerry Maguire
## 15175                                                                                                                               Men in Black (a.k.a. MIB)
## 15176                                                                                                                                               G.I. Jane
## 15177                                                                                                                                                Cop Land
## 15178                                                                                                                                                   Spawn
## 15182                                                                                                                                       Starship Troopers
## 15184                                                                                                                                       Big Lebowski, The
## 15187                                                                                                                                     Wedding Singer, The
## 15189                                                                                                                                          Small Soldiers
## 15190                                                                                                                                            Going My Way
## 15194                                                                                                                                  Man for All Seasons, A
## 15196                                                                                                                                                 Oliver!
## 15198                                                                                                                                      Mask of Zorro, The
## 15199                                                                                                                            Absent-Minded Professor, The
## 15204                                                                                                         101 Dalmatians (One Hundred and One Dalmatians)
## 15205                                                                                                                                          Rocketeer, The
## 15208                                                                                                                                              Swing Kids
## 15209                                                                                                                                              Snake Eyes
## 15210                                                                                                                         Who's Afraid of Virginia Woolf?
## 15211                                                                                                                                         Doctor Dolittle
## 15212                                                                                                                                    Nutty Professor, The
## 15213                                                                                                                                         Rosemary's Baby
## 15217                                                                                                                                 Star Trek: Insurrection
## 15218                                                                                                                                     Shakespeare in Love
## 15219                                                                                                                                         You've Got Mail
## 15221                                                                                                                                      Tea with Mussolini
## 15223                                                                                                                                      Planet of the Apes
## 15224                                                                                                                                            Analyze This
## 15225                                                                                                                                         King and I, The
## 15228                                                                                                                                                  Tarzan
## 15230                                                                                                                                         Iron Giant, The
## 15231                                                                                                              Oscar and Lucinda (a.k.a. Oscar & Lucinda)
## 15232                                                                                                                                      Outside Providence
## 15236                                                                                                                                              Fight Club
## 15237                                                                                                                                     Straight Story, The
## 15239                                                                                                                                  End of the Affair, The
## 15243                                                                                                                                         Man on the Moon
## 15244                                                                                                                                       Girl, Interrupted
## 15245                                                                                                                                             Boiler Room
## 15247                                                                                                                                               Gladiator
## 15249                                                                                                                                                Croupier
## 15250                                                                                                                                           Almost Famous
## 15252                                                                                                                                            Best in Show
## 15253                                                                                                                                        Meet the Parents
## 15257                                                                                                                                       Finding Forrester
## 15258                                                                                                                                               Cast Away
## 15259                                                                                                                              O Brother, Where Art Thou?
## 15260                                                                                                                                           Thirteen Days
## 15276                                                                                                                                                    Heat
## 15277                                                                                                                                                 Sabrina
## 15280                                                                                                                                        Mighty Aphrodite
## 15281                                                                                                                                      Mr. Holland's Opus
## 15282                                                                                                                                            White Squall
## 15283                                                                                                                                             Black Sheep
## 15284                                                                                                                                            Broken Arrow
## 15285                                                                                                                                          Down Periscope
## 15286                                                                                                                                           Birdcage, The
## 15288                                                                                                                                     Mission: Impossible
## 15289                                                                                                                               James and the Giant Peach
## 15290                                                                                                                            Truth About Cats & Dogs, The
## 15291                                                                                                                                               Rock, The
## 15292                                                                                                                                                 Twister
## 15294                                                                                                                           Independence Day (a.k.a. ID4)
## 15295                                                                                                                                                  Eraser
## 15299                                                                                                                                                Bad Boys
## 15300                                                                                                                                               Desperado
## 15301                                                                                                                                         Johnny Mnemonic
## 15302                                                                                                                                                 Species
## 15304                                                                                                                                         Specialist, The
## 15306                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 15307                                                                                                                                           Fugitive, The
## 15308                                                                                                                               Robin Hood: Men in Tights
## 15312                                                                                                                                              Striptease
## 15313                                                                                                                                                Die Hard
## 15318                                                                                                                                                   Alien
## 15319                                                                                                                                         Terminator, The
## 15325                                                                                                                          X-Files: Fight the Future, The
## 15326                                                                                                                                           Lethal Weapon
## 15330                                                                                                                                         Few Good Men, A
## 15331                                                                                                                                         My Cousin Vinny
## 15334                                                                                                                                           Arachnophobia
## 15335                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 15336                                                                                                                                               Bowfinger
## 15339                                                                                                                                                Predator
## 15360                                                                                                                                  Across the Sea of Time
## 15366                                                                                                                                     From Dusk Till Dawn
## 15368                                                                                                                                         Beautiful Girls
## 15382                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 15384                                                                                                                                            Little Women
## 15390                                                                                                                               Secret of Roan Inish, The
## 15391                                                                                                                               Shawshank Redemption, The
## 15396                                                                                                                                                Backbeat
## 15399                                                                                                                                                    Wolf
## 15400                                                                                                                                    Addams Family Values
## 15404                                                                                                                                           Fugitive, The
## 15406                                                                                                                                     In the Line of Fire
## 15409                                                                                                                                                 Orlando
## 15410                                                                                                                                        Perfect World, A
## 15411                                                                                                                                            Philadelphia
## 15420                                                                                                                                            True Romance
## 15425                                                                                                                                      Dances with Wolves
## 15438                                                                                                                           Independence Day (a.k.a. ID4)
## 15439                                                                                                                                        Frighteners, The
## 15441                                                                                                                                              Phenomenon
## 15481                                                                                                                                Escape to Witch Mountain
## 15491                                                                                                                                                Sleepers
## 15502                                                                                                                                                 Platoon
## 15503                                                                                                                                              Doors, The
## 15527                                                                                                                                       Strictly Ballroom
## 15541                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 15568                                                                                                                                      Dead Poets Society
## 15586                                                                                                                                      Pump Up the Volume
## 15587                                                                                                                                      Back to the Future
## 15606                                                                                                                                         Field of Dreams
## 15608                                                                                                                                 When Harry Met Sally...
## 15609                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 15611                                                                                                                                          Amityville 3-D
## 15614                                                                                                                         Dracula (Bram Stoker's Dracula)
## 15617                                                                                                                                                Candyman
## 15619                                                                                                                                              Cat People
## 15624                                                                                                                                             Sling Blade
## 15628                                                                                                                                          Batman Returns
## 15632                                                                                                                                                Jaws 3-D
## 15633                                                                                                                                           Jerry Maguire
## 15645                                                                                                                                                 Contact
## 15646                                                                                                                                   In the Company of Men
## 15647                                                                                                                               Hunt for Red October, The
## 15650                                                                                                                         I Know What You Did Last Summer
## 15656                                                                                                                                       Good Will Hunting
## 15666                                                                                                                                         Kurt & Courtney
## 15668                                                                                                                          Fear and Loathing in Las Vegas
## 15669                                                                                                                                             Hope Floats
## 15670                                                                                                                                       Can't Hardly Wait
## 15671                                                                                                                            There's Something About Mary
## 15692                                                                                                                                      Driving Miss Daisy
## 15702                                                                                                                                       Exorcist III, The
## 15703                                                                                                                                           Lethal Weapon
## 15704                                                                                                                                         Lethal Weapon 2
## 15705                                                                                                                                                Gremlins
## 15712                                                                                                                                Godfather: Part III, The
## 15713                                                                                                                      Darby O'Gill and the Little People
## 15731                                                                                                                                                    Tron
## 15732                                                                               Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 15734                                                                                                                               Dead Men Don't Wear Plaid
## 15735                                                                                                                                            Grand Canyon
## 15737                                                                                                                                                    Cujo
## 15744                                                                                                                                       Dark Crystal, The
## 15745                                                                                                                                         Sixteen Candles
## 15746                                                                                                                                          Pretty in Pink
## 15747                                                                                                                                         St. Elmo's Fire
## 15752                                                                                                                                                  Willow
## 15759                                                                                                                                            My Bodyguard
## 15760                                                                                                                                          Broadcast News
## 15770                                                                                                                                Children of a Lesser God
## 15773                                                                                                                                           Pleasantville
## 15777                                                                                                                                            Desert Bloom
## 15779                                                                                                                                          Big Chill, The
## 15784                                                                                                                                               King Kong
## 15788                                                                                                                                             Mass Appeal
## 15789                                                                                                                                     Romancing the Stone
## 15790                                                                                                                                                  Cocoon
## 15791                                                                                                                                         Karate Kid, The
## 15792                                                                                              Christmas Vacation (National Lampoon's Christmas Vacation)
## 15794                                                                                                                                  Boy Who Could Fly, The
## 15796                                                                                                                                                Fly, The
## 15798                                                                                                                                               Christine
## 15802                                                                                                                                        Cruel Intentions
## 15803                                                                                                                                     Rage: Carrie 2, The
## 15805                                                                                                                                              Dick Tracy
## 15812                                                                                                                                   Thirteenth Floor, The
## 15815                                                                                                                                           Summer of Sam
## 15816                                                                                                                                Blair Witch Project, The
## 15819                                                                                                                                         Ghostbusters II
## 15840                                                                                                                                                     Big
## 15847                                                                                                                                       Stop Making Sense
## 15848                                                                                                                                     Hard Day's Night, A
## 15851                                                                                                                                               Excalibur
## 15854                                                                                                                                               Psycho II
## 15875                                                                                                                                Who Framed Roger Rabbit?
## 15885                                                                                                                                          Trading Places
## 15886                                                                                                                                        Commitments, The
## 15892                                                                                                                                       Stand and Deliver
## 15901                                                                                                                                 Bonfire of the Vanities
## 15904                                                                                                                                         Green Mile, The
## 15908                                                                                                                              The Falcon and the Snowman
## 15909                                                                                                                                Talented Mr. Ripley, The
## 15910                                                                                                                                          Angela's Ashes
## 15921                                                                                                                                            Agnes of God
## 15922                                                                                                                                           Wayne's World
## 15924                                                                                                                           Twin Peaks: Fire Walk with Me
## 15928                                                                                                                                                Scream 3
## 15929                                                                                                                                              Beach, The
## 15930                                                                                                                                   Whole Nine Yards, The
## 15932                                                                                                                                       Flamingo Kid, The
## 15933                                                                                                                                             Wonder Boys
## 15934                                                                                                                                           Drowning Mona
## 15935                                                                                                                                          Beyond the Mat
## 15937                                                                                                                                                   Birdy
## 15939                                                                                                                                         Mission to Mars
## 15942                                                                                                                                             Bull Durham
## 15946                                                                                                                                                     JFK
## 15948                                                                                                                                         Erin Brockovich
## 15951                                                                                                                                            Animal House
## 15957                                                                                                                                                Red Dawn
## 15958                                                                                                                                   Good Morning, Vietnam
## 15965                                                                                                                                               Bamba, La
## 15968                                                                                                                                             Skulls, The
## 15973                                                                                                                                         Ready to Rumble
## 15976                                                                                                                                              Parenthood
## 15977                                                                                                                                    Prince of Tides, The
## 15979                                                                                                                                            East is East
## 15990                                                                                                                     Flintstones in Viva Rock Vegas, The
## 15991                                                                                                                                      Where the Heart Is
## 15995                                                                                                                                                 Mr. Mom
## 16015                                                                                                                                        Running Man, The
## 16019                                                                                                                              Mad Max Beyond Thunderdome
## 16020                                                                                                                                             Angel Heart
## 16021                                                                                                                                             Firestarter
## 16028                                                                                                                             Big Trouble in Little China
## 16035                                                                                                                                               Fair Game
## 16036                                                                                                                                                 Species
## 16038                                                                                                                                          Street Fighter
## 16039                                                                                                                                               RoboCop 3
## 16041                                                                                                                              Terminator 2: Judgment Day
## 16042                                                                                                                                                  Batman
## 16046                                                                                                                                                 Twister
## 16049                                                                                                                           Independence Day (a.k.a. ID4)
## 16051                                                                                                                                      Lawnmower Man, The
## 16052                                                                                                                                                 Top Gun
## 16053                                                                                                                                    Escape from New York
## 16057                                                                                                                                        Army of Darkness
## 16059                                                                                                                                  Dead Alive (Braindead)
## 16060                                                                                                                                               Bad Taste
## 16062                                                                                                                                                   Akira
## 16063                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 16064                                                                                                                         Dracula (Bram Stoker's Dracula)
## 16065                                                                                                                                             Under Siege
## 16066                                                                                                                                                Jaws 3-D
## 16068                                                                                                                                                 Con Air
## 16069                                                                                                                                          Batman & Robin
## 16070                                                                                                                               Men in Black (a.k.a. MIB)
## 16071                                                                                                                                                 Contact
## 16072                                                                                                                                                   Steel
## 16073                                                                                                                                    The Devil's Advocate
## 16074                                                                                                                                                 Gattaca
## 16076                                                                                                                                     Alien: Resurrection
## 16077                                                                                                                                                 Titanic
## 16078                                                                                                                                             Wild Things
## 16079                                                                                                                                                    Dune
## 16082                                                                                                                                  Jewel of the Nile, The
## 16083                                                                                                                                          Wing Commander
## 16085                                                                                                                                              Entrapment
## 16086                                                                                                                                          Wild Wild West
## 16088                                                                                                                                            Total Recall
## 16090                                                                                                                                                 RoboCop
## 16093                                                                                                                                                Predator
## 16095                                                                                                                                              Predator 2
## 16097                                                                                                                                               Cell, The
## 16098                                                                                                                                          Evil Dead, The
## 16107                                                                                                                                          One Hour Photo
## 16108                                                                                                                                             The Pumaman
## 16114                                                                                                                           Ninja Scroll (Jûbei ninpûchô)
## 16116                                                                                                                           Highlander II: The Quickening
## 16121                                                                                                                                              Enemy Mine
## 16123                                                                                                                                           Shiri (Swiri)
## 16125                                                                                                                                            Spider-Man 2
## 16135                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 16136                                                                                                                                                Face/Off
## 16137                                                                                                                                             Matrix, The
## 16141                                                                                                                                                  Wasabi
## 16144                                                                                                                                    Matrix Reloaded, The
## 16148                                                                                                                                                    Troy
## 16149                                                                                                                              Chronicles of Riddick, The
## 16152                                                                                                                                       National Treasure
## 16153                                                                                                                                    Battlestar Galactica
## 16155                                                                                                                                   Underworld: Evolution
## 16160                                                                                                                Pirates of the Caribbean: At World's End
## 16162                                                                                                                             Hellboy II: The Golden Army
## 16168                                                                                                                          Underworld: Rise of the Lycans
## 16171                                                                                                                                                Pandorum
## 16180                                                                                                                                            Tron: Legacy
## 16184                                                                                                                      Captain America: The First Avenger
## 16189                                                                                                                   Men in Black III (M.III.B.) (M.I.B.³)
## 16191                                                                                                                                    Thor: The Dark World
## 16195                                                                                                                                          Equalizer, The
## 16201                                                                                                                                                   Focus
## 16202                                                                                                                                                    Heat
## 16203                                                                                                                                               GoldenEye
## 16204                                                                                                                                 American President, The
## 16206                                                                                                                          Ace Ventura: When Nature Calls
## 16207                                                                                                                                              Get Shorty
## 16208                                                                                                                                                 Copycat
## 16211                                                                                                                                        Dead Man Walking
## 16215                                                                                                                                            Broken Arrow
## 16216                                                                                                                                           Happy Gilmore
## 16217                                                                                                                          Bridges of Madison County, The
## 16218                                                                                                                                              Braveheart
## 16220                                                                                                                                               Apollo 13
## 16221                                                                                                                                                 Rob Roy
## 16222                                                                                                                                          Batman Forever
## 16224                                                                                                                              Die Hard: With a Vengeance
## 16225                                                                                                                                            First Knight
## 16226                                                                                                                                             Judge Dredd
## 16227                                                                                                                                                 Species
## 16229                                                                                                                                              Waterworld
## 16230                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 16231                                                                                                                      Star Wars: Episode IV - A New Hope
## 16232                                                                                                                             Madness of King George, The
## 16233                                                                                                                                    Natural Born Killers
## 16234                                                                                                                                      Once Were Warriors
## 16235                                                                                                                                                Outbreak
## 16238                                                                                                                                               Quiz Show
## 16239                                                                                                                           Ready to Wear (Pret-A-Porter)
## 16240                                                                                                                                                Stargate
## 16241                                                                                                                               Shawshank Redemption, The
## 16242                                                                                                                                 While You Were Sleeping
## 16243                                                                                                                              Ace Ventura: Pet Detective
## 16244                                                                                                                                   Bullets Over Broadway
## 16245                                                                                                                                Clear and Present Danger
## 16246                                                                                                                                            Forrest Gump
## 16248                                                                                                                                          Lion King, The
## 16249                                                                                                                                               Mask, The
## 16250                                                                                                                                                Maverick
## 16251                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 16252                                                                                                                                                   Speed
## 16253                                                                                                                                               True Lies
## 16254                                                                                                                                When a Man Loves a Woman
## 16256                                                                                                                                              Wyatt Earp
## 16257                                                                                                                                    Addams Family Values
## 16258                                                                                                                                   Beverly Hills Cop III
## 16259                                                                                                                                           Boxing Helena
## 16261                                                                                                            City Slickers II: The Legend of Curly's Gold
## 16262                                                                                                                                             Cliffhanger
## 16263                                                                                                                                               Coneheads
## 16264                                                                                                                                                    Dave
## 16265                                                                                                                                          Demolition Man
## 16266                                                                                                                                               Firm, The
## 16267                                                                                                                                           Fugitive, The
## 16268                                                                                                                            Geronimo: An American Legend
## 16269                                                                                                                                            Getaway, The
## 16270                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 16272                                                                                                                                     In the Line of Fire
## 16273                                                                                                                                           Jurassic Park
## 16274                                                                                                                                              Kalifornia
## 16275                                                                                                                                  Much Ado About Nothing
## 16276                                                                                                                                          Mrs. Doubtfire
## 16277                                                                                                                                            Philadelphia
## 16279                                                                                                                                          Romper Stomper
## 16281                                                                                                                                    Sleepless in Seattle
## 16283                                                                                                                                            True Romance
## 16284                                                                                                                                              Home Alone
## 16285                                                                                                                                                   Ghost
## 16286                                                                                                                              Terminator 2: Judgment Day
## 16287                                                                                                                                      Dances with Wolves
## 16290                                                                                                                                            Pretty Woman
## 16292                                                                                                                                     Mission: Impossible
## 16294                                                                                                                                    Operation Dumbo Drop
## 16295                                                                                                                                               Rock, The
## 16296                                                                                                                                                 Twister
## 16297                                                                                                                                              Striptease
## 16299                                                                                                                           Independence Day (a.k.a. ID4)
## 16300                                                                                                                                          Cable Guy, The
## 16302                                                                                                                                    Nutty Professor, The
## 16303                                                                                                                                                  Ransom
## 16304                                                                                                                                                 Tin Cup
## 16306                                                                                                                                                   Bound
## 16307                                                                                                                                              Casablanca
## 16309                                                                                                                                       Last Man Standing
## 16310                                                                                                                                           Cool Runnings
## 16311                                                                                                                           Robin Hood: Prince of Thieves
## 16314                                                                                                                                Everyone Says I Love You
## 16316                                                                                                                                    Fish Called Wanda, A
## 16317                                                                                                                            Monty Python's Life of Brian
## 16318                                                                                                                                           Dirty Dancing
## 16322                                                                                                                                                 Top Gun
## 16324                                                                                                                                              Abyss, The
## 16325                                                                                                                                    Escape from New York
## 16326                                                                                                                         Monty Python and the Holy Grail
## 16328                                                                                                                Cook the Thief His Wife & Her Lover, The
## 16330                                                                                                                                           Grifters, The
## 16332                                                                                                                                            My Left Foot
## 16334                                                                                                                                            Passion Fish
## 16336                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 16339                                                                                                                                                  Aliens
## 16342                                                                                                                                          Apocalypse Now
## 16343                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 16346                                                                                                                          Big Blue, The (Grand bleu, Le)
## 16347                                                                                                                                     Blues Brothers, The
## 16350                                                                                                                                                 Amadeus
## 16351                                                                                                                             Once Upon a Time in America
## 16353                                                                                                                                              Sting, The
## 16356                                                                                                                                      Dead Poets Society
## 16361                                                                                                                                             Stand by Me
## 16364                                                                                                                                      Back to the Future
## 16365                                                                                                                                              Highlander
## 16366                                                                                                                                      Cyrano de Bergerac
## 16368                                                                                                                      Indiana Jones and the Last Crusade
## 16369                                                                                                                                    Pink Floyd: The Wall
## 16371                                                                                                                    My Life as a Dog (Mitt liv som hund)
## 16374                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 16375                                                                                                                         American Werewolf in London, An
## 16376                                                                                                                                              Birds, The
## 16377                                                                                                                                              Cat People
## 16378                                                                                                                                          101 Dalmatians
## 16379                                                                                                                                              Die Hard 2
## 16381                                                                                                                                              Young Guns
## 16382                                                                                                                                                  Grease
## 16384                                                                                                                                           Mars Attacks!
## 16385                                                                                                                                            Citizen Ruth
## 16386                                                                                                                                           Jerry Maguire
## 16387                                                                                                                                         Raising Arizona
## 16388                                                                                                                                                 Tin Men
## 16389                                                                                                                                                  Scream
## 16390                                                                                                                                            Dante's Peak
## 16392                                                                                                                                  Smilla's Sense of Snow
## 16393                                                                                                                                                Anaconda
## 16395                                                                                                                                 8 Heads in a Duffel Bag
## 16396                                                                                                                                      Fifth Element, The
## 16397                                                                                                                          Lost World: Jurassic Park, The
## 16398                                                                                                                                                 Con Air
## 16399                                                                                                                                                Face/Off
## 16401                                                                                                                                               G.I. Jane
## 16403                                                                                                                                           Air Force One
## 16404                                                                                                                               Hunt for Red October, The
## 16408                                                                                                                                         Full Monty, The
## 16410                                                                                                                                        Truman Show, The
## 16411                                                                                                                                                 Titanic
## 16412                                                                                                                                    Horse Whisperer, The
## 16416                                                                                                                               Man in the Iron Mask, The
## 16417                                                                                                                                          Primary Colors
## 16419                                                                                                                                                Godzilla
## 16420                                                                                                                          Fear and Loathing in Las Vegas
## 16423                                                                                                                                              Armageddon
## 16425                                                                                                                                  French Connection, The
## 16427                                                                                                                                      Driving Miss Daisy
## 16429                                                                                                                                     Breakfast Club, The
## 16431                                                                                                                                           Lethal Weapon
## 16432                                                                                                                                         Lethal Weapon 2
## 16433                                                                                                                                         Lethal Weapon 3
## 16434                                                                                                                                      Mask of Zorro, The
## 16435                                                                                                                              Back to the Future Part II
## 16437                                                                                                                                Godfather: Part III, The
## 16438                                                                                                                                     Saving Private Ryan
## 16439                                                                                                                                         Negotiator, The
## 16440                                                                                                                    Indiana Jones and the Temple of Doom
## 16441                                                                                                                                  Lord of the Rings, The
## 16442                                                                                                                                      Addams Family, The
## 16443                                                                                                                                              Snake Eyes
## 16445                                                                                                                                                   Blade
## 16447                                                                                                                                       Untouchables, The
## 16450                                                                                                                                      Married to the Mob
## 16451                                                                                                                                         Few Good Men, A
## 16454                                                                                                                                                    Antz
## 16456                                                                                                                                          Big Chill, The
## 16457                                                                                                                                      Enemy of the State
## 16458                                                                                                                                    Prince of Egypt, The
## 16459                                                                                                                                                Rushmore
## 16460                                                                                                                                     Shakespeare in Love
## 16461                                                                                                                                  Jewel of the Nile, The
## 16462                                                                                                                                     Romancing the Stone
## 16463                                                                                              Christmas Vacation (National Lampoon's Christmas Vacation)
## 16464                                                                                                                                      Thin Red Line, The
## 16465                                                                                                                                                Fly, The
## 16466                                                                                                              Name of the Rose, The (Name der Rose, Der)
## 16467                                                                                                                                          ¡Three Amigos!
## 16469                                                                                                                                            Pet Sematary
## 16470                                                                                                                                      Planet of the Apes
## 16471                                                                                                                                            Analyze This
## 16474                                                                                                                                             Matrix, The
## 16476                                                                                                                                              Dick Tracy
## 16477                                                                                                                                              Mummy, The
## 16478                                                                                                                                                Superman
## 16479                                                                                                                                            Notting Hill
## 16480                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 16481                                                                                                                               Run Lola Run (Lola rennt)
## 16482                                                                                                                                           Arachnophobia
## 16483                                                                                                                                          Wild Wild West
## 16484                                                                                                                                Blair Witch Project, The
## 16485                                                                                                                                          Eyes Wide Shut
## 16487                                                                                                                                         Ghostbusters II
## 16488                                                                                                                                  Little Shop of Horrors
## 16489                                                                                                                                        Sixth Sense, The
## 16490                                                                                                                                Thomas Crown Affair, The
## 16491                                                                                               Final Conflict, The (a.k.a. Omen III: The Final Conflict)
## 16492                                                                                                                          American Werewolf in Paris, An
## 16493                                                                                                                                                     Big
## 16494                                                                                                                                            Medicine Man
## 16496                                                                                                                                                Caligula
## 16497                                                                                                                                             Three Kings
## 16501                                                                                                                                              Flashdance
## 16502                                                                                                                                              Fight Club
## 16504                                                                                                                                                 RoboCop
## 16505                                                                                                                                Who Framed Roger Rabbit?
## 16508                                                                                                                                        Drugstore Cowboy
## 16511                                                                                                                                              Moonstruck
## 16512                                                                                                                                           Sleepy Hollow
## 16513                                                                                                                                World Is Not Enough, The
## 16515                                                                                                                                              Holy Smoke
## 16516                                                                                                                                 Bonfire of the Vanities
## 16517                                                                                                                                          Two Jakes, The
## 16518                                                                                                                                         Green Mile, The
## 16519                                                                                                                                           Stuart Little
## 16520                                                                                                                                              Easy Rider
## 16521                                                                                                                                Talented Mr. Ripley, The
## 16522                                                                                                                                  Snow Falling on Cedars
## 16523                                                                                                                                                Papillon
## 16525                                                                                                                            Fast Times at Ridgemont High
## 16526                                                                                                                                               Malcolm X
## 16527                                                                                                                                           Wayne's World
## 16528                                                                                                                                  League of Their Own, A
## 16529                                                                                                                                          Bodyguard, The
## 16530                                                                                                                                    White Men Can't Jump
## 16531                                                                                                                                         Of Mice and Men
## 16532                                                                                                                                              Beach, The
## 16533                                                                                                                                           Drowning Mona
## 16534                                                                                                                       Ghost Dog: The Way of the Samurai
## 16535                                                                                                                                                     JFK
## 16536                                                                                                                                         Erin Brockovich
## 16537                                                                                                                                         Thelma & Louise
## 16540                                                                                                                                            Jungle Fever
## 16541                                                                                                                                   Good Morning, Vietnam
## 16542                                                                                                                                          Grumpy Old Men
## 16546                                                                                                                                                    Hook
## 16549                                                                                                                                      Solaris (Solyaris)
## 16550                                                                                                                                                Predator
## 16551                                                                                                                         Postman Always Rings Twice, The
## 16552                                                                                                                                              Caddyshack
## 16553                                                                                                                                              Jennifer 8
## 16555                                                                                                                                              Breathless
## 16557                                                                                                                                              Eraserhead
## 16561                                                                                                                                              Flatliners
## 16562                                                                                                                                              Predator 2
## 16564                                                                                                                           Road Warrior, The (Mad Max 2)
## 16565                                                                                                                                      Gone in 60 Seconds
## 16567                                                                                                                             Big Trouble in Little China
## 16568                                                                                                                                                   Shaft
## 16569                                                                                                                                      Me, Myself & Irene
## 16570                                                                                                                                            Patriot, The
## 16571                                                                                                                                      Perfect Storm, The
## 16572                                                                                                                                                Croupier
## 16573                                                                                                                                                   X-Men
## 16575                                                                                                                                             Coyote Ugly
## 16576                                                                                                                                              Hollow Man
## 16577                                                                                                                                            Saving Grace
## 16578                                                                                                                                          Kelly's Heroes
## 16580                                                                                                                                Hellbound: Hellraiser II
## 16581                                                                                                                                              Get Carter
## 16582                                                                                                                                            Billy Elliot
## 16583                                                                                                                                            Men of Honor
## 16584                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 16585                                                                                                                            Planes, Trains & Automobiles
## 16586                                                                                                                                             Wall Street
## 16588                                                                                                                              O Brother, Where Art Thou?
## 16590                                                                                                                             Officer and a Gentleman, An
## 16592                                                                                                                                    Beverly Hills Cop II
## 16593                                                                                                                                                Hannibal
## 16594                                                                                                                                            Mexican, The
## 16595                                                                                                                    Harley Davidson and the Marlboro Man
## 16598                                                                                                                                      Enemy at the Gates
## 16600                                                                                                                                   Tailor of Panama, The
## 16603                                                                                                                                   Bridget Jones's Diary
## 16605                                                                                                                                                Scarface
## 16606                                                                                                                            World According to Garp, The
## 16607                                                                                                                                           City Slickers
## 16609                                                                                                                                                 Tootsie
## 16610                                                                                                                                 Lara Croft: Tomb Raider
## 16612                                                                                                                                              Score, The
## 16613                                                                                                                     Adventures of Baron Munchausen, The
## 16615                                                                                                                                 Bright Lights, Big City
## 16616                                                                                                                                                Cocktail
## 16617                                                                                                                           Tucker: The Man and His Dream
## 16618                                                                                                                                                   Twins
## 16619                                                                                                                                              Black Rain
## 16620                                                                                                                                      Planet of the Apes
## 16621                                                                                                                                              Road House
## 16622                                                                                                                                            Tango & Cash
## 16624                                                                                                                                   War of the Roses, The
## 16625                                                                                                                                           Osmosis Jones
## 16627                                                                                                                                            Training Day
## 16628                                                                                                                                                Cruising
## 16629                                                                                                                                             Dirty Harry
## 16630                                                                                                                                            Donnie Darko
## 16631                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 16632                                                                                                                                                Spy Game
## 16633                                                                                                                                      Behind Enemy Lines
## 16634                                                                                                                                          Ocean's Eleven
## 16635                                                                                                                                   Royal Tenenbaums, The
## 16637                                                                                                                                       Beautiful Mind, A
## 16638                                                                                                                        Nine Lives of Fritz the Cat, The
## 16639                                                                                                                                            Gosford Park
## 16643                                                                                                                        Great Rock 'n' Roll Swindle, The
## 16645                                                                                                                                My Big Fat Greek Wedding
## 16646                                                                                                                                                Breakout
## 16647                                                                                                                                    Three Men and a Baby
## 16648                                                                                                                             Three Men and a Little Lady
## 16649                                                                                                                                            Cadillac Man
## 16650                                                                                                                                              Spider-Man
## 16653                                                                                                                                   Sum of All Fears, The
## 16655                                                                                                                                              Scooby-Doo
## 16656                                                                                                                                         Minority Report
## 16659                                                                                                                                              Red Dragon
## 16660                                                                                                                                   Bowling for Columbine
## 16662                                                                                                                                               Gallipoli
## 16663                                                                                                                 Harry Potter and the Chamber of Secrets
## 16664                                                                                                                                                   Thief
## 16665                                                                                                                            Talk to Her (Hable con Ella)
## 16666                                                                                                                                            Analyze That
## 16667                                                                                                                                              Adaptation
## 16669                                                                                                                                           About Schmidt
## 16671                                                                                                                                               25th Hour
## 16673                                                                                                                                     Catch Me If You Can
## 16675                                                                                                                 Monty Python Live at the Hollywood Bowl
## 16677                                                                                                                                              Old School
## 16678                                                                                                                                    Bend It Like Beckham
## 16679                                                                                                                                              Green Card
## 16680                                                                                                                             Lilya 4-Ever (Lilja 4-ever)
## 16681                                                                                                                           101 Reykjavik (101 Reykjavík)
## 16682                                                                                                                                    Matrix Reloaded, The
## 16683                                                                                                                                            Finding Nemo
## 16684                                                                                                                                        Italian Job, The
## 16685                                                                                                                                           28 Days Later
## 16686                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 16687                                                                                                                                                S.W.A.T.
## 16690                                                                                                                                              Videodrome
## 16691                                                                                                                                 All the President's Men
## 16692                                                                                                                                         Boyz N the Hood
## 16694                                                                                                                                            Mystic River
## 16698                                                                                                                                                   Hoffa
## 16699                                                                                                                                              King Ralph
## 16700                                                                                                                                            Passenger 57
## 16702                                                                                                                                  Jesus Christ Superstar
## 16703                                                                                                                                                    1941
## 16705                                                                                                                                  Something's Gotta Give
## 16707                                                                                                                        Adventures of Ford Fairlane, The
## 16708                                                                                                                                    Super Fly (Superfly)
## 16710                                                                                                                                           Warriors, The
## 16711                                                                                                                                               Woodstock
## 16712                                                                                                                                            Mean Streets
## 16713                                                                                                           Maltese Falcon, The (a.k.a. Dangerous Female)
## 16715                                                                                                                                       Shaun of the Dead
## 16719                                                                                                                                        Wedding Crashers
## 16721                                                                                                                                               King Kong
## 16724                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 16725                                                                                                                                           Departed, The
## 16726                                                                                                                                                Hot Fuzz
## 16728                                                                                                                         Nightmare Before Christmas, The
## 16734                                                                                                                                             Hocus Pocus
## 16735                                                                                                                                          Pretty in Pink
## 16737                                                                                                                                            Urban Legend
## 16739                                                                                                                                   Thirteenth Floor, The
## 16740                                                                                                                                        Sixth Sense, The
## 16744                                                                                                                    Don't Tell Mom the Babysitter's Dead
## 16747                                                                                                                                     Sweetest Thing, The
## 16750                                                                                                                                    Cheaper by the Dozen
## 16752                                                                                                                                                 Shrek 2
## 16755                                                                                                                                        Incredibles, The
## 16756                                                                                                                               Left Behind: World at War
## 16758                                                                                                                                              Date Movie
## 16760                                                                                                                                          Over the Hedge
## 16761                                                                                                                                   Stranger than Fiction
## 16766                                                                                                                                                    Juno
## 16772                                                                                                 Léon: The Professional (a.k.a. The Professional) (Léon)
## 16775                                                                                                                                              Entrapment
## 16776                                                                                                                                          Wild Wild West
## 16777                                                                                                                                        Mickey Blue Eyes
## 16779                                                                                                                                     Bone Collector, The
## 16780                                                                                                                                World Is Not Enough, The
## 16781                                                                                                                                                Magnolia
## 16782                                                                                                                                Talented Mr. Ripley, The
## 16783                                                                                                                                             Pitch Black
## 16784                                                                                                                                       Final Destination
## 16785                                                                                                                                      Perfect Storm, The
## 16786                                                                                                                                             Scary Movie
## 16787                                                                                                                                                    Blow
## 16788                                                                                                                                               Swordfish
## 16789                                                                                                                            A.I. Artificial Intelligence
## 16790                                                                                                                                          Legally Blonde
## 16791                                                                                                                                          American Pie 2
## 16792                                                                                                                                               Zoolander
## 16794                                                                                                                                                   Signs
## 16799                                                                                                                                           28 Days Later
## 16803                                                                                                                                              Ex Machina
## 16805                                                                                                                                                    Babe
## 16806                                                                                                                                    Seven (a.k.a. Se7en)
## 16807                                                                                                                                              Braveheart
## 16808                                                                                                                                          Batman Forever
## 16809                                                                                                                                            Crimson Tide
## 16810                                                                                                                                                Net, The
## 16812                                                                                                                                              Disclosure
## 16813                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 16814                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 16815                                                                                                                                    Natural Born Killers
## 16816                                                                                                                                            Pulp Fiction
## 16818                                                                                                                                 While You Were Sleeping
## 16819                                                                                                                              Ace Ventura: Pet Detective
## 16822                                                                                                                                               Mask, The
## 16824                                                                                                                                               True Lies
## 16825                                                                                                                                             Cliffhanger
## 16826                                                                                                                                               Firm, The
## 16831                                                                                                                              Terminator 2: Judgment Day
## 16832                                                                                                                                      Dances with Wolves
## 16835                                                                                                                                                  Casino
## 16839                                                                                                                                          Demolition Man
## 16852                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 16854                                                                                                                                                   X-Men
## 16869                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 16870                                                                                                                                                    Babe
## 16873                                                                                                                                    Seven (a.k.a. Se7en)
## 16874                                                                                                                                              Juror, The
## 16880                                                                                                                                          Batman Forever
## 16881                                                                                                                                                   Congo
## 16886                                                                                                                                             Judge Dredd
## 16900                                                                                                                                        Immortal Beloved
## 16902                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 16906                                                                                                                                     Legends of the Fall
## 16912                                                                                                                                 Quick and the Dead, The
## 16915                                                                                                                               Shawshank Redemption, The
## 16916                                                                                                                                               Tank Girl
## 16920                                                                                                       Adventures of Priscilla, Queen of the Desert, The
## 16925                                                                                                                                          Lion King, The
## 16935                                                                                                                                        Another Stakeout
## 16950                                                                                                                                               RoboCop 3
## 16953                                                                                                                                              Serial Mom
## 16967                                                                                                                                    Beauty and the Beast
## 16972                                                                                                                                                 Twister
## 16978                                                                                                                             Father of the Bride Part II
## 16979                                                                                                                                                 Sabrina
## 16980                                                                                                                                               GoldenEye
## 16982                                                                                                                                              Four Rooms
## 16984                                                                                                                                         Dangerous Minds
## 16985                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 16987                                                                                                                                              To Die For
## 16990                                                                                                                 Things to Do in Denver When You're Dead
## 16991                                                                                                                                            Broken Arrow
## 16992                                                                                                                          Bridges of Madison County, The
## 16994                                                                                                                                               Boomerang
## 16995                                                                                                                                           Birdcage, The
## 16998                                                                                                                                                Net, The
## 16999                                                                                                                                           Billy Madison
## 17002                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 17003                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 17005                                                                                                                                                Outbreak
## 17007                                                                                                                                               Quiz Show
## 17009                                                                                                                                               Tank Girl
## 17011                                                                                                                              Ace Ventura: Pet Detective
## 17012                                                                                                       Adventures of Priscilla, Queen of the Desert, The
## 17013                                                                                                                                               Crow, The
## 17014                                                                                                                                            Forrest Gump
## 17015                                                                                                                                          Lion King, The
## 17016                                                                                                                                               Mask, The
## 17018                                                                                                                                           Reality Bites
## 17019                                                                                                                                                   Speed
## 17022                                                                                                                                               Firm, The
## 17024                                                                                                                                           Jurassic Park
## 17026                                                                                                                                            Philadelphia
## 17028                                                                                                                                    Sleepless in Seattle
## 17029                                                                                                                                            Blade Runner
## 17030                                                                                                                                              Son in Law
## 17031                                                                                                                         Nightmare Before Christmas, The
## 17032                                                                                                                                   Three Musketeers, The
## 17033                                                                                                                                              Home Alone
## 17034                                                                                                                                                   Ghost
## 17035                                                                                                                                                 Aladdin
## 17039                                                                                                                                    Beauty and the Beast
## 17040                                                                                                                                            Pretty Woman
## 17042                                                                                                                                      Courage Under Fire
## 17043                                                                                                                                     Mission: Impossible
## 17045                                                                                                                                               Rock, The
## 17047                                                                                                                            Hunchback of Notre Dame, The
## 17049                                                                                                                                              Phenomenon
## 17051                                                                                                                                                Basquiat
## 17052                                                                                                                                                 Tin Cup
## 17058                                                                                                                                Long Kiss Goodnight, The
## 17060                                                                                                                            Monty Python's Life of Brian
## 17061                                                                                                                                           Dirty Dancing
## 17064                                                                                                                               Streetcar Named Desire, A
## 17067                                                                                                                                    English Patient, The
## 17074                                                                                                                                              Sting, The
## 17076                                                                                                                                           Groundhog Day
## 17080                                                                                                                                 When Harry Met Sally...
## 17081                                                                                                                                              Birds, The
## 17082                                                                                                                                           Mars Attacks!
## 17083                                                                                                                                           Jerry Maguire
## 17087                                                                                                                                      Fifth Element, The
## 17088                                                                                                                                        Addicted to Love
## 17089                                                                                                                          Lost World: Jurassic Park, The
## 17091                                                                                                                                                 Contact
## 17092                                                                                                                                         Picture Perfect
## 17093                                                                                                                                           Air Force One
## 17097                                                                                                                                       House of Yes, The
## 17098                                                                                                                                                 Gattaca
## 17100                                                                                                                                        Truman Show, The
## 17103                                                                                                                                                 Titanic
## 17104                                                                                                                                             Wag the Dog
## 17105                                                                                                                                             Spice World
## 17107                                                                                                                                      As Good as It Gets
## 17109                                                                                                                                           Suicide Kings
## 17110                                                                                                                                        Newton Boys, The
## 17111                                                                                                                        Major League: Back to the Minors
## 17112                                                                                                                                             Hope Floats
## 17113                                                                                                                                            Out of Sight
## 17114                                                                                                                                              Armageddon
## 17115                                                                                                                                                      Pi
## 17116                                                                                                                            There's Something About Mary
## 17117                                                                                                                             Greatest Show on Earth, The
## 17118                                                                                                                                                Rain Man
## 17121                                                                                                                                           Freaky Friday
## 17123                                                                                                                                 Flight of the Navigator
## 17124                                                                                                                                        Parent Trap, The
## 17125                                                                                                                                     Little Mermaid, The
## 17127                                                                                                                                              Swing Kids
## 17128                                                                                                                    Indiana Jones and the Temple of Doom
## 17129                                                                                                                          Ever After: A Cinderella Story
## 17131                                                                                                                                           Weird Science
## 17132                                                                                                                                           Avengers, The
## 17135                                                                                                                                                    Hero
## 17136                                                                                                                                           Pleasantville
## 17139                                                                                                                      Police Academy 3: Back in Training
## 17140                                                                                                                                                Rushmore
## 17142                                                                                                                                                 Stepmom
## 17143                                                                                                                                           Varsity Blues
## 17144                                                                                                                                        Crocodile Dundee
## 17148                                                                                                                                        Forces of Nature
## 17152                                                                                                                          Open Your Eyes (Abre los ojos)
## 17155                                                                                                                                              Entrapment
## 17156                                                                                                                                              Dick Tracy
## 17157                                                                                                               Star Wars: Episode I - The Phantom Menace
## 17159                                                                                                                                            Notting Hill
## 17160                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 17162                                                                                                                                            American Pie
## 17163                                                                                                                                          Eyes Wide Shut
## 17165                                                                                                                                             Mystery Men
## 17166                                                                                                                                               Bowfinger
## 17171                                                                                                                                                   Tommy
## 17172                                                                                                                                             Three Kings
## 17175                                                                                                                          Home Alone 2: Lost in New York
## 17177                                                                                                                                    Being John Malkovich
## 17178                                                                                                                                           Bachelor, The
## 17184                                                                                                                                             Toy Story 2
## 17185                                                                                                                                                Magnolia
## 17186                                                                                                                                        Any Given Sunday
## 17187                                                                                                                            Fast Times at Ridgemont High
## 17188                                                                                                                                              Sister Act
## 17189                                                                                                                                        Scent of a Woman
## 17193                                                                                                                                          Bodyguard, The
## 17194                                                                                                                                                 Singles
## 17196                                                                                                                                                Scream 3
## 17197                                                                                                                                             Boiler Room
## 17198                                                                                                                                             Wonder Boys
## 17201                                                                                                                                         Thelma & Louise
## 17203                                                                                                                                   Good Morning, Vietnam
## 17205                                                                                                                                           High Fidelity
## 17206                                                                                                                                              Parenthood
## 17207                                                                                                                                                 28 Days
## 17208                                                                                                                                               Gladiator
## 17209                                                                                                                                 Pee-wee's Big Adventure
## 17210                                                                                                                                        Running Man, The
## 17211                                                                                                                                                Soapdish
## 17212                                                                                                                                            Patriot, The
## 17215                                                                                                                                             Coyote Ugly
## 17216                                                                                                                                              Crush, The
## 17217                                                                                                                                       Tao of Steve, The
## 17219                                                                                                                                             Nurse Betty
## 17220                                                                                                                                           Almost Famous
## 17221                                                                                                                                            Best in Show
## 17224                                                                                                                                            Billy Elliot
## 17225                                                                                                                                               Bedazzled
## 17226                                                                                                                                             Unbreakable
## 17229                                                                                                                                                 Pollock
## 17232                                                                                                                                               Antitrust
## 17233                                                                                                                                              Innerspace
## 17234                                                                                                                                           Maid to Order
## 17235                                                                                                                                               Mannequin
## 17240                                                                                                                                           Heartbreakers
## 17243                                                                                                                                        Knight's Tale, A
## 17244                                                                                                                                             Startup.com
## 17246                                                                                                                                            Pearl Harbor
## 17247                                                                                                                                           City Slickers
## 17249                                                                                                                                               Swordfish
## 17250                                                                                                                                             Point Break
## 17252                                                                                                                                 Lara Croft: Tomb Raider
## 17254                                                                                                                                           Short Circuit
## 17258                                                                                                                                   Princess Diaries, The
## 17259                                                                                                                          Jay and Silent Bob Strike Back
## 17260                                                                                                                                               Rock Star
## 17261                                                                                                                                            Training Day
## 17263                                                                                                                                             Serendipity
## 17264                                                                                                                                                 Bandits
## 17266                                                                                                                      Ocean's Eleven (a.k.a. Ocean's 11)
## 17269                                                                                                                                             Vanilla Sky
## 17271                                                                                                                              Bill & Ted's Bogus Journey
## 17272                                                                                                                                          Kate & Leopold
## 17276                                                                                                                                           Sorority Boys
## 17277                                                                                                                           National Lampoon's Van Wilder
## 17278                                                                                                                                    Three Men and a Baby
## 17281                                                                                                                                    Bourne Identity, The
## 17282                                                                                                                                             Men at Work
## 17283                                                                                                                             Austin Powers in Goldmember
## 17289                                                                                                                 Harry Potter and the Chamber of Secrets
## 17290                                                                                                                                         Men with Brooms
## 17291                                                                                                                                              Adaptation
## 17293                                                                                                                                        Two Weeks Notice
## 17294                                                                                                                                              Blue Steel
## 17295                                                                                                                                                 Chicago
## 17299                                                                                                                                            Finding Nemo
## 17303                                                                                                                      Terminator 3: Rise of the Machines
## 17304                                                                                                                                             Valley Girl
## 17305                                                                                                                                             Once Bitten
## 17307                                                                                                                                           Leap of Faith
## 17310                                                                                                                                           Doc Hollywood
## 17312                                                                                                                           Win a Date with Tad Hamilton!
## 17318                                                                                                                                  How I Got Into College
## 17321                                                                                                                                                    Heat
## 17322                                                                                                                                              Four Rooms
## 17323                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 17326                                                                                                                                            Broken Arrow
## 17330                                                                                                                                     Mission: Impossible
## 17333                                                                                                                                                 Twister
## 17341                                                                                                                                       Waiting to Exhale
## 17346                                                                                                                                               GoldenEye
## 17369                                                                                                                                          Batman Forever
## 17371                                                                                                                              Die Hard: With a Vengeance
## 17374                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 17375                                                                                                                                             Major Payne
## 17376                                                                                                                                    Natural Born Killers
## 17389                                                                                                                                                  Batman
## 17390                                                                                                                               Silence of the Lambs, The
## 17395                                                                                                                                              To Die For
## 17396                                                                                                                                                   Congo
## 17399                                                                                                                                        Muriel's Wedding
## 17400                                                                                                                                    Hot Shots! Part Deux
## 17403                                                                                                                            So I Married an Axe Murderer
## 17405                                                                                                                                          Cable Guy, The
## 17407                                                                                                                                          Reservoir Dogs
## 17415                                                                                                                                     Grosse Pointe Blank
## 17416                                                                                                                                             Chasing Amy
## 17419                                                                                                                            There's Something About Mary
## 17420                                                                                                                                         Lethal Weapon 2
## 17429                                                                                                                                             Chicken Run
## 17430                                                                                                                                           Almost Famous
## 17434                                                                                                                                          Batman Forever
## 17441                                                                                                                                               Mask, The
## 17442                                                                                                                                             Cliffhanger
## 17443                                                                                                                                           Jurassic Park
## 17444                                                                                                                               Silence of the Lambs, The
## 17449                                                                                                                                         American Beauty
## 17450                                                                                                                                             Three Kings
## 17451                                                                                                                                              Fight Club
## 17458                                                                                                                                          Before Sunrise
## 17462                                                                                                                                        Schindler's List
## 17465                                                                                                                                            My Left Foot
## 17466                                                                                                                                       Strictly Ballroom
## 17467                                                                                                                                        Harold and Maude
## 17470                                                                                                                              Nightmare on Elm Street, A
## 17473                                                                                                                                           Lost in Space
## 17475                                                                                                                                        Chariots of Fire
## 17477                                                                                                                                                Rain Man
## 17480                                                                                                                      Red Violin, The (Violon rouge, Le)
## 17481                                                                                                                                           Haunting, The
## 17483                                                                                                                                                Stigmata
## 17484                                                                                                                                               Backdraft
## 17486                                                                                                                                       American Graffiti
## 17487                                                                                                                                                 Network
## 17496                                                                                                                             World's Fastest Indian, The
## 17503                                                                                                                                             Gran Torino
## 17504                                                                                                                                            Seven Pounds
## 17519                                                                                                                                      Heavenly Creatures
## 17531                                                                                                                                            Pretty Woman
## 17533                                                                                                                                              Barbarella
## 17547                                                                                                                                           39 Steps, The
## 17550                                                                                                                                       Dial M for Murder
## 17553                                                                                                                                    Escape from New York
## 17558                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 17573                                                                                                                                    Arsenic and Old Lace
## 17579                                                                                                                           Star Trek: The Motion Picture
## 17582                                                                                                                           Star Trek IV: The Voyage Home
## 17584                                                                                                                                                  Scream
## 17585                                                                                                                                      Fifth Element, The
## 17592                                                                                                                                                 Gattaca
## 17594                                                                                                                                  Wings of the Dove, The
## 17595                                                                                                                                     Alien: Resurrection
## 17597                                                                                                                                               Dark City
## 17607                                                                                                                             Back to the Future Part III
## 17608                                                                                                                                                    Dune
## 17610                                                                                                                                         Black Hole, The
## 17615                                                                                                                             1984 (Nineteen Eighty-Four)
## 17616                                                                                                                                          Dead Zone, The
## 17617                                                                                                                                     Secret of NIMH, The
## 17618                                                                                                                                         Rosemary's Baby
## 17629                                                                                                                                     Stepford Wives, The
## 17633                                                                                                                                 Star Trek: Insurrection
## 17635                                                                                                                                              Hurlyburly
## 17636                                                                                                                                         Howard the Duck
## 17638                                                                                                                                             Logan's Run
## 17640                                                                                                                      Escape from the Planet of the Apes
## 17641                                                                                                                                             Matrix, The
## 17642                                                                                                                                      Night of the Comet
## 17643                                                                                                               Star Wars: Episode I - The Phantom Menace
## 17645                                                                                                                                             Superman II
## 17646                                                                                                                                             Swamp Thing
## 17648                                                                                                                                           Deep Blue Sea
## 17658                                                                                                                                              Spaceballs
## 17678                                                                                                                                      Gone in 60 Seconds
## 17680                                                                                                                                            American Pop
## 17683                                                                                                                                               Fury, The
## 17684                                                                                                                                      Prince of the City
## 17686                                                                                                                                  Sugarland Express, The
## 17687                                                                                                                             Big Trouble in Little China
## 17690                                                                                                                               Kentucky Fried Movie, The
## 17695                                                                                                                                         Mackenna's Gold
## 17696                                                                                                                                             White Sands
## 17699                                                                                                                                          Love and Death
## 17701                                                                                                                              Man Who Fell to Earth, The
## 17702                                                                                                                                               Toy Story
## 17703                                                                                                                                                 Jumanji
## 17705                                                                                                                                                  Casino
## 17707                                                                                                                                                  Powder
## 17709                                                                                                City of Lost Children, The (Cité des enfants perdus, La)
## 17711                                                                                                                                        Dead Man Walking
## 17715                                                                                                                             Indian in the Cupboard, The
## 17718                                                                                                                                     Crossing Guard, The
## 17719                                                                                                                                            Broken Arrow
## 17720                                                                                                                                           Bottle Rocket
## 17723                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 17726                                                                                                                                                 Rob Roy
## 17727                                                                                                                                          Batman Forever
## 17728                                                                                                                                                   Congo
## 17731                                                                                                                                            First Knight
## 17732                                                                                                                                             Judge Dredd
## 17733                                                                                                                                                Mallrats
## 17734                                                                                                                                                 Species
## 17735                                                                                                        To Wong Foo, Thanks for Everything! Julie Newmar
## 17736                                                                                                                                              Waterworld
## 17738                                                                                                                                               Drop Zone
## 17740                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 17746                                                                                                                                                Outbreak
## 17748                                                                                                                                                Stargate
## 17750                                                                                                                                  Star Trek: Generations
## 17752                                                                                                                                               Crow, The
## 17753                                                                                                                                            Forrest Gump
## 17754                                                                                                                                          Lion King, The
## 17755                                                                                                                                                Maverick
## 17756                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 17758                                                                                                                                                   Speed
## 17761                                                                                                                                               Coneheads
## 17762                                                                                                                                   Endless Summer 2, The
## 17763                                                                                                                                               Firm, The
## 17764                                                                                                                                           Fugitive, The
## 17767                                                                                                                                             Killing Zoe
## 17770                                                                                                                                      Secret Garden, The
## 17775                                                                                                                                               Tombstone
## 17776                                                                                                                                  Brady Bunch Movie, The
## 17788                                                                                                                                   Hellraiser: Bloodline
## 17789                                                                                                                                     Mission: Impossible
## 17790                                                                                                                                             Dragonheart
## 17791                                                                                                                               James and the Giant Peach
## 17793                                                                                                                                    Operation Dumbo Drop
## 17794                                                                                                                                        Mulholland Falls
## 17798                                                                                                                                                 Twister
## 17802                                                                                                                           Independence Day (a.k.a. ID4)
## 17807                                                                                                                                        Escape from L.A.
## 17809                                                                                                                                            Gone Fishin'
## 17810                                                                                                                               Island of Dr. Moreau, The
## 17811                                                                                                                                               First Kid
## 17827                                                                                                                                Night of the Living Dead
## 17830                                                                                                                                       Last Man Standing
## 17831                                                                                                                                Escape to Witch Mountain
## 17832                                                                                                                           Robin Hood: Prince of Thieves
## 17833                                                                                                                                            Mary Poppins
## 17834                                                                                                                                                 Freeway
## 17837                                                                                                                                      Lawnmower Man, The
## 17838                                                                                                                                      That Thing You Do!
## 17839                                                                                                                             Ghost and the Darkness, The
## 17840                                                                                                                    William Shakespeare's Romeo + Juliet
## 17843                                                                                                                     Willy Wonka & the Chocolate Factory
## 17854                                                                                                                                            Palookaville
## 17855                                                                                                                                              Abyss, The
## 17860                                                                                                                                           Grifters, The
## 17861                                                                                                                                    English Patient, The
## 17862                                                                                                                                        Paris Is Burning
## 17877                                                                                                                                                   Alien
## 17887                                                                                                                Seventh Seal, The (Sjunde inseglet, Det)
## 17899                                                                                                                                           Groundhog Day
## 17913                                                                                                                      Indiana Jones and the Last Crusade
## 17921                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 17926                                                                                                                                                Candyman
## 17928                                                                                                                              Nightmare on Elm Street, A
## 17929                                                                                                                                               Omen, The
## 17930                                                                                                                                Star Trek: First Contact
## 17933                                                                                                                  Star Trek VI: The Undiscovered Country
## 17934                                                                                                                         Star Trek II: The Wrath of Khan
## 17935                                                                                                                     Star Trek III: The Search for Spock
## 17936                                                                                                                           Star Trek IV: The Voyage Home
## 17937                                                                                                                                          Batman Returns
## 17938                                                                                                                                              Young Guns
## 17941                                                                                                                                                  Jaws 2
## 17943                                                                                                                                           Mars Attacks!
## 17948                                                                                                                                               Liar Liar
## 17949                                                                                                                                                Anaconda
## 17952                                                                                                             Austin Powers: International Man of Mystery
## 17953                                                                                                                                               Breakdown
## 17955                                                                                                                          Lost World: Jurassic Park, The
## 17956                                                                                                                                                 Con Air
## 17957                                                                                                                                        Pillow Book, The
## 17958                                                                                                                                 Speed 2: Cruise Control
## 17959                                                                                                                                          Batman & Robin
## 17961                                                                                                                                My Best Friend's Wedding
## 17962                                                                                                                                                Face/Off
## 17964                                                                                                                                                 Contact
## 17965                                                                                                                                               G.I. Jane
## 17966                                                                                                                                     Conan the Barbarian
## 17967                                                                                                                                    George of the Jungle
## 17968                                                                                                                                                Cop Land
## 17969                                                                                                                                                   Spawn
## 17971                                                                                                                                                   Mimic
## 17972                                                                                                                                      Kull the Conqueror
## 17973                                                                                                                                           Air Force One
## 17976                                                                                                                                               Star Maps
## 17978                                                                                                                                    Seven Years in Tibet
## 17982                                                                                                                                         Full Monty, The
## 17983                                                                                                                           RocketMan (a.k.a. Rocket Man)
## 17985                                                                                                                                                 Stripes
## 17986                                                                                                                                     Welcome to Sarajevo
## 17988                                                                                                                                       Starship Troopers
## 17989                                                                                                                                      Joy Luck Club, The
## 17990                                                                                                                                        Truman Show, The
## 17991                                                                                                                                             Jackal, The
## 17992                                                                                                                            Man Who Knew Too Little, The
## 17993                                                                                                                                     Alien: Resurrection
## 17994                                                                                                                                            Apostle, The
## 17995                                                                                                                                                 Flubber
## 17998                                                                                                                                              Mouse Hunt
## 17999                                                                                                                                                 Titanic
## 18000                                                                                                                                    Horse Whisperer, The
## 18001                                                                                                                                            Jackie Brown
## 18005                                                                                                                                                  Fallen
## 18006                                                                                                                                             Deep Rising
## 18007                                                                                                                                Replacement Killers, The
## 18008                                                                                                                                     Blues Brothers 2000
## 18009                                                                                                                                     Wedding Singer, The
## 18010                                                                                                                                                  Sphere
## 18013                                                                                                                                           U.S. Marshals
## 18014                                                                                                                                           Suicide Kings
## 18015                                                                                                                               Man in the Iron Mask, The
## 18016                                                                                                                                        Newton Boys, The
## 18019                                                                                                                                            Big One, The
## 18020                                                                                                                                           Lost in Space
## 18021                                                                                                                                          Mercury Rising
## 18022                                                                                                                                   Spanish Prisoner, The
## 18023                                                                                                                                          Borrowers, The
## 18024                                                                                                                                          Love Walked In
## 18025                                                                                                                                              Species II
## 18026                                                                                                                                            Big Hit, The
## 18027                                                                                                                                             Deep Impact
## 18028                                                                                                                                                Godzilla
## 18030                                                                                                                          Fear and Loathing in Las Vegas
## 18032                                                                                                                                   Six Days Seven Nights
## 18033                                                                                                                                            Dr. Dolittle
## 18035                                                                                                                                              Armageddon
## 18037                                                                                                                                          Small Soldiers
## 18040                                                                                                                                 Plan 9 from Outer Space
## 18046                                                                                                                                                   Rocky
## 18047                                                                                                                                       Kramer vs. Kramer
## 18055                                                                                                                                               Labyrinth
## 18059                                                                                                                                       Exorcist III, The
## 18061                                                                                                                                         Lethal Weapon 2
## 18062                                                                                                                                         Lethal Weapon 3
## 18063                                                                                                                                            Goonies, The
## 18066                                                                                                                              Back to the Future Part II
## 18067                                                                                                                             Back to the Future Part III
## 18068                                                                                                                                 Poseidon Adventure, The
## 18070                                                                                                                                                    Dune
## 18072                                                                                                                                Honey, I Blew Up the Kid
## 18073                                                                                                                                Honey, I Shrunk the Kids
## 18080                                                                                                                                      Lady and the Tramp
## 18083                                                                                                                                          Rocketeer, The
## 18085                                                                                                                                                  Splash
## 18088                                                                                                                                                    Tron
## 18091                                                                                                                                Man with Two Brains, The
## 18093                                                                                                                    Indiana Jones and the Temple of Doom
## 18094                                                                                                                                          Dead Zone, The
## 18095                                                                                                                                          Needful Things
## 18096                                                                                                                                      Addams Family, The
## 18098                                                                                                                                    Nutty Professor, The
## 18099                                                                                                                                          Watership Down
## 18100                                                                                                                                       Dark Crystal, The
## 18101                                                                                                                                                  Legend
## 18102                                                                                                                             Slums of Beverly Hills, The
## 18104                                                                                                                                  NeverEnding Story, The
## 18105                                                                                                                                                   Blade
## 18110                                                                                                                                            My Bodyguard
## 18112                                                                                                                                                    Toys
## 18113                                                                                                                                       Seventh Sign, The
## 18116                                                                                                                                            Urban Legend
## 18120                                                                                                                                    What Dreams May Come
## 18121                                                                                                                                         My Cousin Vinny
## 18123                                                                                                                                                Holy Man
## 18124                                                                                                                                Children of a Lesser God
## 18131                                                                                                                   I Still Know What You Did Last Summer
## 18132                                                                                                                                          Meet Joe Black
## 18133                                                                                                                                     Stepford Wives, The
## 18135                                                                                                                                      Enemy of the State
## 18136                                                                                                                                           Bug's Life, A
## 18139                                                                                                          King Kong vs. Godzilla (Kingukongu tai Gojira)
## 18141                                                                                                                               Desperately Seeking Susan
## 18142                                                                                                                                                  Fletch
## 18143                                                                                                                                               Red Sonja
## 18145                                                                                                                                          Simple Plan, A
## 18147                                                                                                                                               Rambo III
## 18148                                                                                                                                     Romancing the Stone
## 18150                                                                                                                                                Rocky IV
## 18151                                                                                                                                                 Rocky V
## 18152                                                                                                                                   Young Sherlock Holmes
## 18153                                                                                                                                         Karate Kid, The
## 18154                                                                                                                                Karate Kid, Part II, The
## 18155                                                                                                                               Karate Kid, Part III, The
## 18156                                                                                                                                            General, The
## 18158                                                                                                                                                Fly, The
## 18159                                                                                                                                                Fly, The
## 18163                                                                                                                                          ¡Three Amigos!
## 18164                                                                                                                                     My Favorite Martian
## 18166                                                                                                                                   Towering Inferno, The
## 18167                                                                                                                                               Westworld
## 18169                                                                                                                                            Analyze This
## 18170                                                                                                                       Lock, Stock & Two Smoking Barrels
## 18172                                                                                                                                     Out-of-Towners, The
## 18173                                                                                                                                                    Life
## 18174                                                                                                                                           Hideous Kinky
## 18175                                                                                                                                                eXistenZ
## 18176                                                                                                                                              Dick Tracy
## 18177                                                                                                                                              Mummy, The
## 18178                                                                                                         William Shakespeare's A Midsummer Night's Dream
## 18179                                                                                                               Star Wars: Episode I - The Phantom Menace
## 18185                                                                                                                                   Thirteenth Floor, The
## 18187                                                                                                                                 General's Daughter, The
## 18188                                                                                                                    South Park: Bigger, Longer and Uncut
## 18189                                                                                                                                          Wild Wild West
## 18190                                                                                                                                          Arlington Road
## 18191                                                                                                                                Blair Witch Project, The
## 18192                                                                                                                                             Lake Placid
## 18194                                                                                                                                           Haunting, The
## 18196                                                                                                                                     Mosquito Coast, The
## 18201                                                                                                                                              Yards, The
## 18202                                                                                                                                               Bowfinger
## 18203                                                                                                                                         Heaven Can Wait
## 18205                                                                                                                                                     Big
## 18207                                                                                                                                       13th Warrior, The
## 18208                                                                                                                                         Dudley Do-Right
## 18211                                                                                                                                     Hard Day's Night, A
## 18213                                                                                                                                               Excalibur
## 18220                                                                                                                                     High Plains Drifter
## 18229                                                                                                                                                 RoboCop
## 18234                                                                                                                                          Omega Man, The
## 18237                                                                                                                                          Trading Places
## 18242                                                                                                                                                 Shampoo
## 18243                                                                                                                                River Runs Through It, A
## 18244                                                                                                                                               Backdraft
## 18246                                                                                                                                             End of Days
## 18248                                                                                                                                              Holy Smoke
## 18249                                                                                                                                       Sweet and Lowdown
## 18252                                                                                                                                           Fantasia 2000
## 18253                                                                                                                                                Magnolia
## 18256                                                                                                                                            Galaxy Quest
## 18263                                                                                                                                                   Alive
## 18265                                                                                                                                           Wayne's World
## 18266                                                                                                                                  League of Their Own, A
## 18267                                                                                                                                    White Men Can't Jump
## 18271                                                                                                                                           Drowning Mona
## 18274                                                                                                                                         Mission to Mars
## 18275                                                                                                                                         Ninth Gate, The
## 18276                                                                                                                             Hoosiers (a.k.a. Best Shot)
## 18278                                                                                                                                            On the Beach
## 18279                                                                                                                                Harry and the Hendersons
## 18282                                                                                                                                       Final Destination
## 18287                                                                                                                            Teenage Mutant Ninja Turtles
## 18288                                                                                                                                                Red Dawn
## 18290                                                                                                                                          Grumpy Old Men
## 18291                                                                                                                                         Waking the Dead
## 18298                                                                                                                                                    Hook
## 18299                                                                                                                                          Horror Express
## 18303                                                                                                                                         American Psycho
## 18305                                                                                                                                    Crow: Salvation, The
## 18308                                                                                                                                            Alien Nation
## 18313                                                                                                                                           Space Cowboys
## 18314                                                                                                                                             Air America
## 18316                                                                                                                 Naked Gun 2 1/2: The Smell of Fear, The
## 18317                                                                                                                     Highlander: Endgame (Highlander IV)
## 18318                                                                                                                                             Nurse Betty
## 18319                                                                                                                                            Watcher, The
## 18323                                                                                                                   Abbott and Costello Meet Frankenstein
## 18326                                                                                                                                              Get Carter
## 18329                                                                                                                                        Charlie's Angels
## 18331                                                                                                                                            6th Day, The
## 18332                                                                                                                                         What Women Want
## 18333                                                                                                                                       Extreme Prejudice
## 18334                                                                                                                                           No Man's Land
## 18343                                                                                                                                               Toy Story
## 18344                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 18345                                                                                                                                        Dead Man Walking
## 18346                                                                                                                                    Seven (a.k.a. Se7en)
## 18349                                                                                                                                                Net, The
## 18350                                                                                                                                            Strange Days
## 18351                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 18352                                                                                                                                                Outbreak
## 18353                                                                                                                                            Pulp Fiction
## 18355                                                                                                                                          Lion King, The
## 18356                                                                                                                                                   Speed
## 18357                                                                                                                                               True Lies
## 18358                                                                                                                                               Firm, The
## 18359                                                                                                                                           Fugitive, The
## 18360                                                                                                                                           Jurassic Park
## 18361                                                                                                                                          Mrs. Doubtfire
## 18362                                                                                                                                    Sleepless in Seattle
## 18363                                                                                                                                                   Ghost
## 18365                                                                                                                                                  Batman
## 18367                                                                                                                                            Pretty Woman
## 18368                                                                                                                                                   Fargo
## 18369                                                                                                                                     Mission: Impossible
## 18370                                                                                                                                               Rock, The
## 18371                                                                                                                                                 Twister
## 18372                                                                                                                           Independence Day (a.k.a. ID4)
## 18373                                                                                                                                                 Vertigo
## 18376                                                                                                                              E.T. the Extra-Terrestrial
## 18377                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 18378                                                                                                                                                   Alien
## 18382                                                                                                                                         Field of Dreams
## 18383                                                                                                                                 When Harry Met Sally...
## 18384                                                                                                                                               Cape Fear
## 18387                                                                                                                                                  Jaws 2
## 18388                                                                                                                                                Jaws 3-D
## 18389                                                                                                                                           Mars Attacks!
## 18390                                                                                                                                           Jerry Maguire
## 18391                                                                                                                                           Private Parts
## 18392                                                                                                             Austin Powers: International Man of Mystery
## 18393                                                                                                                                                 Con Air
## 18394                                                                                                                                                Face/Off
## 18396                                                                                                                                       Conspiracy Theory
## 18397                                                                                                                                           Air Force One
## 18400                                                                                                                                                 Titanic
## 18401                                                                                                                                               Dark City
## 18402                                                                                                                                     Wedding Singer, The
## 18406                                                                                                                                             Poltergeist
## 18407                                                                                                                                           Exorcist, The
## 18408                                                                                                                                           Lethal Weapon
## 18409                                                                                                                                                Gremlins
## 18410                                                                                                                                           Soylent Green
## 18411                                                                                                                                 Poseidon Adventure, The
## 18416                                                                                                                                           Pleasantville
## 18417                                                                                                                                                  Fletch
## 18420                                                                                                                                                  Cocoon
## 18422                                                                                                                                        Crocodile Dundee
## 18423                                                                                                                                     Color of Money, The
## 18426                                                                                                                                                Superman
## 18427                                                                                                                                           Arachnophobia
## 18431                                                                                                                             National Lampoon's Vacation
## 18433                                                                                                                                         American Beauty
## 18437                                                                                                                                              Fight Club
## 18438                                                                                                                                Who Framed Roger Rabbit?
## 18439                                                                                                                                    Being John Malkovich
## 18440                                                                                                                                          Trading Places
## 18441                                                                                                                                            Natural, The
## 18443                                                                                                                                             Jagged Edge
## 18445                                                                                                                                           Wayne's World
## 18446                                                                                                                             Hoosiers (a.k.a. Best Shot)
## 18447                                                                                                                                       American Graffiti
## 18449                                                                                                                                   Good Morning, Vietnam
## 18450                                                                                                                                           High Fidelity
## 18453                                                                                                                                   Spy Who Loved Me, The
## 18454                                                                                                                                         Blazing Saddles
## 18455                                                                                                                                                   X-Men
## 18456                                                                                                                            Planes, Trains & Automobiles
## 18457                                                                                                                                             Wall Street
## 18458                                                                                                                                               Cast Away
## 18460                                                                                                                                        Eddie Murphy Raw
## 18461                                                                                                                                       Longest Yard, The
## 18463                                                                                                                                                   Shrek
## 18466                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 18467                                                                                                                                                 48 Hrs.
## 18468                                                                                                                                              Stir Crazy
## 18472                                                                                                                                    Saturday Night Fever
## 18473                                                                                                                                              Old School
## 18475                                                                                                                                 All the President's Men
## 18476                                                                                                                                       Kill Bill: Vol. 1
## 18479                                                                                                                                                Sin City
## 18480                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 18483                                                                                                                                               GoldenEye
## 18491                                                                                                                          Bridges of Madison County, The
## 18493                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 18494                                                                                                                                  Flirting With Disaster
## 18496                                                                                                                                          Batman Forever
## 18499                                                                                                                              Die Hard: With a Vengeance
## 18501                                                                                                                                             Nine Months
## 18509                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 18510                                                                                                                                                  Junior
## 18521                                                                                                                                                Stargate
## 18524                                                                                                                                 While You Were Sleeping
## 18526                                                                                                                                   Bullets Over Broadway
## 18533                                                                                                                                               Coneheads
## 18536                                                                                                                                               Firm, The
## 18546                                                                                                                                    Sleepless in Seattle
## 18548                                                                                                                                               Tombstone
## 18549                                                                                                                                  Brady Bunch Movie, The
## 18550                                                                                                                                                   Ghost
## 18557                                                                                                                                            Pretty Woman
## 18558                                                                                                                                             Heavy Metal
## 18561                                                                                                                                               Toy Story
## 18562                                                                                                                                               GoldenEye
## 18563                                                                                                                                   Sense and Sensibility
## 18564                                                                                                                                              Persuasion
## 18566                                                                                                                                               Apollo 13
## 18567                                                                                                                                          Batman Forever
## 18568                                                                                                                                            Crimson Tide
## 18569                                                                                                                              Die Hard: With a Vengeance
## 18570                                                                                                                                                Net, The
## 18571                                                                                                                                              Waterworld
## 18572                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 18573                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 18574                                                                                                                                            Little Women
## 18575                                                                                                     Like Water for Chocolate (Como agua para chocolate)
## 18577                                                                                                                                                Outbreak
## 18578                                                                                                                                            Pulp Fiction
## 18579                                                                                                                                               Quiz Show
## 18582                                                                                                                                  Star Trek: Generations
## 18583                                                                                                                                 While You Were Sleeping
## 18584                                                                                                                                        Muriel's Wedding
## 18585                                                                                                                              Ace Ventura: Pet Detective
## 18586                                                                                                                                Clear and Present Danger
## 18587                                                                                                                                            Forrest Gump
## 18588                                                                                                                                               True Lies
## 18589                                                                                                                                             Cliffhanger
## 18590                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 18592                                                                                                                                        Schindler's List
## 18595                                                                                                                                                 Aladdin
## 18596                                                                                                                                      Dances with Wolves
## 18597                                                                                                                                                  Batman
## 18598                                                                                                                                    Beauty and the Beast
## 18599                                                                                                                                               Jane Eyre
## 18600                                                                                                               Song of the Little Road (Pather Panchali)
## 18605                                                                                                                                Night of the Living Dead
## 18609                                                                                                                               Desperately Seeking Susan
## 18610                                                                                                                                          Police Academy
## 18613                                                                                                                                   Thirteenth Floor, The
## 18614                                                                                                                                           Arachnophobia
## 18615                                                                                                                                           Summer of Sam
## 18616                                                                                                                                          Arlington Road
## 18617                                                                                                                                Blair Witch Project, The
## 18621                                                                                                                                   House on Haunted Hill
## 18626                                                                                                                                                Scream 3
## 18628                                                                                                                                               Gladiator
## 18630                                                                                                                                         Bless the Child
## 18635                                                                                                                                                 Jumanji
## 18637                                                                                                                                    Seven (a.k.a. Se7en)
## 18639                                                                                                                                     Legends of the Fall
## 18641                                                                                                                                            Pulp Fiction
## 18642                                                                                                                               Shawshank Redemption, The
## 18646                                                                                                                                            Blade Runner
## 18648                                                                                                                               Silence of the Lambs, The
## 18649                                                                                                                                                  Eraser
## 18655                                                                                                                                       Full Metal Jacket
## 18661                                                                                                                                                Rain Man
## 18662                                                                                                                                           Lethal Weapon
## 18667                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 18672                                                                                                                                       Tora! Tora! Tora!
## 18676                                                                                                                                                   X-Men
## 18677                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 18678                                                                                                                                                  Snatch
## 18685                                                                                                                                       Beautiful Mind, A
## 18686                                                                                                                                                 Ice Age
## 18687                                                                                                                                    Bourne Identity, The
## 18688                                                                                                                                         Minority Report
## 18689                                                                                                                                               Ring, The
## 18690                                                                                                                    Professional, The (Le professionnel)
## 18692                                                                                                                                     Catch Me If You Can
## 18693                                                                                                                                                Identity
## 18696                                                                                                                                       Kill Bill: Vol. 1
## 18697                                                                                                                                           Love Actually
## 18698                                                                                                                                       Hero (Ying xiong)
## 18701                                                                                                                                        Dawn of the Dead
## 18702                                                                                                                                       Kill Bill: Vol. 2
## 18706                                                                                                                                   Bourne Supremacy, The
## 18707                                                                                                                                              Collateral
## 18708                                                                                                                                       Shaun of the Dead
## 18709                                                                                                                                                     Saw
## 18711                                                                                                                                     Million Dollar Baby
## 18713                                                                                                                                                   Crash
## 18714                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 18715                                                                                                                                                Serenity
## 18716                                                                                                                                     Unfinished Life, An
## 18726                                                                                                                                              Waterworld
## 18736                                                                                                                                               Mask, The
## 18738                                                                                                                                           Fugitive, The
## 18747                                                                                                                                            Pretty Woman
## 18751                                                                                                                           Independence Day (a.k.a. ID4)
## 18759                                                                                                                                      Gone with the Wind
## 18762                                                                                                                                     Sound of Music, The
## 18777                                                                                                                                     Blues Brothers, The
## 18782                                                                                                                                                   Glory
## 18796                                                                                                                                                 Gattaca
## 18801                                                                                                                                            Jackie Brown
## 18803                                                                                                                                     Wedding Singer, The
## 18807                                                                                                                                              Armageddon
## 18810                                                                                                                              Back to the Future Part II
## 18811                                                                                                                             Back to the Future Part III
## 18814                                                                                                                                           Bug's Life, A
## 18820                                                                                                               Star Wars: Episode I - The Phantom Menace
## 18822                                                                                                                                            American Pie
## 18832                                                                                                                                Who Framed Roger Rabbit?
## 18833                                                                                                                                              Spaceballs
## 18836                                                                                                                                               Malcolm X
## 18842                                                                                                                                      Gone in 60 Seconds
## 18843                                                                                                                                             Chicken Run
## 18844                                                                                                                                      Perfect Storm, The
## 18846                                                                                                                                        Meet the Parents
## 18847                                                                                                                                             Unbreakable
## 18848                                                                                                                            Planes, Trains & Automobiles
## 18849                                                                                                                                         What Women Want
## 18850                                                                                                                                               Cast Away
## 18852                                                                                                                                       Miss Congeniality
## 18857                                                                                                                                 Lara Croft: Tomb Raider
## 18861                                                                                                                                              Panic Room
## 18864                                                                                                            Star Wars: Episode II - Attack of the Clones
## 18865                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 18866                                                                                                                             Austin Powers in Goldmember
## 18868                                                                                                                  Lord of the Rings: The Two Towers, The
## 18872                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 18873                                                                                                                                          Matchstick Men
## 18875                                                                                                                                          School of Rock
## 18878                                                                                                         Master and Commander: The Far Side of the World
## 18880                                                                                                                                                WarGames
## 18884                                                                                                                                                 Shrek 2
## 18887                                                                                                                                              Collateral
## 18892                                                                                                                       Charlie and the Chocolate Factory
## 18895                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 18896                                                                                                                                        Mr. & Mrs. Smith
## 18903                                                                                                                                      Da Vinci Code, The
## 18904                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 18907                                                                                                                                        Illusionist, The
## 18917                                                                                                                                               In Bruges
## 18924                                                                                                                        Tyler Perry's Madea Goes to Jail
## 18926                                                                                                                                X-Men Origins: Wolverine
## 18930                                                                                                                                                 Jumanji
## 18931                                                                                                                                               GoldenEye
## 18932                                                                                                                                                    Babe
## 18933                                                                                                                                                Clueless
## 18934                                                                                                                                              Pocahontas
## 18936                                                                                                                                            Broken Arrow
## 18939                                                                                                                                                   Congo
## 18941                                                                                                                                                Net, The
## 18942                                                                                                                                             Nine Months
## 18943                                                                                                                                   Walk in the Clouds, A
## 18944                                                                                                                                              Waterworld
## 18947                                                                                                                                                    I.Q.
## 18948                                                                                                                                                  Junior
## 18950                                                                                                                                                Stargate
## 18951                                                                                                                                       Santa Clause, The
## 18953                                                                                                                                  Star Trek: Generations
## 18956                                                                                                                                             Client, The
## 18958                                                                                                                             Four Weddings and a Funeral
## 18959                                                                                                                                        Jungle Book, The
## 18966                                                                                                                                            Black Beauty
## 18967                                                                                                                                               Coneheads
## 18969                                                                                                                                               Firm, The
## 18970                                                                                                                                              Free Willy
## 18973                                                                                             Englishman Who Went Up a Hill But Came Down a Mountain, The
## 18980                                                                                                                                      Secret Garden, The
## 18985                                                                                                                                      Dances with Wolves
## 18988                                                                                                                         Snow White and the Seven Dwarfs
## 18991                                                                                                                                         Aristocats, The
## 18992                                                                                                                                                 Twister
## 18999                                                                                                                                             Client, The
## 19004                                                                                                                                When a Man Loves a Woman
## 19005                                                                                                                                   Beverly Hills Cop III
## 19007                                                                                                                                           Jurassic Park
## 19016                                                                                                                                        Grumpier Old Men
## 19017                                                                                                                                       Waiting to Exhale
## 19020                                                                                                                                       Leaving Las Vegas
## 19025                                                                                                                             Indian in the Cupboard, The
## 19029                                                                                                                                     Vampire in Brooklyn
## 19031                                                                                                                                             Taxi Driver
## 19034                                                                                                                                          Batman Forever
## 19039                                                                                                                                         Babysitter, The
## 19040                                                                                                                                              Disclosure
## 19041                                                                                                                                          Goofy Movie, A
## 19042                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 19044                                                                                                                           Kid in King Arthur's Court, A
## 19046                                                                                                              Mary Shelley's Frankenstein (Frankenstein)
## 19047                                                                                                                                              Milk Money
## 19057                                                                                                                                               Mask, The
## 19066                                                                                                                                              Rising Sun
## 19069                                                                                                                                   Three Musketeers, The
## 19070                                                                                                                                         Pagemaster, The
## 19080                                                                                                                                              Craft, The
## 19084                                                                                                                                                Fan, The
## 19088                                                                         Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 19099                                                                                                                         Aladdin and the King of Thieves
## 19102                                                                                                                                         Days of Thunder
## 19103                                                                                                                                    English Patient, The
## 19104                                                                                                                                     Princess Bride, The
## 19106                                                                                                                                        Army of Darkness
## 19107                                                                                                                                           Groundhog Day
## 19108                                                                                                                                                Fantasia
## 19109                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 19112                                                                                                                                           Mars Attacks!
## 19116                                                                                                                                           Fools Rush In
## 19120                                                                                                                                                Anaconda
## 19123                                                                                                                                        Addicted to Love
## 19124                                                                                                                          Lost World: Jurassic Park, The
## 19131                                                                                                                                           Air Force One
## 19134                                                                                                                                       L.A. Confidential
## 19135                                                                                                                         I Know What You Did Last Summer
## 19136                                                                                                                                    The Devil's Advocate
## 19137                                                                                                                                                Mad City
## 19139                                                                                                                                             Jackal, The
## 19141                                                                                                                                                Scream 2
## 19143                                                                                                                                             Spice World
## 19145                                                                                                                                            Big Hit, The
## 19146                                                                                                                                             Deep Impact
## 19147                                                                                                                                                Insomnia
## 19152                                                                                                                                      Mask of Zorro, The
## 19154                                                                                                                                     Saving Private Ryan
## 19166                                                                                                                     American Tail: Fievel Goes West, An
## 19169                                                                                                                                            Urban Legend
## 19175                                                                                                                                              Home Fries
## 19176                                                                                                                                                  Psycho
## 19179                                                                                                                                                 Payback
## 19181                                                                                                                                     Rage: Carrie 2, The
## 19184                                                                                                                                       Never Been Kissed
## 19192                                                                                                                                 General's Daughter, The
## 19194                                                                                                                                Blair Witch Project, The
## 19195                                                                                                                                           Haunting, The
## 19196                                                                                                                                           Deep Blue Sea
## 19204                                                                                                                                           Random Hearts
## 19205                                                                                                                                          Three to Tango
## 19206                                                                                                                                     Bone Collector, The
## 19211                                                                                                                                           Fantasia 2000
## 19212                                                                                                                                Talented Mr. Ripley, The
## 19214                                                                                                                                  Snow Falling on Cedars
## 19215                                                                                                                                              Beach, The
## 19216                                                                                                                                             Boiler Room
## 19217                                                                                                                                              Hanging Up
## 19218                                                                                                                          We're Back! A Dinosaur's Story
## 19223                                                                                                                                         American Psycho
## 19226                                                                                                                                                   U-571
## 19227                                                                                                                                    Virgin Suicides, The
## 19230                                                                                                                                                Dinosaur
## 19231                                                                                                                                         White Christmas
## 19232                                                                                                                                            Sleepwalkers
## 19238                                                                                                                                      Autumn in New York
## 19240                                                                                                                                           Almost Famous
## 19241                                                                                                                                Urban Legends: Final Cut
## 19242                                                                                                                                     Dr. T and the Women
## 19243                                                                                                                                        Charlie's Angels
## 19249                                                                                                                               Emperor's New Groove, The
## 19258                                                                                                                                                Hannibal
## 19262                                                                                                                                   Bridget Jones's Diary
## 19268                                                                                                                                 Lara Croft: Tomb Raider
## 19270                                                                                                                                         Crazy/Beautiful
## 19271                                                                                                                                           Scary Movie 2
## 19273                                                                                                                                   America's Sweethearts
## 19276                                                                                                                              Captain Corelli's Mandolin
## 19277                                                                                                                                                       O
## 19278                                                                                                                                          Musketeer, The
## 19282                                                                                                                                               From Hell
## 19288                                                                                                                                          In the Bedroom
## 19292                                                                                                                            Kandahar (Safar e Ghandehar)
## 19293                                                                                                                                   Royal Tenenbaums, The
## 19296                                                                                                                                         Black Hawk Down
## 19297                                                                                                                                            Gosford Park
## 19306                                                                                                                                     Sweetest Thing, The
## 19309                                                                                                                                              Spider-Man
## 19311                                                                                                                                                Insomnia
## 19321                                                                                                                                                 Abandon
## 19323                                                                                                                                    Saturday Night Fever
## 19325                                                                                                                 Harry Potter and the Chamber of Secrets
## 19326                                                                                                                                         Men with Brooms
## 19327                                                                                                                                         Die Another Day
## 19329                                                                                                                                               25th Hour
## 19336                                                                                                                                                Wiz, The
## 19337                                                                                                                                                Clueless
## 19339                                                                                                                                                 Twister
## 19340                                                                                                                           Robin Hood: Prince of Thieves
## 19341                                                                                                                                       Miller's Crossing
## 19343                                                                                                                          Attack of the Killer Tomatoes!
## 19345                                                                                                                                       Battlefield Earth
## 19348                                                                                                                                                   Loser
## 19349                                                                                                                                               Road Trip
## 19350                                                                                                                                       Small Time Crooks
## 19352                                                                                                                                           Shanghai Noon
## 19353                                                                                                                                          Private School
## 19354                                                                                                                                      Gone in 60 Seconds
## 19355                                                                                                                                                   Shaft
## 19356                                                                                                                                              Titan A.E.
## 19358                                                                                                                                      Me, Myself & Irene
## 19361                                                                                                                                             Scary Movie
## 19362                                                                                                                                                   X-Men
## 19363                                                                                                                                               Toy Story
## 19364                                                                                                                                               GoldenEye
## 19365                                                                                                                          Ace Ventura: When Nature Calls
## 19366                                                                                                                                              Get Shorty
## 19367                                                                                                                                                    Babe
## 19369                                                                                                                                              Pocahontas
## 19370                                                                                                                                     Usual Suspects, The
## 19371                                                                                                                                           Happy Gilmore
## 19372                                                                                                                                              Braveheart
## 19373                                                                                                                                           Birdcage, The
## 19375                                                                                                                                          Batman Forever
## 19376                                                                                                                              Die Hard: With a Vengeance
## 19377                                                                                                                                             Judge Dredd
## 19378                                                                                                                                               Showgirls
## 19379                                                                                                                                           Billy Madison
## 19380                                                                                                                                                  Clerks
## 19381                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 19382                                                                                                                                                 Ed Wood
## 19385                                                                                                                                     Legends of the Fall
## 19386                                                                                                                             Madness of King George, The
## 19387                                                                                                                                    Natural Born Killers
## 19389                                                                                                                                               Quiz Show
## 19390                                                                                                                                 Quick and the Dead, The
## 19391                                                                                                                                         Specialist, The
## 19392                                                                                                                                                Stargate
## 19393                                                                                                                               Shawshank Redemption, The
## 19394                                                                                                                                               Tommy Boy
## 19396                                                                                                                                 While You Were Sleeping
## 19397                                                                                                                                Clear and Present Danger
## 19398                                                                                                                                               Crow, The
## 19399                                                                                                                                            Forrest Gump
## 19400                                                                                                                                          Lion King, The
## 19401                                                                                                                                               Mask, The
## 19402                                                                                                                                                Maverick
## 19403                                                                                                                                                   Speed
## 19404                                                                                                                                               True Lies
## 19405                                                                                                                                    Addams Family Values
## 19406                                                                                                                                              Blown Away
## 19407                                                                                                                                          Demolition Man
## 19408                                                                                                                                               Firm, The
## 19410                                                                                                                               In the Name of the Father
## 19411                                                                                                                                           Jurassic Park
## 19413                                                                                                                                          Mrs. Doubtfire
## 19414                                                                                                                                            Philadelphia
## 19417                                                                                                                            So I Married an Axe Murderer
## 19418                                                                                                                         Nightmare Before Christmas, The
## 19420                                                                                                                              Terminator 2: Judgment Day
## 19422                                                                                                                                                  Batman
## 19423                                                                                                                               Silence of the Lambs, The
## 19425                                                                                                                                    Beauty and the Beast
## 19427                                                                                                                                            Pretty Woman
## 19428                                                                                                                                                   Fargo
## 19429                                                                                                                                             Heavy Metal
## 19430                                                                                                                                     Mission: Impossible
## 19431                                                                                                                               James and the Giant Peach
## 19432                                                                                                                                              Barbarella
## 19434                                                                                                                                                 Twister
## 19436                                                                                    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 19437                                                                                                                           Independence Day (a.k.a. ID4)
## 19438                                                                                                                                                 Kingpin
## 19441                                                                                                                                      North by Northwest
## 19442                                                                                                                                            My Fair Lady
## 19443                                                                                                                                       Wizard of Oz, The
## 19450                                                                                                                                      That Thing You Do!
## 19452                                                                                                                                    Fish Called Wanda, A
## 19453                                                                                                                            Monty Python's Life of Brian
## 19456                                                                                                                                          Basic Instinct
## 19457                                                                                                                              E.T. the Extra-Terrestrial
## 19458                                                                                                                                                 Top Gun
## 19459                                                                                                                                              Abyss, The
## 19463                                                                                                                         One Flew Over the Cuckoo's Nest
## 19467                                                                                                                                                  Brazil
## 19471                                                                                                                                     Clockwork Orange, A
## 19474                                                                                                                                              Goodfellas
## 19476                                                                                                                                        Army of Darkness
## 19478                                                                                                                                       Full Metal Jacket
## 19481                                                                                                                                                 Amadeus
## 19483                                                                                                                   Rosencrantz and Guildenstern Are Dead
## 19485                                                                                                                                           Graduate, The
## 19488                                                                                                                                             Stand by Me
## 19494                                                                                                                                              Highlander
## 19495                                                                                                                                          Cool Hand Luke
## 19502                                                                                                                                         Field of Dreams
## 19504                                                                                                                                 When Harry Met Sally...
## 19505                                                                                                                                              Birds, The
## 19506                                                                                                                         Dracula (Bram Stoker's Dracula)
## 19507                                                                                                                                                   Shine
## 19508                                                                                                                                              Die Hard 2
## 19509                                                                                                                           Star Trek: The Motion Picture
## 19510                                                                                                                  Star Trek VI: The Undiscovered Country
## 19512                                                                                                                     Star Trek III: The Search for Spock
## 19513                                                                                                                                          Batman Returns
## 19514                                                                                                                                              Young Guns
## 19515                                                                                                                                                  Grease
## 19516                                                                                                                                                    Jaws
## 19517                                                                                                                                           Mars Attacks!
## 19518                                                                                                                                           Jerry Maguire
## 19519                                                                                                                                                Sneakers
## 19522                                                                                                                                           Donnie Brasco
## 19523                                                                                                                                               Liar Liar
## 19526                                                                                                                          Lost World: Jurassic Park, The
## 19527                                                                                                                                          Batman & Robin
## 19528                                                                                                                                                Hercules
## 19530                                                                                                                               Hunt for Red October, The
## 19531                                                                                                                                       L.A. Confidential
## 19532                                                                                                                                               Game, The
## 19533                                                                                                                                         Full Monty, The
## 19534                                                                                                                                                 Witness
## 19535                                                                                                                                       Starship Troopers
## 19536                                                                                                                                        Truman Show, The
## 19537                                                                                                                                       Good Will Hunting
## 19538                                                                                                                                                 Titanic
## 19539                                                                                                                                     Tomorrow Never Dies
## 19540                                                                                                                                            Jackie Brown
## 19542                                                                                                                                             Wag the Dog
## 19544                                                                                                                                     Wedding Singer, The
## 19545                                                                                                                          Fear and Loathing in Las Vegas
## 19546                                                                                                                          X-Files: Fight the Future, The
## 19549                                                                                                                                                Rain Man
## 19551                                                                                                                                           Exorcist, The
## 19552                                                                                                                                           Lethal Weapon
## 19553                                                                                                                                         Lethal Weapon 2
## 19554                                                                                                                                                Gremlins
## 19556                                                                                                                                      Mask of Zorro, The
## 19557                                                                                                                              Back to the Future Part II
## 19558                                                                                                                             Back to the Future Part III
## 19559                                                                                                                                                    Dune
## 19560                                                                                                                                Godfather: Part III, The
## 19562                                                                                                                                Honey, I Shrunk the Kids
## 19563                                                                                                                                        Jungle Book, The
## 19564                                                                                                                                     Little Mermaid, The
## 19567                                                                                                                                                  Splash
## 19570                                                                                                                    Indiana Jones and the Temple of Doom
## 19571                                                                                                                             1984 (Nineteen Eighty-Four)
## 19572                                                                                                                                      Addams Family, The
## 19574                                                                                                                                       Dark Crystal, The
## 19576                                                                                                                              Gods Must Be Crazy II, The
## 19577                                                                                                                                  NeverEnding Story, The
## 19578                                                                                                                                             Beetlejuice
## 19580                                                                                                                                         Few Good Men, A
## 19581                                                                                                                                     Edward Scissorhands
## 19582                                                                                                                                                    Antz
## 19583                                                                                                                                         My Cousin Vinny
## 19585                                                                                                                                           Bug's Life, A
## 19587                                                                                                                                     Shakespeare in Love
## 19589                                                                                                                                                  Cocoon
## 19590                                                                                                                                                Rocky II
## 19591                                                                                                                                                Rocky IV
## 19592                                                                                                                                Karate Kid, Part II, The
## 19593                                                                                                                                                Fly, The
## 19595                                                                                                                                        Crocodile Dundee
## 19597                                                                                                                                            Pet Sematary
## 19600                                                                                                               Star Wars: Episode I - The Phantom Menace
## 19601                                                                                                                                                Superman
## 19602                                                                                                                                            Superman III
## 19603                                                                                                                          Rocky Horror Picture Show, The
## 19604                                                                                                                                           Arachnophobia
## 19608                                                                                                                                         Iron Giant, The
## 19609                                                                                                                                Thomas Crown Affair, The
## 19610                                                                                               Monty Python's And Now for Something Completely Different
## 19611                                                                                                                                               Airplane!
## 19612                                                                                                                                 Airplane II: The Sequel
## 19613                                                                                                                             National Lampoon's Vacation
## 19614                                                                                                                                                     Big
## 19615                                                                                                                                      Christmas Story, A
## 19616                                                                                                                                         American Beauty
## 19618                                                                                                                                          Risky Business
## 19619                                                                                                                                            Total Recall
## 19621                                                                                                                                              Flashdance
## 19622                                                                                                                                              Goldfinger
## 19624                                                                                                                                                  Dr. No
## 19625                                                                                                                                        Blue Lagoon, The
## 19630                                                                                                                                Who Framed Roger Rabbit?
## 19631                                                                                                                                        Live and Let Die
## 19632                                                                                                                                             Thunderball
## 19633                                                                                                                                    Being John Malkovich
## 19634                                                                                                                                              Spaceballs
## 19636                                                                                                                                          Trading Places
## 19638                                                                                                                                                Scrooged
## 19639                                                                                                                                                  Harvey
## 19640                                                                                                                                            Natural, The
## 19641                                                                                                                                River Runs Through It, A
## 19642                                                                                                                                        Fatal Attraction
## 19643                                                                                                                                               Backdraft
## 19644                                                                                                                                        Fisher King, The
## 19646                                                                                                                                        Any Given Sunday
## 19647                                                                                                                                            Galaxy Quest
## 19648                                                                                                                                              Sister Act
## 19649                                                                                                                                           Wayne's World
## 19650                                                                                                                                           Patriot Games
## 19651                                                                                                                             Hoosiers (a.k.a. Best Shot)
## 19653                                                                                                                                                Red Dawn
## 19654                                                                                                                                   Good Morning, Vietnam
## 19655                                                                                                                                           High Fidelity
## 19657                                                                                                                                               Gladiator
## 19659                                                                                                                                  Mission: Impossible II
## 19660                                                                                                                                         Blazing Saddles
## 19663                                                                                                                             Big Trouble in Little China
## 19664                                                                                                                                      Perfect Storm, The
## 19666                                                                                                                                           Almost Famous
## 19667                                                                                                                                            Best in Show
## 19668                                                                                                                                            Billy Elliot
## 19671                                                                                                                                               Cast Away
## 19676                                                                                                                                                Scarface
## 19677                                                                                                                                                   Shrek
## 19678                                                                                                                               Fast and the Furious, The
## 19680                                                                                                                                           Short Circuit
## 19682                                                                                                                                            Major League
## 19683                                                                                                                                      Planet of the Apes
## 19686                                                                                                                                          Monsters, Inc.
## 19688                                                                                                                                          Ocean's Eleven
## 19689                                                                                                                                    Moscow on the Hudson
## 19690                                                                                                                              Bill & Ted's Bogus Journey
## 19692                                                                                                                                       Beautiful Mind, A
## 19693                                                                                                                                                I Am Sam
## 19694                                                                                                                                      Shipping News, The
## 19695                                                                                                                                                 48 Hrs.
## 19696                                                                                                                                My Big Fat Greek Wedding
## 19699                                                                                                                                    Bourne Identity, The
## 19700                                                                                                                                         Minority Report
## 19702                                                                                                                    Professional, The (Le professionnel)
## 19708                                                                                                                                    Matrix Reloaded, The
## 19709                                                                                                                                            Finding Nemo
## 19710                                                                                                                                        Italian Job, The
## 19711                                                                                                                                             Barton Fink
## 19713                                                                                                                                                Commando
## 19717                                                                                                                      Monty Python's The Meaning of Life
## 19718                                                                                                                                 Matrix Revolutions, The
## 19719                                                                                                         Master and Commander: The Far Side of the World
## 19722                                                                                                                                 Chitty Chitty Bang Bang
## 19723                                                                                                                                                 Hellboy
## 19727                                                                                                                                          Into the Woods
## 19728                                                                                                                                            Spider-Man 2
## 19729                                                                                                                                                I, Robot
## 19730                                                                                                                                   Bourne Supremacy, The
## 19731                                                                                                                            Murder on the Orient Express
## 19735                                                                                                                                           Batman Begins
## 19736                                                                                                                                        Ice Harvest, The
## 19740                                                                                                                                        Flintstones, The
## 19745                                                                                                                                   Boot, Das (Boat, The)
## 19753                                                                                                                                         Karate Kid, The
## 19755                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 19756                                                                                                                                 General's Daughter, The
## 19757                                                                                                                               Run Lola Run (Lola rennt)
## 19758                                                                                                                    South Park: Bigger, Longer and Uncut
## 19759                                                                                                                                            American Pie
## 19762                                                                                                                                Thomas Crown Affair, The
## 19765                                                                                                                                           Wayne's World
## 19768                                                                                                                                      Autumn in New York
## 19769                                                                                                                                       Tao of Steve, The
## 19772                                                                                                                                        Charlie's Angels
## 19773                                                                                                                                            Little Nicky
## 19774                                                                                                      How the Grinch Stole Christmas (a.k.a. The Grinch)
## 19775                                                                                                                                          102 Dalmatians
## 19777                                                                                                                                       Miss Congeniality
## 19778                                                                                                                                   All the Pretty Horses
## 19781                                                                                                                                            Pearl Harbor
## 19783                                                                                                                                          Batman Forever
## 19786                                                                                                                                          Lion King, The
## 19787                                                                                                                                                   Speed
## 19788                                                                                                                                      Dances with Wolves
## 19789                                                                                                                               Silence of the Lambs, The
## 19790                                                                                                                                    Beauty and the Beast
## 19792                                                                                                                                      Back to the Future
## 19794                                                                                                                                     Saving Private Ryan
## 19799                                                                                                                                             Matrix, The
## 19807                                                                                                                                                   Shaft
## 19809                                                                                                                                                   Shrek
## 19811                                                                                                                                             Waking Life
## 19834                                                                                                         Wind Will Carry Us, The (Bad ma ra khahad bord)
## 19836                                                                                                                                       Scanner Darkly, A
## 19847                                                                                                                                                Shortbus
## 19857                                                                                                                                  Caramel (Sukkar banat)
## 19858                                                                                                                                                  WALL·E
## 19864                                                                                                                                       Sunshine Cleaning
## 19874                                                                                                                                               Inception
## 19876                                                                                                                                    Seven (a.k.a. Se7en)
## 19877                                                                                                                                              Braveheart
## 19878                                                                                                                                             Taxi Driver
## 19879                                                                                                                                          Before Sunrise
## 19880                                                                                                                                      Heavenly Creatures
## 19882                                                                                                                               Shawshank Redemption, The
## 19883                                                                                                                                            Forrest Gump
## 19884                                                                                                                         Nightmare Before Christmas, The
## 19885                                                                                                                               Silence of the Lambs, The
## 19886                                                                                                                                    Beauty and the Beast
## 19887                                                                                                                         Wallace & Gromit: A Close Shave
## 19888                                                                                                                                              Casablanca
## 19889                                                                                                                                       Wizard of Oz, The
## 19890                                                                                                                                            Mary Poppins
## 19891                                                                                                                            Monty Python's Life of Brian
## 19892                                                                                                                                           Dirty Dancing
## 19893                                                                                                                    Wallace & Gromit: The Wrong Trousers
## 19895                                                                                                                         One Flew Over the Cuckoo's Nest
## 19896                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 19898                                                                                                                                       Full Metal Jacket
## 19899                                                                                                                                        Harold and Maude
## 19900                                                                                                                                           Graduate, The
## 19902                                                                                                                                           Groundhog Day
## 19903                                                                                                                                      Back to the Future
## 19904                                                                                                                                    Fried Green Tomatoes
## 19905                                                                                                                                         Field of Dreams
## 19906                                                                                                                                      Breaking the Waves
## 19907                                                                                                                                                   Shine
## 19908                                                                                                                                      Fifth Element, The
## 19909                                                                                                                                                 Gattaca
## 19911                                                                                                                                       Big Lebowski, The
## 19912                                                                                                                                      As Good as It Gets
## 19913                                                                                                                          Fear and Loathing in Las Vegas
## 19914                                                                                                                                     Breakfast Club, The
## 19915                                                                                                                                            Goonies, The
## 19917                                                                                                                                               Peter Pan
## 19918                                                                                                                                           Rescuers, The
## 19919                                                                                                                                         Sleeping Beauty
## 19920                                                                                                                                    What Dreams May Come
## 19922                                                                                                                                      American History X
## 19923                                                                                                                               Run Lola Run (Lola rennt)
## 19924                                                                                                                                       Color Purple, The
## 19925                                                                                                                                        Sixth Sense, The
## 19926                                                                                                                                Ferris Bueller's Day Off
## 19927                                                                                                           Children of Paradise (Les enfants du paradis)
## 19928                                                                                                                                              Fight Club
## 19929                                                                                                                                             Wonder Boys
## 19930                                                                                                                                           Almost Famous
## 19931                                                                                                                                     Requiem for a Dream
## 19932                                                                                                                                        Charlie's Angels
## 19934                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 19936                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 19937                                                                                                                                                 Ice Age
## 19938                                                                                                                                       Road to Perdition
## 19939                                                                                                                        Das Experiment (Experiment, The)
## 19941                                                                                                                                              Hours, The
## 19942                                                                                                                                    Bend It Like Beckham
## 19943                                                                                                                                              Paper Moon
## 19944                                                                                                                                       Kill Bill: Vol. 1
## 19945                                                                                                                                                21 Grams
## 19946                                                                                                                             Show Me Love (Fucking Åmål)
## 19947                                                                                                                              Betty Blue (37°2 le matin)
## 19948                                                                                                                                                Big Fish
## 19949                                                                                                                                    The Butterfly Effect
## 19950                                                                                                                                        Good bye, Lenin!
## 19953                                                                                                                                           Super Size Me
## 19954                                                                                                                                           Notebook, The
## 19955                                                                                                                                           Before Sunset
## 19957                                                                                                                                       In July (Im Juli)
## 19958                                                                                               Very Long Engagement, A (Un long dimanche de fiançailles)
## 19959                                                                                                                                     Million Dollar Baby
## 19960                                                                                                                     Life Aquatic with Steve Zissou, The
## 19962                                                                                                                               Everything Is Illuminated
## 19963                                                                                                                                      Brokeback Mountain
## 19964                                                                                                                                       Pride & Prejudice
## 19966                                                                                                                                           Walk the Line
## 19967                                                                                                                                              C.R.A.Z.Y.
## 19968                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 19969                                                                                        Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage)
## 19970                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 19971                                                                                                                                    Little Miss Sunshine
## 19972                                                                                                                                                   Babel
## 19973                                                                                                                               Pursuit of Happyness, The
## 19974                                                                                                                                             Half Nelson
## 19975                                                                                                            Science of Sleep, The (La science des rêves)
## 19976                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 19977                                                                                                                                                    Once
## 19979                                                                                                                                           Into the Wild
## 19981                                                                                                                                              Persepolis
## 19982                                                                                                                                                 Control
## 19984                                                                                                                                        Bucket List, The
## 19987                                                                                                                                                  WALL·E
## 19988                                                                                                                                Vicky Cristina Barcelona
## 19990                                                                                                                                                    Milk
## 19991                                                                                                                                             Gran Torino
## 19992                                                                                                 I've Loved You So Long (Il y a longtemps que je t'aime)
## 19994                                                                                                                    Curious Case of Benjamin Button, The
## 19999                                                                                                                                            Mary and Max
## 20000                                                                                                                                           Up in the Air
## 20001                                                                                                                                                Precious
## 20004                                                                                                                                        Book of Eli, The
## 20005                                                                                                                                               Inception
## 20008                                                                                                                                              Black Swan
## 20010                                                                                                                                               True Grit
## 20011                                                                                                                                               Jane Eyre
## 20012                                                                                                                                                    Eden
## 20013                                                                                                             Pirates of the Caribbean: On Stranger Tides
## 20014                                                                                                                                       Midnight in Paris
## 20016                                                                                                                                               Help, The
## 20017                                                                                                                                               Moneyball
## 20018                                                                                                                                                   50/50
## 20019                                                                                                                                                    Hugo
## 20020                                                                                                                                        The Hunger Games
## 20021                                                                                                                                         We Bought a Zoo
## 20022                                                                                                                                            Intouchables
## 20024                                                                                                                                 Amazing Spider-Man, The
## 20025                                                                                                                        Perks of Being a Wallflower, The
## 20026                                                                                                                                                    Argo
## 20027                                                                                                                                 Silver Linings Playbook
## 20029                                                                                                                                                   Amour
## 20031                                                                                                                                        Django Unchained
## 20032                                                                                                                                            Side Effects
## 20034                                                                                                                            Broken Circle Breakdown, The
## 20037                                                                                                                                        What Maisie Knew
## 20038                                                                                                                                               Heat, The
## 20039                                                                                                                                              About Time
## 20040                                                                                                                                                 Gravity
## 20041                                                                                                                                               Prisoners
## 20045                                                                                                                                Wolf of Wall Street, The
## 20046                                                                                                                                         American Hustle
## 20048                                                                                                                                        Saving Mr. Banks
## 20050                                                                                                                               Grand Budapest Hotel, The
## 20051                                                                                                                                           Transcendence
## 20052                                                                                                                                                 Boyhood
## 20053                                                                                                                                      Werner - Beinhart!
## 20054                                                                                                                                               Toy Story
## 20056                                                                                                                             Father of the Bride Part II
## 20059                                                                                                                          Ace Ventura: When Nature Calls
## 20063                                                                                                                                                Clueless
## 20065                                                                                                                                              Braveheart
## 20067                                                                                                                                                Bad Boys
## 20068                                                                                                                                          Batman Forever
## 20070                                                                                                                                                 Species
## 20071                                                                                                                                                  Clerks
## 20072                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 20074                                                                                                                      Star Wars: Episode IV - A New Hope
## 20080                                                                                                                                       Santa Clause, The
## 20085                                                                                                                              Ace Ventura: Pet Detective
## 20088                                                                                                                                          Lion King, The
## 20089                                                                                                                                               Mask, The
## 20090                                                                                                                                                   Speed
## 20094                                                                                                                                        Last Action Hero
## 20095                                                                                                                                      Executive Decision
## 20097                                                                                                                                    Sleepless in Seattle
## 20100                                                                                                                                   Three Musketeers, The
## 20101                                                                                                                                              Home Alone
## 20102                                                                                                                                                   Ghost
## 20103                                                                                                                                                 Aladdin
## 20107                                                                                                                                    Beauty and the Beast
## 20108                                                                                                                                            Pretty Woman
## 20115                                                                                                                                        Some Like It Hot
## 20117                                                                                                                                           Thin Man, The
## 20118                                                                                                                                                Die Hard
## 20123                                                                                                                                        Crying Game, The
## 20125                                                                                                                                                 Top Gun
## 20136                                                                                                                                          Apocalypse Now
## 20142                                                                                                                                       Full Metal Jacket
## 20143                                                                                                                                   Boot, Das (Boat, The)
## 20145                                                                                                                                                   Glory
## 20146                                                                                                                                      Dead Poets Society
## 20152                                                                                                                             Evil Dead II (Dead by Dawn)
## 20153                                                                                                                                           Groundhog Day
## 20155                                                                                                                                              Highlander
## 20159                                                                                                                                 When Harry Met Sally...
## 20166                                                                                                                                                  Grease
## 20173                                                                                                                                                Face/Off
## 20175                                                                                                                                                 Contact
## 20181                                                                                                                                                 Titanic
## 20183                                                                                                                                              Armageddon
## 20191                                                                                                                                         Lethal Weapon 2
## 20194                                                                                                                              Back to the Future Part II
## 20195                                                                                                                             Back to the Future Part III
## 20196                                                                                                                                Honey, I Shrunk the Kids
## 20197                                                                                                                                             'burbs, The
## 20198                                                                                                                                                  Splash
## 20205                                                                                                                                              Thing, The
## 20210                                                                                                                                           Bug's Life, A
## 20211                                                                                                                                                20 Dates
## 20216                                                                                                                              10 Things I Hate About You
## 20219                                                                                                                                              Mummy, The
## 20229                                                                                                                                                     Big
## 20242                                                                                                                                    Grapes of Wrath, The
## 20244                                                                                                                                             Toy Story 2
## 20254                                                                                                                                               Gladiator
## 20260                                                                                                                                             Chicken Run
## 20263                                                                                                                                        Meet the Parents
## 20264                                                                                                                                        Charlie's Angels
## 20277                                                                                                                                          Monsters, Inc.
## 20282                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 20291                                                                                                                  Lord of the Rings: The Two Towers, The
## 20296                                                                                                                                            Finding Nemo
## 20298                                                                                                          2 Fast 2 Furious (Fast and the Furious 2, The)
## 20300                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 20305                                                                                                                                                    1941
## 20306                                                                                                          Lord of the Rings: The Return of the King, The
## 20308                                                                                                                                          13 Going on 30
## 20309                                                                                                                                 *batteries not included
## 20315                                                                                                                                        Incredibles, The
## 20316                                                                                                                                            'Salem's Lot
## 20318                                                                                                                                           Batman Begins
## 20331                                                                                                          Sweeney Todd: The Demon Barber of Fleet Street
## 20333                                                                                                                                        Dark Knight, The
## 20337                                                                                                                                                  WALL·E
## 20339                                                                                                                          Dr. Horrible's Sing-Along Blog
## 20340                                                                                                                                                17 Again
## 20351                                                                                                                                             Toy Story 3
## 20356                                                                                                                                  Dark Knight Rises, The
## 20360                                                                                                                                        Moonrise Kingdom
## 20362                                                                                                                                                  Looper
## 20363                                                                                                                        'Hellboy': The Seeds of Creation
## 20365                                                                                                                                               GoldenEye
## 20367                                                                                                                                             Money Train
## 20368                                                                                                                                              Get Shorty
## 20369                                                                                                                                            Now and Then
## 20370                                                                                                                                                Bio-Dome
## 20371                                                                                                                                               Mr. Wrong
## 20372                                                                                                                                           Happy Gilmore
## 20374                                                                                                                                          Down Periscope
## 20375                                                                                                                                      White Man's Burden
## 20376                                                                                                                                              Sgt. Bilko
## 20377                                                                                                                                                    Fear
## 20378                                                                                                                                                 Twister
## 20379                                                                                                                                               Barb Wire
## 20380                                                                                                                                            Stupids, The
## 20381                                                                                                               Gold Diggers: The Secret of Bear Mountain
## 20382                                                                                                                                              Striptease
## 20384                                                                                                                                    Very Brady Sequel, A
## 20385                                                                                                                                        Escape from L.A.
## 20386                                                                                                                                   Rebel Without a Cause
## 20392                                                                                                                                          Mrs. Doubtfire
## 20393                                                                                                                                              Home Alone
## 20397                                                                                                                                              Casablanca
## 20401                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 20402                                                                                                                                           Groundhog Day
## 20404                                                                                                                                     Breakfast Club, The
## 20405                                                                                                                                           Freaky Friday
## 20406                                                                                                                                         Doctor Dolittle
## 20409                                                                                                                               Karate Kid, Part III, The
## 20411                                                                                                                                                     Big
## 20412                                                                                                                                               Hairspray
## 20414                                                                                                                                       Lord of the Flies
## 20415                                                                                                                                              Caddyshack
## 20418                                                                                                                                          102 Dalmatians
## 20421                                                                                                                                          Monsters, Inc.
## 20428                                                                                                                   Legally Blonde 2: Red, White & Blonde
## 20430                                                                                                                         Pink Panther Strikes Again, The
## 20431                                                                                                                                         Beethoven's 2nd
## 20433                                                                                                                                            Spider-Man 2
## 20435                                                                                                                                                Sky High
## 20440                                                                                                                             Indian in the Cupboard, The
## 20447                                                                                                                                      Secret Garden, The
## 20452                                                                                                                         Snow White and the Seven Dwarfs
## 20458                                                                                                                                       Wizard of Oz, The
## 20460                                                                                                                                           Fly Away Home
## 20463                                                                                                                     Willy Wonka & the Chocolate Factory
## 20464                                                                                                                                                 Sleeper
## 20468                                                                                                                                                  Aliens
## 20470                                                                                                                                                   Alien
## 20472                                                                                                                                               Manhattan
## 20476                                                                                                                                                Fantasia
## 20479                                                                                                                                             Being There
## 20481                                                                                                                       Shall We Dance? (Shall We Dansu?)
## 20485                                                                                                                                      As Good as It Gets
## 20486                                                                                                                                          Borrowers, The
## 20487                                                                                                                              Friday the 13th Part 3: 3D
## 20492                                                                                                                                                    Dune
## 20493                                                                                                                      Darby O'Gill and the Little People
## 20494                                                                                                                                Honey, I Shrunk the Kids
## 20496                                                                                                                                          Rocketeer, The
## 20498                                                                                                                                         Doctor Dolittle
## 20499                                                                                                                                  NeverEnding Story, The
## 20500                                                                                                                                             Beetlejuice
## 20501                                                                                                                                            Urban Legend
## 20503                                                                                                                                             Airport '77
## 20508                                                                                                                                               Airplane!
## 20510                                                                                                                                         American Beauty
## 20512                                                                                                                                Who Framed Roger Rabbit?
## 20514                                                                                                                                        Bicentennial Man
## 20517                                                                                                                                               Toy Story
## 20523                                                                                                                                           Jurassic Park
## 20525                                                                                                                           Independence Day (a.k.a. ID4)
## 20533                                                                                                                                 Godfather: Part II, The
## 20536                                                                                                                                                 Contact
## 20537                                                                                                                                     Saving Private Ryan
## 20538                                                                                                                                      American History X
## 20539                                                                                                                                             Matrix, The
## 20541                                                                                                                                               Gladiator
## 20542                                                                                                                                                   X-Men
## 20544                                                                                                                                                   Shrek
## 20545                                                                                                                                          Monsters, Inc.
## 20546                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 20548                                                                                                                                              Spider-Man
## 20549                                                                                                                                                Insomnia
## 20550                                                                                                                 Harry Potter and the Chamber of Secrets
## 20551                                                                                                                  Lord of the Rings: The Two Towers, The
## 20553                                                                                                                            City of God (Cidade de Deus)
## 20554                                                                                                                                        X2: X-Men United
## 20555                                                                                                                                            Finding Nemo
## 20556                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 20557                                                                                                          Lord of the Rings: The Return of the King, The
## 20559                                                                                                                                                 Shrek 2
## 20560                                                                                                                Harry Potter and the Prisoner of Azkaban
## 20561                                                                                                                                            Spider-Man 2
## 20562                                                                                                                                        Incredibles, The
## 20564                                                                                                            Lives of Others, The (Das leben der Anderen)
## 20567                                                                                                                                           Into the Wild
## 20569                                                                                                                                                Iron Man
## 20573                                                                                                                                     Social Network, The
## 20575                                                                                                                                      King's Speech, The
## 20576                                                                                                             Pirates of the Caribbean: On Stranger Tides
## 20577                                                                                                                                   Hangover Part II, The
## 20578                                                                                                                                               Help, The
## 20579                                                                                                                                              The Artist
## 20580                                                                                                                                                    Hugo
## 20582                                                                                                                                 Amazing Spider-Man, The
## 20583                                                                                                                                              Life of Pi
## 20585                                                                                                                                             World War Z
## 20586                                                                                                                                                 Gravity
## 20587                                                                                                                                        12 Years a Slave
## 20588                                                                                                                                      Dallas Buyers Club
## 20590                                                                                                                               Grand Budapest Hotel, The
## 20592                                                                                                                                                Whiplash
## 20595                                                                                                                                      Mad Max: Fury Road
## 20596                                                                                                                                                 Ant-Man
## 20597                                                                                                                                               Kung Fury
## 20598                                                                                                                                              Braveheart
## 20599                                                                                                                               Shawshank Redemption, The
## 20604                                                                                                                              Terminator 2: Judgment Day
## 20605                                                                                                                                                 Kingpin
## 20606                                                                                                                                                 Tin Cup
## 20607                                                                                                                                      Herbie Rides Again
## 20610                                                                                                                                     Clockwork Orange, A
## 20613                                                                                                                                                   Glory
## 20617                                                                                                  Vegas Vacation (National Lampoon's Las Vegas Vacation)
## 20619                                                                                                                               Men in Black (a.k.a. MIB)
## 20621                                                                                                                                                 Gattaca
## 20623                                                                                                                                              Armageddon
## 20624                                                                                                                                     Terms of Endearment
## 20626                                                                                                                                     Breakfast Club, The
## 20628                                                                                                                                                  Splash
## 20629                                                                                                                                             Beetlejuice
## 20631                                                                                                                                         My Cousin Vinny
## 20633                                                                                                                                                Rushmore
## 20634                                                                                                                                      Planet of the Apes
## 20636                                                                                                                                          Eyes Wide Shut
## 20637                                                                                                                                               Airplane!
## 20640                                                                                                                                Ferris Bueller's Day Off
## 20647                                                                                                                                                 Mad Max
## 20648                                                                                                                                             Unbreakable
## 20649                                                                                                                           Saving Silverman (Evil Woman)
## 20651                                                                                                                                                Joe Dirt
## 20652                                                                                                                                            For the Boys
## 20653                                                                                                                                     Beach Blanket Bingo
## 20654                                                                                                                       Return of the Living Dead Part II
## 20655                                                                                                                                                Toy, The
## 20657                                                                                                                                              Brainstorm
## 20659                                                                                                                                              Spider-Man
## 20660                                                                                                                                          Survivors, The
## 20667                                                                                                                             Indian in the Cupboard, The
## 20668                                                                                                                                           Billy Madison
## 20669                                                                                                                                                  Junior
## 20670                                                                                                                                             Major Payne
## 20672                                                                                                                                        Muriel's Wedding
## 20675                                                                                                                                   Three Musketeers, The
## 20678                                                                                                                                     Princess Bride, The
## 20680                                                                                                                  Romy and Michele's High School Reunion
## 20682                                                                                                                                      American History X
## 20684                                                                                                                                         King and I, The
## 20685                                                                                                                                              Sister Act
## 20686                                                                                                                     Flintstones in Viva Rock Vegas, The
## 20692                                                                                                                                         Minority Report
## 20693                                                                                                           Spirited Away (Sen to Chihiro no kamikakushi)
## 20694                                                                                                                 Harry Potter and the Chamber of Secrets
## 20696                                                                                                                                    Bend It Like Beckham
## 20698                                                                                                                                           Love Actually
## 20701                                                                                                  Girl Who Leapt Through Time, The (Toki o kakeru shôjo)
## 20702                                                                                                                                        Blind Side, The 
## 20703                                                                                                                                          Shutter Island
## 20704                                                                                                                                      King's Speech, The
## 20705                                                                                                                                                 Tangled
## 20706                                                                                                            Harry Potter and the Deathly Hallows: Part 2
## 20707                                                                                                                                        What Richard Did
## 20708                                                                                                                                        Drinking Buddies
## 20714                                                                                                                                            Forrest Gump
## 20716                                                                                                                                     Mission: Impossible
## 20717                                                                                                                                                Sleepers
## 20718                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 20719                                                                                                                          Lost World: Jurassic Park, The
## 20721                                                                                                                                             Deep Impact
## 20723                                                                                                                                      Thin Red Line, The
## 20725                                                                                                               Star Wars: Episode I - The Phantom Menace
## 20726                                                                                                                                           Runaway Bride
## 20727                                                                                                                                         Double Jeopardy
## 20729                                                                                                                                  Snow Falling on Cedars
## 20731                                                                                                                                         Mission to Mars
## 20732                                                                                                                                     Rules of Engagement
## 20733                                                                                                                                  Mission: Impossible II
## 20735                                                                                                                                      Perfect Storm, The
## 20736                                                                                                                                                   X-Men
## 20738                                                                                                                                               Cast Away
## 20742                                                                                                                                       Jurassic Park III
## 20744                                                                                                                                               Apollo 13
## 20745                                                                                                                      Star Wars: Episode IV - A New Hope
## 20746                                                                                                                                            Pulp Fiction
## 20747                                                                                                                              Ace Ventura: Pet Detective
## 20748                                                                                                                                            Forrest Gump
## 20750                                                                                                                                             Rear Window
## 20751                                                                                                                                          Apartment, The
## 20753                                                                                                                              E.T. the Extra-Terrestrial
## 20754                                                                                                                         Monty Python and the Holy Grail
## 20755                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 20758                                                                                                                                  Amityville Horror, The
## 20759                                                                                                                                           Young Guns II
## 20761                                                                                                                                                Anaconda
## 20762                                                                                                                      Halloween III: Season of the Witch
## 20763                                                                                                                              Back to the Future Part II
## 20764                                                                                                                             Back to the Future Part III
## 20765                                                                                                                                     Saving Private Ryan
## 20766                                                                                                                               Adventures in Babysitting
## 20767                                                                                                                                     About Last Night...
## 20768                                                                                                                                          Police Academy
## 20769                                                                                                                                             Airport '77
## 20770                                                                                                                                           Arachnophobia
## 20771                                                                                                                                               Airplane!
## 20772                                                                                                    Adventures of Milo and Otis, The (Koneko monogatari)
## 20773                                                                                                                                           All That Jazz
## 20777                                                                                                                                                   Alive
## 20779                                                                                                                                       American Graffiti
## 20780                                                                                                                                            Animal House
## 20781                                                                                                                      Close Encounters of the Third Kind
## 20782                                                                                                                                                  Arthur
## 20783                                                                                                                                                 28 Days
## 20784                                                                                                                                                   Diner
## 20785                                                                                                                                     Along Came a Spider
## 20786                                                                                                                            Nine to Five (a.k.a. 9 to 5)
## 20787                                                                                                                                            Accused, The
## 20788                                                                                                                                                  Always
## 20789                                                                                                                                            Tango & Cash
## 20790                                                                                                                                          Turner & Hooch
## 20791                                                                                                                                              Uncle Buck
## 20792                                                                                                                                  Weekend at Bernie's II
## 20793                                                                                                                                        Paint Your Wagon
## 20794                                                                                                                                   Any Which Way You Can
## 20795                                                                                                                                             Others, The
## 20796                                                                                                                                        Jeepers Creepers
## 20797                                                                                                                          French Lieutenant's Woman, The
## 20799                                                                                                                                       Play Misty for Me
## 20801                                                                                                                                                Brubaker
## 20802                                                                                                                             Cheech & Chong's Next Movie
## 20803                                                                                                                                   Coal Miner's Daughter
## 20806                                                                                                                                                   Congo
## 20807                                                                                                                                             Judge Dredd
## 20808                                                                                                                                              Disclosure
## 20811                                                                                                                                               Crow, The
## 20813                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 20814                                                                                                            City Slickers II: The Legend of Curly's Gold
## 20815                                                                                                                                           Jurassic Park
## 20816                                                                                                                                          Romper Stomper
## 20817                                                                                                                                        Schindler's List
## 20820                                                                                                                                                  Ransom
## 20826                                                                                                                                       Miller's Crossing
## 20828                                                                                                                                               Chinatown
## 20830                                                                                                                                      This Is Spinal Tap
## 20833                                                                                                                                                  Grease
## 20834                                                                                                                                     Waiting for Guffman
## 20835                                                                                                                                                 Gattaca
## 20839                                                                                                                              Back to the Future Part II
## 20840                                                                                                                                Honey, I Shrunk the Kids
## 20844                                                                                                                                                Election
## 20846                                                                                                                                          Boys Don't Cry
## 20848                                                                                                                                        Drugstore Cowboy
## 20849                                                                                                                                     Requiem for a Dream
## 20851                                                                                                                                                 Traffic
## 20853                                                                                                                                                Scarface
## 20855                                                                                                                                        Mulholland Drive
## 20857                                                                                                                                          Monsters, Inc.
## 20862                                                                                                                                         Minority Report
## 20876                                                                                                                                           Batman Begins
## 20877                                                                                                                                          Broken Flowers
## 20880                                                                                                                                   X-Men: The Last Stand
## 20882                                                                                                                                              Get Shorty
## 20884                                                                                                                                                Clueless
## 20886                                                                                                                                               Apollo 13
## 20887                                                                                                                                          Batman Forever
## 20889                                                                                                                                                Net, The
## 20891                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 20893                                                                                                                                                    Nell
## 20894                                                                                                                                    Natural Born Killers
## 20895                                                                                                                                                Outbreak
## 20897                                                                                                                                         Specialist, The
## 20898                                                                                                                                                Stargate
## 20899                                                                                                                                  Star Trek: Generations
## 20901                                                                                                                              Ace Ventura: Pet Detective
## 20903                                                                                                                                            Forrest Gump
## 20906                                                                                                                                               True Lies
## 20907                                                                                                                                    Addams Family Values
## 20908                                                                                                                                   Beverly Hills Cop III
## 20909                                                                                                            City Slickers II: The Legend of Curly's Gold
## 20910                                                                                                                                             Cliffhanger
## 20914                                                                                                                                          Mrs. Doubtfire
## 20916                                                                                                                                               Tombstone
## 20917                                                                                                                                                 Aladdin
## 20920                                                                                                                                                  Batman
## 20927                                                                                                                                               Apollo 13
## 20932                                                                                                                                              Waterworld
## 20935                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 20937                                                                                                                                            Pulp Fiction
## 20938                                                                                                                                               Quiz Show
## 20941                                                                                                                                  Star Trek: Generations
## 20962                                                                                                                                          Batman Forever
## 20963                                                                                                                              Die Hard: With a Vengeance
## 20966                                                                                                                              Ace Ventura: Pet Detective
## 20969                                                                                                                                                   Speed
## 20970                                                                                                                                               True Lies
## 20971                                                                                                                                               Coneheads
## 20974                                                                                                                                      Executive Decision
## 20976                                                                                                                                                    Rudy
## 20977                                                                                                                            So I Married an Axe Murderer
## 20982                                                                                                                                                 Twister
## 20983                                                                                                                           Independence Day (a.k.a. ID4)
## 20984                                                                                                                              E.T. the Extra-Terrestrial
## 20990                                                                                                                                My Best Friend's Wedding
## 20991                                                                                                                               Men in Black (a.k.a. MIB)
## 20992                                                                                                                                                 Titanic
## 20993                                                                                                                                           Lost in Space
## 20994                                                                                                                                      Mask of Zorro, The
## 20996                                                                                                                                         My Cousin Vinny
## 20997                                                                                                                                          ¡Three Amigos!
## 20998                                                                                                               Star Wars: Episode I - The Phantom Menace
## 21001                                                                                                                                        Sixth Sense, The
## 21003                                                                                                                                         Double Jeopardy
## 21004                                                                                                                                              Fight Club
## 21005                                                                                                                                              Awakenings
## 21006                                                                                                                                              Sister Act
## 21010                                                                                                                                          Monsters, Inc.
## 21012                                                                                                            Star Wars: Episode II - Attack of the Clones
## 21014                                                                                                                                     Lost in Translation
## 21015                                                                                                                                       Kill Bill: Vol. 1
## 21016                                                                                                                                       Kill Bill: Vol. 2
## 21017                                                                                                                                                 Shrek 2
## 21019                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 21020                                                                                                                                           Batman Begins
## 21023                                                                                                                                           Casino Royale
## 21024                                                                                                                                                     300
## 21025                                                                                                                                                    Juno
## 21027                                                                                                                                                Iron Man
## 21028                                                                                                                                      Mark of Zorro, The
## 21030                                                                                                                                           Rock-A-Doodle
## 21032                                                                                                                                                  Wanted
## 21035                                                                                                                                   Walk in the Clouds, A
## 21037                                                                                                                                When a Man Loves a Woman
## 21042                                                                                                                                                  Brazil
## 21044                                                                                                                                 Speed 2: Cruise Control
## 21046                                                                                                                                                    Bean
## 21052                                                                                                                      Red Violin, The (Violon rouge, Le)
## 21058                                                                                                                                       Muppet Movie, The
## 21059                                                                                                                                             Coyote Ugly
## 21066                                                                                                                                 40-Year-Old Virgin, The
## 21071                                                                                                City of Lost Children, The (Cité des enfants perdus, La)
## 21076                                                                                                                                                Bad Boys
## 21077                                                                                                                                         Johnny Mnemonic
## 21078                                                                                                                                                Net, The
## 21083                                                                                                                                Manhattan Murder Mystery
## 21084                                                                                                                                  Brady Bunch Movie, The
## 21086                                                                                                                              Terminator 2: Judgment Day
## 21087                                                                                                                                      Dances with Wolves
## 21090                                                                                                                           Independence Day (a.k.a. ID4)
## 21096                                                                                                                                     Father of the Bride
## 21097                                                                                                                                           Thin Man, The
## 21100                                                                                                                                      Lawnmower Man, The
## 21108                                                                                                                               Femme Nikita, La (Nikita)
## 21110                                                                                                                                            Shining, The
## 21111                                                                                                                             Evil Dead II (Dead by Dawn)
## 21117                                                                                                                                           Mars Attacks!
## 21121                                                                                                                          Lost World: Jurassic Park, The
## 21123                                                                                                                                                 Contact
## 21128                                                                                                                                       Starship Troopers
## 21129                                                                                                                                     Alien: Resurrection
## 21132                                                                                                                                                  Sphere
## 21133                                                                                                                          X-Files: Fight the Future, The
## 21137                                                                                                                                Honey, I Blew Up the Kid
## 21147                                                                                                               Star Wars: Episode I - The Phantom Menace
## 21148                                                                                                                                            American Pie
## 21151                                                                                                                                               RoboCop 2
## 21154                                                                                                                                Talented Mr. Ripley, The
## 21156                                                                                                                           Twin Peaks: Fire Walk with Me
## 21158                                                                                                                                                     JFK
## 21167                                                                                                                                        Charlie's Angels
## 21169                                                                                                                                          Evil Dead, The
## 21172                                                                                                                          Jay and Silent Bob Strike Back
## 21174                                                                                                                                        Mulholland Drive
## 21179                                                                                                                                            Gosford Park
## 21188                                                                                                                                              Adaptation
## 21189                                                                                                                                      Star Trek: Nemesis
## 21192                                                                                                                                       Gangs of New York
## 21197                                                                                                                                   Andromeda Strain, The
## 21198                                                                                                                                        X2: X-Men United
## 21203                                                                                                                                               Toy Story
## 21204                                                                                                                                                Clueless
## 21205                                                                                                                                    Seven (a.k.a. Se7en)
## 21206                                                                                                                                     Usual Suspects, The
## 21207                                                                                                                                           Happy Gilmore
## 21209                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 21210                                                                                                                      Star Wars: Episode IV - A New Hope
## 21214                                                                                                                             What's Eating Gilbert Grape
## 21215                                                                                                                                            Forrest Gump
## 21216                                                                                                                                           Jurassic Park
## 21217                                                                                                                                            Blade Runner
## 21218                                                                                                                                              Home Alone
## 21219                                                                                                                               Silence of the Lambs, The
## 21220                                                                                                                                             Heavy Metal
## 21221                                                                                                                           Independence Day (a.k.a. ID4)
## 21222                                                                                                                                      North by Northwest
## 21224                                                                                                                                                 Platoon
## 21225                                                                                                                                   Rebel Without a Cause
## 21226                                                                                                                         One Flew Over the Cuckoo's Nest
## 21227                                                                                                                                     Princess Bride, The
## 21228                                                                                                                                       Full Metal Jacket
## 21229                                                                                                                                              Annie Hall
## 21232                                                                                                                                      Back to the Future
## 21233                                                                                                                                                   Akira
## 21234                                                                                                                              Nightmare on Elm Street, A
## 21238                                                                                                                                       Starship Troopers
## 21239                                                                                                                                        Truman Show, The
## 21241                                                                                                                                       Big Lebowski, The
## 21243                                                                                                                                               Halloween
## 21244                                                                                                                                             Poltergeist
## 21248                                                                                                                                     Edward Scissorhands
## 21250                                                                                                                               Celebration, The (Festen)
## 21251                                                                                                                                          She's All That
## 21252                                                                                                                                        Cruel Intentions
## 21253                                                                                                                                             Matrix, The
## 21256                                                                                                                                            American Pie
## 21258                                                                                                                                               Airplane!
## 21259                                                                                                                                         American Beauty
## 21263                                                                                                                                    Being John Malkovich
## 21264                                                                                                                       Princess Mononoke (Mononoke-hime)
## 21265                                                                                                                                          Trading Places
## 21266                                                                                                                                         Green Mile, The
## 21268                                                                                                                                       Final Destination
## 21269                                                                                                                                         American Psycho
## 21271                                                                                                                                               Road Trip
## 21273                                                                                                                                     Requiem for a Dream
## 21274                                                                                                                                          Pay It Forward
## 21275                                                                                                                                            Little Nicky
## 21276                                                                                                                            Planes, Trains & Automobiles
## 21278                                                                                                                                                Chocolat
## 21279                                                                                                                               Emperor's New Groove, The
## 21282                                                                                                                                                Scarface
## 21283                                                                                                                                        Knight's Tale, A
## 21285                                                                                                                                        Meet the Feebles
## 21286                                                                                                                                             Ghost World
## 21290                                                                                                                                          Monsters, Inc.
## 21291                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 21292                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 21293                                                                                                                                  Not Another Teen Movie
## 21294                                                                                                                             Austin Powers in Goldmember
## 21296                                                                                                                                               Ring, The
## 21297                                                                                                                                             Equilibrium
## 21298                                                                                                                   My Neighbor Totoro (Tonari no Totoro)
## 21300                                                                                                                                           Freaky Friday
## 21303                                                                                                          Lord of the Rings: The Return of the King, The
## 21304                                                                                                                    Confessions of a Teenage Drama Queen
## 21305                                                                                                                   Eternal Sunshine of the Spotless Mind
## 21307                                                                                                                                       Kill Bill: Vol. 2
## 21309                                                                                                                        Dodgeball: A True Underdog Story
## 21310                                                                                                                                           Terminal, The
## 21311                                                                                                                                                I, Robot
## 21312                                                                                                                                            Garden State
## 21313                                                                                                                                       Shaun of the Dead
## 21314                                                                                                                              Team America: World Police
## 21316                                                                                                                                                 Old Boy
## 21317                                                                                                                                     Million Dollar Baby
## 21320                                                                                                                                        Mr. & Mrs. Smith
## 21321                                                                                                                                       War of the Worlds
## 21322                                                                                                                                        Wedding Crashers
## 21324                                                                                                                                 40-Year-Old Virgin, The
## 21331                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 21332                                                                                                                                    Little Miss Sunshine
## 21333                                                                                                                                   Stranger than Fiction
## 21335                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 21336                                                                                                                                           Departed, The
## 21337                                                                                                                                           Prestige, The
## 21339                                                                                                                                             Ratatouille
## 21340                                                                                                                                                     300
## 21341                                                                                                                                              Grindhouse
## 21344                                                                                                                                                Superbad
## 21345                                                                                                                                           Planet Terror
## 21349                                                                                                                                              27 Dresses
## 21351                                                                                                                                                   Taken
## 21352                                                                                                                                                Watchmen
## 21354                                                                                                                Sisterhood of the Traveling Pants 2, The
## 21355                                                                                                                                     Slumdog Millionaire
## 21356                                                                                                                                                Twilight
## 21357                                                                                                                                             Gran Torino
## 21359                                                                                                                             Ponyo (Gake no ue no Ponyo)
## 21362                                                                                                                                    Inglourious Basterds
## 21363                                                                                                                                                      Up
## 21364                                                                                                                                    (500) Days of Summer
## 21365                                                                                                                                              District 9
## 21366                                                                                                                                              Zombieland
## 21367                                                                                                                                            Mary and Max
## 21368                                                                                                                                                  Avatar
## 21369                                                                                                                                          Shutter Island
## 21370                                                                                                                                How to Train Your Dragon
## 21371                                                                                                                                                Kick-Ass
## 21373                                                                                                                                           Despicable Me
## 21377                                                                                                                                                  Easy A
## 21378                                                                                                                                         Never Let Me Go
## 21381                                                                                                                                      King's Speech, The
## 21388                                                                                                                                               Help, The
## 21389                                                                                                                                           Avengers, The
## 21390                                                                                                                                                   50/50
## 21393                                                                                                                                                    Hugo
## 21396                                                                                                                      Sherlock Holmes: A Game of Shadows
## 21399                                                                                                                                        Moonrise Kingdom
## 21403                                                                                                                      Hobbit: An Unexpected Journey, The
## 21404                                                                                                                                        Django Unchained
## 21406                                                                                                                                             World War Z
## 21410                                                                                                                                      Dallas Buyers Club
## 21419                                                                                                                                                Whiplash
## 21420                                                                                                                                 Guardians of the Galaxy
## 21421                                                                                                                                        Maze Runner, The
## 21422                                                                                                                                          Predestination
## 21428                                                                                                                                         Song of the Sea
## 21429                                                                                                                                             Citizenfour
## 21431                                                                                                                                      Mad Max: Fury Road
## 21432                                                                                                       Going Clear: Scientology and the Prison of Belief
## 21434                                                                                                                                               Toy Story
## 21435                                                                                                                                                 Jumanji
## 21436                                                                                                                             Father of the Bride Part II
## 21438                                                                                                                          Ace Ventura: When Nature Calls
## 21439                                                                                                                                              Get Shorty
## 21440                                                                                                                                               Assassins
## 21442                                                                                                                                         Dangerous Minds
## 21443                                                                                                                                                Clueless
## 21444                                                                                                                                           Mortal Kombat
## 21445                                                                                                                                              To Die For
## 21447                                                                                                                             Indian in the Cupboard, The
## 21448                                                                                                                                                  Friday
## 21449                                                                                                                                     From Dusk Till Dawn
## 21450                                                                                                                                               Fair Game
## 21451                                                                                                                                            Broken Arrow
## 21455                                                                                                                                                Bad Boys
## 21456                                                                                                                                          Batman Forever
## 21457                                                                                                                              Die Hard: With a Vengeance
## 21458                                                                                                                                                 Hackers
## 21459                                                                                                                                         Johnny Mnemonic
## 21460                                                                                                                                               Jury Duty
## 21461                                                                                                                                                Mallrats
## 21462                                                                                                                                                Net, The
## 21463                                                                                                                                                 Species
## 21464                                                                                                                                              Waterworld
## 21466                                                                                                                                               Drop Zone
## 21467                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 21468                                                                                                                                                  Junior
## 21470                                                                                                                                    Natural Born Killers
## 21471                                                                                                                                                Outbreak
## 21475                                                                                                                                               Tank Girl
## 21476                                                                                                                                               Tommy Boy
## 21477                                                                                                                                 While You Were Sleeping
## 21478                                                                                                                                        Muriel's Wedding
## 21479                                                                                                                              Ace Ventura: Pet Detective
## 21482                                                                                                                                          Lion King, The
## 21483                                                                                                                                               Mask, The
## 21485                                                                                                                                                   Speed
## 21487                                                                                                            City Slickers II: The Legend of Curly's Gold
## 21488                                                                                                                                               Coneheads
## 21489                                                                                                                                          Demolition Man
## 21491                                                                                                                                           Jurassic Park
## 21492                                                                                                                                          Mrs. Doubtfire
## 21493                                                                                                                                            Philadelphia
## 21494                                                                                                                               Robin Hood: Men in Tights
## 21495                                                                                                                                    Sleepless in Seattle
## 21496                                                                                                                                            Blade Runner
## 21497                                                                                                                                       Striking Distance
## 21498                                                                                                                                       Terminal Velocity
## 21499                                                                                                                                              Home Alone
## 21500                                                                                                                                                 Aladdin
## 21501                                                                                                                              Terminator 2: Judgment Day
## 21502                                                                                                                                      Dances with Wolves
## 21503                                                                                                                                                  Batman
## 21504                                                                                                                                     Mission: Impossible
## 21505                                                                                                                                               Rock, The
## 21508                                                                                                                                          Cable Guy, The
## 21509                                                                                                                                                 Kingpin
## 21510                                                                                                                                                  Eraser
## 21511                                                                                                                                    Nutty Professor, The
## 21512                                                                                                                                        Frighteners, The
## 21514                                                                                                                                                    Fled
## 21515                                                                                                                                         Joe's Apartment
## 21516                                                                                                                                                  Ransom
## 21517                                                                                                                                          Chain Reaction
## 21518                                                                                                                                                 Tin Cup
## 21519                                                                                                                                          Godfather, The
## 21521                                                                                                                                    D3: The Mighty Ducks
## 21522                                                                                                                                           Cool Runnings
## 21525                                                                                                                                Long Kiss Goodnight, The
## 21526                                                                                                                                                Sleepers
## 21527                                                                                                                         Aladdin and the King of Thieves
## 21528                                                                                                                     Willy Wonka & the Chocolate Factory
## 21529                                                                                                                              E.T. the Extra-Terrestrial
## 21530                                                                                                                                          Drop Dead Fred
## 21534                                                                                                                                         Terminator, The
## 21535                                                                                                                                      Dead Poets Society
## 21537                                                                                                                                           Groundhog Day
## 21541                                                                                                                                              Die Hard 2
## 21542                                                                                                                           Star Trek: The Motion Picture
## 21543                                                                                                                         Star Trek V: The Final Frontier
## 21544                                                                                                                         Star Trek II: The Wrath of Khan
## 21545                                                                                                                     Star Trek III: The Search for Spock
## 21546                                                                                                                           Star Trek IV: The Voyage Home
## 21547                                                                                                                                          Batman Returns
## 21548                                                                                                                                           Mars Attacks!
## 21549                                                                                                                                           Jerry Maguire
## 21551                                                                                                                         Beavis and Butt-Head Do America
## 21552                                                                                                                                                  Scream
## 21553                                                                                                                                                 Michael
## 21554                                                                  First Strike (Police Story 4: First Strike) (Ging chaat goo si 4: Ji gaan daan yam mo)
## 21555                                                                                                                                               Liar Liar
## 21556                                                                                                                                     Grosse Pointe Blank
## 21557                                                                                                                                                 Volcano
## 21558                                                                                                             Austin Powers: International Man of Mystery
## 21559                                                                                                                                               Breakdown
## 21561                                                                                                                          Lost World: Jurassic Park, The
## 21562                                                                                                                                                 Con Air
## 21564                                                                                                                               Men in Black (a.k.a. MIB)
## 21566                                                                                                                                    George of the Jungle
## 21568                                                                                                                                       Conspiracy Theory
## 21569                                                                                                                                           Air Force One
## 21571                                                                                                                                         Peacemaker, The
## 21572                                                                                                                                       L.A. Confidential
## 21575                                                                                                                                         Full Monty, The
## 21576                                                                                                                         I Know What You Did Last Summer
## 21578                                                                                                                                                 Gattaca
## 21579                                                                                                                                         One Night Stand
## 21580                                                                                                                                           Boogie Nights
## 21581                                                                                                                                       Starship Troopers
## 21582                                                                                                                                        Truman Show, The
## 21586                                                                                                                                       Big Lebowski, The
## 21587                                                                                                                                               Senseless
## 21589                                                                                                                                               Hard Rain
## 21591                                                                                                                                      As Good as It Gets
## 21592                                                                                                                                           U.S. Marshals
## 21593                                                                                                                                           Lost in Space
## 21594                                                                                                                                          Mercury Rising
## 21596                                                                                                                                       Perfect Murder, A
## 21597                                                                                                                                   Six Days Seven Nights
## 21598                                                                                                                                       Can't Hardly Wait
## 21599                                                                                                                          X-Files: Fight the Future, The
## 21601                                                                                                                                         Lethal Weapon 4
## 21602                                                                                                                            There's Something About Mary
## 21604                                                                                                                                                Rain Man
## 21605                                                                                                                                               Labyrinth
## 21606                                                                                                                                           Lethal Weapon
## 21607                                                                                                                                         Lethal Weapon 2
## 21608                                                                                                                                         Lethal Weapon 3
## 21609                                                                                                                               Gremlins 2: The New Batch
## 21610                                                                                                                                            Goonies, The
## 21614                                                                                                                                    D2: The Mighty Ducks
## 21615                                                                                                                                Honey, I Shrunk the Kids
## 21616                                                                                                                                         Negotiator, The
## 21617                                                                                                                                       Mighty Ducks, The
## 21618                                                                                                                                          Outsiders, The
## 21621                                                                                                                                                    Toys
## 21622                                                                                                                                               Rush Hour
## 21623                                                                                                                                                    Antz
## 21624                                                                                                                                           Pleasantville
## 21625                                                                                                                                              Siege, The
## 21627                                                                                                                   I Still Know What You Did Last Summer
## 21629                                                                                                                                           Bug's Life, A
## 21630                                                                                                                                       View to a Kill, A
## 21631                                                                                                                                     Shakespeare in Love
## 21632                                                                                                                                         Karate Kid, The
## 21633                                                                                                                                Karate Kid, Part II, The
## 21634                                                                                                                               Karate Kid, Part III, The
## 21635                                                                                                                                         You've Got Mail
## 21636                                                                                                                                          She's All That
## 21637                                                                                                                                                 Payback
## 21638                                                                                                                                     Blast from the Past
## 21639                                                                                                                                            Office Space
## 21640                                                                                                                                                     8MM
## 21641                                                                                                                                        Cruel Intentions
## 21642                                                                                                                                                    EDtv
## 21644                                                                                                                              10 Things I Hate About You
## 21645                                                                                                                                                      Go
## 21646                                                                                                                                              Entrapment
## 21648                                                                                                               Star Wars: Episode I - The Phantom Menace
## 21649                                                                                                                                                Superman
## 21650                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 21651                                                                                                                                               Big Daddy
## 21652                                                                                                                                          Wild Wild West
## 21653                                                                                                                                            American Pie
## 21654                                                                                                                                          Arlington Road
## 21655                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 21656                                                                                                                                           Deep Blue Sea
## 21658                                                                                                                                Thomas Crown Affair, The
## 21659                                                                                                                                               Bowfinger
## 21660                                                                                                                                                     Big
## 21661                                                                                                                                         American Beauty
## 21663                                                                                                                                            Total Recall
## 21665                                                                                                                                              Goldfinger
## 21666                                                                                                                                   From Russia with Love
## 21667                                                                                                                                                  Dr. No
## 21668                                                                                                                          Home Alone 2: Lost in New York
## 21669                                                                                                                                              Fight Club
## 21670                                                                                                                                Who Framed Roger Rabbit?
## 21671                                                                                                                                      For Your Eyes Only
## 21672                                                                                                                                         Licence to Kill
## 21673                                                                                                                                        Live and Let Die
## 21674                                                                                                                                             Thunderball
## 21675                                                                                                                                    Being John Malkovich
## 21676                                                                                                                                     Bone Collector, The
## 21677                                                                                                                                          Trading Places
## 21678                                                                                                                                                   Dogma
## 21680                                                                                                                              Deuce Bigalow: Male Gigolo
## 21683                                                                                                    Loaded Weapon 1 (National Lampoon's Loaded Weapon 1)
## 21684                                                                                                                                           Wayne's World
## 21685                                                                                                                                         Wayne's World 2
## 21687                                                                                                                                                 Singles
## 21688                                                                                                                                   Whole Nine Yards, The
## 21689                                                                                                                                          Reindeer Games
## 21690                                                                                                                                         Erin Brockovich
## 21692                                                                                                                                         Heart and Souls
## 21693                                                                                                                                          Empire Records
## 21694                                                                                                                                         Black and White
## 21695                                                                                                                                               Frequency
## 21696                                                                                                                                                 28 Days
## 21697                                                                                                                                       Keeping the Faith
## 21700                                                                                                                                  Mission: Impossible II
## 21701                                                                                                                                   Spy Who Loved Me, The
## 21702                                                                                                                                               Moonraker
## 21703                                                                                                                            Man with the Golden Gun, The
## 21704                                                                                                                                        Running Man, The
## 21705                                                                                                                                            Patriot, The
## 21707                                                                                                                                       What Lies Beneath
## 21708                                                                                                                          Nutty Professor II: The Klumps
## 21709                                                                                                                                       Replacements, The
## 21710                                                                                                                                               Cell, The
## 21714                                                                                                                                       Time Machine, The
## 21715                                                                                                                                           Lucky Numbers
## 21716                                                                                                                                        Charlie's Angels
## 21717                                                                                                                                    Diamonds Are Forever
## 21718                                                                                                                                             Unbreakable
## 21719                                                                                                                                           Proof of Life
## 21720                                                                                                                                         What Women Want
## 21721                                                                                                                                               Gift, The
## 21722                                                                                                                                         Family Man, The
## 21723                                                                                                                                       Miss Congeniality
## 21724                                                                                                                              O Brother, Where Art Thou?
## 21725                                                                                                                    Don't Tell Mom the Babysitter's Dead
## 21726                                                                                                                           Saving Silverman (Evil Woman)
## 21727                                                                                                                                           Down to Earth
## 21728                                                                                                                                    Revenge of the Nerds
## 21729                                                                                                                                      Enemy at the Gates
## 21731                                                                                                                                                 Memento
## 21732                                                                                                                                           Heartbreakers
## 21733                                                                                                                                         Say It Isn't So
## 21734                                                                                                                                     Along Came a Spider
## 21735                                                                                                                                                  Driven
## 21736                                                                                                                                           City Slickers
## 21737                                                                                                                                               Evolution
## 21739                                                                                                                                             Point Break
## 21740                                                                                                                               Fast and the Furious, The
## 21741                                                                                                                                              Score, The
## 21743                                                                                                                                           Short Circuit
## 21744                                                                                                                        Bill & Ted's Excellent Adventure
## 21745                                                                                                                                              Lean on Me
## 21746                                                                                                                                       Jurassic Park III
## 21747                                                                                                                                             Rush Hour 2
## 21749                                                                                                                              Captain Corelli's Mandolin
## 21750                                                                                                                          Jay and Silent Bob Strike Back
## 21751                                                                                                                                               Rock Star
## 21752                                                                                                                                        Don't Say a Word
## 21754                                                                                                                                        Last Castle, The
## 21756                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 21757                                                                                                                                                Spy Game
## 21758                                                                                                                                       Lord of the Flies
## 21760                                                                                                                              Bill & Ted's Bogus Journey
## 21762                                                                                                                                         Black Hawk Down
## 21763                                                                                                                                           Orange County
## 21764                                                                                                                                           Birthday Girl
## 21765                                                                                                                                       Collateral Damage
## 21766                                                                                                                                       Time Machine, The
## 21767                                                                                                                                           Resident Evil
## 21768                                                                                                                                             High Crimes
## 21769                                                                                                                           National Lampoon's Van Wilder
## 21770                                                                                                                                       Murder by Numbers
## 21771                                                                                                                                              Spider-Man
## 21772                                                                                                                                             About a Boy
## 21773                                                                                                            Star Wars: Episode II - Attack of the Clones
## 21776                                                                                                                                         Minority Report
## 21777                                                                                                                                               Mr. Deeds
## 21778                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 21779                                                                                                                                                   Signs
## 21780                                                                                                                                        Transporter, The
## 21781                                                                                                                 Harry Potter and the Chamber of Secrets
## 21784                                                                                                                                       Gangs of New York
## 21785                                                                                                                                            Recruit, The
## 21787                                                                                                                                            Dreamcatcher
## 21788                                                                                                                                               Core, The
## 21789                                                                                                                                           Head of State
## 21791                                                                                                                                        Bulletproof Monk
## 21792                                                                                                                                              Confidence
## 21793                                                                                                                                                Identity
## 21794                                                                                                                                        X2: X-Men United
## 21796                                                                                                                                          Bruce Almighty
## 21798                                                                                                          2 Fast 2 Furious (Fast and the Furious 2, The)
## 21800                                                                                                                      Terminator 3: Rise of the Machines
## 21802                                                                                                     League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 21803                                                                                                                                          Matchstick Men
## 21805                                                                                                                                            Rundown, The
## 21807                                                                                                                                                     Elf
## 21808                                                                                                                                     Father of the Bride
## 21809                                                                                                                                           Doc Hollywood
## 21811                                                                                                                                        Along Came Polly
## 21814                                                                                                                                         Starsky & Hutch
## 21816                                                                                                                                        Dawn of the Dead
## 21817                                                                                                                                    Whole Ten Yards, The
## 21819                                                                                                                                     You Only Live Twice
## 21820                                                                                                                                               Octopussy
## 21821                                                                                                                                   Never Say Never Again
## 21823                                                                                                                Harry Potter and the Prisoner of Azkaban
## 21825                                                                                                                                           Memphis Belle
## 21827                                                                                                                                               Overboard
## 21830                                                                                                                                       Shaun of the Dead
## 21832                                                                                                                                        After the Sunset
## 21834                                                                                                                                                The Hole
## 21835                                                                                                                                               Spanglish
## 21836                                                                                                                                        Interpreter, The
## 21838                                                                                                                                       War of the Worlds
## 21849                                                                                                                          Ace Ventura: When Nature Calls
## 21852                                                                                                                                                    Babe
## 21853                                                                                                                                                Clueless
## 21855                                                                                                                                     Usual Suspects, The
## 21856                                                                                                                                            Broken Arrow
## 21859                                                                                                                                          Batman Forever
## 21860                                                                                                                                                   Congo
## 21863                                                                                                                                             Judge Dredd
## 21864                                                                                                                                                Net, The
## 21866                                                                                                                                              Disclosure
## 21868                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 21869                                                                                                                                     Legends of the Fall
## 21873                                                                                                                                               Quiz Show
## 21874                                                                                                                                         Specialist, The
## 21876                                                                                                                                       Santa Clause, The
## 21878                                                                                                                                 While You Were Sleeping
## 21879                                                                                                                              Ace Ventura: Pet Detective
## 21885                                                                                                                                               Mask, The
## 21888                                                                                                                                    Addams Family Values
## 21889                                                                                                                                   Beverly Hills Cop III
## 21890                                                                                                            City Slickers II: The Legend of Curly's Gold
## 21893                                                                                                                                                    Dave
## 21900                                                                                                                                              Piano, The
## 21902                                                                                                                                    Sleepless in Seattle
## 21903                                                                                                                                               Tombstone
## 21905                                                                                                                                                 Aladdin
## 21907                                                                                                                                      Dances with Wolves
## 21908                                                                                                                                                  Batman
## 21909                                                                                                                                    Beauty and the Beast
## 21910                                                                                                                                            Pretty Woman
## 21911                                                                                                                                               Toy Story
## 21913                                                                                                                                               GoldenEye
## 21914                                                                                                                                              Get Shorty
## 21915                                                                                                                                       Leaving Las Vegas
## 21919                                                                                                                                            Broken Arrow
## 21920                                                                                                                                              Braveheart
## 21921                                                                                                                                             Taxi Driver
## 21922                                                                                                                                          Down Periscope
## 21923                                                                                                                                               Apollo 13
## 21925                                                                                                                                                Net, The
## 21926                                                                                                                                              Waterworld
## 21927                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 21928                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 21930                                                                                                                                    Natural Born Killers
## 21935                                                                                                                                Clear and Present Danger
## 21936                                                                                                                                            Forrest Gump
## 21937                                                                                                                             Four Weddings and a Funeral
## 21939                                                                                                                                                   Speed
## 21940                                                                                                                                               True Lies
## 21941                                                                                                                                             Cliffhanger
## 21942                                                                                                                                               Firm, The
## 21944                                                                                                                                           Jurassic Park
## 21945                                                                                                                                          Mrs. Doubtfire
## 21947                                                                                                                                              Home Alone
## 21948                                                                                                                                                   Ghost
## 21949                                                                                                                                      Dances with Wolves
## 21951                                                                                                                                            Pretty Woman
## 21953                                                                                                                                               Rock, The
## 21954                                                                                                                                                 Twister
## 21955                                                                                    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 21956                                                                                                                                           Trainspotting
## 21959                                                                                                                            20,000 Leagues Under the Sea
## 21960                                                                                                                                                Die Hard
## 21961                                                                                                                                          Reservoir Dogs
## 21962                                                                                                                                                 Platoon
## 21963                                                                                                                              E.T. the Extra-Terrestrial
## 21966                                                                                                                         One Flew Over the Cuckoo's Nest
## 21968                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 21970                                                                                                                                     Clockwork Orange, A
## 21973                                                                                                                                       Full Metal Jacket
## 21974                                                                                                                                         Terminator, The
## 21975                                                                                                                                        Deer Hunter, The
## 21977                                                                                                                                      Back to the Future
## 21978                                                                                                                                                  Patton
## 21979                                                                                                                                     Room with a View, A
## 21980                                                                                                                                           Private Parts
## 21981                                                                                                                                     Grosse Pointe Blank
## 21982                                                                                                             Austin Powers: International Man of Mystery
## 21983                                                                                                                                      Fifth Element, The
## 21986                                                                                                                                          Ice Storm, The
## 21988                                                                                                                                           Sliding Doors
## 21989                                                                                                                                        Truman Show, The
## 21990                                                                                                                                       Good Will Hunting
## 21991                                                                                                                                                 Titanic
## 21994                                                                                                                                                Rain Man
## 21996                                                                                                                     Life Is Beautiful (La Vita è bella)
## 21997                                                                                                                                     Shakespeare in Love
## 21998                                                                                                                                             Patch Adams
## 22001                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 22002                                                                                                                                            American Pie
## 22003                                                                                                                                        Sixth Sense, The
## 22005                                                                                                                                        Dirty Dozen, The
## 22008                                                                                                                                  Cider House Rules, The
## 22009                                                                                                                                          Bodyguard, The
## 22011                                                                                                                                           High Fidelity
## 22013                                                                                                                                              Hollow Man
## 22014                                                                                                                                           Almost Famous
## 22016                                                                                                                                            Billy Elliot
## 22018                                                                                                                            Planes, Trains & Automobiles
## 22019                                                                                                                                                  Snatch
## 22021                                                                                                                                      Enemy at the Gates
## 22023                                                                                                                                                    Blow
## 22024                                                                                                                                                   Shrek
## 22025                                                                                                                                             Others, The
## 22026                                                                                                                                        Mulholland Drive
## 22028                                                                                                                                          Monsters, Inc.
## 22030                                                                                                                                          Ocean's Eleven
## 22033                                                                                                                                       Beautiful Mind, A
## 22034                                                                                                                                         Black Hawk Down
## 22035                                                                                                                                            Gosford Park
## 22036                                                                                                                                   M*A*S*H (a.k.a. MASH)
## 22037                                                                                                                                              Spider-Man
## 22043                                                                                                                                     Catch Me If You Can
## 22044                                                                                                                    Flickering Lights (Blinkende lygter)
## 22047                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 22050                                                                                                                                           Love Actually
## 22051                                                                                                                                                21 Grams
## 22052                                                                                                                         Battle Royale (Batoru rowaiaru)
## 22055                                                                                                                                    The Butterfly Effect
## 22059                                                                                                         In China They Eat Dogs (I Kina spiser de hunde)
## 22061                                                                                                                                           Notebook, The
## 22062                                                                                                                                            Spider-Man 2
## 22065                                                                                                                                        Incredibles, The
## 22066                                                                                                                                    Bourne Identity, The
## 22068                                                                                                                                     Million Dollar Baby
## 22069                                                                                                                                            Hotel Rwanda
## 22072                                                                                                                                                   Crash
## 22076                                                                                                                                             Grizzly Man
## 22077                                                                                                                                  Constant Gardener, The
## 22078                                                                                                                                             Lord of War
## 22079                                                                                                                                     Kiss Kiss Bang Bang
## 22081                                                                                                                                           Walk the Line
## 22082                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 22083                                                                                                                                                  Munich
## 22084                                                                                                                                          V for Vendetta
## 22085                                                                                                                                   Thank You for Smoking
## 22089                                                                                                                                                   Babel
## 22090                                                                                                                             Adam's Apples (Adams æbler)
## 22091                                                                                                                                         Children of Men
## 22095                                                                                                                                             Ratatouille
## 22102                                                                                                                                     There Will Be Blood
## 22103                                                                                                                                               In Bruges
## 22106                                                                                                                                                   Taken
## 22107                                                                                                                                           Kung Fu Panda
## 22110                                                                                                Girl with the Dragon Tattoo, The (Män som hatar kvinnor)
## 22111                                                                                                                                    Inglourious Basterds
## 22116                                                                                                                                              District 9
## 22119                                                                                                                                          Shutter Island
## 22120                                                                                                                                How to Train Your Dragon
## 22121                                                                                                                                             Toy Story 3
## 22123                                                                                                                                     Social Network, The
## 22125                                                                                                                                      King's Speech, The
## 22132                                                                                                                                              Braveheart
## 22135                                                                                                                                        Don Juan DeMarco
## 22139                                                                                                                                         Made in America
## 22140                                                                                                                                       Super Mario Bros.
## 22153                                                                                                                                       L.A. Confidential
## 22165                                                                                                                                   House on Haunted Hill
## 22167                                                                                                                                           Forever Young
## 22168                                                                                                                                  Pokémon the Movie 2000
## 22169                                                                                                                                             Coyote Ugly
## 22171                                                                                                                                      Mummy Returns, The
## 22177                                                                                                                               Return to the Blue Lagoon
## 22182                                                                                                                             Father of the Bride Part II
## 22183                                                                                                                                                 Sabrina
## 22186                                                                                                                                      Mr. Holland's Opus
## 22188                                                                                                                                             Mary Reilly
## 22191                                                                                                                                              Sgt. Bilko
## 22196                                                                                                                            Truth About Cats & Dogs, The
## 22197                                                                                                                                                 Flipper
## 22200                                                                                                                            Hunchback of Notre Dame, The
## 22206                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 22210                                                                                                                                           Jurassic Park
## 22215                                                                                    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 22216                                                                                                                           Independence Day (a.k.a. ID4)
## 22222                                                                                                                                              Abyss, The
## 22225                                                                                                                                            Delicatessen
## 22230                                                                                                                                                  Brazil
## 22235                                                                                                                                         Terminator, The
## 22236                                                                                                                                                Sneakers
## 22237                                                                                                                                      Fifth Element, The
## 22238                                                                                                                                                Face/Off
## 22240                                                                                                                                       Good Will Hunting
## 22241                                                                                                                                        Chariots of Fire
## 22242                                                                                                                                                Repo Man
## 22243                                                                                                                              Back to the Future Part II
## 22244                                                                                                                             Back to the Future Part III
## 22247                                                                                                                                              Pale Rider
## 22249                                                                                                                                             Logan's Run
## 22250                                                                                                                                      Planet of the Apes
## 22253                                                                                                                                           Arachnophobia
## 22254                                                                                                                                       Color Purple, The
## 22256                                                                                                                                            Total Recall
## 22259                                                                                                                                        Last Action Hero
## 22261                                                                                                                                  Brady Bunch Movie, The
## 22269                                                                                                                                     Tomorrow Never Dies
## 22273                                                                                                                                               Bowfinger
## 22279                                                                                                                                      Gone in 60 Seconds
## 22301                                                                                                                                              Iron Man 2
## 22302                                                                                                                                               Toy Story
## 22303                                                                                                                                                 Jumanji
## 22304                                                                                                                                               GoldenEye
## 22305                                                                                                                             Dracula: Dead and Loving It
## 22307                                                                                                                                                    Babe
## 22308                                                                                                                                    Seven (a.k.a. Se7en)
## 22310                                                                                                                                                   Congo
## 22311                                                                                                                              Die Hard: With a Vengeance
## 22312                                                                                                                                              Waterworld
## 22314                                                                                                                      Star Wars: Episode IV - A New Hope
## 22315                                                                                                                                             Major Payne
## 22318                                                                                                                                                Stargate
## 22319                                                                                                                              Ace Ventura: Pet Detective
## 22320                                                                                                                                               Mask, The
## 22321                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 22322                                                                                                                                                   Speed
## 22323                                                                                                                                    Hot Shots! Part Deux
## 22324                                                                                                                                           Jurassic Park
## 22325                                                                                                                                        Last Action Hero
## 22326                                                                                                                                        Schindler's List
## 22327                                                                                                                                            Blade Runner
## 22329                                                                                                                                              Home Alone
## 22331                                                                                                                                     Mission: Impossible
## 22332                                                                                                                                               Rock, The
## 22333                                                                                                                                                 Twister
## 22336                                                                                                                           Independence Day (a.k.a. ID4)
## 22337                                                                                                                                   2001: A Space Odyssey
## 22338                                                                                                                                                Die Hard
## 22339                                                                                                                              E.T. the Extra-Terrestrial
## 22340                                                                                                                                              Abyss, The
## 22341                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 22342                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 22346                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 22351                                                                                                                             Evil Dead II (Dead by Dawn)
## 22352                                                                                                                                           Groundhog Day
## 22355                                                                                                                      Indiana Jones and the Last Crusade
## 22356                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 22357                                                                                                                                                    Jaws
## 22358                                                                                                                                           Mars Attacks!
## 22359                                                                                                             Austin Powers: International Man of Mystery
## 22360                                                                                                                                      Fifth Element, The
## 22361                                                                                                                          Lost World: Jurassic Park, The
## 22362                                                                                                                                                Face/Off
## 22363                                                                                                                               Men in Black (a.k.a. MIB)
## 22364                                                                                                                                           Event Horizon
## 22366                                                                                                                                       Starship Troopers
## 22368                                                                                                                                     Alien: Resurrection
## 22369                                                                                                                                                 Titanic
## 22371                                                                                                                            There's Something About Mary
## 22372                                                                                                                                                Rain Man
## 22373                                                                                                                                            Child's Play
## 22374                                                                                                                                                Gremlins
## 22375                                                                                                                             Back to the Future Part III
## 22376                                                                                                                                                  Lolita
## 22377                                                                                                                                     Saving Private Ryan
## 22378                                                                                                                                Honey, I Shrunk the Kids
## 22379                                                                                                                    Indiana Jones and the Temple of Doom
## 22380                                                                                                             NeverEnding Story II: The Next Chapter, The
## 22381                                                                                                                                                   Blade
## 22384                                                                                                                                           Bug's Life, A
## 22385                                                                                                                                       Godzilla (Gojira)
## 22386                                                                                                               Police Academy 5: Assignment: Miami Beach
## 22387                                                                                                                      Police Academy 6: City Under Siege
## 22388                                                                                                                                Karate Kid, Part II, The
## 22390                                                                                                                                        Crocodile Dundee
## 22391                                                                                                                                            Office Space
## 22393                                                                                                               Star Wars: Episode I - The Phantom Menace
## 22394                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 22396                                                                                                                                            American Pie
## 22397                                                                                                                                Blair Witch Project, The
## 22398                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 22402                                                                                                                                             Three Kings
## 22404                                                                                                                                                 RoboCop
## 22406                                                                                                                                            Falling Down
## 22407                                                                                                                                             End of Days
## 22408                                                                                                                                         Of Mice and Men
## 22409                                                                                                                                                Red Dawn
## 22410                                                                                                                                                Predator
## 22412                                                                                                                                  Mission: Impossible II
## 22413                                                                                                                                                   X-Men
## 22414                                                                                                                                              Hellraiser
## 22415                                                                                                                                        Charlie's Angels
## 22417                                                                                                                                               Cast Away
## 22418                                                                                                                                   Shadow of the Vampire
## 22419                                                                                                                                    Beverly Hills Cop II
## 22421                                                                                                                                                   Shrek
## 22422                                                                                                                                            Pearl Harbor
## 22423                                                                                                                                 Lara Croft: Tomb Raider
## 22424                                                                                                                            A.I. Artificial Intelligence
## 22426                                                                                                                                           Short Circuit
## 22427                                                                                                                                          American Pie 2
## 22429                                                                                                                                          Monsters, Inc.
## 22430                                                                                                         Devil's Backbone, The (Espinazo del diablo, El)
## 22433                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 22434                                                                                                                                         Black Hawk Down
## 22436                                                                                                                                                Blade II
## 22437                                                                                                                                              Spider-Man
## 22438                                                                                                            Star Wars: Episode II - Attack of the Clones
## 22439                                                                                                                                    Bourne Identity, The
## 22440                                                                                                                                         Minority Report
## 22442                                                                                                                                               Ring, The
## 22443                                                                                                                 Grave of the Fireflies (Hotaru no haka)
## 22444                                                                                                                                             Equilibrium
## 22445                                                                                                                  Lord of the Rings: The Two Towers, The
## 22447                                                                                                                                    Bend It Like Beckham
## 22449                                                                                                                                        X2: X-Men United
## 22450                                                                                                                                    Matrix Reloaded, The
## 22451                                                                                                                                          Bruce Almighty
## 22452                                                                                                                                            Finding Nemo
## 22455                                                                                                                      Terminator 3: Rise of the Machines
## 22456                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 22457                                                                                                                                          School of Rock
## 22458                                                                                                                                       Kill Bill: Vol. 1
## 22459                                                                                                                                 Matrix Revolutions, The
## 22462                                                                                                          Lord of the Rings: The Return of the King, The
## 22466                                                                                                                                       Kill Bill: Vol. 2
## 22467                                                                                                                                             Van Helsing
## 22468                                                                                                                         Infernal Affairs (Mou gaan dou)
## 22472                                                                                                                                                 Shrek 2
## 22473                                                                                                                                 Day After Tomorrow, The
## 22475                                                                                                                                            Spider-Man 2
## 22476                                                                                                                                                I, Robot
## 22477                                                                                                                                   Bourne Supremacy, The
## 22478                                                                                                                               Resident Evil: Apocalypse
## 22479                                                                                                                                       Shaun of the Dead
## 22482                                                                                                                                        Incredibles, The
## 22483                                                                                                                                          Ocean's Twelve
## 22484                                                                                                                                          Blade: Trinity
## 22485                                                                                                                        Police Story (Ging chaat goo si)
## 22489                                                                                                                                              Layer Cake
## 22490                                                                                                                    Gozu (Gokudô kyôfu dai-gekijô: Gozu)
## 22491                                                                                                                       Charlie and the Chocolate Factory
## 22494                                                                                                                                Kung Fu Hustle (Gong fu)
## 22495                                                                                                    Godzilla vs. Mechagodzilla II (Gojira VS Mekagojira)
## 22498                                                                                                                   Hitchhiker's Guide to the Galaxy, The
## 22499                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 22501                                                                                                                                       War of the Worlds
## 22502                                                                                                                                          Fantastic Four
## 22503                                                                                                                                                Serenity
## 22504                                                                                                                                 40-Year-Old Virgin, The
## 22509                                                                                                                                   X-Men: The Last Stand
## 22510                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 22513                                                                                                                                               Severance
## 22514                                                                                                            Science of Sleep, The (La science des rêves)
## 22515                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 22519                                                                                                                                           Casino Royale
## 22520                                                                                                                                                Hot Fuzz
## 22521                                                                                                                                                     300
## 22522                                                                                                                                                Sunshine
## 22526                                                                                                               Fantastic Four: Rise of the Silver Surfer
## 22527                                                                                                                                                    Fido
## 22528                                                                                                                                             Death Proof
## 22529                                                                                                                                            Transformers
## 22530                                                                                                                                   Bourne Ultimatum, The
## 22531                                                                                                                                                Superbad
## 22532                                                                                                                         City of Violence, The (Jjakpae)
## 22533                                                                                                                            Elite Squad (Tropa de Elite)
## 22534                                                                                                                                       American Gangster
## 22536                                                                                                                                             I Am Legend
## 22539                                                                                                  Girl Who Leapt Through Time, The (Toki o kakeru shôjo)
## 22541                                                                                                                                           Bank Job, The
## 22542                                                                                                                                    Zeitgeist: The Movie
## 22544                                                                                                                                                Iron Man
## 22547                                                                                                                                                  WALL·E
## 22548                                                                                                                                                 Hancock
## 22550                                                                                                                               Star Wars: The Clone Wars
## 22552                                                                                                                                               Max Payne
## 22556                                                                                                                                                Coraline
## 22557                                                                                                                                               Chocolate
## 22564                                                                                                                                        Hurt Locker, The
## 22566                                                                                                            Frequently Asked Questions About Time Travel
## 22568                                                                                                                                         Thirst (Bakjwi)
## 22569                                                                                                                                              Zombieland
## 22571                                                                                                                                                    2012
## 22572                                                                                                                                                  Avatar
## 22574                                                                                                                                          Shutter Island
## 22575                                                                                                                                     Alice in Wonderland
## 22578                                                                                                                                              Iron Man 2
## 22582                                                                                                                                           Vampires Suck
## 22585                                                                                                                                   Paranormal Activity 2
## 22586                                                                                                            Harry Potter and the Deathly Hallows: Part 1
## 22589                                                                                                                                       Green Hornet, The
## 22593                                                                                                                                             Source Code
## 22594                                                                                                                                            Sucker Punch
## 22595                                                                                                                                                   Hanna
## 22596                                                                                                                                             Melancholia
## 22599                                                                                                                                    The Man from Nowhere
## 22601                                                                                                            Harry Potter and the Deathly Hallows: Part 2
## 22603                                                                                                                      Captain America: The First Avenger
## 22605                                                                                                                          Rise of the Planet of the Apes
## 22606                                                                                                                                           Avengers, The
## 22610                                                                                                                                   Paranormal Activity 3
## 22617                                                                                                                             Snow White and the Huntsman
## 22618                                                                                                                                              Prometheus
## 22619                                                                                                                                 Amazing Spider-Man, The
## 22626                                                                                                                                              Iron Man 3
## 22629                                                                                                                                               Tank Girl
## 22630                                                                                                                                              Kalifornia
## 22631                                                                                                                                                  Jaws 2
## 22634                                                                                                                               Gremlins 2: The New Batch
## 22635                                                                                                                                       View to a Kill, A
## 22637                                                                                                                      Escape from the Planet of the Apes
## 22638                                                                                                                        Superman IV: The Quest for Peace
## 22639                                                                                                                                Buffy the Vampire Slayer
## 22640                                                                                                                                                     JFK
## 22643                                                                                                                                   Bourne Ultimatum, The
## 22645                                                                                                                                                  WALL·E
## 22646                                                                                                                                           Wackness, The
## 22647                                                                                                                                      Burn After Reading
## 22649                                                                                                                                               GoldenEye
## 22651                                                                                                                                                    Babe
## 22652                                                                                                                                    Seven (a.k.a. Se7en)
## 22654                                                                                                                                      Mr. Holland's Opus
## 22655                                                                                                                                   Kicking and Screaming
## 22656                                                                                                                                               Screamers
## 22659                                                                                                                                               Apollo 13
## 22660                                                                                                                              Die Hard: With a Vengeance
## 22661                                                                                                                                                Mallrats
## 22662                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 22663                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 22668                                                                                                                                  Star Trek: Generations
## 22669                                                                                                                              Ace Ventura: Pet Detective
## 22670                                                                                                                                Clear and Present Danger
## 22672                                                                                                                                          Lion King, The
## 22673                                                                                                                                               Mask, The
## 22674                                                                                                                                                   Speed
## 22675                                                                                                                                               True Lies
## 22676                                                                                                                                             Cliffhanger
## 22677                                                                                                                                           Fugitive, The
## 22679                                                                                                                                 Man Without a Face, The
## 22680                                                                                                                                  Much Ado About Nothing
## 22681                                                                                                                                          Mrs. Doubtfire
## 22683                                                                                                                                    Sleepless in Seattle
## 22685                                                                                                                                                   Ghost
## 22686                                                                                                                              Terminator 2: Judgment Day
## 22687                                                                                                                                                  Batman
## 22689                                                                                                                                            Pretty Woman
## 22691                                                                                                                                               Rock, The
## 22692                                                                                                                         Wallace & Gromit: A Close Shave
## 22693                                                                                                                           Independence Day (a.k.a. ID4)
## 22694                                                                                                                                        Frighteners, The
## 22704                                                                                                                            Monty Python's Life of Brian
## 22705                                                                                                                              E.T. the Extra-Terrestrial
## 22726                                                                                                                               Men in Black (a.k.a. MIB)
## 22727                                                                                                                                               G.I. Jane
## 22729                                                                                                                                                   Mulan
## 22730                                                                                                                                            Dr. Dolittle
## 22731                                                                                                                                         Midnight Cowboy
## 22732                                                                                                                                       Kramer vs. Kramer
## 22734                                                                                                                                         Friday the 13th
## 22738                                                                                                                                         My Cousin Vinny
## 22742                                                                                                                                 General's Daughter, The
## 22743                                                                                                                                        Sixth Sense, The
## 22745                                                                                                                                              Fight Club
## 22746                                                                                                                       Princess Mononoke (Mononoke-hime)
## 22748                                                                                                                                            General, The
## 22750                                                                                             Adventures of Buckaroo Banzai Across the 8th Dimension, The
## 22751                                                           Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 22753                                                                                                                                            Midnight Run
## 22754                                                                                                                                        Midnight Express
## 22756                                                                                                                                        Running Man, The
## 22758                                                                                                                                                     F/X
## 22760                                                                                                                                                 Memento
## 22761                                                                                                                          Amores Perros (Love's a Bitch)
## 22762                                                                                                                                            Moulin Rouge
## 22764                                                                                                                                        Mulholland Drive
## 22768                                                                                                                                          Monster's Ball
## 22772                                                                                                                   My Neighbor Totoro (Tonari no Totoro)
## 22773                                                                                                                            City of God (Cidade de Deus)
## 22775                                                                                                                                     Lost in Translation
## 22776                                                                                                                                Kiss of the Spider Woman
## 22777                                                                                                                      Monty Python's The Meaning of Life
## 22780                                                                                                                                       Last Samurai, The
## 22784                                                                                                        Motorcycle Diaries, The (Diarios de motocicleta)
## 22785                                                                                                                                                  Kinsey
## 22786                                                                                                               My Name Is Nobody (Il Mio nome è Nessuno)
## 22788                                                                                                                                              Layer Cake
## 22790                                                                                                                     Life Aquatic with Steve Zissou, The
## 22791                                                                                                                                Kung Fu Hustle (Gong fu)
## 22792                                                                                                                                             Lord of War
## 22794                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 22795                                                                                                                                           Departed, The
## 22796                                                                                                                                                Hot Fuzz
## 22797                                                                                                                                                    Babe
## 22808                                                                                                                                        Schindler's List
## 22810                                                                                                                                              Home Alone
## 22812                                                                                                                               Silence of the Lambs, The
## 22815                                                                                                                                          Godfather, The
## 22816                                                                                                                                    Fish Called Wanda, A
## 22822                                                                                                                                              Goodfellas
## 22826                                                                                                                                      Back to the Future
## 22832                                                                                                                                                 Tin Men
## 22833                                                                                                                                                 Michael
## 22834                                                                                                                                               Liar Liar
## 22836                                                                                                                                My Best Friend's Wedding
## 22837                                                                                                                                       L.A. Confidential
## 22842                                                                                                                                    Horse Whisperer, The
## 22853                                                                                                                                      Married to the Mob
## 22857                                                                                                                                          Money Pit, The
## 22860                                                                                                                                   Peggy Sue Got Married
## 22863                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 22867                                                                                                                                               Airplane!
## 22868                                                                                                                                         American Beauty
## 22869                                                                                                                                               Sommersby
## 22873                                                                                                                                Who Framed Roger Rabbit?
## 22877                                                                                                                                           Stuart Little
## 22885                                                                                                                                            Animal House
## 22887                                                                                                                                   Good Morning, Vietnam
## 22888                                                                                                                                          Grumpy Old Men
## 22889                                                                                                                                                  Arthur
## 22892                                                                                                                                                 Porky's
## 22893                                                                                                                                         Porky's Revenge
## 22901                                                                                                                                              Get Shorty
## 22902                                                                                                                                       Leaving Las Vegas
## 22903                                                                                                                                         Dangerous Minds
## 22904                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 22906                                                                                                                                                Clueless
## 22907                                                                                                                                           Mortal Kombat
## 22909                                                                                                                                              Pocahontas
## 22913                                                                                                                                                Bad Boys
## 22915                                                                                                                                          Batman Forever
## 22917                                                                                                                                                   Congo
## 22920                                                                                                                              Die Hard: With a Vengeance
## 22922                                                                                                                                             Judge Dredd
## 22923                                                                                                                 Mighty Morphin Power Rangers: The Movie
## 22925                                                                                                                           Under Siege 2: Dark Territory
## 22926                                                                                                                                        Don Juan DeMarco
## 22928                                                                                                                                               Drop Zone
## 22929                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 22930                                                                                                                                             French Kiss
## 22931                                                                                                                                            Forget Paris
## 22933                                                                                                                                                  Junior
## 22934                                                                                                                                            Little Women
## 22936                                                                                                                                  Miracle on 34th Street
## 22938                                                                                                 Léon: The Professional (a.k.a. The Professional) (Léon)
## 22939                                                                                                                                            Pulp Fiction
## 22941                                                                                                                                         Specialist, The
## 22942                                                                                                                                                Stargate
## 22943                                                                                                                                       Santa Clause, The
## 22945                                                                                                                                  Star Trek: Generations
## 22946                                                                                                                             What's Eating Gilbert Grape
## 22947                                                                                                                                 While You Were Sleeping
## 22949                                                                                                                                Clear and Present Danger
## 22953                                                                                                                                          Lion King, The
## 22954                                                                                                                                               Mask, The
## 22956                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 22960                                                                                                                                   Beverly Hills Cop III
## 22961                                                                                                                                             Cliffhanger
## 22963                                                                                                                                          Demolition Man
## 22968                                                                                                                                        Last Action Hero
## 22972                                                                                                                                 Remains of the Day, The
## 22973                                                                                                                                    Sleepless in Seattle
## 22975                                                                                                                                  Brady Bunch Movie, The
## 22976                                                                                                                                              Home Alone
## 22978                                                                                                                                                 Aladdin
## 22980                                                                                                                                      Dances with Wolves
## 22981                                                                                                                                                  Batman
## 22983                                                                                                                                    Beauty and the Beast
## 22984                                                                                                                                            Pretty Woman
## 22985                                                                                                                                                   Fargo
## 22986                                                                                                                                     Mission: Impossible
## 22987                                                                                                                                        Grumpier Old Men
## 22989                                                                                                                                                    Heat
## 22990                                                                                                                                                 Sabrina
## 22992                                                                                                                                        Dead Man Walking
## 22995                                                                                                                                           Two if by Sea
## 22996                                                                                                                                               City Hall
## 22997                                                                                                                                            If Lucy Fell
## 23001                                                                                                                                      Executive Decision
## 23002                                                                                                                                            One Fine Day
## 23004                                                                                                                                              Sgt. Bilko
## 23005                                                                                                                                     Mission: Impossible
## 23006                                                                                                                                           Moll Flanders
## 23007                                                                                                                                        Mulholland Falls
## 23008                                                                                                                            Truth About Cats & Dogs, The
## 23009                                                                                                                                            Multiplicity
## 23010                                                                                                                                                 Twister
## 23011                                                                                                                           Independence Day (a.k.a. ID4)
## 23012                                                                                                                                    Nutty Professor, The
## 23013                                                                                                                                         Time to Kill, A
## 23014                                                                                                                                                 Tin Cup
## 23015                                                                                                                               Mirror Has Two Faces, The
## 23017                                                                                                                                               Toy Story
## 23018                                                                                                                          Ace Ventura: When Nature Calls
## 23021                                                                                                                                          Batman Forever
## 23023                                                                                                                                            Pulp Fiction
## 23025                                                                                                                              Ace Ventura: Pet Detective
## 23027                                                                                                                                               Mask, The
## 23029                                                                                                                                           Jurassic Park
## 23031                                                                                                                                              Home Alone
## 23032                                                                                                                                                 Aladdin
## 23033                                                                                                                              Terminator 2: Judgment Day
## 23034                                                                                                                                                  Batman
## 23036                                                                                                                                     Mission: Impossible
## 23037                                                                                                                                                Spy Hard
## 23038                                                                                                                           Independence Day (a.k.a. ID4)
## 23040                                                                                                                                          Basic Instinct
## 23044                                                                                                                                              Die Hard 2
## 23046                                                                                                                                                 Titanic
## 23048                                                                                                                                          City of Angels
## 23049                                                                                                                                                Godzilla
## 23050                                                                                                                                             Poltergeist
## 23053                                                                                                                     Life Is Beautiful (La Vita è bella)
## 23054                                                                                                                                               Rambo III
## 23055                                                                                                                                                 Rocky V
## 23057                                                                                                                                             Matrix, The
## 23060                                                                                                                            Teenage Mutant Ninja Turtles
## 23061                                                                                                                                               Gladiator
## 23062                                                                                                                                                Dinosaur
## 23063                                                                                                                                      Gone in 60 Seconds
## 23064                                                                                                                                                   X-Men
## 23065                                                                                                                                          American Pie 2
## 23067                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 23068                                                                                                                                              Spider-Man
## 23069                                                                                                                                            Recruit, The
## 23071                                                                                                          Lord of the Rings: The Return of the King, The
## 23072                                                                                                                                            Spider-Man 2
## 23073                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 23074                                                                                                                                           Into the Wild
## 23075                                                                                                                                             I Am Legend
## 23078                                                                                                                                               Nuremberg
## 23079                                                                                                                                                    2012
## 23081                                                                                                                                               Dear John
## 23082                                                                                                                                             Toy Story 3
## 23083                                                                                                                                               Inception
## 23084                                                                                                                                            Tourist, The
## 23085                                                                                                                                             Bad Teacher
## 23087                                                                                                                                        Descendants, The
## 23091                                                                                                                      Hobbit: An Unexpected Journey, The
## 23092                                                                                                                                             World War Z
## 23094                                                                                                                                             Family, The
## 23098                                                                                                                                               Toy Story
## 23101                                                                                                                                              Braveheart
## 23104                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 23105                                                                                                                      Star Wars: Episode IV - A New Hope
## 23108                                                                                                                                       Santa Clause, The
## 23112                                                                                                                                           Jurassic Park
## 23114                                                                                                                Homeward Bound II: Lost in San Francisco
## 23115                                                                                                                                    Nutty Professor, The
## 23116                                                                                                                                             Rear Window
## 23123                                                                                                                         Monty Python and the Holy Grail
## 23128                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 23129                                                                                                                                         Terminator, The
## 23133                                                                                                                               Men in Black (a.k.a. MIB)
## 23134                                                                                                                                               Anastasia
## 23136                                                                                                                                     Tomorrow Never Dies
## 23137                                                                                                                                       Big Lebowski, The
## 23138                                                                                                                                                   Mulan
## 23139                                                                                                                            There's Something About Mary
## 23147                                                                                                                                             Toy Story 2
## 23148                                                                                                                                           Wayne's World
## 23149                                                                                                                                             Chicken Run
## 23153                                                                                                                                          Legally Blonde
## 23157                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 23158                                                                                                                                              Spider-Man
## 23160                                                                                                                                                  8 Mile
## 23161                                                                                                                  Lord of the Rings: The Two Towers, The
## 23164                                                                                                                                          Bruce Almighty
## 23165                                                                                                                                            Finding Nemo
## 23166                                                                                                                                           28 Days Later
## 23167                                                                                                          Lord of the Rings: The Return of the King, The
## 23168                                                                                                                                                 Shrek 2
## 23171                                                                                                                                            Spider-Man 2
## 23172                                                                                                                                   Bourne Supremacy, The
## 23174                                                                                                                                        Incredibles, The
## 23177                                                                                                                                       War of the Worlds
## 23178                                                                                                                             World's Fastest Indian, The
## 23180                                                                                                                                               Toy Story
## 23181                                                                                                                                                 Jumanji
## 23182                                                                                                                                        Grumpier Old Men
## 23183                                                                                                                                               GoldenEye
## 23184                                                                                                                          Ace Ventura: When Nature Calls
## 23185                                                                                                                                              Get Shorty
## 23186                                                                                                                                                 Copycat
## 23187                                                                                                                                         Dangerous Minds
## 23189                                                                                                                                    Seven (a.k.a. Se7en)
## 23190                                                                                                                                     Usual Suspects, The
## 23191                                                                                                                                      Mr. Holland's Opus
## 23193                                                                                                                 Things to Do in Denver When You're Dead
## 23197                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 23198                                                                                                                                                Bad Boys
## 23199                                                                                                                                                  Casper
## 23202                                                                                                                                             Judge Dredd
## 23203                                                                                                                 Mighty Morphin Power Rangers: The Movie
## 23204                                                                                                                                                Net, The
## 23205                                                                                                                                                 Species
## 23206                                                                                                                                            Strange Days
## 23207                                                                                                                                           Billy Madison
## 23208                                                                                                                                              Disclosure
## 23210                                                                                                                                             Hoop Dreams
## 23211                                                                                                                                              Milk Money
## 23212                                                                                                                                     Murder in the First
## 23213                                                                                                                                                Outbreak
## 23215                                                                                                                                            Pulp Fiction
## 23216                                                                                                                                       Santa Clause, The
## 23219                                                                                                                                              Virtuosity
## 23220                                                                                                                                 While You Were Sleeping
## 23222                                                                                                                                             Client, The
## 23223                                                                                                                                            Forrest Gump
## 23224                                                                                                                                          Lion King, The
## 23225                                                                                                                                               Mask, The
## 23226                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 23227                                                                                                                                                   Speed
## 23229                                                                                                                                          Street Fighter
## 23230                                                                                                                                                Airheads
## 23231                                                                                                                                              Blue Chips
## 23232                                                                                                                                           Bronx Tale, A
## 23233                                                                                                            City Slickers II: The Legend of Curly's Gold
## 23234                                                                                                                                             Cliffhanger
## 23235                                                                                                                                          Demolition Man
## 23236                                                                                                                                           Fugitive, The
## 23238                                                                                                                                           House Party 3
## 23239                                                                                                                                           Jurassic Park
## 23240                                                                                                                                        Last Action Hero
## 23241                                                                                                                                          Mrs. Doubtfire
## 23242                                                                                                                                    Next Karate Kid, The
## 23244                                                                                                                                                Ref, The
## 23246                                                                                                                                                    Rudy
## 23248                                                                                                                             Searching for Bobby Fischer
## 23249                                                                                                                               Six Degrees of Separation
## 23250                                                                                                                                    Sleepless in Seattle
## 23252                                                                                                                                       Super Mario Bros.
## 23254                                                                                                                                                   Ghost
## 23258                                                                                                                               Silence of the Lambs, The
## 23259                                                                                                                                    Beauty and the Beast
## 23260                                                                                                                                               Pinocchio
## 23261                                                                                                                                                   Fargo
## 23262                                                                                                                                     Mission: Impossible
## 23263                                                                                                                                             Dragonheart
## 23264                                                                                                                 Mystery Science Theater 3000: The Movie
## 23265                                                                                                                                               Space Jam
## 23266                                                                                                                                               Rock, The
## 23267                                                                                                                                                 Twister
## 23268                                                                                                                     Ghost in the Shell (Kôkaku kidôtai)
## 23270                                                                                                                                          Cable Guy, The
## 23271                                                                                                                                              Phenomenon
## 23273                                                                                                                                                  Kazaam
## 23274                                                                                                                                                  Ransom
## 23275                                                                                                                                              Phat Beach
## 23276                                                                                                                                                   Bound
## 23277                                                                                                                                       Wizard of Oz, The
## 23279                                                                                                                                              Cinderella
## 23280                                                                                                                           Robin Hood: Prince of Thieves
## 23281                                                                                                                                     Alice in Wonderland
## 23282                                                                                                                                                Die Hard
## 23283                                                                                                                                Long Kiss Goodnight, The
## 23285                                                                                                                                                Sleepers
## 23287                                                                                                                                          Basic Instinct
## 23290                                                                                                                                                  Aliens
## 23291                                                                                                                                          Apocalypse Now
## 23292                                                                                                                                        Army of Darkness
## 23293                                                                                                                                       Full Metal Jacket
## 23294                                                                                                                                         Terminator, The
## 23295                                                                                                                                      Better Off Dead...
## 23296                                                                                                                                            Shining, The
## 23297                                                                                                                                             Stand by Me
## 23299                                                                                                                                      Back to the Future
## 23300                                                                                                                      Indiana Jones and the Last Crusade
## 23301                                                                                                                                 When Harry Met Sally...
## 23302                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 23303                                                                                                                                              Birds, The
## 23305                                                                                                                                              Die Hard 2
## 23307                                                                                                                                                  Grease
## 23308                                                                                                                                           Mars Attacks!
## 23311                                                                                                                                              Underworld
## 23312                                                                                                                                              Gridlock'd
## 23314                                                                                                                                                 B*A*P*S
## 23316                                                                                                             Austin Powers: International Man of Mystery
## 23318                                                                                                                                                  Sprung
## 23319                                                                                                                          Lost World: Jurassic Park, The
## 23320                                                                                                                                                 Con Air
## 23321                                                                                                                                          Batman & Robin
## 23322                                                                                                                                                Face/Off
## 23323                                                                                                                               Men in Black (a.k.a. MIB)
## 23324                                                                                                                                       Conspiracy Theory
## 23325                                                                                                                                                   Steel
## 23326                                                                                                                                               Game, The
## 23327                                                                                                                                     Smile Like Yours, A
## 23329                                                                                                                                    The Devil's Advocate
## 23330                                                                                                                                              Switchback
## 23331                                                                                                                             Mortal Kombat: Annihilation
## 23332                                                                                                                                        Truman Show, The
## 23334                                                                                                                                                 Titanic
## 23335                                                                                                                                            Jackie Brown
## 23336                                                                                                                    3 Ninjas: High Noon On Mega Mountain
## 23337                                                                                                                                             Wag the Dog
## 23339                                                                                                                                     Wedding Singer, The
## 23340                                                                                                                                      As Good as It Gets
## 23341                                                                                                                                             Wild Things
## 23342                                                                                                                                             He Got Game
## 23343                                                                                                                        Major League: Back to the Minors
## 23344                                                                                                                                             Deep Impact
## 23345                                                                                                                                                Godzilla
## 23346                                                                                                                                       I Got the Hook Up
## 23348                                                                                                                                                      Pi
## 23349                                                                                                                            There's Something About Mary
## 23350                                                                                                            Nightmare on Elm Street 3: Dream Warriors, A
## 23351                                                                                                           Nightmare on Elm Street 5: The Dream Child, A
## 23352                                                                                                                                           Exorcist, The
## 23353                                                                                                                                                Gremlins
## 23354                                                                                                                                            Goonies, The
## 23355                                                                                                                             Back to the Future Part III
## 23356                                                                                                                                                   Bambi
## 23357                                                                                                                                                  Lolita
## 23359                                                                                                                                Honey, I Shrunk the Kids
## 23360                                                                                                                                        Jungle Book, The
## 23361                                                                                                                                     Little Mermaid, The
## 23362                                                                                                                                               Peter Pan
## 23363                                                                                                                    Indiana Jones and the Temple of Doom
## 23364                                                                                                                                           Weird Science
## 23365                                                                                                                                             Beetlejuice
## 23366                                                                                                                                                Rounders
## 23368                                                                                                                                         Say Anything...
## 23369                                                                                                                                                    Toys
## 23370                                                                                                                                                   Ronin
## 23371                                                                                                                                         My Cousin Vinny
## 23372                                                                                                                                           Pleasantville
## 23374                                                                                                                   I Still Know What You Did Last Summer
## 23376                                                                                                                                                Rushmore
## 23379                                                                                                                               Karate Kid, Part III, The
## 23380                                                                                                                                         You've Got Mail
## 23381                                                                                                                            Garbage Pail Kids Movie, The
## 23382                                                                                                                                                Fly, The
## 23383                                                         Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre)
## 23384                                                                                                                                                 Payback
## 23385                                                                                                                                            Office Space
## 23389                                                                                                                                              Mummy, The
## 23390                                                                                                               Star Wars: Episode I - The Phantom Menace
## 23391                                                                                                                                  War of the Worlds, The
## 23392                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 23394                                                                                                                               Run Lola Run (Lola rennt)
## 23395                                                                                                                                           Arachnophobia
## 23397                                                                                                                                            American Pie
## 23398                                                                                                                                Blair Witch Project, The
## 23399                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 23400                                                                                                                                  Little Shop of Horrors
## 23402                                                                                                                                               Airplane!
## 23404                                                                                                                                         Problem Child 2
## 23405                                                                                                                                      Christmas Story, A
## 23406                                                                                                                                          Stir of Echoes
## 23407                                                                                                                                               Whiteboyz
## 23408                                                                                                                                         American Beauty
## 23409                                                                                                                                         Double Jeopardy
## 23410                                                                                                                                             Three Kings
## 23411                                                                                                                                            Total Recall
## 23413                                                                                                                          Home Alone 2: Lost in New York
## 23415                                                                                                                                              Body Shots
## 23417                                                                                                                                    Being John Malkovich
## 23418                                                                                                                       Princess Mononoke (Mononoke-hime)
## 23421                                                                                                     Incredibly True Adventure of Two Girls in Love, The
## 23422                                                                                                                                                   Dogma
## 23423                                                                                                                                           Sleepy Hollow
## 23424                                                                                                                                        Fatal Attraction
## 23426                                                                                                                                  Cider House Rules, The
## 23427                                                                                                                                                Magnolia
## 23428                                                                                                                                           Wayne's World
## 23429                                                                                                                                  League of Their Own, A
## 23430                                                                                                                                          Bodyguard, The
## 23431                                                                                                                                         Of Mice and Men
## 23432                                                                                                                                             Pitch Black
## 23433                                                                                                                       Ghost Dog: The Way of the Samurai
## 23434                                                                                                                                    Raisin in the Sun, A
## 23435                                                                                                                                         Mission to Mars
## 23437                                                                                                                            Teenage Mutant Ninja Turtles
## 23439                                                                                                                        Teenage Mutant Ninja Turtles III
## 23440                                                                                                                      Close Encounters of the Third Kind
## 23441                                                                                                                                           High Fidelity
## 23442                                                                                                                                               Frequency
## 23443                                                                                                                                         American Psycho
## 23445                                                                                                                                                   U-571
## 23446                                                                                                                                               Gladiator
## 23447                                                                                                                                       Battlefield Earth
## 23448                                                                                                                                               Road Trip
## 23449                                                                                                                                  Mission: Impossible II
## 23451                                                                                                                                             Chicken Run
## 23452                                                                                                                                      Me, Myself & Irene
## 23453                                                                                                                                     Blood In, Blood Out
## 23454                                                                                                                                             House Party
## 23455                                                                                                                                           House Party 2
## 23456                                                                                                                                             Scary Movie
## 23458                                                                                                                                              Wonderland
## 23459                                                                                                                                               Cell, The
## 23460                                                                                                                 Naked Gun 2 1/2: The Smell of Fear, The
## 23461                                                                                                                                           Almost Famous
## 23462                                                                                                                                 Broken Hearts Club, The
## 23463                                                                                                                                     Remember the Titans
## 23465                                                                                                                                        Meet the Parents
## 23466                                                                                                                                     Requiem for a Dream
## 23467                                                                                                                          Book of Shadows: Blair Witch 2
## 23468                                                                                                                                        Charlie's Angels
## 23470                                                                                                                                                  Snatch
## 23471                                                                                                                                       Finding Forrester
## 23472                                                                                                                                               Cast Away
## 23473                                                                                                                                       Miss Congeniality
## 23474                                                                                                                                                 Traffic
## 23475                                                                                                                                     Save the Last Dance
## 23476                                                                                                                                 I'm Gonna Git You Sucka
## 23477                                                                                                                                          Evil Dead, The
## 23479                                                                                                                                          4 Little Girls
## 23480                                                                                                                                                 Memento
## 23482                                                                                                                                     Freddy Got Fingered
## 23483                                                                                                                                                Scarface
## 23485                                                                                                                               Fast and the Furious, The
## 23486                                                                                                                            A.I. Artificial Intelligence
## 23487                                                                                                                       Final Fantasy: The Spirits Within
## 23488                                                                                                                       Return of the Living Dead Part II
## 23491                                                                                                                                              Lean on Me
## 23492                                                                                                                                            Major League
## 23494                                                                                                                                 Wet Hot American Summer
## 23495                                                                                                                                             Others, The
## 23496                                                                                                                                              Bubble Boy
## 23497                                                                                                                          Jay and Silent Bob Strike Back
## 23498                                                                                                                                      3 Ninjas Kick Back
## 23499                                                                                                                                     3 Ninjas Knuckle Up
## 23500                                                                                                                                                  L.I.E.
## 23501                                                                                                                                                 Glitter
## 23502                                                                                                                                             On the Line
## 23503                                                                                                                                            Donnie Darko
## 23504                                                                                                                                          Monsters, Inc.
## 23505                                                                                                                                          Ocean's Eleven
## 23506                                                                                                                                                  Piñero
## 23507                                                                                                                                       Beautiful Mind, A
## 23508                                                                                                                                                Blankman
## 23509                                                                                                                                                Slackers
## 23510                                                                                                                                              Rollerball
## 23511                                                                                                                                           Scotland, Pa.
## 23512                                                                                                                                            Sandlot, The
## 23513                                                                                                                                              Crossroads
## 23514                                                                                                                                        We Were Soldiers
## 23515                                                                                               Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2)
## 23516                                                                                                                                 All About the Benjamins
## 23517                                                                                                                                                 Frailty
## 23518                                                                                                                                                 Jason X
## 23519                                                                                                                                         Salton Sea, The
## 23521                                                                                                            Star Wars: Episode II - Attack of the Clones
## 23522                                                                                                                                                  Enough
## 23523                                                                                                                                    Bourne Identity, The
## 23524                                                                                                                                            Juwanna Mann
## 23525                                                                                                                                         Minority Report
## 23526                                                                                                                                   Hey Arnold! The Movie
## 23527                                                                                                                                       Road to Perdition
## 23528                                                                                                                                 Master of Disguise, The
## 23530                                                                                                                                                     xXx
## 23531                                                                                                                                              Undisputed
## 23532                                                                                                      FearDotCom (a.k.a. Fear.com) (a.k.a. Fear Dot Com)
## 23533                                                                                                                                                  Snipes
## 23534                                                                                                                             Last House on the Left, The
## 23535                                                                                                                                          Igby Goes Down
## 23537                                                                                                                               Ballistic: Ecks vs. Sever
## 23538                                                                                                                                              Invincible
## 23539                                                                                                                                          Moonlight Mile
## 23540                                                                                                                                                  Wasabi
## 23541                                                                                                                                              Red Dragon
## 23543                                                                                                                                               Ring, The
## 23545                                                                                                                                             Extreme Ops
## 23546                                                                                                                                                    They
## 23547                                                                                                                                                  Empire
## 23548                                                                                                                                              Adaptation
## 23549                                                                                                                                             Equilibrium
## 23550                                                                                                                                           About Schmidt
## 23553                                                                                                                                        Body of Evidence
## 23554                                                                                                                                     Catch Me If You Can
## 23555                                                                                                                            City of God (Cidade de Deus)
## 23556                                                                                                                                              Biker Boyz
## 23558                                                                                                                                               Daredevil
## 23560                                                                                                                                         Meteor Man, The
## 23561                                                                                                                                    Bend It Like Beckham
## 23562                                                                                                                                            Ringu (Ring)
## 23563                                                                                                                                    DysFunktional Family
## 23565                                                                                                                                        X2: X-Men United
## 23566                                                                                                                                    Matrix Reloaded, The
## 23567                                                                                                                                        Italian Job, The
## 23568                                                                                                                                             Good Burger
## 23569                                                                                                                 Dumb and Dumberer: When Harry Met Lloyd
## 23570                                                                                                                                           28 Days Later
## 23571                                                                                                                                                   Gigli
## 23572                                                                                                                                       American Splendor
## 23575                                                                                                                                                It's Pat
## 23576                                                                                                                                      Station Agent, The
## 23577                                                                                                                                            Mystic River
## 23578                                                                                                                                  House of the Dead, The
## 23580                                                                                                                          Eye, The (Gin gwai) (Jian gui)
## 23581                                                                                                                                                     Elf
## 23583                                                                                                         Master and Commander: The Far Side of the World
## 23584                                                                                                                                                21 Grams
## 23585                                                                                                                         Battle Royale (Batoru rowaiaru)
## 23586                                                                                                                                       Hero (Ying xiong)
## 23587                                                                                                                                              Leprechaun
## 23588                                                                                                                                             Cooler, The
## 23589                                                                                                                                              In America
## 23591                                                                                                                                                 Monster
## 23592                                                                                                                                  Car 54, Where Are You?
## 23593                                                                                                                                    The Butterfly Effect
## 23594                                                                                                                                                 Miracle
## 23595                                                                                                                                       Against the Ropes
## 23596                                                                                                                                    Wisconsin Death Trip
## 23599                                                                                                                                        Dawn of the Dead
## 23602                                                                                                                                                    Troy
## 23604                                                                                       Master of the Flying Guillotine (Du bi quan wang da po xue di zi)
## 23605                                                                                                                                     Girl Next Door, The
## 23606                                                                                                                                Night of the Living Dead
## 23608                                                                                                                                              Soul Plane
## 23609                                                                                                                                                  Saved!
## 23610                                                                                                                Time of the Wolf, The (Le temps du loup)
## 23611                                                                                                                                     Garfield: The Movie
## 23612                                                                                                                        Dodgeball: A True Underdog Story
## 23613                                                                                                                                           Terminal, The
## 23614                                                                                                                                           Notebook, The
## 23615                                                                                                                              Two Brothers (Deux frères)
## 23617                                                                                                                   Anchorman: The Legend of Ron Burgundy
## 23619                                                                                                                                   Bourne Supremacy, The
## 23620                                                                                                                          A Home at the End of the World
## 23621                                                                                                                                              Super, The
## 23622                                                                                                                               Manchurian Candidate, The
## 23623                                                                                                                                            Village, The
## 23626                                                                                                                     Harold and Kumar Go to White Castle
## 23627                                                                                                                                 AVP: Alien vs. Predator
## 23628                                                                                                       Warriors of Heaven and Earth (Tian di ying xiong)
## 23629                                                                                                                                               Paparazzi
## 23630                                                                                                                                             Wicker Park
## 23631                                                                                                                                            Mangler, The
## 23632                                                                                                                                                Cellular
## 23633                                                                                                                               Resident Evil: Apocalypse
## 23634                                                                                                                                                Mr. 3000
## 23635                                                                                                                   Sky Captain and the World of Tomorrow
## 23638                                                                                                                                              Shark Tale
## 23639                                                                                                                                               Ladder 49
## 23640                                                                                                                                       I Heart Huckabees
## 23641                                                                                                                                        Raise Your Voice
## 23642                                                                                                                                                  Eulogy
## 23644                                                                                                                                             Grudge, The
## 23646                                                                                                                                                     Ray
## 23647                                                                                                                                        Incredibles, The
## 23648                                                                                                                        SpongeBob SquarePants Movie, The
## 23649                                                                                                                                          Ocean's Twelve
## 23651                                                                                                                                            Control Room
## 23652                                                                                                                                      Audition (Ôdishon)
## 23653                                                                                                                          Suicide Club (Jisatsu saakuru)
## 23655                                                                                                                                               Spanglish
## 23656                                                                                                                                              Open Water
## 23657                                                                                                                                              Mean Creek
## 23658                                                                                              Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo)
## 23659                                                                                                                                            Hotel Rwanda
## 23660                                                                                                                                           Woodsman, The
## 23661                                                                                                                                                 Elektra
## 23662                                                                                                                                   Employee of the Month
## 23663                                                                                                                                             Constantine
## 23664                                                                                                                                     Pauly Shore Is Dead
## 23666                                                                                                                                           Batman Begins
## 23669                                                                                                                                               Desperado
## 23674                                                                                                                                               Coneheads
## 23675                                                                                                                                           Jurassic Park
## 23678                                                                                                                                                   Fargo
## 23679                                                                                                                                             Dragonheart
## 23680                                                                                                                                                 Kingpin
## 23681                                                                                                                                              Casablanca
## 23686                                                                                                                                       Starship Troopers
## 23688                                                                                                                                       Big Lebowski, The
## 23689                                                                                                                                              Armageddon
## 23696                                                                                                                                                 Titanic
## 23700                                                                                                                                             Chicken Run
## 23704                                                                                                                                 Lara Croft: Tomb Raider
## 23706                                                                                                                                          Ocean's Eleven
## 23713                                                                                                                                               Daredevil
## 23714                                                                                                                                        Anger Management
## 23716                                                                                                          2 Fast 2 Furious (Fast and the Furious 2, The)
## 23719                                                                                                              Lara Croft Tomb Raider: The Cradle of Life
## 23721                                                                                                                                             Divorce, Le
## 23722                                                                                                                                          Medallion, The
## 23727                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 23735                                                                                                                                             Beetlejuice
## 23737                                                                                                          King Kong vs. Godzilla (Kingukongu tai Gojira)
## 23741                                                                                                                                             Matrix, The
## 23742                                                                                                                                                Superman
## 23743                                                                                                                                           Arachnophobia
## 23744                                                                                                                                                 RoboCop
## 23748                                                                                                                                       Waiting to Exhale
## 23749                                                                                                                                             Money Train
## 23751                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 23754                                                                                                                                     Vampire in Brooklyn
## 23755                                                                                                                                              Braveheart
## 23757                                                                                                                                               Boomerang
## 23758                                                                                                                                                Bad Boys
## 23760                                                                                                                                                 Rob Roy
## 23761                                                                                                                                          Batman Forever
## 23762                                                                                                                                               Desperado
## 23763                                                                                                                                   Devil in a Blue Dress
## 23764                                                                                                                              Die Hard: With a Vengeance
## 23765                                                                                                                                             Judge Dredd
## 23766                                                                                                                                                    Kids
## 23767                                                                                                                                                 Species
## 23768                                                                                                                                            Strange Days
## 23769                                                                                                                           Under Siege 2: Dark Territory
## 23770                                                                                                                                         Babysitter, The
## 23771                                                                                                                                              Disclosure
## 23772                                                                                                                                               Drop Zone
## 23773                                                                                                                                            Exit to Eden
## 23775                                                                                                                                            Forget Paris
## 23776                                                                                                                                                    I.Q.
## 23777                                                                                                                                         Jerky Boys, The
## 23778                                                                                                                                           Kiss of Death
## 23781                                                                                                                                      Nina Takes a Lover
## 23782                                                                                                                                    Natural Born Killers
## 23783                                                                                                                                                Outbreak
## 23788                                                                                                                                  Star Trek: Generations
## 23789                                                                                                                                               Tommy Boy
## 23791                                                                                                                             Four Weddings and a Funeral
## 23792                                                                                                                                         Higher Learning
## 23794                                                                                                                                              Paper, The
## 23796                                                                                                                                              Speechless
## 23797                                                                                                                                               True Lies
## 23798                                                                                                                                             Bad Company
## 23799                                                                                                                                           Jason's Lyric
## 23800                                                                                                                                    Addams Family Values
## 23802                                                                                                                                Beverly Hillbillies, The
## 23803                                                                                                                                   Beverly Hills Cop III
## 23804                                                                                                                                          Body Snatchers
## 23805                                                                                                                                           Boxing Helena
## 23806                                                                                                                                           Bronx Tale, A
## 23807                                                                                                            City Slickers II: The Legend of Curly's Gold
## 23808                                                                                                                                             Cliffhanger
## 23810                                                                                                                                          Demolition Man
## 23811                                                                                                                                          Fatal Instinct
## 23812                                                                                                                                             With Honors
## 23813                                                                                                                                               Firm, The
## 23816                                                                                                                                        Last Action Hero
## 23817                                                                                                                                         Made in America
## 23819                                                                                                                                          Mrs. Doubtfire
## 23820                                                                                                                                                   North
## 23821                                                                                                                                            Philadelphia
## 23822                                                                                                                                              Piano, The
## 23823                                                                                                                                          Poetic Justice
## 23824                                                                                                                                                Ref, The
## 23826                                                                                                                                         Renaissance Man
## 23827                                                                                                                                               RoboCop 3
## 23828                                                                                                                                                    Rudy
## 23829                                                                                                                                              Short Cuts
## 23830                                                                                                                               Six Degrees of Separation
## 23831                                                                                                                                                  Sliver
## 23833                                                                                                                                               Tombstone
## 23835                                                                                                                                       Little Big League
## 23836                                                                                                                                                   Ghost
## 23839                                                                                                                                                  Batman
## 23841                                                                                                                                            Pretty Woman
## 23843                                                                                                                                                  Girl 6
## 23844                                                                                                                                     Mission: Impossible
## 23849                                                                                                                                  Angels in the Outfield
## 23851                                                                                                                                     Sound of Music, The
## 23856                                                                                                                                          Basic Instinct
## 23858                                                                                                                                                 Top Gun
## 23864                                                                                                                             Indian in the Cupboard, The
## 23865                                                                                                                                      Little Princess, A
## 23866                                                                                                                                        Man of the House
## 23867                                                                                                                                    Next Karate Kid, The
## 23870                                                                                                                                                    Emma
## 23871                                                                                                                                            My Fair Lady
## 23872                                                                                                                                  Angels in the Outfield
## 23874                                                                                                                                      Back to the Future
## 23876                                                                                                                                     Stepford Wives, The
## 23877                                                                                                                               Karate Kid, Part III, The
## 23882                                                                                                                                             Fever Pitch
## 23883                                                                                                                                             Toy Story 2
## 23884                                                                                                                                            Center Stage
## 23885                                                                                                                                               Footloose
## 23888                                                                                                                                    Wedding Planner, The
## 23891                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 23894                                                                                                                                       Beautiful Mind, A
## 23897                                                                                                                 Harry Potter and the Chamber of Secrets
## 23906                                                                                                                                         Pieces of April
## 23907                                                                                                                                              In America
## 23911                                                                                                                                          13 Going on 30
## 23914                                                                                                                Harry Potter and the Prisoner of Azkaban
## 23915                                                                                                                                     Stepford Wives, The
## 23917                                                                                                                                     Cinderella Story, A
## 23920                                                                                                               Princess Diaries 2: Royal Engagement, The
## 23923                                                                                                                                              I Am David
## 23924                                                                                                                                    Yours, Mine and Ours
## 23925                                                                                                                                               Spanglish
## 23932                                                                                                                                        Just Like Heaven
## 23934                                                                                                                     Harry Potter and the Goblet of Fire
## 23936                                                                                                                                            Last Holiday
## 23941                                                                                                                                    Little Miss Sunshine
## 23948                                                                                                                                       Déjà Vu (Deja Vu)
## 23952                                                                                                                                               Disturbia
## 23955                                                                                                                                                    Once
## 23957                                                                                                               Harry Potter and the Order of the Phoenix
## 23969                                                                                                                                                  WALL·E
## 23974                                                                                                                                         Shrek the Halls
## 23975                                                                                                                    Curious Case of Benjamin Button, The
## 23976                                                                                                City of Lost Children, The (Cité des enfants perdus, La)
## 23977                                                                                                                                                    Rudy
## 23978                                                                                                                                         Aristocats, The
## 23979                                                                                                                                        Escape from L.A.
## 23980                                                                                                                                              Doors, The
## 23981                                                                                                                                         Terminator, The
## 23982                                                                                                                                      Back to the Future
## 23983                                                                                                                                                  Patton
## 23984                                                                                                                                     Killing Fields, The
## 23986                                                                                                                                      Fifth Element, The
## 23987                                                                                                                                        Truman Show, The
## 23989                                                                                                                                      Driving Miss Daisy
## 23990                                                                                                                                      Dangerous Liaisons
## 23991                                                                                                                                        Jungle Book, The
## 23992                                                                                                                                         Sixteen Candles
## 23993                                                                                                                                           Bug's Life, A
## 23994                                                                                                                                             Mystery Men
## 23995                                                                                                                                         Double Jeopardy
## 23996                                                                                                                                               Backdraft
## 23997                                                                                                                                         Man on the Moon
## 23998                                                                                                                                               Frequency
## 23999                                                                                                                                                 Mad Max
## 24000                                                                                                                           Road Warrior, The (Mad Max 2)
## 24001                                                                                                                  Lord of the Rings: The Two Towers, The
## 24013                                                                                                                                              Doors, The
## 24014                                                                                                                                           Grifters, The
## 24022                                                                                                                                             Wag the Dog
## 24023                                                                                                                                             Wild Things
## 24032                                                                                                                                             Pushing Tin
## 24034                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 24036                                                                                                                                 General's Daughter, The
## 24041                                                                                                                                Blair Witch Project, The
## 24042                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 24047                                                                                                                                         Double Jeopardy
## 24048                                                                                                                                Who Framed Roger Rabbit?
## 24049                                                                                                                                          Trading Places
## 24051                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 24052                                                                                                                                                    Babe
## 24055                                                                                                                                           Birdcage, The
## 24060                                                                                                                                            Forrest Gump
## 24061                                                                                                                                          Lion King, The
## 24062                                                                                                                                                   Speed
## 24064                                                                                                                                           Jurassic Park
## 24067                                                                                                                                    Sleepless in Seattle
## 24069                                                                                                                                                 Aladdin
## 24070                                                                                                                                      Dances with Wolves
## 24071                                                                                                                                                  Batman
## 24080                                                                                                                                  Muppet Treasure Island
## 24086                                                                                                                                             Dragonheart
## 24088                                                                                                                            Truth About Cats & Dogs, The
## 24092                                                                                                                                              Striptease
## 24100                                                                                                                                    2 Days in the Valley
## 24101                                                                                                                                        Extreme Measures
## 24106                                                                                                                                               Liar Liar
## 24110                                                                                                                                          Batman & Robin
## 24113                                                                                                                                                   Spawn
## 24115                                                                                                                                               Desperado
## 24117                                                                                                                                         Johnny Mnemonic
## 24118                                                                                                                                             Nine Months
## 24119                                                                                                                                             Hoop Dreams
## 24120                                                                                                                                        Muriel's Wedding
## 24121                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 24122                                                                                                                            So I Married an Axe Murderer
## 24124                                                                                                                                        Crying Game, The
## 24125                                                                                                                                               Chinatown
## 24129                                                                                                                                         My Cousin Vinny
## 24130                                                                                                                                           Arachnophobia
## 24131                                                                                                                                             Chicken Run
## 24133                                                                                                                                   M*A*S*H (a.k.a. MASH)
## 24134                                                                                                                                                    Hulk
## 24137                                                                                                                                              Pocahontas
## 24145                                                                                                                                              Milk Money
## 24147                                                                                                                Three Colors: White (Trzy kolory: Bialy)
## 24150                                                                                                                                                 Aladdin
## 24152                                                                                                                                      Courage Under Fire
## 24153                                                                                                                            Hunchback of Notre Dame, The
## 24166                                                                                                                                           Groundhog Day
## 24167                                                                                                                                      Back to the Future
## 24169                                                                                                       Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 24171                                                                                                                                              Saint, The
## 24172                                                                                                                                                  Selena
## 24175                                                                                                                                          Batman & Robin
## 24181                                                                                                                                                 Titanic
## 24186                                                                                                                                     Saving Private Ryan
## 24192                                                                                                                                    Return of Jafar, The
## 24196                                                                                                                                     Edward Scissorhands
## 24199                                                                                                                                         You've Got Mail
## 24202                                                                                                               Star Wars: Episode I - The Phantom Menace
## 24205                                                                                                                                               Superstar
## 24207                                                                                                                          Home Alone 2: Lost in New York
## 24213                                                                                                                                      Where the Heart Is
## 24214                                                                                                                                        Romeo and Juliet
## 24217                                                                                                                                        Meet the Parents
## 24218                                                                                                                                        Charlie's Angels
## 24219                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 24221                                                                                                                                         What Women Want
## 24222                                                                                                                                       Miss Congeniality
## 24226                                                                                                                                   Bridget Jones's Diary
## 24240                                                                                                            Star Wars: Episode II - Attack of the Clones
## 24245                                                                                                                                               Ring, The
## 24254                                                                                                                                        Two Weeks Notice
## 24256                                                                                                                                                 Chicago
## 24257                                                                                                                                            Just Married
## 24258                                                                                                                                               Daredevil
## 24260                                                                                                                                               Toy Story
## 24261                                                                                                                                                 Jumanji
## 24262                                                                                                                          Ace Ventura: When Nature Calls
## 24263                                                                                                                                                    Babe
## 24264                                                                                                                                                Clueless
## 24265                                                                                                                                              Pocahontas
## 24266                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 24269                                                                                                                             What's Eating Gilbert Grape
## 24270                                                                                                                              Ace Ventura: Pet Detective
## 24271                                                                                                                                          Lion King, The
## 24272                                                                                                                                           Jurassic Park
## 24273                                                                                                                                            Blade Runner
## 24274                                                                                                                         Nightmare Before Christmas, The
## 24275                                                                                                                                                 Aladdin
## 24278                                                                                                                                               Pinocchio
## 24279                                                                                                                                     Mission: Impossible
## 24280                                                                                                                                        Oliver & Company
## 24281                                                                                                                            Hunchback of Notre Dame, The
## 24282                                                                                                                                              Cinderella
## 24284                                                                                                                                     Sound of Music, The
## 24286                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 24288                                                                                                                                                 Stalker
## 24289                                                                                                                                      Dead Poets Society
## 24290                                                                                                                                             Stand by Me
## 24291                                                                                                                      Indiana Jones and the Last Crusade
## 24292                                                                                                                                                  Grease
## 24293                                                                                                                                                Grease 2
## 24294                                                                                                                                           Mars Attacks!
## 24295                                                                                                                                               Liar Liar
## 24296                                                                                                             Austin Powers: International Man of Mystery
## 24298                                                                                                                                                Hercules
## 24299                                                                                                                               Men in Black (a.k.a. MIB)
## 24300                                                                                                                                        Truman Show, The
## 24301                                                                                                                                                 Titanic
## 24302                                                                                                                                             Spice World
## 24303                                                                                                                                                   Mulan
## 24304                                                                                                                                                      Pi
## 24305                                                                                                                            There's Something About Mary
## 24306                                                                                                                                         West Side Story
## 24307                                                                                                                                                   Bambi
## 24308                                                                                                                                Honey, I Shrunk the Kids
## 24309                                                                                                                                        Jungle Book, The
## 24310                                                                                                                                      Lady and the Tramp
## 24311                                                                                                                                     Little Mermaid, The
## 24312                                                                                                                                               Peter Pan
## 24313                                                                                                                                         Sleeping Beauty
## 24314                                                                                                                    Indiana Jones and the Temple of Doom
## 24316                                                                                                                                              Mummy, The
## 24318                                                                                                                                            Notting Hill
## 24319                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 24320                                                                                                                    South Park: Bigger, Longer and Uncut
## 24321                                                                                                                                          Wild Wild West
## 24322                                                                                                                                            American Pie
## 24323                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 24324                                                                                                                                Who Framed Roger Rabbit?
## 24325                                                                                                                                    Being John Malkovich
## 24327                                                                                                                                              Robin Hood
## 24328                                                                                                                                Pokémon: The First Movie
## 24330                                                                                                                                         Erin Brockovich
## 24331                                                                                                                                      Me, Myself & Irene
## 24332                                                                                                                                             Scary Movie
## 24333                                                                                                                                             Coyote Ugly
## 24334                                                                                                                                        Meet the Parents
## 24335                                                                                                      How the Grinch Stole Christmas (a.k.a. The Grinch)
## 24337                                                                                                                                      Dungeons & Dragons
## 24338                                                                                                                                   Bridget Jones's Diary
## 24339                                                                                                                                                   Shrek
## 24341                                                                                                                                            Pearl Harbor
## 24342                                                                                                                                 Lara Croft: Tomb Raider
## 24343                                                                                                            Crimson Rivers, The (Rivières pourpres, Les)
## 24344                                                                                                                       Final Fantasy: The Spirits Within
## 24345                                                                                                                                          Legally Blonde
## 24346                                                                                                                                   Princess Diaries, The
## 24347                                                                                                                                             Others, The
## 24348                                                                                                                                               Zoolander
## 24349                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 24351                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 24353                                                                                                                               The Count of Monte Cristo
## 24354                                                                                                                                              Metropolis
## 24355                                                                                                                                     Queen of the Damned
## 24356                                                                                                                                                 Ice Age
## 24357                                                                                                                                              Spider-Man
## 24359                                                                                                                                         Minority Report
## 24360                                                                                                                                                   Signs
## 24362                                                                                                                 Grave of the Fireflies (Hotaru no haka)
## 24363                                                                                                                 Harry Potter and the Chamber of Secrets
## 24364                                                                                                                                             Equilibrium
## 24367                                                                                                                                     Catch Me If You Can
## 24369                                                                                               Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira)
## 24370                                                                                                                                        Anger Management
## 24372                                                                                                                                    Matrix Reloaded, The
## 24373                                                                                                                                        Italian Job, The
## 24375                                                                                                     League of Extraordinary Gentlemen, The (a.k.a. LXG)
## 24376                                                                                                                                              Underworld
## 24377                                                                                                                                         Beethoven's 2nd
## 24378                                                                                                                                       Kill Bill: Vol. 1
## 24379                                                                                                                                 Matrix Revolutions, The
## 24380                                                                                                                         Battle Royale (Batoru rowaiaru)
## 24386                                                                                                                                       Kill Bill: Vol. 2
## 24387                                                                                                                                                    Troy
## 24388                                                                                                                             Babylon 5: In the Beginning
## 24389                                                                                                                                                 Shrek 2
## 24390                                                                                                                Harry Potter and the Prisoner of Azkaban
## 24391                                                                                                                                         Fahrenheit 9/11
## 24392                                                                                                                                                     Saw
## 24393                                                                                                                       Bridget Jones: The Edge of Reason
## 24394                                                                                                                                       Finding Neverland
## 24395                                                                                                                                       National Treasure
## 24396                                                                                                                                                  Closer
## 24398                                                                                                             Kiki's Delivery Service (Majo no takkyûbin)
## 24400                                                                                                                                          Animatrix, The
## 24401                                                      Crimson Rivers 2: Angels of the Apocalypse (Rivières pourpres II - Les anges de l'apocalypse, Les)
## 24403                                                                                                                                            Yes Men, The
## 24404                                                                                                                       Charlie and the Chocolate Factory
## 24405                                                                                                                               Phantom of the Opera, The
## 24408                                                                                                                   Hitchhiker's Guide to the Galaxy, The
## 24409                                                                                                            Star Wars: Episode III - Revenge of the Sith
## 24410                                                                                                                                           Batman Begins
## 24411                                                                                                                                     Brothers Grimm, The
## 24412                                                                                                                                             Lord of War
## 24414                                                                                                                                     Kiss Kiss Bang Bang
## 24415                                                                                                         One-Way Ticket to Mombasa (Menolippu Mombasaan)
## 24416                                                                                                                     Harry Potter and the Goblet of Fire
## 24417                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 24418                                                                                                                                     Memoirs of a Geisha
## 24419                                                                                                                                                Bandidas
## 24420                                                                                                                                          V for Vendetta
## 24423                                                                                                                                             Renaissance
## 24424                                                                                                                                      Da Vinci Code, The
## 24425                                                                                                                                  Devil Wears Prada, The
## 24426                                                                                                              Pirates of the Caribbean: Dead Man's Chest
## 24427                                                                                                                                        Marie Antoinette
## 24428                                                                                                                                  Inconvenient Truth, An
## 24434                                                                                                                        Perfume: The Story of a Murderer
## 24435                                                                                                                                                  Eragon
## 24437                                                                                                                                                     300
## 24438                                                                                                                              Vie en Rose, La (Môme, La)
## 24439                                                                                                                Pirates of the Caribbean: At World's End
## 24440                                                                                                                                                   Sicko
## 24441                                                                                                                                                Stardust
## 24442                                                                                                                                            Shoot 'Em Up
## 24443                                                                                                                       Tekkonkinkreet (Tekkon kinkurîto)
## 24444                                                                                                                            Elite Squad (Tropa de Elite)
## 24445                                                                                                                                  No Country for Old Men
## 24446                                                                                                                                               Enchanted
## 24447                                                                                                                                     Golden Compass, The
## 24448                                                                                                                                                    Juno
## 24450                                                                                                                                              27 Dresses
## 24451                                                                                                                                        Dark Knight, The
## 24452                                                                                                                                           Made of Honor
## 24453                                                                                                      Indiana Jones and the Kingdom of the Crystal Skull
## 24455                                                                                                                                              Mamma Mia!
## 24456                                                                                                                                              RocknRolla
## 24458                                                                                                                                Crows Zero (Kurôzu zero)
## 24459                                                                                                                                               Australia
## 24460                                                                                                                                                Twilight
## 24461                                                                                                                                      International, The
## 24462                                                                                                                             He's Just Not That Into You
## 24463                                                                                                                                     Comet in Moominland
## 24464                                                                                                                                                 Far Cry
## 24465                                                                                                                                            Pirate Radio
## 24467                                                                                                                                     Dead Snow (Død snø)
## 24468                                                                                                                                          Public Enemies
## 24469                                                                                                                                    (500) Days of Summer
## 24472                                                                                                                              Princess and the Frog, The
## 24473                                                                                                                                         Sherlock Holmes
## 24474                                                                                                                                               Leap Year
## 24476                                                                                                                                         Valhalla Rising
## 24478                                                                                                                                                    Salt
## 24480                                                                                                                                     Social Network, The
## 24481                                                                                                                      You Will Meet a Tall Dark Stranger
## 24484                                                                                                                                                 Tangled
## 24485                                                                                                                                    Love and Other Drugs
## 24486                                                                                                                                            Tourist, The
## 24487                                                                                                                                            Another Year
## 24488                                                                                                                     13 Assassins (Jûsan-nin no shikaku)
## 24489                                                                                                                                                   Hanna
## 24490                                                                                                                                                  Priest
## 24493                                                                                                                                            Freakonomics
## 24494                                                                                                                                           Avengers, The
## 24495                                                                                                                                     Dangerous Method, A
## 24496                                                                                                                                      Ides of March, The
## 24497                                                                                                                                                 In Time
## 24499                                                                                                                                        The Hunger Games
## 24500                                                                                                                                  Dark Knight Rises, The
## 24502                                                                                                                                                Iron Sky
## 24503                                                                                                                                            Dark Shadows
## 24504                                                                                                                    The Scorpion King: Rise of a Warrior
## 24505                                                                                                                                              Prometheus
## 24506                                                                                                                                            Total Recall
## 24507                                                                                                                                                 Skyfall
## 24508                                                                                                                                                   Dredd
## 24509                                                                                                                                                    Argo
## 24511                                                                                                                                      Maximum Conviction
## 24512                                                                                                                                     Act of Killing, The
## 24513                                                                                                                                                Oblivion
## 24514                                                                                                                                                 Elysium
## 24515                                                                                                                                                 Gravity
## 24522                                                                                                                                               Assassins
## 24526                                                                                                                      Lawnmower Man 2: Beyond Cyberspace
## 24528                                                                                                                                               Screamers
## 24531                                                                                                                                  Muppet Treasure Island
## 24534                                                                                                                                                   Congo
## 24541                                                                                                                                             Judge Dredd
## 24543                                                                                                                                                 Species
## 24547                                                                                                                                              Disclosure
## 24549                                                                                                                                                Hideaway
## 24550                                                                                                                                                  Junior
## 24551                                                                                                                           Kid in King Arthur's Court, A
## 24552                                                                                                                                    Natural Born Killers
## 24557                                                                                                                                               Tank Girl
## 24567                                                                                                                                                 Timecop
## 24568                                                                                   Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 24569                                                                                                                                 In the Mouth of Madness
## 24572                                                                                                                                          Body Snatchers
## 24574                                                                                                                                          Demolition Man
## 24581                                                                                                                                      Executive Decision
## 24583                                                                                                                                               No Escape
## 24585                                                                                                                                               RoboCop 3
## 24586                                                                                                                                                  Sliver
## 24588                                                                                                                                       Super Mario Bros.
## 24589                                                                                                                                      Surviving the Game
## 24597                                                                                                                                   Hellraiser: Bloodline
## 24604                                                                                                                                            Arrival, The
## 24610                                                                                                                               Crow: City of Angels, The
## 24611                                                                                                                                        Escape from L.A.
## 24613                                                                                                                               Island of Dr. Moreau, The
## 24614                                                                                                                                     Trigger Effect, The
## 24615                                                                         Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers)
## 24616                                                                                                                                        Extreme Measures
## 24618                                                                                                                                      Lawnmower Man, The
## 24620                                                                                                                                       Shadow Conspiracy
## 24626                                                                                                                                    Escape from New York
## 24642                                                                                                      Until the End of the World (Bis ans Ende der Welt)
## 24643                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 24644                                                                                                                                               Cape Fear
## 24648                                                                                                                         Star Trek V: The Final Frontier
## 24655                                                                                                                                          Murder at 1600
## 24656                                                                                                                                              Turbulence
## 24658                                                                                                                                          Absolute Power
## 24660                                                                                                                                        Devil's Own, The
## 24661                                                                                                                                                Anaconda
## 24663                                                                                                                                               Breakdown
## 24670                                                                                                                                           Event Horizon
## 24671                                                                                                                                                   Spawn
## 24674                                                                                                                                                   Mimic
## 24684                                                                                                                                             Playing God
## 24689                                                                                                                                              Red Corner
## 24690                                                                                                                                             Jackal, The
## 24691                                                                                                                                     Alien: Resurrection
## 24695                                                                                                                                               Dark City
## 24696                                                                                                                                                Star Kid
## 24700                                                                                                                                                  Sphere
## 24707                                                                                                                                                Godzilla
## 24709                                                                                                                                              Armageddon
## 24717                                                                                                                            Absent-Minded Professor, The
## 24722                                                                                                                                Honey, I Blew Up the Kid
## 24723                                                                                                                                Honey, I Shrunk the Kids
## 24724                                                                                                                                            Return to Oz
## 24726                                                                               Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode)
## 24728                                                                                                        Graveyard Shift (Stephen King's Graveyard Shift)
## 24738                                                                                                                          2010: The Year We Make Contact
## 24741                                                                                                                                              Braveheart
## 24744                                                                                                 Léon: The Professional (a.k.a. The Professional) (Léon)
## 24747                                                                                                                                            Forrest Gump
## 24749                                                                                                                         Nightmare Before Christmas, The
## 24750                                                                                                                                            True Romance
## 24752                                                                                                                                    Beauty and the Beast
## 24754                                                                                    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 24757                                                                                                                                     Singin' in the Rain
## 24758                                                                                                                                       Wizard of Oz, The
## 24760                                                                                                                                         His Girl Friday
## 24761                                                                                                                                            Mary Poppins
## 24762                                                                                                                                                Die Hard
## 24765                                                                                                                              E.T. the Extra-Terrestrial
## 24767                                                                                                                         One Flew Over the Cuckoo's Nest
## 24769                                                                                                                                     Princess Bride, The
## 24773                                                                                                                                              Goodfellas
## 24777                                                                                                                                      Dead Poets Society
## 24778                                                                                                                                           Graduate, The
## 24779                                                                                                                                            Shining, The
## 24783                                                                                                                                              Unforgiven
## 24784                                                                                                                                    Arsenic and Old Lace
## 24788                                                                                                                                         Field of Dreams
## 24789                                                                                                       Nosferatu (Nosferatu, eine Symphonie des Grauens)
## 24790                                                                                                                                                    Jaws
## 24793                                                                                                                                       Good Will Hunting
## 24794                                                                                                                                         Misérables, Les
## 24797                                                                                                                                           Lethal Weapon
## 24800                                                                                                                                         Sleeping Beauty
## 24801                                                                                                                                         Few Good Men, A
## 24803                                                                                                                                             Matrix, The
## 24804                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 24805                                                                                                                                      Christmas Story, A
## 24811                                                                                                                                             Holiday Inn
## 24812                                                           Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette)
## 24813                                                                                                                                              Easy Rider
## 24814                                                                                                                            Fast Times at Ridgemont High
## 24815                                                                                                                                    Boondock Saints, The
## 24816                                                                                                                                         Erin Brockovich
## 24817                                                                                                                      Close Encounters of the Third Kind
## 24818                                                                                                                                              Caddyshack
## 24819                                                                                                                                               Gladiator
## 24820                                                                                                                                          Gold Rush, The
## 24822                                                                                                                                     Requiem for a Dream
## 24823                                                                                                                                                 Traffic
## 24824                                                                                                                                                Scarface
## 24825                                                                                                                                            Donnie Darko
## 24827                                                                                                                                          Igby Goes Down
## 24828                                                                                                                                   Bowling for Columbine
## 24829                                                                                                                                                WarGames
## 24830                                                                                                                         Battle Royale (Batoru rowaiaru)
## 24832                                                                                                                                   Ten Commandments, The
## 24833                                                                                                                                              Mean Girls
## 24834                                                                                                                                       Shaun of the Dead
## 24835                                                                                                                                                  Kinsey
## 24836                                                                                                                                                 Old Boy
## 24837                                                                                                                                     Million Dollar Baby
## 24839                                                                                                                                                Serenity
## 24841                                                                                                                                               Clerks II
## 24842                                                                                                                                    Little Miss Sunshine
## 24845                                                                                                                                                     300
## 24846                                                                                                                         How the Grinch Stole Christmas!
## 24848                                                                                                                                              Persepolis
## 24849                                                                                                                                                    Juno
## 24850                                                                                                                                                Watchmen
## 24851                                                                                                                                       Pineapple Express
## 24853                                                                                                                                             Role Models
## 24854                                                                                                                                       Sunshine Cleaning
## 24856                                                                                                                                          Shutter Island
## 24858                                                                                                                              Exit Through the Gift Shop
## 24859                                                                                                                                              Four Lions
## 24860                                                                                                                                           Winter's Bone
## 24861                                                                                                                                              Black Swan
## 24862                                                                                                                        Girl with the Dragon Tattoo, The
## 24864                                                                                                                                 Silver Linings Playbook
## 24865                                                                                                                                        Django Unchained
## 24866                                                                                                                         The Hunger Games: Catching Fire
## 24867                                                                                                                                Wolf of Wall Street, The
## 24869                                                                                                                          Dawn of the Planet of the Apes
## 24872                                                                                                                                      Back to the Future
## 24873                                                                                                                                        Truman Show, The
## 24874                                                                                                                                             Bring It On
## 24876                                                                                                                                   Bridget Jones's Diary
## 24877                                                                                                                                                   Shrek
## 24878                                                                                                                                          Legally Blonde
## 24883                                                                                                                   Eternal Sunshine of the Spotless Mind
## 24886                                                                                                                   Anchorman: The Legend of Ron Burgundy
## 24887                                                                                                                                                I, Robot
## 24888                                                                                                                                   Bourne Supremacy, The
## 24893                                                                                                                                   Stranger than Fiction
## 24894                                                                                                                                           Casino Royale
## 24897                                                                                                                                                    Juno
## 24899                                                                                                                                           Adventureland
## 24907                                                                                                                                  Dark Knight Rises, The
## 24909                                                                                                                                                  Clerks
## 24912                                                                                                                                                   Angus
## 24920                                                                                                                                 Poseidon Adventure, The
## 24921                                                                                                                                          Pretty in Pink
## 24922                                                                                                                                     Color of Money, The
## 24924                                                                                                                                            Office Space
## 24925                                                                                                                                        Cruel Intentions
## 24927                                                                                                                                           Arachnophobia
## 24928                                                                                                                    South Park: Bigger, Longer and Uncut
## 24929                                                                                                                                Blair Witch Project, The
## 24934                                                                                                                                               Coneheads
## 24940                                                                                                                                                 Con Air
## 24942                                                                                                                                               Game, The
## 24944                                                                                                                                                Gremlins
## 24961                                                                                                                                       Waiting to Exhale
## 24965                                                                                                                                            Sudden Death
## 24967                                                                                                                                                   Balto
## 24968                                                                                                                                   Sense and Sensibility
## 24969                                                                                                                                              Get Shorty
## 24970                                                                                                                                       Leaving Las Vegas
## 24972                                                                                                                                        Dead Man Walking
## 24973                                                                                                                                              Pocahontas
## 24975                                                                                                                                          Eye for an Eye
## 24977                                                                                                                                              Juror, The
## 24978                                                                                                                                            Broken Arrow
## 24981                                                                                                                              NeverEnding Story III, The
## 24983                                                                                                                                  Brothers McMullen, The
## 24986                                                                                                                              Die Hard: With a Vengeance
## 24988                                                                                                                        Free Willy 2: The Adventure Home
## 24989                                                                                                                                               Jury Duty
## 24991                                                                                                                                             Nine Months
## 24996                                                                                                                                        Don Juan DeMarco
## 24998                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 24999                                                                                                                                             French Kiss
## 25000                                                                                                                                            Forget Paris
## 25004                                                                                                                                      Little Princess, A
## 25005                                                                                                     Like Water for Chocolate (Como agua para chocolate)
## 25006                                                                                                                                     Legends of the Fall
## 25008                                                                                                                                           Losing Isaiah
## 25011                                                                                                                                                    Nell
## 25013                                                                                                                                               Quiz Show
## 25015                                                                                                                                                Stargate
## 25017                                                                                                                             What's Eating Gilbert Grape
## 25019                                                                                                                                        Muriel's Wedding
## 25020                                                                                                                                  Baby-Sitters Club, The
## 25021                                                                                                                              Ace Ventura: Pet Detective
## 25025                                                                                                                                        Flintstones, The
## 25027                                                                                                                             Four Weddings and a Funeral
## 25028                                                                                                                                          I Love Trouble
## 25033                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 25036                                                                                                                                When a Man Loves a Woman
## 25038                                                                                                                                    Addams Family Values
## 25042                                                                                                                                              Free Willy
## 25045                                                                                                                                        Last Action Hero
## 25046                                                                                                                                         Made in America
## 25049                                                                                                                                    Next Karate Kid, The
## 25050                                                                                                                                            Philadelphia
## 25052                                                                                                                             Searching for Bobby Fischer
## 25055                                                                                                                                       Super Mario Bros.
## 25056                                                                                                                                               Tombstone
## 25057                                                                                                                                       Little Big League
## 25061                                                                                                                               Silence of the Lambs, The
## 25065                                                                                                                Homeward Bound II: Lost in San Francisco
## 25069                                                                                                                                            Country Life
## 25071                                                                                                                                        Mulholland Falls
## 25078                                                                                                                                         Harriet the Spy
## 25080                                                                                                                                    Very Brady Sequel, A
## 25082                                                                                                                                                 Foxfire
## 25088                                                                                                                     Willy Wonka & the Chocolate Factory
## 25089                                                                                                                                        Bonnie and Clyde
## 25095                                                                                                                      Star Wars: Episode IV - A New Hope
## 25108                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 25111                                                                                                                                           Graduate, The
## 25113                                                                                                                                       L.A. Confidential
## 25116                                                                                                                                         Midnight Cowboy
## 25125                                                                                                                                       Big Momma's House
## 25126                                                                                                                                             Chicken Run
## 25127                                                                                                                          Nutty Professor II: The Klumps
## 25128                                                                                                                                             Unbreakable
## 25130                                                                                                                              O Brother, Where Art Thou?
## 25132                                                                                                                                            Crimson Tide
## 25134                                                                                                                                                Mallrats
## 25136                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 25137                                                                                                                                             Hoop Dreams
## 25138                                                                                                                                                  Junior
## 25145                                                                                                                                    Vanya on 42nd Street
## 25148                                                                                                                                            Forrest Gump
## 25151                                                                                                                                              Paper, The
## 25153                                                                                                                                               True Lies
## 25154                                                                                                                                                Airheads
## 25155                                                                                                                                        Another Stakeout
## 25157                                                                                                                                             Cliffhanger
## 25159                                                                                                                                               Firm, The
## 25163                                                                                                                                           Jurassic Park
## 25164                                                                                                                                        Last Action Hero
## 25166                                                                                                                                            Philadelphia
## 25169                                                                                                                                              Home Alone
## 25174                                                                                                                                            Pretty Woman
## 25180                                                                                                                                              Pocahontas
## 25183                                                                                                                                               Apollo 13
## 25184                                                                                                                                         Johnny Mnemonic
## 25186                                                                                                                                          Goofy Movie, A
## 25187                                                                                                                                                  Junior
## 25188                                                                                                                      Star Wars: Episode IV - A New Hope
## 25189                                                                                                                                            Pulp Fiction
## 25196                                                                                                                                          Lion King, The
## 25198                                                                                                                                             Being Human
## 25199                                                                                                                                                    Dave
## 25207                                                                                                                         Snow White and the Seven Dwarfs
## 25209                                                                                                                                               Pinocchio
## 25213                                                                                                                                        Oliver & Company
## 25220                                                                                                                            Hunchback of Notre Dame, The
## 25221                                                                                                                                    Nutty Professor, The
## 25222                                                                                                                                        Some Like It Hot
## 25224                                                                                                                                       Wizard of Oz, The
## 25225                                                                                                                                   2001: A Space Odyssey
## 25227                                                                                                                                              Cinderella
## 25228                                                                                                                                 Sword in the Stone, The
## 25229                                                                                                                                            Mary Poppins
## 25230                                                                                                                                                   Dumbo
## 25231                                                                                                                                     Alice in Wonderland
## 25232                                                                                                                                  Fox and the Hound, The
## 25234                                                                                                                                      Lawnmower Man, The
## 25239                                                                                                                               Streetcar Named Desire, A
## 25245                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 25249                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 25252                                                                                                                                     Blues Brothers, The
## 25257                                                                                                                                           Groundhog Day
## 25261                                                                                                                                                Fantasia
## 25262                                                                                                                                      This Is Spinal Tap
## 25264                                                                                                                                 When Harry Met Sally...
## 25265                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 25272                                                                                                                          Lost World: Jurassic Park, The
## 25273                                                                                                                                                Hercules
## 25275                                                                                                                                                 Contact
## 25276                                                                                                                                           Event Horizon
## 25278                                                                                                                                               Anastasia
## 25279                                                                                                                                     Alien: Resurrection
## 25280                                                                                                                                                 Flubber
## 25282                                                                                                                                             Wag the Dog
## 25283                                                                                                                                               Dark City
## 25284                                                                                                                                      As Good as It Gets
## 25289                                                                                                                                                      Pi
## 25291                                                                                                                                               Labyrinth
## 25294                                                                                                                                                   Bambi
## 25295                                                                                                                                                    Dune
## 25296                                                                                                                                     Saving Private Ryan
## 25297                                                                                                                                     Black Cauldron, The
## 25298                                                                                                                                Honey, I Shrunk the Kids
## 25299                                                                                                                                        Jungle Book, The
## 25300                                                                                                                                      Lady and the Tramp
## 25301                                                                                                                                     Little Mermaid, The
## 25302                                                                                                         101 Dalmatians (One Hundred and One Dalmatians)
## 25303                                                                                                                                               Peter Pan
## 25306                                                                                                                              Return from Witch Mountain
## 25307                                                                                                                                          Rocketeer, The
## 25308                                                                                                                                         Sleeping Beauty
## 25309                                                                                                                                                    Tron
## 25310                                                                                                                                                Safe Men
## 25311                                                                                                                                         Charlotte's Web
## 25312                                                                                                                                     Secret of NIMH, The
## 25313                                                                                                                                       American Tail, An
## 25314                                                                                                                     American Tail: Fievel Goes West, An
## 25316                                                                                                                                                  Willow
## 25318                                                                                                                                                    Antz
## 25321                                                                                                                   Waking Ned Devine (a.k.a. Waking Ned)
## 25323                                                                                                                                         Howard the Duck
## 25325                                                                                                                                         King and I, The
## 25327                                                                                                                                                Election
## 25328                                                                                                         William Shakespeare's A Midsummer Night's Dream
## 25329                                                                                                               Star Wars: Episode I - The Phantom Menace
## 25334                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 25335                                                                                                                             Little Shop of Horrors, The
## 25338                                                                                                                                      Christmas Story, A
## 25341                                                                                                                                Who Framed Roger Rabbit?
## 25346                                                                                                                                Pokémon: The First Movie
## 25347                                                                                                                                    Grapes of Wrath, The
## 25350                                                                                                                                            Galaxy Quest
## 25351                                                                                                                                  League of Their Own, A
## 25353                                                                                                                            Teenage Mutant Ninja Turtles
## 25356                                                                                                                                               Ladyhawke
## 25357                                                                                                                                                    Hook
## 25358                                                                                                                                                 Cabaret
## 25359                                                                                                                                          Guys and Dolls
## 25362                                                                                                                                               Cell, The
## 25363                                                                                                                                      Dancer in the Dark
## 25365                                                                                                                               Emperor's New Groove, The
## 25366                                                                                                                                              Innerspace
## 25367                                                                                                                                                   Krull
## 25369                                                                                                                                           City Slickers
## 25370                                                                                                                               Atlantis: The Lost Empire
## 25373                                                                                                                                                  Romero
## 25377                                                                                                                                            Flash Gordon
## 25379                                                                                                                          Ferngully: The Last Rainforest
## 25380                                                                                                                                         Dangerous Minds
## 25382                                                                                                                                          Chain Reaction
## 25384                                                                                                                                             Under Siege
## 25387                                                                                                                                    Nutty Professor, The
## 25390                                                                                                                                              Entrapment
## 25391                                                                                                                                     Hard Day's Night, A
## 25395                                                                                                                                               Road Trip
## 25397                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 25400                                                                                                                                     Along Came a Spider
## 25402                                                                                                                                   America's Sweethearts
## 25408                                                                                                  Pirates of the Caribbean: The Curse of the Black Pearl
## 25412                                                                                                                   Eternal Sunshine of the Spotless Mind
## 25416                                                                                                                                   Stranger than Fiction
## 25417                                                                                                                                        Dark Knight, The
## 25418                                                                                                                                                  WALL·E
## 25423                                                                                                                                                 Jumanji
## 25432                                                                                                                                              Waterworld
## 25434                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 25435                                                                                                                                          Goofy Movie, A
## 25436                                                                                                                             Madness of King George, The
## 25437                                                                                                                                      Once Were Warriors
## 25441                                                                                                                                  Star Trek: Generations
## 25443                                                                                                                              Ace Ventura: Pet Detective
## 25445                                                                                                                                        Jungle Book, The
## 25447                                                                                                                                               Mask, The
## 25448                                                                                                                                           Reality Bites
## 25450                                                                                                                                           Boxing Helena
## 25451                                                                                                                                      Dazed and Confused
## 25452                                                                                                                                                Fearless
## 25454                                                                                                                                           Jurassic Park
## 25455                                                                                                                                          Mrs. Doubtfire
## 25459                                                                                                                                     Little Rascals, The
## 25460                                                                                                                                              Home Alone
## 25465                                                                                                                                               Pinocchio
## 25467                                                                                                                Homeward Bound II: Lost in San Francisco
## 25469                                                                                                                               James and the Giant Peach
## 25470                                                                                                                                                    Cosi
## 25473                                                                                                                            Hunchback of Notre Dame, The
## 25475                                                                                                                                                 Matilda
## 25478                                                                                                                                   It's a Wonderful Life
## 25480                                                                                                                                            Chamber, The
## 25481                                                                                                                  Homeward Bound: The Incredible Journey
## 25485                                                                                                                                     Alice in Wonderland
## 25486                                                                                                                                Long Kiss Goodnight, The
## 25487                                                                                                                    William Shakespeare's Romeo + Juliet
## 25492                                                                                                                              E.T. the Extra-Terrestrial
## 25494                                                                                                                                     Princess Bride, The
## 25495                                                                                                                                            12 Angry Men
## 25496                                                                                                                                          Apocalypse Now
## 25500                                                                                                                                Star Trek: First Contact
## 25502                                                                                                                  Star Trek VI: The Undiscovered Country
## 25503                                                                                                                                                  Grease
## 25504                                                                                                                                                  Scream
## 25505                                                                                                                                               Liar Liar
## 25506                                                                                                                                                  Kissed
## 25508                                                                                                             Austin Powers: International Man of Mystery
## 25511                                                                                                                                                 Gattaca
## 25512                                                                                                                                          Rainmaker, The
## 25516                                                                                                                                                Scream 2
## 25523                                                                                                                                    Opposite of Sex, The
## 25525                                                                                                                                              Armageddon
## 25526                                                                                                                            There's Something About Mary
## 25527                                                                                                                                                   Rocky
## 25530                                                                                                                                           Lethal Weapon
## 25532                                                                                                                                                   Bambi
## 25534                                                                                                                                        Jungle Book, The
## 25535                                                                                                                                      Lady and the Tramp
## 25538                                                                                                                                                 Newsies
## 25540                                                                                                                                         Sleeping Beauty
## 25543                                                                                                                                    Nutty Professor, The
## 25544                                                                                                                                         St. Elmo's Fire
## 25546                                                                                                                                                Rounders
## 25547                                                                                                                                       Indecent Proposal
## 25556                                                                                                                                             Matrix, The
## 25561                                                                                                               Star Wars: Episode I - The Phantom Menace
## 25562                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 25564                                                                                                                                Blair Witch Project, The
## 25568                                                                                                                                      Pelican Brief, The
## 25571                                                                                                                                    Being John Malkovich
## 25572                                                                                                                                     Bone Collector, The
## 25573                                                                                                                                        Fatal Attraction
## 25574                                                                                                                                        Fisher King, The
## 25583                                                                                                                                                Scream 3
## 25588                                                                                                                                         American Psycho
## 25589                                                                                                                                    Virgin Suicides, The
## 25590                                                                                                                                 Pee-wee's Big Adventure
## 25591                                                                                                                            9 1/2 Weeks (Nine 1/2 Weeks)
## 25592                                                                                                                                                   X-Men
## 25596                                                                                                                                            Moulin Rouge
## 25598                                                                                                                                         Shadows and Fog
## 25601                                                                                                                                 Wet Hot American Summer
## 25602                                                                                                                                   Princess Diaries, The
## 25607                                                                                                      Lord of the Rings: The Fellowship of the Ring, The
## 25609                                                                                                                                   M*A*S*H (a.k.a. MASH)
## 25613                                                                                                                                    Bourne Identity, The
## 25614                                                                                                                                              Scooby-Doo
## 25616                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 25617                                                                                                                             Austin Powers in Goldmember
## 25623                                                                                                                  Lord of the Rings: The Two Towers, The
## 25625                                                                                                                                                 Chicago
## 25626                                                                                                                                          Darkness Falls
## 25631                                                                                                                                            Ringu (Ring)
## 25633                                                                                                                                        X2: X-Men United
## 25634                                                                                                                                    Matrix Reloaded, The
## 25637                                                                                                                                           Alex and Emma
## 25638                                                                                                                                           28 Days Later
## 25639                                                                                                                                                 Tremors
## 25640                                                                                                                                     Lost in Translation
## 25641                                                                                                                                             Jungle Book
## 25642                                                                                                                                       Kill Bill: Vol. 1
## 25643                                                                                                                                                Elephant
## 25644                                                                                                                                                Girlhood
## 25645                                                                                                                                 Matrix Revolutions, The
## 25647                                                                                                                                                 Gothika
## 25648                                                                                           Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das)
## 25649                                                                                                              Things You Can Tell Just by Looking at Her
## 25650                                                                                                                                            Witches, The
## 25651                                                                                                                                                Big Fish
## 25652                                                                                                          Lord of the Rings: The Return of the King, The
## 25656                                                                                                                                                EuroTrip
## 25658                                                                                                                                       Kill Bill: Vol. 2
## 25661                                                                                                                                               100 Girls
## 25663                                                                                                                            Sex: The Annabel Chong Story
## 25665                                                                                                                Harry Potter and the Prisoner of Azkaban
## 25666                                                                                                                                            White Chicks
## 25668                                                                                                                                            Spider-Man 2
## 25671                                                                                                                                                  Lilith
## 25673                                                                                                                              Team America: World Police
## 25674                                                                                                                                             Grudge, The
## 25675                                                                                                                                        Incredibles, The
## 25676                                                                                                                                       Finding Neverland
## 25678                                                                                                                           Hush... Hush, Sweet Charlotte
## 25679                                                                                                                              Charlie Brown Christmas, A
## 25681                                                                                                                                    Bourne Identity, The
## 25682                                                                                                                                                     Gia
## 25683                                                                                                                                                   11:14
## 25684                                                                                                         Lemony Snicket's A Series of Unfortunate Events
## 25685                                                                                                                                       Scanner Darkly, A
## 25692                                                                                                                                       Skeleton Key, The
## 25694                                                                                                                                                  Saw II
## 25695                                                                                                                                       Pride & Prejudice
## 25696                                                                                                                     Harry Potter and the Goblet of Fire
## 25698                                                                                         Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The
## 25700                                                                                                                                           Over the Edge
## 25701                                                                                                                                              Date Movie
## 25704                                                                                                                                                   Brick
## 25706                                                                                                                                  Inconvenient Truth, An
## 25708                                                                                                                                             Half Nelson
## 25716                                                                                                                                         Blades of Glory
## 25717                                                                                                                                              Grindhouse
## 25720                                                                                                                                             Death Proof
## 25721                                                                                                               Harry Potter and the Order of the Phoenix
## 25722                                                                                                                     I Now Pronounce You Chuck and Larry
## 25723                                                                                                                                     Simpsons Movie, The
## 25725                                                                                                                                  Lars and the Real Girl
## 25726                                                                                                                                                   Awake
## 25731                                                                                                               Harold & Kumar Escape from Guantanamo Bay
## 25734                                                                                                                                          Happening, The
## 25736                                                                                                                   It's the Great Pumpkin, Charlie Brown
## 25738                                                                                                                                                   Elegy
## 25739                                                                                                                                             Spirit, The
## 25743                                                                                                                                               Sex Drive
## 25748                                                                                                                                                 Copycat
## 25752                                                                                                                                                Clueless
## 25753                                                                                                                                    Seven (a.k.a. Se7en)
## 25754                                                                                                                                              Pocahontas
## 25756                                                                                                                                      Mr. Holland's Opus
## 25757                                                                                                                                     Vampire in Brooklyn
## 25761                                                                                                                                          Batman Forever
## 25762                                                                                                                                                  Casper
## 25763                                                                                                                                                   Congo
## 25764                                                                                                                              Die Hard: With a Vengeance
## 25765                                                                                                                                             Judge Dredd
## 25766                                                                                                                                                 Species
## 25767                                                                                                                                              Waterworld
## 25769                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 25770                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 25771                                                                                                                                      Little Princess, A
## 25772                                                                                                                                  Miracle on 34th Street
## 25775                                                                                                                                                Outbreak
## 25778                                                                                                                                                Stargate
## 25779                                                                                                                                       Santa Clause, The
## 25781                                                                                                                                  Star Trek: Generations
## 25782                                                                                                                                 While You Were Sleeping
## 25785                                                                                                                                             Client, The
## 25788                                                                                                                                        Jungle Book, The
## 25790                                                                                                                                               Mask, The
## 25792                                                                                                                                             Richie Rich
## 25793                                                                                                                                                   Speed
## 25795                                                                                                                                    Addams Family Values
## 25796                                                                                                                                   Beverly Hills Cop III
## 25797                                                                                                                                               Coneheads
## 25798                                                                                                                                               Firm, The
## 25799                                                                                                                                           Fugitive, The
## 25805                                                                                                                                              Piano, The
## 25806                                                                                                                                               RoboCop 3
## 25808                                                                                                                                    Sleepless in Seattle
## 25810                                                                                                                         Nightmare Before Christmas, The
## 25811                                                                                                                                     Little Rascals, The
## 25817                                                                                                                                                  Batman
## 25823                                                                                                                                     Mission: Impossible
## 25824                                                                                                                                             Dragonheart
## 25826                                                                                                                 Mystery Science Theater 3000: The Movie
## 25829                                                                                                                           Independence Day (a.k.a. ID4)
## 25830                                                                                                                                         Harriet the Spy
## 25832                                                                                                                                                 Carpool
## 25833                                                                                                                                Escape to Witch Mountain
## 25835                                                                                                                                        Parent Trap, The
## 25836                                                                                                                                   Swiss Family Robinson
## 25837                                                                                                                            20,000 Leagues Under the Sea
## 25839                                                                                                                    Winnie the Pooh and the Blustery Day
## 25840                                                                                                                                   Three Caballeros, The
## 25841                                                                                                                                 Sword in the Stone, The
## 25844                                                                                                                                           Pete's Dragon
## 25845                                                                                                                                  Fox and the Hound, The
## 25846                                                                                                                                                Bad Boys
## 25847                                                                                                                                          Goofy Movie, A
## 25848                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 25851                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 25852                                                                                                                                             Cliffhanger
## 25856                                                                                                                                               Space Jam
## 25857                                                                                                                                                 Twister
## 25858                                                                                                                                               Barb Wire
## 25859                                                                                                                           Independence Day (a.k.a. ID4)
## 25861                                                                                                                                                 Foxfire
## 25862                                                                                                                                     Maltese Falcon, The
## 25863                                                                                                                                Night of the Living Dead
## 25864                                                                                                                                            Mary Poppins
## 25870                                                                                                                          Big Blue, The (Grand bleu, Le)
## 25874                                                                                                                                     Room with a View, A
## 25875                                                                                                                                      Breaking the Waves
## 25876                                                                                                                                             Sling Blade
## 25877                                                                                                                         Star Trek II: The Wrath of Khan
## 25879                                                                                                                  Romy and Michele's High School Reunion
## 25880                                                                                                                                              Wishmaster
## 25883                                                                                                                                       Big Lebowski, The
## 25884                                                                                                                                            Dr. Dolittle
## 25885                                                                                                                                           Out of Africa
## 25886                                                                                                                                           Lethal Weapon
## 25888                                                                                                                              Clan of the Cave Bear, The
## 25890                                                                                                                                       Indecent Proposal
## 25891                                                                                                                                       Stardust Memories
## 25892                                                                                                                                         My Cousin Vinny
## 25893                                                                                                                                         Practical Magic
## 25895                                                                                                                                       Gods and Monsters
## 25896                                                                                                                                               Elizabeth
## 25897                                                                                                                                          Meet Joe Black
## 25898                                                                                                                                           Bug's Life, A
## 25899                                                                                                                               Desperately Seeking Susan
## 25900                                                                                                                                              Jack Frost
## 25901                                                                                                                                            Faculty, The
## 25902                                                                                                                                         Civil Action, A
## 25903                                                                                                                                                 Payback
## 25905                                                                                                                          Beneath the Planet of the Apes
## 25906                                                                                                                       Battle for the Planet of the Apes
## 25907                                                                                                                      Conquest of the Planet of the Apes
## 25908                                                                                                                      Escape from the Planet of the Apes
## 25909                                                                                                                                        Cruel Intentions
## 25910                                                                                                                                          Mod Squad, The
## 25912                                                                                                                                     Out-of-Towners, The
## 25914                                                                                                                                       Never Been Kissed
## 25915                                                                                                                                                    Life
## 25916                                                                                                                                             Pushing Tin
## 25917                                                                                                                                              Entrapment
## 25918                                                                                                                                             Swamp Thing
## 25919                                                                                                                                   Thirteenth Floor, The
## 25920                                                                                                                                                Instinct
## 25922                                                                                                                      Red Violin, The (Violon rouge, Le)
## 25923                                                                                                                                 General's Daughter, The
## 25926                                                                                                                    South Park: Bigger, Longer and Uncut
## 25927                                                                                                                                          Wild Wild West
## 25928                                                                                                                                           Summer of Sam
## 25930                                                                                                                                          Arlington Road
## 25933                                                                                                                                             Lake Placid
## 25934                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 25935                                                                                                                                           Haunting, The
## 25936                                                                                                                                        Inspector Gadget
## 25937                                                                                                                                           Deep Blue Sea
## 25938                                                                                                                                           Runaway Bride
## 25940                                                                                                                                                    Dick
## 25942                                                                                                                                Thomas Crown Affair, The
## 25943                                                                                                                                               Bowfinger
## 25944                                                                                                                                        Brokedown Palace
## 25945                                                                                                                                       Detroit Rock City
## 25946                                                                                                                                        Mickey Blue Eyes
## 25947                                                                                                                                    Teaching Mrs. Tingle
## 25948                                                                                                                                       13th Warrior, The
## 25949                                                                                                                                   Astronaut's Wife, The
## 25950                                                                                                                                                Stigmata
## 25953                                                                                                                                    For Love of the Game
## 25954                                                                                                                                         Double Jeopardy
## 25955                                                                                                                                          Jakob the Liar
## 25956                                                                                                                                          Drive Me Crazy
## 25957                                                                                                                                              Fight Club
## 25959                                                                                                                                Who Framed Roger Rabbit?
## 25960                                                                                                                                   House on Haunted Hill
## 25962                                                                                                                                          Suburbans, The
## 25963                                                                                                                                           Bachelor, The
## 25964                                                                                                                                     Bone Collector, The
## 25965                                                                                                                                               Creepshow
## 25967                                                                                                                                             End of Days
## 25968                                                                                                                              Deuce Bigalow: Male Gigolo
## 25969                                                                                                                                         Green Mile, The
## 25971                                                                                                                                            Galaxy Quest
## 25973                                                                                                                                             Next Friday
## 25974                                                                                                                                          Angela's Ashes
## 25976                                                                                                                                       Girl, Interrupted
## 25979                                                                                                                                     Eye of the Beholder
## 25981                                                                                                                                    White Men Can't Jump
## 25982                                                                                                                                                Scream 3
## 25983                                                                                                                                              Beach, The
## 25984                                                                                                                                             Boiler Room
## 25985                                                                                                                                              Hanging Up
## 25986                                                                                                                                          Reindeer Games
## 25987                                                                                                                               What Planet Are You From?
## 25988                                                                                                                                         Ninth Gate, The
## 25989                                                                                                                                         Erin Brockovich
## 25990                                                                                                                                       Final Destination
## 25991                                                                                                                                      Eyes of Laura Mars
## 25992                                                                                                                                   Good Morning, Vietnam
## 25993                                                                                                                                          Romeo Must Die
## 25995                                                                                                                                               Frequency
## 25996                                                                                                                     Flintstones in Viva Rock Vegas, The
## 25998                                                                                                                                  Mission: Impossible II
## 26000                                                                                                                                      Gone in 60 Seconds
## 26001                                                                                                                                             Chicken Run
## 26004                                                                                                                                                     F/X
## 26005                                                                                                        F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion)
## 26006                                                                                                                                           Hot Spot, The
## 26007                                                                                                                                       Missing in Action
## 26008                                                                                                                             The Golden Voyage of Sinbad
## 26009                                                                                                                                                   X-Men
## 26011                                                                                                                                                Freejack
## 26012                                                                                                                         Sinbad and the Eye of the Tiger
## 26013                                                                                                                                         What About Bob?
## 26014                                                                                                                                             White Sands
## 26015                                                                                                                                          Kelly's Heroes
## 26016                                                                                                                                             Air America
## 26017                                                                                                                                         Steel Magnolias
## 26019                                                                                                                           Original Kings of Comedy, The
## 26021                                                                                                                 Naked Gun 2 1/2: The Smell of Fear, The
## 26031                                                                                                                                                    Antz
## 26034                                                                                                                                               Elizabeth
## 26036                                                                                                                                    Prince of Egypt, The
## 26039                                                                                                                                         Civil Action, A
## 26045                                                                                                                                             Pushing Tin
## 26047                                                                                                                                                eXistenZ
## 26050                                                                                                                                        Love Letter, The
## 26052                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 26059                                                                                                                                           Runaway Bride
## 26060                                                                                                                                     Mosquito Coast, The
## 26063                                                                                                                                               Bowfinger
## 26065                                                                                                                                    For Love of the Game
## 26066                                                                                                                                         Double Jeopardy
## 26072                                                                                                                                       Anywhere But Here
## 26074                                                                                                                                     Ride with the Devil
## 26078                                                                                                                                             Boiler Room
## 26081                                                                                                                                               Cast Away
## 26082                                                                                                                                               GoldenEye
## 26083                                                                                                                                                    Babe
## 26084                                                                                                                                    Seven (a.k.a. Se7en)
## 26085                                                                                                                                              Braveheart
## 26087                                                                                                                                          Batman Forever
## 26089                                                                                                                              Die Hard: With a Vengeance
## 26090                                                                                                                                                Net, The
## 26091                                                                                                                                              Waterworld
## 26092                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 26093                                                                                                                                                Outbreak
## 26098                                                                                                                              Ace Ventura: Pet Detective
## 26099                                                                                                                                Clear and Present Danger
## 26101                                                                                                                                               True Lies
## 26102                                                                                                                                             Cliffhanger
## 26103                                                                                                                                               Firm, The
## 26105                                                                                                                                           Jurassic Park
## 26106                                                                                                                                                 Aladdin
## 26108                                                                                                                                                  Batman
## 26110                                                                                                                                    Beauty and the Beast
## 26112                                                                                                                          Ace Ventura: When Nature Calls
## 26114                                                                                                                                                Clueless
## 26115                                                                                                                                           Mortal Kombat
## 26116                                                                                                                                    Seven (a.k.a. Se7en)
## 26117                                                                                                                                              Pocahontas
## 26119                                                                                                                                                  Casper
## 26120                                                                                                                                                   Congo
## 26121                                                                                                                 Mighty Morphin Power Rangers: The Movie
## 26122                                                                                                                                                Net, The
## 26123                                                                                                                                              Waterworld
## 26126                                                                                                                                            Little Women
## 26129                                                                                                                                                Stargate
## 26133                                                                                                                                             Client, The
## 26134                                                                                                                                        Flintstones, The
## 26138                                                                                                                                               Mask, The
## 26139                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 26140                                                                                                                                             Richie Rich
## 26141                                                                                                                                                   Speed
## 26142                                                                                                                                               True Lies
## 26144                                                                                                                                             Cliffhanger
## 26145                                                                                                                                          Demolition Man
## 26146                                                                                                                                               Firm, The
## 26147                                                                                                                                              Free Willy
## 26149                                                                                                                                     In the Line of Fire
## 26154                                                                                                                                    Sleepless in Seattle
## 26155                                                                                                                         Nightmare Before Christmas, The
## 26160                                                                                                                                                  Batman
## 26161                                                                                                                               Silence of the Lambs, The
## 26164                                                                                                                                            Pretty Woman
## 26165                                                                                                                                                 Twister
## 26171                                                                                                                                            Pulp Fiction
## 26185                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 26186                                                                                                                                     Princess Bride, The
## 26187                                                                                                                                            12 Angry Men
## 26194                                                                                                                                               Chinatown
## 26197                                                                                                                                         Raising Arizona
## 26206                                                                                                                                             Player, The
## 26222                                                                                                                                             Toy Story 2
## 26226                                                                                                                            Fast Times at Ridgemont High
## 26228                                                                                                                                                   Diner
## 26232                                                                                                                          Ace Ventura: When Nature Calls
## 26234                                                                                                                                           Mortal Kombat
## 26235                                                                                                                                            Broken Arrow
## 26238                                                                                                                                                 Rob Roy
## 26239                                                                                                                                                  Casper
## 26240                                                                                                                                                   Congo
## 26242                                                                                                                                         Johnny Mnemonic
## 26243                                                                                                                                             Judge Dredd
## 26244                                                                                                                                                 Species
## 26246                                                                                                                                              Waterworld
## 26248                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 26249                                                                                                      Interview with the Vampire: The Vampire Chronicles
## 26250                                                                                                                                                Outbreak
## 26251                                                                                                                                            Pulp Fiction
## 26253                                                                                                                                       Santa Clause, The
## 26256                                                                                                                              Ace Ventura: Pet Detective
## 26258                                                                                                                                               Crow, The
## 26262                                                                                                                                                Maverick
## 26263                                                                                                                                                   Speed
## 26265                                                                                                                                   Beverly Hills Cop III
## 26266                                                                                                            City Slickers II: The Legend of Curly's Gold
## 26268                                                                                                                                          Demolition Man
## 26269                                                                                                                                               Firm, The
## 26270                                                                                                                                           Fugitive, The
## 26271                                                                                                                                           Jurassic Park
## 26272                                                                                                                                          Mrs. Doubtfire
## 26274                                                                                                                         Nightmare Before Christmas, The
## 26275                                                                                                                                                   Ghost
## 26279                                                                                                                                            Pretty Woman
## 26283                                                                                                                                       Leaving Las Vegas
## 26285                                                                                                                                                Clueless
## 26286                                                                                                                                         Dead Presidents
## 26287                                                                                                                             Indian in the Cupboard, The
## 26288                                                                                                                                            Broken Arrow
## 26289                                                                                                                                           Happy Gilmore
## 26290                                                                                                                                              Braveheart
## 26291                                                                                                                                             Taxi Driver
## 26292                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 26293                                                                                                                                               Apollo 13
## 26295                                                                                                                              Die Hard: With a Vengeance
## 26296                                                                                                                                                 Species
## 26297                                                                                                                                              Waterworld
## 26299                                                                                                                                             Hoop Dreams
## 26300                                                                                                                           Kid in King Arthur's Court, A
## 26302                                                                                                                                           Nobody's Fool
## 26303                                                                                                                                    Natural Born Killers
## 26304                                                                                                                                            Pulp Fiction
## 26305                                                                                                                                 Quick and the Dead, The
## 26306                                                                                                                               Shawshank Redemption, The
## 26307                                                                                                                                     Tales from the Hood
## 26308                                                                                                                                Clear and Present Danger
## 26309                                                                                                                                            Forrest Gump
## 26310                                                                                                                                                Maverick
## 26311                                                                                                                                                   Speed
## 26312                                                                                                                                                 Timecop
## 26313                                                                                                                                               True Lies
## 26314                                                                                   Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 26315                                                                                                                                   Beverly Hills Cop III
## 26316                                                                                                                                          Body Snatchers
## 26317                                                                                                                                   Endless Summer 2, The
## 26319                                                                                                                                    Hudsucker Proxy, The
## 26321                                                                                                                                        Last Action Hero
## 26323                                                                                                                                      Secret Garden, The
## 26324                                                                                                                                            Blade Runner
## 26325                                                                                                                                                   Ghost
## 26326                                                                                                                              Terminator 2: Judgment Day
## 26329                                                                                                                                    Beauty and the Beast
## 26330                                                                                                                                            Pretty Woman
## 26334                                                                                                                                              Craft, The
## 26335                                                                                                                                                 Twister
## 26336                                                                                                                                    Nutty Professor, The
## 26338                                                                                                                                 Philadelphia Story, The
## 26339                                                                                                                                     Singin' in the Rain
## 26340                                                                                                                                   American in Paris, An
## 26342                                                                                                                                      North by Northwest
## 26343                                                                                                                                          Apartment, The
## 26347                                                                                                                                                 Sabrina
## 26348                                                                                                                                           Roman Holiday
## 26351                                                                                                                                        My Favorite Year
## 26357                                                                                                                                Ghost and Mrs. Muir, The
## 26358                                                                                                                                            Lost Horizon
## 26359                                                                                                                                                 Top Hat
## 26360                                                                                                                                         His Girl Friday
## 26361                                                                                                                             Around the World in 80 Days
## 26364                                                                                                                                    Angel on My Shoulder
## 26366                                                                                                                                   Cat on a Hot Tin Roof
## 26368                                                                                                                                              Old Yeller
## 26370                                                                                                                                     Sound of Music, The
## 26371                                                                                                                                                Die Hard
## 26372                                                                                                                     Willy Wonka & the Chocolate Factory
## 26374                                                                                                                            Monty Python's Life of Brian
## 26375                                                                                                                                         Victor/Victoria
## 26378                                                                                                                                                 Platoon
## 26380                                                                                                                                         Sophie's Choice
## 26381                                                                                                                              E.T. the Extra-Terrestrial
## 26382                                                                                                                                                 Top Gun
## 26383                                                                                                                                   Rebel Without a Cause
## 26385                                                                                                                         Return of the Pink Panther, The
## 26386                                                                                                                                    Escape from New York
## 26387                                                                                                                         Monty Python and the Holy Grail
## 26389                                                                                                                                     Thin Blue Line, The
## 26392                                                                                                                                     Princess Bride, The
## 26393                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 26395                                                                                      Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 26399                                                                                                                                              Goodfellas
## 26406                                                                                                                                          Quiet Man, The
## 26407                                                                                                                                             Raging Bull
## 26409                                                                                                                                        Right Stuff, The
## 26412                                                                                                                                        Harold and Maude
## 26413                                                                                                                                         Terminator, The
## 26414                                                                                                                                                   Glory
## 26421                                                                                                                                               Duck Soup
## 26422                                                                                                                                             Stand by Me
## 26423                                                                                                                                                       M
## 26425                                                                                                                                        Deer Hunter, The
## 26426                                                                                                                                           Groundhog Day
## 26427                                                                                                                               Manchurian Candidate, The
## 26429                                                                                                                                      Back to the Future
## 26431                                                                                                                                              Highlander
## 26438                                                                                                                      Indiana Jones and the Last Crusade
## 26439                                                                                                                                             Being There
## 26441                                                                                                                                         Field of Dreams
## 26443                                                                                                                                 When Harry Met Sally...
## 26444                                                                                                                                 Alien³ (a.k.a. Alien 3)
## 26446                                                                                                                                              Die Hard 2
## 26447                                                                                                                  Star Trek VI: The Undiscovered Country
## 26448                                                                                                                         Star Trek II: The Wrath of Khan
## 26449                                                                                                                     Star Trek III: The Search for Spock
## 26451                                                                                                                                                  Grease
## 26453                                                                                                                                           Mars Attacks!
## 26454                                                                                                                                           Jerry Maguire
## 26456                                                                                                                                                 Tin Men
## 26458                                                                                                                                                 Con Air
## 26459                                                                                                                                          Simple Wish, A
## 26460                                                                                                                                               G.I. Jane
## 26461                                                                                                                                           Air Force One
## 26463                                                                                                                                         Full Monty, The
## 26464                                                                                                                                     Alien: Resurrection
## 26465                                                                                                                                                 Flubber
## 26466                                                                                                                                             Wag the Dog
## 26469                                                                                                                                           Lost in Space
## 26470                                                                                                                          Fear and Loathing in Las Vegas
## 26471                                                                                                                                         Lethal Weapon 4
## 26473                                                                                                                                             Grand Hotel
## 26474                                                                                                                                 How Green Was My Valley
## 26476                                                                                                                                   From Here to Eternity
## 26477                                                                                                                                                   Marty
## 26478                                                                                                                                         West Side Story
## 26479                                                                                                                                In the Heat of the Night
## 26481                                                                                                                                  French Connection, The
## 26482                                                                                                                                                   Rocky
## 26483                                                                                                                                       Kramer vs. Kramer
## 26484                                                                                                                                        Chariots of Fire
## 26487                                                                                                                                      Driving Miss Daisy
## 26488                                                                                                                                                   Klute
## 26489                                                                                                                                                Repo Man
## 26490                                                                                                                                           Lethal Weapon
## 26491                                                                                                                                         Lethal Weapon 2
## 26492                                                                                                                                         Lethal Weapon 3
## 26493                                                                                                                               Gremlins 2: The New Batch
## 26494                                                                                                                                 Poseidon Adventure, The
## 26497                                                                                                                                                    Dune
## 26498                                                                                                                                Godfather: Part III, The
## 26501                                                                                                                                Honey, I Shrunk the Kids
## 26503                                                                                                                                          Doctor Zhivago
## 26504                                                                                                                                          Tender Mercies
## 26505                                                                                                                                                Mephisto
## 26506                                                                                                                              Journey of Natty Gann, The
## 26507                                                                                                                                                 Newsies
## 26508                                                                                                                                                  Popeye
## 26509                                                                                                                                          Rocketeer, The
## 26510                                                                                                                                                  Splash
## 26512                                                                                                                                                    Tron
## 26513                                                                                                                                               Jerk, The
## 26514                                                                                                                               Dead Men Don't Wear Plaid
## 26515                                                                                                                                Man with Two Brains, The
## 26516                                                                                                                                            Grand Canyon
## 26517                                                                                                                    Indiana Jones and the Temple of Doom
## 26518                                                                                                                                      Addams Family, The
## 26519                                                                                                                         Who's Afraid of Virginia Woolf?
## 26520                                                                                                                                           Weird Science
## 26521                                                                                                                                         Doctor Dolittle
## 26522                                                                                                                                     Secret of NIMH, The
## 26523                                                                                                                                         Sixteen Candles
## 26524                                                                                                                                 Gods Must Be Crazy, The
## 26525                                                                                                                                             Beetlejuice
## 26528                                                                                                                                                  Willow
## 26529                                                                                                                                       Untouchables, The
## 26530                                                                                                                                                Lifeboat
## 26532                                                                                                                                          Broadcast News
## 26533                                                                                                                                         Few Good Men, A
## 26534                                                                                                                                              Thing, The
## 26535                                                                                                                                     Edward Scissorhands
## 26537                                                                                                                                         My Cousin Vinny
## 26538                                                                                                                                Children of a Lesser God
## 26539                                                                                                                                       Elephant Man, The
## 26540                                                                                                                        Bride of Chucky (Child's Play 4)
## 26542                                                                                                                                      Enemy of the State
## 26544                                                                                                                   Waking Ned Devine (a.k.a. Waking Ned)
## 26546                                                                                                                                               King Kong
## 26547                                                                                                                                       View to a Kill, A
## 26549                                                                                                                              Rambo: First Blood Part II
## 26550                                                                                                                                               Rambo III
## 26551                                                                                                                                  Jewel of the Nile, The
## 26552                                                                                                                                     Romancing the Stone
## 26553                                                                                                                                                  Cocoon
## 26554                                                                                                                                               Rocky III
## 26555                                                                                                                                                Rocky IV
## 26556                                                                                                                                                 Rocky V
## 26557                                                                                                                                   Young Sherlock Holmes
## 26558                                                                                              Christmas Vacation (National Lampoon's Christmas Vacation)
## 26559                                                                                                                                  Boy Who Could Fly, The
## 26560                                                                                                                                      Jumpin' Jack Flash
## 26561                                                                                                                                        Heartbreak Ridge
## 26562                                                                                                                                            Office Space
## 26563                                                                                                                                   Towering Inferno, The
## 26564                                                                                                                                               Westworld
## 26565                                                                                                                                             Logan's Run
## 26567                                                                                                                          Beneath the Planet of the Apes
## 26568                                                                                                                      Conquest of the Planet of the Apes
## 26569                                                                                                                      Escape from the Planet of the Apes
## 26570                                                                                                                                          Wing Commander
## 26571                                                                                                                                          Mod Squad, The
## 26572                                                                                                                                                Election
## 26573                                                                                                                                              Dick Tracy
## 26574                                                                                                                                              Mummy, The
## 26575                                                                                                               Star Wars: Episode I - The Phantom Menace
## 26576                                                                                                                                                Superman
## 26577                                                                                                                                             Superman II
## 26578                                                                                                                          Rocky Horror Picture Show, The
## 26580                                                                                                                    South Park: Bigger, Longer and Uncut
## 26581                                                                                                                                          Wild Wild West
## 26582                                                                                                                                            American Pie
## 26583                                                                                                                                Blair Witch Project, The
## 26584                                                                                                                                           Haunting, The
## 26585                                                                                                                                           Deep Blue Sea
## 26586                                                                                                                                               Spartacus
## 26587                                                                                                                                       Color Purple, The
## 26588                                                                                                                                  Little Shop of Horrors
## 26589                                                                                                                                              Radio Days
## 26590                                                                                                                                Thomas Crown Affair, The
## 26591                                                                                                                                         Heaven Can Wait
## 26592                                                                                               Monty Python's And Now for Something Completely Different
## 26594                                                                                                                                                     Big
## 26595                                                                                                                                      Christmas Story, A
## 26596                                                                                                                                       13th Warrior, The
## 26597                                                                                                                                        Yellow Submarine
## 26599                                                                                                                                     Hard Day's Night, A
## 26600                                                                                                                                    Barefoot in the Park
## 26603                                                                                                                                          Risky Business
## 26604                                                                                                                                            Total Recall
## 26606                                                                                                                                Ferris Bueller's Day Off
## 26607                                                                                                                                                    Reds
## 26608                                                                                                                                           South Pacific
## 26610                                                                                                                                                   Help!
## 26611                                                                                                                                              Goldfinger
## 26612                                                                                                         Fistful of Dollars, A (Per un pugno di dollari)
## 26613                                                                                                                                            Time Bandits
## 26614                                                                                                                                           All That Jazz
## 26615                                                                                                                                                 RoboCop
## 26616                                                                                                                                               RoboCop 2
## 26618                                                                                                                                       Melvin and Howard
## 26619                                                                                                                                      For Your Eyes Only
## 26620                                                                                                                                   House on Haunted Hill
## 26621                                                                                                                          They Shoot Horses, Don't They?
## 26626                                                                                                                                          Trading Places
## 26627                                                                                                                                                   Dogma
## 26628                                                                                                                                             Holiday Inn
## 26631                                                                                                                                              Moonstruck
## 26632                                                                                                                                           Irma la Douce
## 26634                                                                                                                                           Sleepy Hollow
## 26637                                                                                                                                            Natural, The
## 26638                                                                                                                                                 Shampoo
## 26639                                                                                                                                River Runs Through It, A
## 26641                                                                                                                                               Backdraft
## 26642                                                                                                                                          Santa Fe Trail
## 26643                                                                                                                                      Great Santini, The
## 26644                                                                                                                                         Green Mile, The
## 26645                                                                                                                                  Last Picture Show, The
## 26646                                                                                                                              The Falcon and the Snowman
## 26648                                                                                                                                          Hurricane, The
## 26649                                                                                                                                        Way We Were, The
## 26650                                                                                                                                               Stalag 17
## 26651                                                                                                                                           Presidio, The
## 26653                                                                                                                                        Five Easy Pieces
## 26654                                                                                                                            Fast Times at Ridgemont High
## 26655                                                                                                                                       Goodbye Girl, The
## 26656                                                                                                                                           Wayne's World
## 26657                                                                                                                                  League of Their Own, A
## 26659                                                                                                                                          Bodyguard, The
## 26660                                                                                                                                         Of Mice and Men
## 26661                                                                                                                                             City Lights
## 26664                                                                                                                                    Raisin in the Sun, A
## 26665                                                                                                                                           Breaking Away
## 26666                                                                                                                             Hoosiers (a.k.a. Best Shot)
## 26667                                                                                                                                             Bull Durham
## 26668                                                                                                                                       Dog Day Afternoon
## 26669                                                                                                                                       American Graffiti
## 26671                                                                                                                             Muppets Take Manhattan, The
## 26673                                                                                                                         Captain Horatio Hornblower R.N.
## 26675                                                                                                                                      Do the Right Thing
## 26676                                                                                                                                          Coogan's Bluff
## 26677                                                                                                                                            Death Wish 3
## 26679                                                                                                                                                Red Dawn
## 26680                                                                                                                                   Good Morning, Vietnam
## 26681                                                                                                                            Guess Who's Coming to Dinner
## 26682                                                                                                                                       Lord of the Flies
## 26686                                                                                                                                           High Fidelity
## 26687                                                                                                                                               True Grit
## 26688                                                                                                                                        Midnight Express
## 26690                                                                                                                                         Odd Couple, The
## 26691                                                                                                                                   Bell, Book and Candle
## 26692                                                                                                                                  Force 10 from Navarone
## 26693                                                                                                                                              Parenthood
## 26694                                                                                                                                                Predator
## 26695                                                                                                                         Postman Always Rings Twice, The
## 26696                                                                                                                                                   Diner
## 26697                                                                                                                        What Ever Happened to Baby Jane?
## 26698                                                                                                                                          Guys and Dolls
## 26699                                                                                                                                              Caddyshack
## 26700                                                                                                                                                   U-571
## 26702                                                                                                                                                 Mr. Mom
## 26703                                                                                                                                 Pee-wee's Big Adventure
## 26705                                                                                                                                               Moonraker
## 26706                                                                                                                            Man with the Golden Gun, The
## 26707                                                                                                                                   Fighting Seabees, The
## 26709                                                                                                                                        Romeo and Juliet
## 26711                                                                                                                                              Predator 2
## 26712                                                                                                                                        Running Man, The
## 26713                                                                                                                                                 Starman
## 26714                                                                                                                                            Alien Nation
## 26715                                                                                                                                                 Mad Max
## 26716                                                                                                                                          Bird on a Wire
## 26717                                                                                                                                      Gone in 60 Seconds
## 26718                                                                                                                                        Paper Chase, The
## 26719                                                                                                                                                 Serpico
## 26720                                                                                                                             Big Trouble in Little China
## 26721                                                                                                                                     Battleship Potemkin
## 26722                                                                                                                                                   Shaft
## 26723                                                                                                                                             Chicken Run
## 26724                                                                                                                 Adventures of Rocky and Bullwinkle, The
## 26725                                                                                                                                      Perfect Storm, The
## 26726                                                                                                                               Kentucky Fried Movie, The
## 26727                                                                                                                                                     F/X
## 26728                                                                                                                                          Breaker Morant
## 26729                                                                                                                                          Kelly's Heroes
## 26730                                                                                                                                             Air America
## 26731                                                                                                                                               Cell, The
## 26734                                                                                                                                              Cat Ballou
## 26735                                                                                                                     Highlander: Endgame (Highlander IV)
## 26736                                                                                                                                             Nurse Betty
## 26738                                                                                                                                          Bank Dick, The
## 26739                                                                                                                                              Get Carter
## 26740                                                                                                                                          Contender, The
## 26742                                                                                                                                          Pay It Forward
## 26743                                                                                                             Legend of Drunken Master, The (Jui kuen II)
## 26744                                                                                                                                           Lucky Numbers
## 26745                                                                                                                                        Charlie's Angels
## 26746                                                                                                                             Legend of Bagger Vance, The
## 26747                                                                                                                                            Little Nicky
## 26749                                                                                                                                    Diamonds Are Forever
## 26750                                                                                                                                            6th Day, The
## 26751                                                                                                                                                  Bounce
## 26752                                                                                                      How the Grinch Stole Christmas (a.k.a. The Grinch)
## 26753                                                                                                                                             Unbreakable
## 26754                                                                                                                                           Proof of Life
## 26755                                                                                                                                          Vertical Limit
## 26757                                                                                                                               Emperor's New Groove, The
## 26758                                                                                                                                         What Women Want
## 26759                                                                                                                                       Finding Forrester
## 26760                                                                                                                                               Cast Away
## 26761                                                                                                                                         Family Man, The
## 26762                                                                                                                                       Miss Congeniality
## 26763                                                                                                                                            Dracula 2000
## 26765                                                                                                                             Officer and a Gentleman, An
## 26766                                                                                                                                   M*A*S*H (a.k.a. MASH)
## 26771                                                                                                                                                    Fled
## 26772                                                                                                                                           Roman Holiday
## 26776                                                                                                                        Major League: Back to the Minors
## 26779                                                                                                                                       Mighty Ducks, The
## 26780                                                                                                                                  NeverEnding Story, The
## 26784                                                                                                                                          Eyes Wide Shut
## 26785                                                                                                                                  Little Shop of Horrors
## 26790                                                                                                                                          Jakob the Liar
## 26791                                                                                                                                          Drive Me Crazy
## 26794                                                                                                                                              Limey, The
## 26800                                                                                                                                                   Dogma
## 26801                                                                                                                                              Moonstruck
## 26804                                                                                                                                             End of Days
## 26809                                                                                                                                              Beach, The
## 26812                                                                                                                                           Drowning Mona
## 26813                                                                                                                                         Mission to Mars
## 26817                                                                                                                                  Road to El Dorado, The
## 26818                                                                                                                                             Skulls, The
## 26826                                                                                                                                      Where the Money Is
## 26828                                                                                                                                                   U-571
## 26829                                                                                                                                              Jennifer 8
## 26831                                                                                                                                               Carnosaur
## 26833                                                                                                                                     I Dreamed of Africa
## 26835                                                                                                                                       Battlefield Earth
## 26837                                                                                                                                      Honeymoon in Vegas
## 26838                                                                                                                                       Small Time Crooks
## 26839                                                                                                                               Myth of Fingerprints, The
## 26848                                                                                                                                              Stay Tuned
## 26850                                                                                                     For a Few Dollars More (Per qualche dollaro in più)
## 26855                                                                                                                                                 Porky's
## 26856                                                                                                                                Porky's II: The Next Day
## 26857                                                                                                                                         Porky's Revenge
## 26858                                                                                                                                              Predator 2
## 26864                                                                                                                                             Angel Heart
## 26866                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 26868                                                                                                                              Pyromaniac's Love Story, A
## 26869                                                                                                                                                Stargate
## 26871                                                                                                                                            Forrest Gump
## 26872                                                                                                                                               Mask, The
## 26880                                                                                                                                              Barbarella
## 26885                                                                                                                            20,000 Leagues Under the Sea
## 26886                                                                                                                                      Lawnmower Man, The
## 26889                                                                                                                                        Army of Darkness
## 26901                                                                                                                                               Dark City
## 26911                                                                                                                                             Beetlejuice
## 26912                                                                                                                          2010: The Year We Make Contact
## 26913                                                                                                                                             Logan's Run
## 26917                                                                                                                                            Superman III
## 26921                                                                                                                                            Time Bandits
## 26922                                                                                                                                         Heart and Souls
## 26926                                                                                                                                                 Mad Max
## 26927                                                                                                                           Road Warrior, The (Mad Max 2)
## 26930                                                                                                                                                   Fargo
## 26934                                                                                                                                      That Thing You Do!
## 26936                                                                                                                                          Reservoir Dogs
## 26938                                                                                                                 Cinema Paradiso (Nuovo cinema Paradiso)
## 26939                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 26951                                                                                                                                              Unforgiven
## 26952                                                                                                                                             Down by Law
## 26954                                                                                                                         Beavis and Butt-Head Do America
## 26955                                                                                                                                     Waiting for Guffman
## 26957                                                                                                                                             Wag the Dog
## 26958                                                                                                             Children of Heaven, The (Bacheha-Ye Aseman)
## 26963                                                                                                                                               Bowfinger
## 26965                                                                                                                                     Straight Story, The
## 26966                                                                                                                                 Crimes and Misdemeanors
## 26968                                                                                                                                            Insider, The
## 26969                                                                                                                                         Green Mile, The
## 26971                                                                                                                                Talented Mr. Ripley, The
## 26974                                                                                                                                               Malcolm X
## 26975                                                                                                                                            Mariachi, El
## 26981                                                                                                                                            Best in Show
## 26982                                                                                                                                  Stranger Than Paradise
## 26984                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 26985                                                                                                                                               Cast Away
## 26990                                                                                                                                             Ghost World
## 26991                                                                                                                                             Dinner Rush
## 26993                                                                                                                                           No Man's Land
## 26997                                                                                                                                            Roger Dodger
## 26998                                                                                                                                         Far from Heaven
## 27001                                                                                                                  Lord of the Rings: The Two Towers, The
## 27002                                                                                                                                            Pianist, The
## 27003                                                                                                                                          Mighty Wind, A
## 27005                                                                                                                                               GoldenEye
## 27008                                                                                                                                               Assassins
## 27010                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 27017                                                                                                                                                Mallrats
## 27018                                                                                                                                              Waterworld
## 27025                                                                                                                                           Shallow Grave
## 27027                                                                                                                                               True Lies
## 27028                                                                                   Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension)
## 27030                                                                                                                                           Jurassic Park
## 27033                                                                                                                                       Super Mario Bros.
## 27037                                                                                                                                                   Fargo
## 27038                                                                                                                                               Space Jam
## 27041                                                                                                                           Independence Day (a.k.a. ID4)
## 27042                                                                                                                                          Godfather, The
## 27043                                                                                                                                   2001: A Space Odyssey
## 27048                                                                                                                                       Bloody Child, The
## 27050                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 27053                                                                                                                                              Goodfellas
## 27059                                                                                                                             Evil Dead II (Dead by Dawn)
## 27062                                                                                                                                                   Akira
## 27064                                                                                                                                Star Trek: First Contact
## 27065                                                                                                                                                   Evita
## 27067                                                                                                                          Lost World: Jurassic Park, The
## 27069                                                                                                                                                 Contact
## 27072                                                                                                                                         Peacemaker, The
## 27077                                                                                                                                     Alien: Resurrection
## 27079                                                                                                                                     Tomorrow Never Dies
## 27080                                                                                                                                       Big Lebowski, The
## 27082                                                                                                                                                Godzilla
## 27083                                                                                                                                              Armageddon
## 27084                                                                                                                                               Halloween
## 27091                                                                                                                                                    Cube
## 27093                                                                                                                                      American History X
## 27096                                                                                                                                                Rocky IV
## 27101                                                                                                                                               Following
## 27102                                                                                                               Star Wars: Episode I - The Phantom Menace
## 27104                                                                                                                                          Wild Wild West
## 27105                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 27108                                                                                                               The Mating Habits of the Earthbound Human
## 27118                                                                                                                                             Hidden, The
## 27120                                                                                                                                           Human Traffic
## 27122                                                                                                                                                   X-Men
## 27124                                                                                                                                    Diamonds Are Forever
## 27125                                                                                                                                            6th Day, The
## 27127                                                                                                                                          Evil Dead, The
## 27128                                                                                                                                            Mexican, The
## 27130                                                                                                                            A.I. Artificial Intelligence
## 27132                                                                                                                                               They Live
## 27133                                                                                                                                             Others, The
## 27134                                                                                                                                          Ghosts of Mars
## 27135                                                                                                                                            Donnie Darko
## 27136                                                                                                                                                One, The
## 27140                                                                                                                                                Impostor
## 27142                                                                                                                                       Time Machine, The
## 27143                                                                                                                                           Resident Evil
## 27144                                                                                                                                              Spider-Man
## 27147                                                                                                                                         Minority Report
## 27149                                                                                                                                             Equilibrium
## 27150                                                                                                                  Lord of the Rings: The Two Towers, The
## 27151                                                                                                                                               25th Hour
## 27152                                                                                                                                            Pianist, The
## 27157                                                                                                                                        X2: X-Men United
## 27158                                                                                                      Laputa: Castle in the Sky (Tenkû no shiro Rapyuta)
## 27160                                                                                                                                        Italian Job, The
## 27161                                                                                                                                           28 Days Later
## 27162                                                                                                                      Terminator 3: Rise of the Machines
## 27163                                                                                                                                         Day of the Dead
## 27165                                                                                                                           Shakiest Gun in the West, The
## 27166                                                                                                                                            Mystic River
## 27167                                                                                                                                       Kill Bill: Vol. 1
## 27169                                                                                                                           Highlander II: The Quickening
## 27172                                                                                           Nausicaä of the Valley of the Wind (Kaze no tani no Naushika)
## 27173                                                                                                          Lord of the Rings: The Return of the King, The
## 27175                                                                                                                                       Hip Hop Witch, Da
## 27176                                                                                                                                        Dawn of the Dead
## 27177                                                                                                                                        Dawn of the Dead
## 27178                                                                                                                                       Kill Bill: Vol. 2
## 27180                                                                                                                             Babylon 5: In the Beginning
## 27181                                                                                                                               Babylon 5: A Call to Arms
## 27182                                                                                                                                        Children of Dune
## 27185                                                                                                                              Chronicles of Riddick, The
## 27186                                                                                                                                           Helen of Troy
## 27187                                                                                                                               Pirates of Silicon Valley
## 27188                                                                                                                                            Spider-Man 2
## 27190                                                                                                                                                I, Robot
## 27191                                                                                                                                          Prince Valiant
## 27193                                                                                                                                       Revengers Tragedy
## 27194                                                                                                                                 AVP: Alien vs. Predator
## 27195                                                                                                                               Resident Evil: Apocalypse
## 27197                                                                                                                                           The Machinist
## 27202                                                                                                                                          Interview, The
## 27204                                                                                                                                          Animatrix, The
## 27213                                                                                                                                        Snow Walker, The
## 27216                                                                                                                                        Wedding Crashers
## 27217                                                                                                                                             Island, The
## 27218                                                                                                                                                Serenity
## 27219                                                                                                                      Final Fantasy VII: Advent Children
## 27221                                                                                                                                            Descent, The
## 27222                                                                                                                                             Keeping Mum
## 27223                                                                                                                                               16 Blocks
## 27225                                                                                                                                              Inside Man
## 27227                                                                                                                                                   Brick
## 27230                                                                                                                                   Stranger than Fiction
## 27233                                                                                                                                         Children of Men
## 27239                                                                                                                                                     300
## 27240                                                                                                                                              Grindhouse
## 27241                                                                                                                                                Sunshine
## 27243                                                                                                                                          28 Weeks Later
## 27245                                                                                                                                              88 Minutes
## 27246                                                                                                                                             Death Proof
## 27247                                                                                                                                                    1408
## 27248                                                                                                                                      Death at a Funeral
## 27249                                                                                                                                   Live Free or Die Hard
## 27252                                                                                                                                           Invasion, The
## 27255                                                                                                                                        Eastern Promises
## 27256                                                                                                                               Resident Evil: Extinction
## 27258                                                                                             Assassination of Jesse James by the Coward Robert Ford, The
## 27259                                                                                                                                                  Saw IV
## 27260                                                                                                                                       American Gangster
## 27265                                                                                                                                             I Am Legend
## 27266                                                                                                                                        Bucket List, The
## 27268                                                                                                                     AVPR: Aliens vs. Predator - Requiem
## 27269                                                                                                                                             Cloverfield
## 27272                                                                                                                                      What Just Happened
## 27275                                                                                                                                            Visitor, The
## 27277                                                                                                                                                Iron Man
## 27279                                                                                                                     Young at Heart (a.k.a. Young@Heart)
## 27280                                                                                                                                                 Recount
## 27281                                                                                                                                    Incredible Hulk, The
## 27282                                                                                                                                                  WALL·E
## 27283                                                                                                                                                Watchmen
## 27284                                                                                                                                           Step Brothers
## 27285                                                                                                                                            Frozen River
## 27286                                                                                                                                          Tropic Thunder
## 27287                                                                                                                                              Death Race
## 27288                                                                                                                                      Burn After Reading
## 27289                                                                                                                                         Pride and Glory
## 27292                                                                                                                                                   Saw V
## 27293                                                                                                                                                Soul Men
## 27294                                                                                                                    Curious Case of Benjamin Button, The
## 27296                                                                                                                          Underworld: Rise of the Lycans
## 27297                                                                                                                                               Eden Lake
## 27298                                                                                                                                            Funny People
## 27299                                                                                                                               Anvil! The Story of Anvil
## 27300                                                                                                                                    Dragonball Evolution
## 27303                                                                                                                                           State of Play
## 27304                                                                                                                                      Damned United, The
## 27305                                                                                                                                     Crank: High Voltage
## 27306                                                                                                                                                    Moon
## 27307                                                                                                                                X-Men Origins: Wolverine
## 27309                                                                                                                                    Terminator Salvation
## 27310                                                                                                                                            Soloist, The
## 27311                                                                                                                                           Hangover, The
## 27312                                                                                                                                        Land of the Lost
## 27313                                                                                                                     Transformers: Revenge of the Fallen
## 27314                                                                                                                  Harry Potter and the Half-Blood Prince
## 27317                                                                                                                             Men Who Stare at Goats, The
## 27319                                                                                                                                                  Saw VI
## 27320                                                                                                                                                  Avatar
## 27322                                                                                                                                               Pontypool
## 27323                                                                                                                                             Daybreakers
## 27324                                                                                                                                        Book of Eli, The
## 27325                                                                                                                                                  Legion
## 27326                                                                                                                                            Wolfman, The
## 27328                                                                                                                                                 Cop Out
## 27329                                                                                                                                       Ghost Writer, The
## 27330                                                                                                                                            Crazies, The
## 27331                                                                                                                                             Harry Brown
## 27332                                                                                                                                         Leaves of Grass
## 27334                                                                                                                                                Defendor
## 27336                                                                                                                                       Cemetery Junction
## 27338                                                                                                                                    Get Him to the Greek
## 27339                                                                                                                                             Unthinkable
## 27342                                                                                                                                               Predators
## 27344                                                                                                                                               Grown Ups
## 27346                                                                                                                                        Expendables, The
## 27347                                                                                                                                               Centurion
## 27348                                                                                                                                Resident Evil: Afterlife
## 27350                                                                                                                                               Town, The
## 27352                                                                                                                                                     Red
## 27353                                                                                                                          Saw VII 3D - The Final Chapter
## 27355                                                                                                                                    Next Three Days, The
## 27358                                                                                                                                               True Grit
## 27359                                                                                                                                            Tron: Legacy
## 27360                                                                                                                                      Gulliver's Travels
## 27362                                                                                                                                       Green Hornet, The
## 27366                                                                                                                                     No Strings Attached
## 27367                                                                                                                                               Rite, The
## 27368                                                                                                                                                 Unknown
## 27369                                                                                                                                            Cedar Rapids
## 27370                                                                                                                                  Adjustment Bureau, The
## 27371                                                                                                                                           Mechanic, The
## 27372                                                                                                                                               Hall Pass
## 27373                                                                                                                                              Eagle, The
## 27374                                                                                                                                     Battle: Los Angeles
## 27375                                                                                                                        Troll Hunter, The (Trolljegeren)
## 27379                                                                                                                          American: The Bill Hicks Story
## 27385                                                                                                                                             Bad Teacher
## 27387                                                                                                                                    Crazy, Stupid, Love.
## 27388                                                                                                                                   Friends with Benefits
## 27389                                                                                                                          Rise of the Planet of the Apes
## 27390                                                                                                                                          Change-Up, The
## 27391                                                                                                                                      30 Minutes or Less
## 27394                                                                                                                               Tinker Tailor Soldier Spy
## 27395                                                                                                                                              Thing, The
## 27396                                                                                                                                                 In Time
## 27399                                                                                                                      Sherlock Holmes: A Game of Shadows
## 27400                                                                                                                    Mission: Impossible - Ghost Protocol
## 27401                                                                                                                                         We Bought a Zoo
## 27403                                                                                                                                               Chronicle
## 27405                                                                                                                                        Moonrise Kingdom
## 27416                                                                                                                                               Prisoners
## 27419                                                                                                                                         Book Thief, The
## 27422                                                                                                                                                  Frozen
## 27423                                                                                                                                         American Hustle
## 27424                                                                                                                                        Saving Mr. Banks
## 27425                                                                                                                                         Back in the Day
## 27426                                                                                                                                               Toy Story
## 27427                                                                                                                                                 Jumanji
## 27429                                                                                                                                              Braveheart
## 27432                                                                                                                                                Net, The
## 27436                                                                                                                                        Jungle Book, The
## 27437                                                                                                                                          Lion King, The
## 27438                                                                                                                                               Mask, The
## 27439                                                                                                                                                   Speed
## 27441                                                                                                                                              Free Willy
## 27442                                                                                                                                           Jurassic Park
## 27445                                                                                                                                              Home Alone
## 27446                                                                                                                                                 Aladdin
## 27448                                                                                                                                    Beauty and the Beast
## 27450                                                                                                                                     Mission: Impossible
## 27451                                                                                                                           Independence Day (a.k.a. ID4)
## 27453                                                                                                                            Monty Python's Life of Brian
## 27454                                                                                                                                           Dirty Dancing
## 27456                                                                                                                              E.T. the Extra-Terrestrial
## 27457                                                                                                                                                  Brazil
## 27463                                                                                                                                          101 Dalmatians
## 27464                                                                                                                                                  Grease
## 27465                                                                                                                                      Fifth Element, The
## 27466                                                                                                                          Lost World: Jurassic Park, The
## 27468                                                                                                                                                 Contact
## 27469                                                                                                                               Hunt for Red October, The
## 27470                                                                                                                                    Seven Years in Tibet
## 27474                                                                                                                                                 Flubber
## 27475                                                                                                                                                 Titanic
## 27476                                                                                                                               Man in the Iron Mask, The
## 27477                                                                                                                                              Armageddon
## 27484                                                                                                                                          Police Academy
## 27485                                                                                                                        First Blood (Rambo: First Blood)
## 27486                                                                                                                                         Karate Kid, The
## 27487                                                                                                                                      Thin Red Line, The
## 27493                                                                                                                                            Notting Hill
## 27494                                                                                                                                                  Tarzan
## 27495                                                                                                                                            American Pie
## 27496                                                                                                                                           Runaway Bride
## 27497                                                                                                                                        Sixth Sense, The
## 27498                                                                                                                          Home Alone 2: Lost in New York
## 27501                                                                                                                                         Green Mile, The
## 27503                                                                                                                                       Final Destination
## 27505                                                                                                                                  Mission: Impossible II
## 27506                                                                                                                            Man with the Golden Gun, The
## 27507                                                                                                                                      Gone in 60 Seconds
## 27508                                                                                                                                             Scary Movie
## 27509                                                                                                                                             Coyote Ugly
## 27510                                                                                                                                           Space Cowboys
## 27511                                                                                                                               Emperor's New Groove, The
## 27512                                                                                                                                         What Women Want
## 27513                                                                                                                                               Cast Away
## 27514                                                                                                                                       Miss Congeniality
## 27515                                                                                                                                               Antitrust
## 27519                                                                                                                                        Knight's Tale, A
## 27521                                                                                                                                            Moulin Rouge
## 27522                                                                                                                                            Pearl Harbor
## 27523                                                                                                                                               Swordfish
## 27524                                                                                                                               Fast and the Furious, The
## 27525                                                                                                                            A.I. Artificial Intelligence
## 27526                                                                                                                                          Legally Blonde
## 27527                                                                                                                                       Coming to America
## 27528                                                                                                                                   Land Before Time, The
## 27529                                                                                                                                       Jurassic Park III
## 27530                                                                                                                                             Sea of Love
## 27533                                                                                                                                                Spy Game
## 27541                                                                                                                                        Transporter, The
## 27543                                                                                                                                               Ring, The
## 27544                                                                                                                                            Femme Fatale
## 27545                                                                                                                                         Die Another Day
## 27546                                                                                                                                       Gangs of New York
## 27548                                                                                                                                            Recruit, The
## 27550                                                                                                                                    Matrix Reloaded, The
## 27556                                                                                                                                          Johnny English
## 27557                                                                                                                                            Brother Bear
## 27558                                                                                                                                 Matrix Revolutions, The
## 27559                                                                                                                                         Mona Lisa Smile
## 27561                                                                                                                                                Paycheck
## 27562                                                                                                                                          50 First Dates
## 27563                                                                                                                   Eternal Sunshine of the Spotless Mind
## 27565                                                                                                                                 Day After Tomorrow, The
## 27567                                                                                                                                       Napoleon Dynamite
## 27568                                                                                                                                           Terminal, The
## 27569                                                                                                                                                    Taxi
## 27570                                                                                                                                         Fahrenheit 9/11
## 27571                                                                                                                                                I, Robot
## 27574                                                                                                                                                     Saw
## 27575                                                                                                                                                     Ray
## 27576                                                                                                                                        Incredibles, The
## 27577                                                                                                                                          Ocean's Twelve
## 27578                                                                                                                                               Ghost Dad
## 27579                                                                                                                        Lion King II: Simba's Pride, The
## 27580                                                                                                                                                  Taxi 2
## 27581                                                                                                                                       Cube 2: Hypercube
## 27582                                                                                                                                        Interpreter, The
## 27583                                                                                                                                            Aviator, The
## 27584                                                                                                                                                   Hitch
## 27585                                                                                                                                                Sin City
## 27587                                                                                                                                          Monster-in-Law
## 27588                                                                                                                                        Mr. & Mrs. Smith
## 27589                                                                                                                                               Bewitched
## 27590                                                                                            Asterix & Obelix vs. Caesar (Astérix et Obélix contre César)
## 27591                                                                                                                                        Just Like Heaven
## 27593                                                                                                                                                 Jarhead
## 27594                                                                                                                                                Casanova
## 27595                                                                                                                                 Ice Age 2: The Meltdown
## 27596                                                                                                                                 Mission: Impossible III
## 27598                                                                                                                                      Da Vinci Code, The
## 27599                                                                                                                                                    Cars
## 27600                                                                                                                                  Devil Wears Prada, The
## 27601                                                                                                                                  My Super Ex-Girlfriend
## 27604                                                                                                                                           Departed, The
## 27605                                                                                                                                         Children of Men
## 27607                                                                                                                                           Casino Royale
## 27610                                                                                                                                        Music and Lyrics
## 27611                                                                                                                                              Grindhouse
## 27613                                                                                                                Pirates of the Caribbean: At World's End
## 27615                                                                                                                                            Transformers
## 27616                                                                                                                                     Simpsons Movie, The
## 27624                                                                                                                                         Rambo (Rambo 4)
## 27625                                                                                                                                               In Bruges
## 27626                                                                                                                                       Definitely, Maybe
## 27627                                                                                                                                           Vantage Point
## 27630                                                                                                                                                   Taken
## 27632                                                                                                                                                 Hancock
## 27633                                                                                                                                              RocknRolla
## 27634                                                                                                                                     Slumdog Millionaire
## 27635                                                                                                                                       Quantum of Solace
## 27637                                                                                                                                                 Yes Man
## 27638                                                                                                            Fast & Furious (Fast and the Furious 4, The)
## 27641                                                                                                                                           Hangover, The
## 27644                                                                                                                                  She's Out of My League
## 27645                                                                                                                                How to Train Your Dragon
## 27646                                                                                                   Shrek Forever After (a.k.a. Shrek: The Final Chapter)
## 27647                                                                                                                                           Despicable Me
## 27648                                                                                                                                               Inception
## 27649                                                                                                                                                    Salt
## 27651                                                                                                                                                     Red
## 27653                                                                                                                                                  BURN-E
## 27654                                                                                                                                                     Rio
## 27656                                                                                                                        Burn Notice: The Fall of Sam Axe
## 27658                                                                                                                                           Puss in Boots
## 27664                                                                                                                                      Hotel Transylvania
## 27665                                                                                                                                              Life of Pi
## 27666                                                                                                                                             Croods, The
## 27667                                                                                                                                          Now You See Me
## 27669                                                                                                                                                   Red 2
## 27670                                                                                                                                              About Time
## 27671                                                                                                                                                  Frozen
## 27672                                                                                                                                Wolf of Wall Street, The
## 27674                                                                                                                                                     Her
## 27678                                                                                                                                           Freaky Friday
## 27686                                                                                                                                           Happy Gilmore
## 27691                                                                                                                                             Nine Months
## 27692                                                                                                                                                 Ed Wood
## 27705                                                                                                                                      Executive Decision
## 27730                                                                                                                                     Little Mermaid, The
## 27735                                                                                                                                     Romancing the Stone
## 27736                                                                                                                                         Karate Kid, The
## 27739                                                                                                                                       Ideal Husband, An
## 27740                                                                                                                                           Arachnophobia
## 27742                                                                                                                                        Sixth Sense, The
## 27760                                                                                                                                        Intact (Intacto)
## 27769                                                                                                                                          Calendar Girls
## 27774                                                                                                                                       Napoleon Dynamite
## 27779                                                                                                                                                Catwoman
## 27786                                                                                                                                             Wicker Park
## 27791                                                                                                        Motorcycle Diaries, The (Diarios de motocicleta)
## 27800                                                                                                                                            Aviator, The
## 27804                                                                                                                                Beverly Hillbillies, The
## 27805                                                                                                                                          Demolition Man
## 27816                                                                                                                                  Amityville Horror, The
## 27822                                                                                                                                     Alien: Resurrection
## 27826                                                                                                                                Exorcist II: The Heretic
## 27830                                                                                                                            Absent-Minded Professor, The
## 27831                                                                                                                                    Children of the Corn
## 27832                                                                                                                                      Addams Family, The
## 27833                                                                                                                                 Star Trek: Insurrection
## 27840                                                                                                               Star Wars: Episode I - The Phantom Menace
## 27841                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 27844                                                                                                              Allan Quatermain and the Lost City of Gold
## 27848                                                                                                                                           Bachelor, The
## 27851                                                                                                                       Baby... Secret of the Lost Legend
## 27852                                                                                                                                    Bear, The (Ours, L')
## 27856                                                                                                                         Braddock: Missing in Action III
## 27857                                                                                                                     Creature from the Black Lagoon, The
## 27860                                                                                                                                          Love Potion #9
## 27862                                                                                                                                     Cannonball Run, The
## 27864                                                                                                                     American Ninja 2: The Confrontation
## 27866                                                                                                                      Abbott and Costello Meet the Mummy
## 27867                                                                                                                                        Beastmaster, The
## 27871                                                                                                                Bad News Bears in Breaking Training, The
## 27873                                                                                                                                      Johnny Dangerously
## 27874                                                                                                                                         Die Another Day
## 27875                                                                                                                         Bolero (Uns et les autres, Les)
## 27877                                                                                                                                               Assassins
## 27885                                                                                                                                     Father of the Bride
## 27886                                                                                                                             Ghost and the Darkness, The
## 27890                                                                                                                                           Touch of Evil
## 27892                                                                                                                                          Big Sleep, The
## 27893                                                                                                                                 Speed 2: Cruise Control
## 27896                                                                                                         101 Dalmatians (One Hundred and One Dalmatians)
## 27898                                                                                                                                               Rocky III
## 27900                                                                                                                                          Arlington Road
## 27901                                                                                                                                             Boiler Room
## 27907                                                                                                                                          Monster's Ball
## 27910                                                                                                                              Good Night, and Good Luck.
## 27912                                                                                                                                              13 Tzameti
## 27915                                                                                                                              Postman, The (Postino, Il)
## 27916                                                                                                                     Rumble in the Bronx (Hont faan kui)
## 27917                                                                                                                                                 Rob Roy
## 27918                                                                                                            City Slickers II: The Legend of Curly's Gold
## 27920                                                                                                                                       Dial M for Murder
## 27921                                                                                                                                              Goodfellas
## 27923                                                                                                                                              Sting, The
## 27924                                                                                                                                      Dead Poets Society
## 27927                                                                                                                                              Die Hard 2
## 27928                                                                                                                         Star Trek II: The Wrath of Khan
## 27929                                                                                                                                                  Scream
## 27933                                                                                                                                     Edward Scissorhands
## 27936                                                                                                                                                   Shrek
## 27937                                                                                                                                                Red Heat
## 27938                                                                                                                                   Princess Diaries, The
## 27940                                                                                                                                       Kill Bill: Vol. 2
## 27943                                                                                                                         Alice Doesn't Live Here Anymore
## 27946                                                                                                                                               GoldenEye
## 27949                                                                                                                                              Braveheart
## 27950                                                                                                                      Star Wars: Episode IV - A New Hope
## 27951                                                                                                                                            Forrest Gump
## 27953                                                                                                                              Terminator 2: Judgment Day
## 27954                                                                                                                               Silence of the Lambs, The
## 27955                                                                                                         Wallace & Gromit: The Best of Aardman Animation
## 27957                                                                                                                         Wallace & Gromit: A Close Shave
## 27959                                                                                                                                       Wizard of Oz, The
## 27960                                                                                                                                                Die Hard
## 27961                                                                                                                    Wallace & Gromit: The Wrong Trousers
## 27962                                                                                                          Star Wars: Episode V - The Empire Strikes Back
## 27964                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 27965                                                                                                              Star Wars: Episode VI - Return of the Jedi
## 27966                                                                                                                                                   Alien
## 27967                                                                                                                                 Godfather: Part II, The
## 27968                                                                                                                Grand Day Out with Wallace and Gromit, A
## 27971                                                                                                                      Indiana Jones and the Last Crusade
## 27973                                                                                                                                             Matrix, The
## 27976                                                                                                                                              Goldfinger
## 27977                                                                                                                                              Fight Club
## 27981                                                                                                                                    Bourne Identity, The
## 27983                                                                                                                  Lord of the Rings: The Two Towers, The
## 27985                                                                                                                                        X2: X-Men United
## 27988                                                                                                          Lord of the Rings: The Return of the King, The
## 27989                                                                                                                Harry Potter and the Prisoner of Azkaban
## 27990                                                                                                                                              Collateral
## 27993                                                                                                             Porco Rosso (Crimson Pig) (Kurenai no buta)
## 27995                                                                                                                                           Ring Two, The
## 27996                                                                                                                       Charlie and the Chocolate Factory
## 27997                                                                                                                                                 Elektra
## 27999                                                                                                                                                   Hitch
## 28001                                                                                                                                                  Robots
## 28002                                                                                                                 Miss Congeniality 2: Armed and Fabulous
## 28004                                                                                                                                              Madagascar
## 28007                                                                                                                                        Wedding Crashers
## 28008                                                                                                                                                Sky High
## 28009                                                                                                                                 40-Year-Old Virgin, The
## 28010                                                                                                                                           Transporter 2
## 28011                                                                                                                                               Aeon Flux
## 28015                                                                                                                                                  Saw II
## 28016                                                                                            American Pie Presents: Band Camp (American Pie 4: Band Camp)
## 28017                                                                                                                                                 Jarhead
## 28018                                                                                                                                          Chicken Little
## 28022                                                                                                                                  Fun with Dick and Jane
## 28023                                                                                                                                                  Hostel
## 28024                                                                                                                                             Ultraviolet
## 28025                                                                                                                                 Ice Age 2: The Meltdown
## 28027                                                                                                                                 Mission: Impossible III
## 28029                                                                                                                                           Break-Up, The
## 28031                                                                                                                                         Lake House, The
## 28032                                                                                                                                                   Click
## 28033                                                                                                                                  Devil Wears Prada, The
## 28035                                                                                                                                       Lady in the Water
## 28037                                                                                                                                       Snakes on a Plane
## 28038                                                                                                             Talladega Nights: The Ballad of Ricky Bobby
## 28039                                                                                                                                      Jackass Number Two
## 28040                                                                     Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan
## 28041                                                                                                               Pan's Labyrinth (Laberinto del fauno, El)
## 28042                                                                                                                                           Departed, The
## 28044                                                                                                                                                 Saw III
## 28045                                                                                                                                            Flushed Away
## 28046                                                                                                                                           Casino Royale
## 28051                                                                                                                                          Number 23, The
## 28054                                                                                                                                         Blades of Glory
## 28056                                                                                                                                            Spider-Man 3
## 28057                                                                                                                                              Knocked Up
## 28058                                                                                                                                         Shrek the Third
## 28059                                                                                                               Fantastic Four: Rise of the Silver Surfer
## 28061                                                                                                                                           Evan Almighty
## 28062                                                                                                                     I Now Pronounce You Chuck and Larry
## 28065                                                                                                                                   Bourne Ultimatum, The
## 28069                                                                                                                               Resident Evil: Extinction
## 28070                                                                                                                                        30 Days of Night
## 28071                                                                                                                                                  Saw IV
## 28072                                                                                                                                               Bee Movie
## 28077                                                                                                                                                    Juno
## 28080                                                                                                                                             Cloverfield
## 28082                                                                                                                             Hellboy II: The Golden Army
## 28084                                                                                                                                           Vantage Point
## 28085                                                                                                                                               10,000 BC
## 28086                                                                                                                                     Horton Hears a Who!
## 28087                                                                                                                                        Dark Knight, The
## 28091                                                                                                      Indiana Jones and the Kingdom of the Crystal Skull
## 28093                                                                                                                           You Don't Mess with the Zohan
## 28094                                                                                                                                          Happening, The
## 28095                                                                                                                                    Incredible Hulk, The
## 28096                                                                                                                                                  WALL·E
## 28097                                                                                                                                                 Hancock
## 28098                                                                                                                                               Get Smart
## 28099                                                                                                                                              Mamma Mia!
## 28100                                                                                                                                          Tropic Thunder
## 28101                                                                                                                                      Burn After Reading
## 28102                                                                                                                                               Eagle Eye
## 28103                                                                                                                             Madagascar: Escape 2 Africa
## 28104                                                                                                                                       Quantum of Solace
## 28106                                                                                                                                                Twilight
## 28110                                                                                                                                    Inglourious Basterds
## 28113                                                                                                                                     Paranormal Activity
## 28114                                                                                                                                              Zombieland
## 28115                                                                                                                                                    2012
## 28116                                                                                                                                                  Avatar
## 28117                                                                                                                                         Sherlock Holmes
## 28119                                                                                                                                             Toy Story 3
## 28120                                                                                                                                               Inception
## 28122                                                                                                                                               127 Hours
## 28125                                                                                                                                      X-Men: First Class
## 28128                                                                                                                                  Dark Knight Rises, The
## 28132                                                                                                                                                 Skyfall
## 28134                                                                                                                                              Iron Man 3
## 28136                                                                                                                              X-Men: Days of Future Past
## 28137                                                                                                                                          Equalizer, The
## 28143                                                                                                                                          Jurassic World
## 28144                                                                                                                                  Penguins of Madagascar
## 28147                                                                                                                                              Cinderella
## 28148                                                                                                                                         Pitch Perfect 2
## 28149                                                                                                                                               Kung Fury
## 28150                                                                                                                                                 Minions
## 28151                                                                                                                                                  Batman
## 28152                                                                                                                                                Die Hard
## 28153                                                                                                                                         Victor/Victoria
## 28156                                                                                                                Cook the Thief His Wife & Her Lover, The
## 28160                                                                                                                                                  Aliens
## 28163                                                                                                                                      Dead Poets Society
## 28164                                                                                                                                            Shining, The
## 28166                                                                                                                                       Somewhere in Time
## 28168                                                                                                                                             Real Genius
## 28170                                                                                                                                         Field of Dreams
## 28171                                                                                                                                 When Harry Met Sally...
## 28172                                                                                                                         American Werewolf in London, An
## 28173                                                                                                                     Star Trek III: The Search for Spock
## 28174                                                                                                                           Star Trek IV: The Voyage Home
## 28175                                                                                                                                     Conan the Barbarian
## 28177                                                                                                                                             Deep Impact
## 28178                                                                                                                                       Perfect Murder, A
## 28181                                                                                                                                      Driving Miss Daisy
## 28183                                                                                                                                             Poltergeist
## 28184                                                                                                                                                Gremlins
## 28185                                                                                                                                            Goonies, The
## 28186                                                                                                                              Back to the Future Part II
## 28187                                                                                                                                                    Dune
## 28188                                                                                                                                     Black Cauldron, The
## 28189                                                                                                                                Honey, I Shrunk the Kids
## 28190                                                                                                                                                  Powder
## 28191                                                                                                                                           Mortal Kombat
## 28193                                                                                                                                                  Junior
## 28195                                                                                                                                               Tommy Boy
## 28196                                                                                                                                           Carlito's Way
## 28198                                                                                                                                               Space Jam
## 28199                                                                                                                                      'Til There Was You
## 28200                                                                                                                                     Singin' in the Rain
## 28201                                                                                                                                  Breakfast at Tiffany's
## 28202                                                                                                                                        Some Like It Hot
## 28203                                                                                                                                            My Fair Lady
## 28204                                                                                                                                      That Thing You Do!
## 28205                                                                                                                             People vs. Larry Flynt, The
## 28207                                                                                                                                              Highlander
## 28208                                                                                                                                                 Ben-Hur
## 28211                                                                                                                                          101 Dalmatians
## 28212                                                                                                                           Star Trek: The Motion Picture
## 28213                                                                                                                         Beavis and Butt-Head Do America
## 28214                                                                                                                                       Conspiracy Theory
## 28215                                                                                                                                         Negotiator, The
## 28216                                                                                                         101 Dalmatians (One Hundred and One Dalmatians)
## 28217                                                                                                                                               Elizabeth
## 28218                                                                                                                              10 Things I Hate About You
## 28219                                                                                                                                            Time Bandits
## 28220                                                                                                                                            Insider, The
## 28221                                                                                                                                           Patriot Games
## 28222                                                                                                                                          102 Dalmatians
## 28223                                                                                                                                         'Round Midnight
## 28226                                                                                                                                    Career Opportunities
## 28227                                                                                                                               "Great Performances" Cats
## 28228                                                                                                                                               10,000 BC
## 28229                                                                                                                                              100 Rifles
## 28230                                                                                                                                           Adventureland
## 28232                                                                                                                                    (500) Days of Summer
## 28233                                                                                                                                'Neath the Arizona Skies
## 28234                                                                                                                                                  Amelia
## 28235                                                                                                                                               Astro Boy
## 28240                                                                                                                                   2001: A Space Odyssey
## 28244                                                                                                                                                 Stalker
## 28247                                                                                                                                                    Jaws
## 28250                                                                                                                                             BASEketball
## 28254                                                                                                                            Fast Times at Ridgemont High
## 28256                                                                                                                                             Skulls, The
## 28259                                                                                                                           Saving Silverman (Evil Woman)
## 28261                                                                                                                                        Glass House, The
## 28263                                                                                                                                                  Duplex
## 28273                                                                                                                                        Moonrise Kingdom
## 28275                                                                                                                                              About Time
## 28285                                                                                                                                         Johnny Mnemonic
## 28286                                                                                                                                                 Species
## 28287                                                                                                                                               Coneheads
## 28288                                                                                                                                    Hot Shots! Part Deux
## 28290                                                                                                                            So I Married an Axe Murderer
## 28291                                                                                                                                   Three Musketeers, The
## 28292                                                                                                                                            True Romance
## 28293                                                                                                                                              Phenomenon
## 28295                                                                                                                                              Sting, The
## 28296                                                                                                                                      Young Frankenstein
## 28297                                                                                                                           Star Trek IV: The Voyage Home
## 28299                                                                                                                                         Lethal Weapon 2
## 28300                                                                                                                                                Rushmore
## 28301                                                                                                                                     Romancing the Stone
## 28302                                                                                                                          Rocky Horror Picture Show, The
## 28303                                                                                                                                           Arachnophobia
## 28304                                                                                                                                                  Casino
## 28305                                                                                                                                                    Babe
## 28306                                                                                                                                       Santa Clause, The
## 28307                                                                                                                                             Client, The
## 28308                                                                                                                                          Lion King, The
## 28309                                                                                                                                         River Wild, The
## 28310                                                                                                            City Slickers II: The Legend of Curly's Gold
## 28311                                                                                                                                               Coneheads
## 28312                                                                                                                                          Demolition Man
## 28314                                                                                                                                    Sleepless in Seattle
## 28315                                                                                                                                                   Fargo
## 28317                                                                                                                                                 Tin Cup
## 28318                                                                                                                         Monty Python and the Holy Grail
## 28319                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 28320                                                                                                                                             Stand by Me
## 28321                                                                                                                      Indiana Jones and the Last Crusade
## 28322                                                                                                                                 When Harry Met Sally...
## 28323                                                                                                                                              Die Hard 2
## 28324                                                                                                                                         Raising Arizona
## 28325                                                                                                                                                  Scream
## 28326                                                                                                                                     Breakfast Club, The
## 28327                                                                                                                                          Child's Play 3
## 28328                                                                                                                    Indiana Jones and the Temple of Doom
## 28329                                                                                                                                     Edward Scissorhands
## 28330                                                                                                                                           Bug's Life, A
## 28331                                                                                                                            Texas Chainsaw Massacre, The
## 28332                                                                                                                Leatherface: Texas Chainsaw Massacre III
## 28333                                                         Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre)
## 28343                                                                                                                                         Beautiful Girls
## 28380                                                                                                                                     My Fellow Americans
## 28381                                                                                                                                           Mars Attacks!
## 28384                                                                                                                                                  Scream
## 28387                                                                                                                               Men in Black (a.k.a. MIB)
## 28391                                                                                                                                               Toy Story
## 28392                                                                                                                                                 Jumanji
## 28393                                                                                                                             Father of the Bride Part II
## 28394                                                                                                                                               GoldenEye
## 28396                                                                                                                                   Sense and Sensibility
## 28397                                                                                                                          Ace Ventura: When Nature Calls
## 28399                                                                                                                      Twelve Monkeys (a.k.a. 12 Monkeys)
## 28400                                                                                                                                                    Babe
## 28402                                                                                                                                                Clueless
## 28403                                                                                                                                           Mortal Kombat
## 28404                                                                                                                                    Seven (a.k.a. Se7en)
## 28405                                                                                                                                              Pocahontas
## 28406                                                                                                                                     Usual Suspects, The
## 28407                                                                                                                                            Broken Arrow
## 28408                                                                                                                                           Happy Gilmore
## 28410                                                                                                                                                Bad Boys
## 28411                                                                                                                                 Basketball Diaries, The
## 28413                                                                                                                                                 Rob Roy
## 28414                                                                                                                                          Batman Forever
## 28415                                                                                                                                                  Casper
## 28416                                                                                                                                               Desperado
## 28417                                                                                                                              Die Hard: With a Vengeance
## 28418                                                                                                                                            First Knight
## 28419                                                                                                                                         Johnny Mnemonic
## 28420                                                                                                                                             Judge Dredd
## 28421                                                                                                                                                Mallrats
## 28422                                                                                                                                                Net, The
## 28423                                                                                                                                             Nine Months
## 28424                                                                                                                                              Waterworld
## 28425                                                                                                                                           Billy Madison
## 28427                                                                                                                                        Don Juan DeMarco
## 28428                                                                                                                         Dumb & Dumber (Dumb and Dumber)
## 28432                                                                                                                                            Little Women
## 28434                                                                                                                                                Outbreak
## 28436                                                                                                                                               Quiz Show
## 28437                                                                                                                                         Specialist, The
## 28438                                                                                                                                       Santa Clause, The
## 28440                                                                                                                                               Tommy Boy
## 28441                                                                                                                             What's Eating Gilbert Grape
## 28442                                                                                                                                 While You Were Sleeping
## 28443                                                                                                                                        Muriel's Wedding
## 28444                                                                                                                              Ace Ventura: Pet Detective
## 28445                                                                                                       Adventures of Priscilla, Queen of the Desert, The
## 28446                                                                                                                                             Client, The
## 28448                                                                                                                             Four Weddings and a Funeral
## 28450                                                                                                                                               Mask, The
## 28451                                                                                                                                                Maverick
## 28452                                                                                                                      Naked Gun 33 1/3: The Final Insult
## 28453                                                                                                                                           Reality Bites
## 28454                                                                                                                                             Richie Rich
## 28456                                                                                                                                                Airheads
## 28457                                                                                                                                   Beverly Hills Cop III
## 28458                                                                                                                                               Coneheads
## 28459                                                                                                                                                    Dave
## 28460                                                                                                                                      Dazed and Confused
## 28461                                                                                                                                          Demolition Man
## 28462                                                                                                                                              Free Willy
## 28463                                                                                                                                           Fugitive, The
## 28464                                                                                                                                     In the Line of Fire
## 28465                                                                                                                                           Jurassic Park
## 28466                                                                                                                                 Man Without a Face, The
## 28467                                                                                                                                  Much Ado About Nothing
## 28468                                                                                                                                          Mrs. Doubtfire
## 28473                                                                                                                                    Sleepless in Seattle
## 28474                                                                                                                                       Super Mario Bros.
## 28476                                                                                                                                   Three Musketeers, The
## 28477                                                                                                                                            True Romance
## 28478                                                                                                                                              Home Alone
## 28479                                                                                                                                                   Ghost
## 28480                                                                                                                                                 Aladdin
## 28481                                                                                                                              Terminator 2: Judgment Day
## 28482                                                                                                                                      Dances with Wolves
## 28483                                                                                                                                                  Batman
## 28485                                                                                                                         Snow White and the Seven Dwarfs
## 28486                                                                                                                                    Beauty and the Beast
## 28487                                                                                                                                               Pinocchio
## 28488                                                                                                                                            Pretty Woman
## 28489                                                                                                                                               Jane Eyre
## 28490                                                                                                                                     Mission: Impossible
## 28491                                                                                                                                           Moll Flanders
## 28492                                                                                                                                             Dragonheart
## 28493                                                                                                                               James and the Giant Peach
## 28494                                                                                                                                               Space Jam
## 28495                                                                                                                                                 Twister
## 28496                                                                                    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
## 28497                                                                                                                                              Striptease
## 28499                                                                                                                           Independence Day (a.k.a. ID4)
## 28500                                                                                                                            Hunchback of Notre Dame, The
## 28501                                                                                                                                          Cable Guy, The
## 28502                                                                                                                                         Time to Kill, A
## 28503                                                                                                                                   First Wives Club, The
## 28504                                                                                                                                                 Matilda
## 28507                                                                                                                                     Singin' in the Rain
## 28508                                                                                                                                  Breakfast at Tiffany's
## 28509                                                                                                                                                 Vertigo
## 28511                                                                                                                                            My Fair Lady
## 28512                                                                                                                                           Roman Holiday
## 28513                                                                                                                                       Wizard of Oz, The
## 28514                                                                                                                                      Gone with the Wind
## 28515                                                                                                                                            Citizen Kane
## 28516                                                                                                                                     Father of the Bride
## 28517                                                                                                                           Adventures of Robin Hood, The
## 28520                                                                                                                                           Fly Away Home
## 28521                                                                                                                                         Michael Collins
## 28522                                                                                                                                              Old Yeller
## 28523                                                                                                                                        Parent Trap, The
## 28524                                                                                                                                              Cinderella
## 28525                                                                                                                                 Sword in the Stone, The
## 28527                                                                                                                                            Mary Poppins
## 28528                                                                                                                                     Alice in Wonderland
## 28530                                                                                                                                                Die Hard
## 28532                                                                                                                    William Shakespeare's Romeo + Juliet
## 28535                                                                                                                            Monty Python's Life of Brian
## 28536                                                                                                                                           Dirty Dancing
## 28538                                                                                                                                                 Platoon
## 28539                                                                                                                                          Basic Instinct
## 28540                                                                                                                                                 Top Gun
## 28542                                                                                                                               Streetcar Named Desire, A
## 28543                                                                                                                         Monty Python and the Holy Grail
## 28544                                                                                                                    Wallace & Gromit: The Wrong Trousers
## 28545                                                                                                                                          Paths of Glory
## 28547                                                                                                                         One Flew Over the Cuckoo's Nest
## 28549                                                                                 Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark)
## 28550                                                                                                                                                  Aliens
## 28551                                                                                      Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il)
## 28552                                                                                                                                            12 Angry Men
## 28553                                                                                                                                      Lawrence of Arabia
## 28554                                                                                                                                     Clockwork Orange, A
## 28556                                                                                                                                          Apocalypse Now
## 28557                                                                                                                                        Army of Darkness
## 28558                                                                                                                                     Blues Brothers, The
## 28561                                                                                                                                                 Amadeus
## 28564                                                                                                                                         Terminator, The
## 28567                                                                                                                                           Graduate, The
## 28568                                                                                                                           Bridge on the River Kwai, The
## 28569                                                                                                                                            Shining, The
## 28570                                                                                                                                             Stand by Me
## 28571                                                                                                                             Evil Dead II (Dead by Dawn)
## 28572                                                                                                                                       Great Escape, The
## 28573                                                                                                                                           Groundhog Day
## 28574                                                                                                                                              Unforgiven
## 28575                                                                                                                                      Back to the Future
## 28580                                                                                                                                                 Ben-Hur
## 28581                                                                                                                                  Some Kind of Wonderful
## 28582                                                                                                                      Indiana Jones and the Last Crusade
## 28584                                                                                                                                         Field of Dreams
## 28586                                                                                                                                 When Harry Met Sally...
## 28587                                                                                                                                                  Carrie
## 28588                                                                                                                                              Die Hard 2
## 28589                                                                                                                                          Batman Returns
## 28591                                                                                                                                                    Jaws
## 28592                                                                                                                                           Mars Attacks!
## 28594                                                                                                                                                  Scream
## 28595                                                                                                                               Last of the Mohicans, The
## 28599                                                                                                                                           Donnie Brasco
## 28600                                                                                                                                               Liar Liar
## 28601                                                                                                                                     Grosse Pointe Blank
## 28602                                                                                                             Austin Powers: International Man of Mystery
## 28603                                                                                                                          Lost World: Jurassic Park, The
## 28604                                                                                                                                          Batman & Robin
## 28605                                                                                                                                                Hercules
## 28606                                                                                                                                My Best Friend's Wedding
## 28607                                                                                                                                                Face/Off
## 28608                                                                                                                               Men in Black (a.k.a. MIB)
## 28609                                                                                                                                                 Contact
## 28610                                                                                                                                               G.I. Jane
## 28611                                                                                                                                       Conspiracy Theory
## 28612                                                                                                                                           Air Force One
## 28613                                                                                                                               Hunt for Red October, The
## 28614                                                                                                                                    Seven Years in Tibet
## 28616                                                                                                                         I Know What You Did Last Summer
## 28618                                                                                                                                           Boogie Nights
## 28619                                                                                                                                                 Witness
## 28622                                                                                                                                                Scream 2
## 28623                                                                                                                                                 Titanic
## 28624                                                                                                                                     Tomorrow Never Dies
## 28625                                                                                                                                       Big Lebowski, The
## 28626                                                                                                                                     Wedding Singer, The
## 28627                                                                                                                                      As Good as It Gets
## 28630                                                                                                                                                   Mulan
## 28631                                                                                                                                              Armageddon
## 28632                                                                                                                                         Lethal Weapon 4
## 28633                                                                                                                            There's Something About Mary
## 28634                                                                                                                          All Quiet on the Western Front
## 28635                                                                                                                                    Mutiny on the Bounty
## 28637                                                                                                                                  Man for All Seasons, A
## 28638                                                                                                                                                 Oliver!
## 28639                                                                                                                                                   Rocky
## 28640                                                                                                                                       Kramer vs. Kramer
## 28641                                                                                                                                           Out of Africa
## 28642                                                                                                                                       Last Emperor, The
## 28644                                                                                                                                      Driving Miss Daisy
## 28646                                                                                                                                           Lethal Weapon
## 28647                                                                                                                                         Lethal Weapon 2
## 28648                                                                                                                                         Lethal Weapon 3
## 28649                                                                                                                                                Gremlins
## 28650                                                                                                                                            Goonies, The
## 28652                                                                                                                              Back to the Future Part II
## 28653                                                                                                                             Back to the Future Part III
## 28654                                                                                                                                      Dangerous Liaisons
## 28655                                                                                                                                Godfather: Part III, The
## 28657                                                                                                                                Honey, I Shrunk the Kids
## 28658                                                                                                                                      Lady and the Tramp
## 28659                                                                                                                                     Little Mermaid, The
## 28660                                                                                                                             Muppet Christmas Carol, The
## 28661                                                                                                         101 Dalmatians (One Hundred and One Dalmatians)
## 28663                                                                                                                                         Sleeping Beauty
## 28664                                                                                                                                                  Splash
## 28665                                                                                                                                                    Tron
## 28666                                                                                                                                          Outsiders, The
## 28667                                                                                                                    Indiana Jones and the Temple of Doom
## 28668                                                                                                                             1984 (Nineteen Eighty-Four)
## 28669                                                                                                                                          Dead Zone, The
## 28671                                                                                                                               Adventures in Babysitting
## 28672                                                                                                                                           Weird Science
## 28673                                                                                                                                         Charlotte's Web
## 28674                                                                                                                                     Secret of NIMH, The
## 28675                                                                                                                                         Sixteen Candles
## 28676                                                                                                                                          Pretty in Pink
## 28677                                                                                                                                  NeverEnding Story, The
## 28678                                                                                                                                                   Blade
## 28679                                                                                                                                             Beetlejuice
## 28680                                                                                                                                                  Willow
## 28682                                                                                                                                             Simon Birch
## 28684                                                                                                                                               Rush Hour
## 28685                                                                                                                                                   Ronin
## 28686                                                                                                                                     Edward Scissorhands
## 28687                                                                                                                                                    Antz
## 28688                                                                                                                                 Night at the Roxbury, A
## 28689                                                                                                                                         My Cousin Vinny
## 28690                                                                                                                                             Mighty, The
## 28694                                                                                                                                               Elizabeth
## 28695                                                                                                                                          Big Chill, The
## 28696                                                                                                                                           Bug's Life, A
## 28697                                                                                                                   Waking Ned Devine (a.k.a. Waking Ned)
## 28698                                                                                                                      Police Academy 6: City Under Siege
## 28699                                                                                                                                    Prince of Egypt, The
## 28700                                                                                                                                     Shakespeare in Love
## 28701                                                                                                                                  Miracle on 34th Street
## 28702                                                                                                                                     Romancing the Stone
## 28703                                                                                                                                                    Clue
## 28704                                                                                                                                         Karate Kid, The
## 28705                                                                                                                                Karate Kid, Part II, The
## 28706                                                                                                                                         You've Got Mail
## 28708                                                                                                                                            Faculty, The
## 28710                                                                                                                                                Fly, The
## 28711                                                                                                                                        Crocodile Dundee
## 28712                                                                                                                                          She's All That
## 28713                                                                                                                                                 Payback
## 28714                                                                                                                                             October Sky
## 28715                                                                                                                                            Office Space
## 28716                                                                                                                                      Planet of the Apes
## 28717                                                                                                                                            Analyze This
## 28718                                                                                                                                        Cruel Intentions
## 28723                                                                                                                                       Never Been Kissed
## 28724                                                                                                                                                Election
## 28725                                                                                                                                              Entrapment
## 28726                                                                                                                                              Mummy, The
## 28727                                                                                                               Star Wars: Episode I - The Phantom Menace
## 28728                                                                                                                                                Superman
## 28729                                                                                                                                             Superman II
## 28730                                                                                                                                            Superman III
## 28731                                                                                                                          Rocky Horror Picture Show, The
## 28732                                                                                                                                            Notting Hill
## 28733                                                                                                                   Austin Powers: The Spy Who Shagged Me
## 28735                                                                                                                                 General's Daughter, The
## 28737                                                                                                                                               Big Daddy
## 28738                                                                                                                                           Arachnophobia
## 28739                                                                                                                                          Wild Wild West
## 28740                                                                                                                                            American Pie
## 28741                                                                                                                                Blair Witch Project, The
## 28742                                                                                                                     Ghostbusters (a.k.a. Ghost Busters)
## 28743                                                                                                                                         Ghostbusters II
## 28744                                                                                                                                           Haunting, The
## 28745                                                                                                                                             Mystery Men
## 28746                                                                                                                                           Runaway Bride
## 28747                                                                                                                                               Spartacus
## 28748                                                                                                                                         Iron Giant, The
## 28749                                                                                                                                        Sixth Sense, The
## 28750                                                                                                                                               Airplane!
## 28751                                                                                                                                                     Big
## 28752                                                                                                                                      Christmas Story, A
## 28753                                                                                                                                       Universal Soldier
## 28756                                                                                                                                         Double Jeopardy
## 28757                                                                                                                                             Three Kings
## 28759                                                                                                                                          Risky Business
## 28761                                                                                                                                        Dirty Dozen, The
## 28762                                                                                                                          Home Alone 2: Lost in New York
## 28764                                                                                                                                Who Framed Roger Rabbit?
## 28765                                                                                                                                   House on Haunted Hill
## 28767                                                                                                                                     Bone Collector, The
## 28768                                                                                                                                            Insider, The
## 28769                                                                                                                                              Spaceballs
## 28770                                                                                                                                              Robin Hood
## 28772                                                                                                                Messenger: The Story of Joan of Arc, The
## 28773                                                                                                                                              Moonstruck
## 28776                                                                                                                                World Is Not Enough, The
## 28777                                                                                                                                                Scrooged
## 28778                                                                                                                                        Fatal Attraction
## 28779                                                                                                                                            Midnight Run
## 28780                                                                                                                                        Fisher King, The
## 28781                                                                                                                                             Toy Story 2
## 28783                                                                                                                                         Green Mile, The
## 28785                                                                                                                                       Anna and the King
## 28786                                                                                                                                              Easy Rider
## 28787                                                                                                                                            Galaxy Quest
## 28788                                                                                                                                Talented Mr. Ripley, The
## 28792                                                                                                                                              Encino Man
## 28793                                                                                                                                               Malcolm X
## 28794                                                                                                                                              Sister Act
## 28796                                                                                                                                           Wayne's World
## 28797                                                                                                                                  League of Their Own, A
## 28798                                                                                                                                           Patriot Games
## 28799                                                                                                                                          Bodyguard, The
## 28800                                                                                                                                    White Men Can't Jump
## 28801                                                                                                                                           Forever Young
## 28802                                                                                                                                                Scream 3
## 28804                                                                                                                                             Pitch Black
## 28805                                                                                                                                   Whole Nine Yards, The
## 28806                                                                                                                                         Mission to Mars
## 28807                                                                                                                                             Bull Durham
## 28808                                                                                                                                       Dog Day Afternoon
## 28809                                                                                                                                                     JFK
## 28810                                                                                                                                         Erin Brockovich
## 28811                                                                                                                                         Thelma & Louise
## 28812                                                                                                                                            Animal House
## 28813                                                                                                                                   Good Morning, Vietnam
## 28814                                                                                                                                          Romeo Must Die
## 28818                                                                                                                                              Parenthood
## 28820                                                                                                                                          Guys and Dolls
## 28821                                                                                                                                              Caddyshack
## 28825                                                                                                                                               Road Trip
## 28826                                                                                                                                  Mission: Impossible II
## 28827                                                                                                                                           Shanghai Noon
## 28828                                                                                                                                         Blazing Saddles
## 28829                                                                                                                                      Gone in 60 Seconds
## 28830                                                                                                                                              Titan A.E.
## 28831                                                                                                                                             Chicken Run
## 28832                                                                                                                                      Me, Myself & Irene
## 28833                                                                                                                                            Patriot, The
## 28834                                                                                                                                             Scary Movie
## 28837                                                                                                                                         What About Bob?
## 28838                                                                                                         Naked Gun: From the Files of Police Squad!, The
## 28839                                                                                                                 Naked Gun 2 1/2: The Smell of Fear, The
## 28840                                                                                                                                             Bring It On
## 28841                                                                                                                                              Turn It Up
## 28843                                                                                                                                     Remember the Titans
## 28844                                                                                                                                    Phantom of the Opera
## 28845                                                                                                                                        Meet the Parents
## 28846                                                                                                                                            Billy Elliot
## 28848                                                                                                                                        Charlie's Angels
## 28849                                                                                                      How the Grinch Stole Christmas (a.k.a. The Grinch)
## 28850                                                                                                        Crouching Tiger, Hidden Dragon (Wo hu cang long)
## 28851                                                                                                                            Planes, Trains & Automobiles
## 28854                                                                                                                                   Dude, Where's My Car?
## 28856                                                                                                                                         What Women Want
## 28858                                                                                                                                               Cast Away
## 28859                                                                                                                                       Miss Congeniality
## 28860                                                                                                                              O Brother, Where Art Thou?
## 28862                                                                                                                             Officer and a Gentleman, An
## 28863                                                                                                                                              Gettysburg
## 28864                                                                                                                                    Wedding Planner, The
## 28865                                                                                                                               Brave Little Toaster, The
## 28866                                                                                                                                       Empire of the Sun
## 28868                                                                                                                                            Mexican, The
## 28869                                                                                                                                              Navy Seals
## 28870                                                                                                                                       Death on the Nile
## 28871                                                                                                                                      Enemy at the Gates
## 28875                                                                                                                                                Scarface
## 28876                                                                                                                                      Mummy Returns, The
## 28881                                                                                                                                           City Slickers
## 28882                                                                                                                                           Eight Men Out
## 28883                                                                                                                                               Swordfish
## 28884                                                                                                                                 Lara Croft: Tomb Raider
## 28887                                                                                                                                         Crazy/Beautiful
## 28888                                                                                                                                           Scary Movie 2
## 28889                                                                                                                                     Lion in Winter, The
## 28890                                                                                                                                          Legally Blonde
## 28892                                                                                                                                                   Twins
## 28893                                                                                                                        Bill & Ted's Excellent Adventure
## 28894                                                                                                                                              Lean on Me
## 28895                                                                                                                                       Jurassic Park III
## 28896                                                                                                                                             Ghost World
## 28897                                                                                                                                      Planet of the Apes
## 28898                                                                                                                                             Rush Hour 2
## 28899                                                                                                                                          American Pie 2
## 28901                                                                                                                          Jay and Silent Bob Strike Back
## 28902                                                                                                                                          Ghosts of Mars
## 28903                                                                                                                                            Training Day
## 28904                                                                                                                                               Zoolander
## 28905                                                                                                                                             Serendipity
## 28906                                                                                                                                             Dirty Harry
## 28911                                                                                                                                                One, The
## 28912                                                                 Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone)
## 28913                                                                                                                                                Spy Game
## 28915                                                                                                           Amelie (Fabuleux destin d'Amélie Poulain, Le)
## 28920                                                                                                                                            Gosford Park
## 28921                                                                                                                                                I Am Sam
## 28922                                                                                                                                          Monster's Ball
## 28923                                                                                                           Brotherhood of the Wolf (Pacte des loups, Le)
## 28924                                                                                                                                Kung Pow: Enter the Fist
## 28925                                                                                                                             Dragon: The Bruce Lee Story
## 28928                                                                                                                                            Mean Machine
## 28929                                                                                                                                        We Were Soldiers
## 28931                                                                                                                                           Resident Evil
## 28932                                                                                                                                                Blade II
## 28933                                                                                                                                              Panic Room
## 28934                                                                                                                                     Sweetest Thing, The
## 28935                                                                                                                                My Big Fat Greek Wedding
## 28936                                                                                                                                    Three Men and a Baby
## 28937                                                                                                                                                  Enigma
## 28939                                                                                                                                               Iron Will
## 28941                                                                                                            Star Wars: Episode II - Attack of the Clones
## 28942                                                                                                                                                Insomnia
## 28943                                                                                                                        Spirit: Stallion of the Cimarron
## 28944                                                                                                                                   Sum of All Fears, The
## 28946                                                                                                                      Dangerous Lives of Altar Boys, The
## 28947                                                                                                                                           Lilo & Stitch
## 28949                                                                                                            Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2)
## 28950                                                                                                                                    K-19: The Widowmaker
## 28951                                                                                                                             Austin Powers in Goldmember
## 28952                                                                                                                                                   Signs
## 28953                                                                                                                                                     xXx
## 28954                                                                                                                                        Transporter, The
## 28955                                                                                                                                      Four Feathers, The
## 28957                                                                                                                                            Strange Brew
## 28958                                                                                                                                   Bowling for Columbine
## 28959                                                                                                                                               Ring, The
## 28960                                                                                                                                               Gallipoli
## 28961                                                                                                                                                  8 Mile
## 28962                                                                                                                 Harry Potter and the Chamber of Secrets
## 28963                                                                                                                                         Die Another Day
## 28964                                                                                                                                     Quiet American, The
## 28966                                                                                                                                                Drumline
## 28967                                                                                                                                           About Schmidt
## 28968                                                                                                                                                  Evelyn
## 28970                                                                                                                                       Gangs of New York
## 28971                                                                                                                                     Catch Me If You Can
## 28972                                                                                                                                              Hours, The
## 28973                                                                                                                                       Nicholas Nickleby
## 28975                                                                                                                                            Recruit, The
##       year                                                      genres userId
## 1     1995                                                       Drama      1
## 2     1941                            Animation|Children|Drama|Musical      1
## 3     1996                                                    Thriller      1
## 4     1981                            Action|Adventure|Sci-Fi|Thriller      1
## 6     1978                                                   Drama|War      1
## 7     1959                                      Action|Adventure|Drama      1
## 8     1982                                                       Drama      1
## 9     1992                             Fantasy|Horror|Romance|Thriller      1
## 10    1991                                                    Thriller      1
## 11    1979                                            Adventure|Sci-Fi      1
## 12    1996                            Adventure|Animation|Comedy|Crime      1
## 15    1980                                            Adventure|Comedy      1
## 16    1988                                    Action|Adventure|Fantasy      1
## 17    1998                 Adventure|Animation|Children|Comedy|Fantasy      1
## 18    1986                                Drama|Horror|Sci-Fi|Thriller      1
## 19    1981                             Adventure|Comedy|Fantasy|Sci-Fi      1
## 20    1974                                              Comedy|Western      1
## 26    1995                                        Comedy|Drama|Romance      2
## 27    1995                                                       Drama      2
## 29    1995                                                      Comedy      2
## 32    1995                                          Drama|Thriller|War      2
## 33    1995                                       Action|Crime|Thriller      2
## 34    1995                                        Action|Drama|Romance      2
## 35    1995                                       Action|Crime|Thriller      2
## 36    1995                                              Comedy|Romance      2
## 37    1995                                     Action|Adventure|Sci-Fi      2
## 39    1994                                                      Comedy      2
## 40    1994                                              Drama|Thriller      2
## 41    1994                                                Comedy|Drama      2
## 42    1994                                                      Comedy      2
## 47    1994                                                Comedy|Drama      2
## 49    1995                                Action|Drama|Sci-Fi|Thriller      2
## 51    1994                                                       Drama      2
## 53    1994                                        Comedy|Drama|Fantasy      2
## 54    1994                                       Comedy|Drama|Thriller      2
## 55    1995                                              Comedy|Romance      2
## 58    1994                                    Comedy|Drama|Romance|War      2
## 59    1994                                              Comedy|Romance      2
## 60    1994             Adventure|Animation|Children|Drama|Musical|IMAX      2
## 61    1994                                 Action|Comedy|Crime|Fantasy      2
## 62    1994                                               Action|Comedy      2
## 63    1994                                                Comedy|Drama      2
## 64    1994                                        Comedy|Drama|Romance      2
## 65    1994                                     Action|Romance|Thriller      2
## 66    1994                               Drama|Horror|Romance|Thriller      2
## 67    1994                                              Action|Fantasy      2
## 68    1993                                     Children|Comedy|Fantasy      2
## 70    1993                                                    Thriller      2
## 72    1993                                             Action|Thriller      2
## 74    1993                             Action|Adventure|Comedy|Fantasy      2
## 75    1993                                              Comedy|Romance      2
## 82    1993                                        Comedy|Drama|Romance      2
## 83    1994                                              Comedy|Romance      2
## 85    1993                             Action|Adventure|Comedy|Romance      2
## 87    1990                                             Children|Comedy      2
## 88    1990                       Comedy|Drama|Fantasy|Romance|Thriller      2
## 89    1992                 Adventure|Animation|Children|Comedy|Musical      2
## 93    1991                                       Crime|Horror|Thriller      2
## 94    1970                                          Animation|Children      2
## 97    1995                                  Adventure|Children|Fantasy      3
## 99    1994                                                 Crime|Drama      3
## 100   1995                                                      Comedy      3
## 103   1994                                     Children|Comedy|Fantasy      3
## 105   1994                                     Action|Romance|Thriller      3
## 106   1993                                                   Drama|War      3
## 107   1992                 Adventure|Animation|Children|Comedy|Musical      3
## 108   1989                                       Action|Crime|Thriller      3
## 109   1991                                       Crime|Horror|Thriller      3
## 110   1991             Animation|Children|Fantasy|Musical|Romance|IMAX      3
## 111   1996                           Action|Adventure|Romance|Thriller      3
## 113   1996                                Crime|Drama|Romance|Thriller      3
## 115   1983                                     Action|Adventure|Sci-Fi      3
## 117   1991                                          Comedy|Crime|Drama      3
## 119   1997                                        Action|Comedy|Sci-Fi      3
## 124   1989                                                      Horror      3
## 125   1999                                                      Comedy      3
## 126   1999                                                       Drama      3
## 127   1984                                        Action|Comedy|Sci-Fi      3
## 128   1999                                        Drama|Horror|Mystery      3
## 132   1992                                                      Comedy      3
## 135   2002                            Action|Adventure|Sci-Fi|Thriller      3
## 136   2002                                                 Documentary      3
## 137   2003                         Adventure|Animation|Children|Comedy      3
## 138   2003                              Action|Adventure|Drama|Fantasy      3
## 139   2004                                        Drama|Romance|Sci-Fi      3
## 140   2004                                                 Documentary      3
## 141   2004                                Action|Adventure|Sci-Fi|IMAX      3
## 142   2000                                            Animation|Comedy      3
## 143   2006                                 Action|Sci-Fi|Thriller|IMAX      3
## 146   2008                                     Action|Crime|Drama|IMAX      3
## 153   1995                                         Action|Crime|Sci-Fi      4
## 154   1995                                       Action|Crime|Thriller      4
## 158   1994                                      Adventure|Drama|Sci-Fi      4
## 164   1994                    Action|Adventure|Comedy|Romance|Thriller      4
## 165   1993                                     Children|Comedy|Fantasy      4
## 166   1993                                                 Crime|Drama      4
## 168   1993                                               Comedy|Sci-Fi      4
## 176   1990                                     Adventure|Drama|Western      4
## 236   1991                                       Action|Mystery|Sci-Fi      4
## 238   1986                                     Adventure|Comedy|Sci-Fi      4
## 239   1992                                                Action|Crime      4
## 244   1997                            Action|Adventure|Sci-Fi|Thriller      4
## 248   1998                                Crime|Drama|Mystery|Thriller      4
## 251   1998                                Action|Comedy|Crime|Thriller      4
## 255   1986                                   Adventure|Fantasy|Musical      4
## 259   1992                                   Action|Comedy|Crime|Drama      4
## 260   1984                                               Comedy|Horror      4
## 269   1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi      4
## 284   1982                                       Comedy|Crime|Thriller      4
## 294   1988                                    Action|Adventure|Fantasy      4
## 297   1988                                      Drama|Fantasy|Thriller      4
## 308   1990                                                Action|Crime      4
## 311   1982                                          Comedy|Documentary      4
## 317   1999                                                      Comedy      4
## 323   1992                                           Adventure|Romance      4
## 324   1985                                      Comedy|Horror|Thriller      4
## 327   1983                                     Horror|Mystery|Thriller      4
## 328   1986                                             Horror|Thriller      4
## 332   1990                                Action|Crime|Sci-Fi|Thriller      4
## 335   1982                                                      Horror      4
## 345   1993                                               Action|Comedy      4
## 349   1992                                                Comedy|Drama      4
## 351   1986                         Adventure|Animation|Children|Sci-Fi      4
## 357   1994                                            Adventure|Comedy      5
## 359   1994                                                      Comedy      5
## 367   1992                 Adventure|Animation|Children|Comedy|Musical      5
## 370   1996                               Comedy|Fantasy|Romance|Sci-Fi      5
## 371   1972                                                 Crime|Drama      5
## 372   1958                              Drama|Mystery|Romance|Thriller      5
## 376   1975                                                       Drama      5
## 377   1974                                                 Crime|Drama      5
## 381   1996                                               Drama|Romance      5
## 383   1997                            Action|Adventure|Sci-Fi|Thriller      5
## 391   1973                                              Horror|Mystery      5
## 392   1990                                Crime|Drama|Mystery|Thriller      5
## 396   1998                         Adventure|Animation|Children|Comedy      5
## 398   1999                                                Comedy|Crime      5
## 402   1999                                        Drama|Horror|Mystery      5
## 403   1999                                                      Comedy      5
## 404   1986                                                      Comedy      5
## 405   1999                                        Comedy|Drama|Fantasy      5
## 406   1999                 Adventure|Animation|Children|Comedy|Fantasy      5
## 407   1999                                      Drama|Mystery|Thriller      5
## 409   2000                                            Action|Drama|War      5
## 411   2000                                                      Comedy      5
## 414   2000                                                       Drama      5
## 416   2001         Adventure|Animation|Children|Comedy|Fantasy|Romance      5
## 417   2001                                       Drama|Musical|Romance      5
## 419   2001                                                      Comedy      5
## 420   2001                                              Crime|Thriller      5
## 422   2002                                                    Thriller      5
## 426   2002                                                 Documentary      5
## 428   2002                                           Adventure|Fantasy      5
## 430   2002                                        Comedy|Drama|Romance      5
## 434   2003                                        Comedy|Drama|Romance      5
## 438   2004                                                 Documentary      5
## 443   2005                      Adventure|Children|Comedy|Fantasy|IMAX      5
## 453   1995                                          Adventure|Children      6
## 454   1995                                         Action|Crime|Sci-Fi      6
## 463   1996                                                       Drama      6
## 464   1997                                        Comedy|Drama|Romance      6
## 465   1997                                             Action|Thriller      6
## 466   1997                                                      Comedy      6
## 467   1998                                       Drama|Sci-Fi|Thriller      6
## 468   1998                        Action|Crime|Mystery|Sci-Fi|Thriller      6
## 469   1989                                   Action|Comedy|Crime|Drama      6
## 473   1999                                                Comedy|Crime      6
## 474   1976                                     Action|Adventure|Sci-Fi      6
## 476   1999                                      Action|Sci-Fi|Thriller      6
## 477   1975                                Comedy|Horror|Musical|Sci-Fi      6
## 479   1999                                       Action|Comedy|Fantasy      6
## 481   1999                           Action|Adventure|Comedy|Drama|War      6
## 482   1999                                    Adventure|Comedy|Fantasy      6
## 484   2000                                      Horror|Sci-Fi|Thriller      6
## 485   2000                                   Animation|Children|Comedy      6
## 486   2001                                                Comedy|Drama      6
## 487   2001                             Mystery|Romance|Sci-Fi|Thriller      6
## 489   2002                                      Action|Adventure|Drama      6
## 492   2004                                      Adventure|Fantasy|IMAX      6
## 494   2004                                        Comedy|Drama|Romance      6
## 496   1995                 Adventure|Animation|Children|Comedy|Fantasy      7
## 497   1995                                   Action|Adventure|Thriller      7
## 498   1995                                       Comedy|Crime|Thriller      7
## 499   1995                                                       Drama      7
## 502   1996                                                      Comedy      7
## 507   1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller      7
## 508   1995                                               Drama|Romance      7
## 510   1994                                                Comedy|Drama      7
## 511   1994                                     Action|Adventure|Sci-Fi      7
## 513   1994                                      Adventure|Drama|Sci-Fi      7
## 514   1995                                                      Comedy      7
## 515   1994                                                Comedy|Drama      7
## 516   1994                                     Children|Comedy|Fantasy      7
## 517   1994                                    Comedy|Drama|Romance|War      7
## 518   1994                                              Comedy|Romance      7
## 519   1994             Adventure|Animation|Children|Drama|Musical|IMAX      7
## 520   1994                                 Action|Comedy|Crime|Fantasy      7
## 521   1994                                     Action|Romance|Thriller      7
## 524   1993                                                Comedy|Drama      7
## 526   1993                                        Comedy|Drama|Romance      7
## 530   1991                                               Action|Sci-Fi      7
## 532   1989                                       Action|Crime|Thriller      7
## 534   1991             Animation|Children|Fantasy|Musical|Romance|IMAX      7
## 535   1981                    Action|Adventure|Animation|Horror|Sci-Fi      7
## 537   1996                                              Comedy|Romance      7
## 539   1996                               Drama|Fantasy|Horror|Thriller      7
## 540   1996                           Action|Adventure|Romance|Thriller      7
## 541   1996                                               Action|Sci-Fi      7
## 543   1996                            Action|Adventure|Sci-Fi|Thriller      7
## 544   1996                                       Action|Drama|Thriller      7
## 546   1988                                       Action|Crime|Thriller      7
## 547   1971                             Children|Comedy|Fantasy|Musical      7
## 550   1982                                       Children|Drama|Sci-Fi      7
## 551   1975                                                Comedy|Crime      7
## 552   1981                            Action|Adventure|Sci-Fi|Thriller      7
## 556   1987                     Action|Adventure|Comedy|Fantasy|Romance      7
## 565   1985                                     Adventure|Comedy|Sci-Fi      7
## 567   1974                                              Comedy|Fantasy      7
## 570   1989                                            Action|Adventure      7
## 571   1982                                               Drama|Musical      7
## 573   1989                                              Comedy|Romance      7
## 574   1996                                        Comedy|Drama|Romance      7
## 575   1979                                            Adventure|Sci-Fi      7
## 576   1991                                       Action|Mystery|Sci-Fi      7
## 577   1989                                               Action|Sci-Fi      7
## 579   1984                                     Action|Adventure|Sci-Fi      7
## 580   1986                                     Adventure|Comedy|Sci-Fi      7
## 581   1987                                                      Comedy      7
## 583   1992                                  Action|Romance|War|Western      7
## 585   1995                                       Comedy|Drama|Thriller      8
## 589   1977                                     Action|Adventure|Sci-Fi      8
## 590   1994                                                       Drama      8
## 595   1993                                                      Comedy      8
## 596   1993                                                       Drama      8
## 602   1996                                              Drama|Thriller      8
## 604   1980                                     Action|Adventure|Sci-Fi      8
## 612   1993                                      Comedy|Fantasy|Romance      8
## 615   1989                                      Children|Drama|Fantasy      8
## 616   1996                                                       Drama      8
## 618   1996                                               Drama|Romance      8
## 620   1997                                   Action|Adventure|Thriller      8
## 621   1997                            Crime|Film-Noir|Mystery|Thriller      8
## 625   1998                                Crime|Drama|Fantasy|Thriller      8
## 627   1998                                       Drama|Sci-Fi|Thriller      8
## 630   1984                                      Comedy|Fantasy|Romance      8
## 631   1982                          Adventure|Animation|Children|Drama      8
## 636   1998                                             Action|Thriller      8
## 637   1989                                                      Comedy      8
## 640   1984                                        Action|Comedy|Sci-Fi      8
## 642   1999                                                      Comedy      8
## 644   1988                                Comedy|Drama|Fantasy|Romance      8
## 645   1983                                             Children|Comedy      8
## 646   1999                                     Horror|Mystery|Thriller      8
## 652   2000                                                       Drama      8
## 656   2000                                                       Drama      8
## 660   2001                                                Action|Drama      8
## 661   2001                 Adventure|Animation|Children|Comedy|Fantasy      8
## 662   2001                                  Adventure|Children|Fantasy      8
## 665   2001                                           Adventure|Fantasy      8
## 666   2001                                               Drama|Romance      8
## 668   2002                                Action|Adventure|Sci-Fi|IMAX      8
## 673   2002                                                 Documentary      8
## 675   2002                                                 Crime|Drama      8
## 677   2003                                                Action|Crime      8
## 680   2003                                              Drama|Thriller      8
## 681   2003                                  Action|Adventure|Drama|War      8
## 685   2004                                               Drama|Romance      8
## 688   2004                                               Comedy|Horror      8
## 689   2005                     Action|Crime|Film-Noir|Mystery|Thriller      8
## 693   2005                                              Comedy|Romance      8
## 694   2005                                              Drama|Thriller      8
## 695   2005                                       Drama|Musical|Romance      8
## 696   2005                                        Comedy|Drama|Romance      8
## 697   2006                                                       Drama      8
## 698   2006                                        Crime|Drama|Thriller      8
## 699   2006                                              Comedy|Romance      8
## 702   1995                                                       Drama      9
## 704   1995                                            Mystery|Thriller      9
## 712   1996                                   Action|Adventure|Thriller      9
## 714   1992                                               Drama|Romance      9
## 717   1996                                         Crime|Drama|Romance      9
## 718   1997                                              Comedy|Romance      9
## 723   1997                                               Drama|Romance      9
## 729   1992                                        Crime|Drama|Thriller      9
## 730   1998                                Action|Comedy|Crime|Thriller      9
## 733   1998                 Adventure|Animation|Children|Comedy|Fantasy      9
## 737   1998                                            Action|Drama|War      9
## 738   1999                                             Action|Thriller      9
## 740   1999                                                      Comedy      9
## 742   1999                                     Action|Adventure|Sci-Fi      9
## 748   1994                                                      Comedy     10
## 750   1989                                       Action|Crime|Thriller     10
## 752   1988                                       Action|Crime|Thriller     10
## 753   1992                                      Crime|Mystery|Thriller     10
## 754   1986                                              Action|Romance     10
## 761   1980                                       Action|Comedy|Musical     10
## 766   1997                                            Mystery|Thriller     10
## 767   1997                                   Action|Adventure|Thriller     10
## 769   1997                                        Action|Horror|Sci-Fi     10
## 772   1998                                    Adventure|Comedy|Western     10
## 774   1991                                              Comedy|Romance     10
## 777   1982                                                Action|Drama     10
## 781   1999                                      Horror|Sci-Fi|Thriller     10
## 782   1999                                              Drama|Thriller     10
## 784   1999                                 Action|Crime|Drama|Thriller     10
## 786   1999                                                      Comedy     10
## 788   1999                                             Horror|Thriller     10
## 789   1999                                                    Thriller     10
## 792   1996                               Action|Comedy|Horror|Thriller     11
## 794   1995                                    Adventure|Children|Drama     11
## 797   1996                                                      Comedy     11
## 802   1998                                Action|Comedy|Crime|Thriller     11
## 803   1994                                             Children|Comedy     11
## 805   1999                                        Drama|Horror|Mystery     11
## 806   1989                                                       Drama     11
## 807   2002                                                 Documentary     11
## 813   2009                                 Comedy|Crime|Drama|Thriller     11
## 817   2010                                                 Documentary     11
## 819   2010                                    Adventure|Drama|Thriller     11
## 829   1994                                                Drama|Horror     12
## 830   1993                                                       Drama     12
## 831   1993                                                       Drama     12
## 832   1996                                 Comedy|Crime|Drama|Thriller     12
## 833   1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     12
## 835   1996                                               Action|Sci-Fi     12
## 836   1964                             Children|Comedy|Fantasy|Musical     12
## 837   1951                Adventure|Animation|Children|Fantasy|Musical     12
## 838   1973                                               Comedy|Sci-Fi     12
## 839   1987                     Action|Adventure|Comedy|Fantasy|Romance     12
## 842   1977                                              Comedy|Romance     12
## 844   1988                                                       Drama     12
## 845   1982                            Action|Adventure|Sci-Fi|Thriller     12
## 847   1997                                        Comedy|Drama|Romance     12
## 848   1998                                                Comedy|Crime     12
## 849   1984                                              Comedy|Romance     12
## 850   1998                         Adventure|Animation|Children|Comedy     12
## 852   1968                                         Action|Drama|Sci-Fi     12
## 853   1982                                               Horror|Sci-Fi     12
## 855   1999                                                      Comedy     12
## 856   1999                                                       Drama     12
## 857   1999                                      Drama|Mystery|Thriller     12
## 858   1999                                                       Drama     12
## 860   2000                                                      Comedy     12
## 863   1984                                      Horror|Sci-Fi|Thriller     12
## 864   1990                                                      Comedy     12
## 865   1950                                                      Sci-Fi     12
## 866   1984                                                       Drama     12
## 868   2000                                                Comedy|Drama     12
## 870   2000                                          Animation|Children     12
## 871   1959                                               Drama|Mystery     12
## 872   1991                                                      Comedy     12
## 874   2000                              Action|Adventure|Comedy|Sci-Fi     12
## 875   2000                                              Comedy|Romance     12
## 877   1990                                               Action|Comedy     12
## 878   1989                                                       Drama     12
## 879   2000                                                      Comedy     12
## 881   1999                                     Action|Adventure|Sci-Fi     12
## 883   1991                                                      Comedy     12
## 884   1953                                               Drama|Western     12
## 885   1965                                              Comedy|Western     12
## 887   2000                                        Comedy|Drama|Romance     12
## 888   2000                                                       Drama     12
## 891   1995                                            Mystery|Thriller     13
## 894   1994                                 Comedy|Crime|Drama|Thriller     13
## 898   1993                            Action|Adventure|Sci-Fi|Thriller     13
## 899   1993                                                       Drama     13
## 902   1990                       Comedy|Drama|Fantasy|Romance|Thriller     13
## 905   1939                          Adventure|Children|Fantasy|Musical     13
## 906   1991                                             Adventure|Drama     13
## 908   1993                                      Comedy|Fantasy|Romance     13
## 909   1998                                Action|Comedy|Crime|Thriller     13
## 912   1999                                      Action|Sci-Fi|Thriller     13
## 913   1999                                              Comedy|Romance     13
## 915   1999                                        Drama|Horror|Mystery     13
## 916   1983                                             Children|Comedy     13
## 917   1999                                                       Drama     13
## 918   1986                                                      Comedy     13
## 919   1999                 Adventure|Animation|Children|Comedy|Fantasy     13
## 921   1992                                                Comedy|Drama     13
## 922   1979                           Adventure|Children|Comedy|Musical     13
## 923   2000                             Action|Adventure|Comedy|Western     13
## 926   1991                                              Comedy|Western     13
## 927   2001                                                      Comedy     13
## 929   2001                 Adventure|Animation|Children|Comedy|Fantasy     13
## 935   2007                                       Action|Crime|Thriller     13
## 942   2012                                Action|Adventure|Sci-Fi|IMAX     13
## 943   1937                    Animation|Children|Drama|Fantasy|Musical     14
## 945   1997                                               Drama|Romance     14
## 946   1978                                      Children|Comedy|Sci-Fi     14
## 947   1998                         Adventure|Animation|Children|Comedy     14
## 948   1998                                           Animation|Musical     14
## 949   1999                                     Action|Adventure|Sci-Fi     14
## 950   1999                                     Action|Adventure|Comedy     14
## 951   1984                                        Action|Comedy|Sci-Fi     14
## 952   1999                            Action|Adventure|Children|Comedy     14
## 953   1999                                              Comedy|Romance     14
## 954   1999                                                Comedy|Drama     14
## 956   1999                                     Children|Comedy|Fantasy     14
## 958   2000                                                      Sci-Fi     14
## 959   2000                                   Action|Adventure|Thriller     14
## 961   2000                                      Action|Sci-Fi|Thriller     14
## 963   1995                 Adventure|Animation|Children|Comedy|Fantasy     15
## 964   1995                                  Adventure|Children|Fantasy     15
## 967   1995                                   Action|Adventure|Thriller     15
## 968   1995                                        Comedy|Drama|Romance     15
## 969   1995                                                       Drama     15
## 970   1995                                                 Crime|Drama     15
## 971   1995                                               Drama|Romance     15
## 972   1995                                                      Comedy     15
## 974   1995                         Crime|Drama|Horror|Mystery|Thriller     15
## 975   1995                                               Drama|Romance     15
## 977   1995                                              Children|Drama     15
## 978   1995                                                 Crime|Drama     15
## 979   1995                                              Comedy|Romance     15
## 980   1995                                    Action|Adventure|Fantasy     15
## 983   1995                                        Comedy|Drama|Romance     15
## 984   1995                                                       Drama     15
## 985   1996                               Action|Comedy|Horror|Thriller     15
## 987   1996                                        Comedy|Drama|Romance     15
## 988   1996                                   Action|Adventure|Thriller     15
## 990   1996                                                      Comedy     15
## 991   1996                           Adventure|Children|Comedy|Musical     15
## 992   1995                                            Action|Drama|War     15
## 994   1995                               Action|Adventure|Comedy|Crime     15
## 996   1996                                                      Comedy     15
## 997   1995                          Action|Comedy|Crime|Drama|Thriller     15
## 999   1995                                        Adventure|Drama|IMAX     15
## 1000  1995                               Action|Adventure|Comedy|Crime     15
## 1001  1995                                                  Comedy|War     15
## 1002  1995                             Action|Adventure|Mystery|Sci-Fi     15
## 1003  1995                                          Drama|Thriller|War     15
## 1005  1995                                      Action|Romance|Western     15
## 1007  1995                                       Action|Crime|Thriller     15
## 1008  1995                             Action|Adventure|Crime|Thriller     15
## 1009  1995                                      Action|Sci-Fi|Thriller     15
## 1012  1995                                              Comedy|Romance     15
## 1013  1995                                       Action|Crime|Thriller     15
## 1014  1995                                                       Drama     15
## 1015  1995                                               Horror|Sci-Fi     15
## 1016  1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller     15
## 1017  1995                                     Action|Adventure|Sci-Fi     15
## 1018  1994                                                   Drama|War     15
## 1020  1995                                                      Comedy     15
## 1022  1994                                              Drama|Thriller     15
## 1023  1995                                              Drama|Thriller     15
## 1024  1994                                            Adventure|Comedy     15
## 1028  1995                                              Comedy|Romance     15
## 1030  1994                                                 Crime|Drama     15
## 1031  1994                                              Comedy|Romance     15
## 1032  1994                                                Drama|Horror     15
## 1034  1992                                       Drama|Fantasy|Romance     15
## 1035  1994                                       Action|Crime|Thriller     15
## 1036  1995                                Action|Drama|Sci-Fi|Thriller     15
## 1043  1994                                     Action|Adventure|Sci-Fi     15
## 1044  1994                                        Comedy|Drama|Fantasy     15
## 1045  1994                                                 Crime|Drama     15
## 1046  1995                                                Comedy|Drama     15
## 1047  1994                                      Adventure|Drama|Sci-Fi     15
## 1048  1995                                            Mystery|Thriller     15
## 1049  1995                                              Comedy|Romance     15
## 1050  1994                                                      Comedy     15
## 1051  1994                                                      Comedy     15
## 1052  1994                                 Action|Crime|Drama|Thriller     15
## 1053  1994                               Action|Crime|Fantasy|Thriller     15
## 1054  1994                                     Children|Comedy|Fantasy     15
## 1055  1994                                    Comedy|Drama|Romance|War     15
## 1056  1994                                              Comedy|Romance     15
## 1058  1994                                 Action|Comedy|Crime|Fantasy     15
## 1059  1994                                               Action|Comedy     15
## 1060  1994                                                Comedy|Drama     15
## 1061  1994                                        Comedy|Drama|Romance     15
## 1062  1992                                                    Thriller     15
## 1065  1994                               Drama|Horror|Romance|Thriller     15
## 1066  1994                                                      Comedy     15
## 1068  1993                                   Action|Adventure|Thriller     15
## 1069  1993                                               Comedy|Sci-Fi     15
## 1070  1993                                              Comedy|Romance     15
## 1072  1993                                     Action|Adventure|Sci-Fi     15
## 1073  1993                                              Drama|Thriller     15
## 1075  1993                                           Action|Comedy|War     15
## 1076  1994                                                      Comedy     15
## 1077  1993                                             Action|Thriller     15
## 1078  1993                            Action|Adventure|Sci-Fi|Thriller     15
## 1079  1993                                              Drama|Thriller     15
## 1080  1993                                                       Drama     15
## 1081  1993                             Action|Adventure|Comedy|Fantasy     15
## 1083  1993                                                Comedy|Drama     15
## 1084  1993                                                       Drama     15
## 1085  1993                                               Drama|Romance     15
## 1086  1993                                                      Comedy     15
## 1087  1993                                                       Drama     15
## 1089  1993                                                       Drama     15
## 1090  1993                                        Comedy|Drama|Romance     15
## 1091  1993                                                    Thriller     15
## 1093  1993                                     Comedy|Romance|Thriller     15
## 1095  1993                          Animation|Children|Fantasy|Musical     15
## 1097  1993                                                 Documentary     15
## 1098  1995                                                Comedy|Drama     15
## 1099  1994                                                Comedy|Drama     15
## 1100  1990                                             Children|Comedy     15
## 1101  1990                       Comedy|Drama|Fantasy|Romance|Thriller     15
## 1102  1992                 Adventure|Animation|Children|Comedy|Musical     15
## 1104  1990                                     Adventure|Drama|Western     15
## 1107  1937                    Animation|Children|Drama|Fantasy|Musical     15
## 1108  1990                                              Comedy|Romance     15
## 1110  1981                    Action|Adventure|Animation|Horror|Sci-Fi     15
## 1111  1996                                Crime|Drama|Mystery|Thriller     15
## 1112  1996                                      Action|Crime|Drama|War     15
## 1114  1996                                                      Comedy     15
## 1115  1995                                            Comedy|Drama|War     15
## 1116  1968                                     Adventure|Comedy|Sci-Fi     15
## 1117  1965                       Drama|Mystery|Romance|Sci-Fi|Thriller     15
## 1118  1996                                              Comedy|Romance     15
## 1119  1996                                  Adventure|Animation|Comedy     15
## 1120  1996                               Drama|Fantasy|Horror|Thriller     15
## 1121  1996                                   Action|Adventure|Thriller     15
## 1122  1996                           Action|Adventure|Romance|Thriller     15
## 1123  1995                                   Animation|Children|Comedy     15
## 1124  1996                                      Action|Sci-Fi|Thriller     15
## 1126  1996                                                Comedy|Crime     15
## 1128  1996                            Action|Adventure|Sci-Fi|Thriller     15
## 1129  1996                                             Comedy|Thriller     15
## 1130  1996                                                      Comedy     15
## 1131  1996                                       Action|Drama|Thriller     15
## 1132  1996                               Comedy|Fantasy|Romance|Sci-Fi     15
## 1133  1996                                      Comedy|Horror|Thriller     15
## 1135  1996                                               Drama|Romance     15
## 1137  1996                                              Comedy|Romance     15
## 1138  1996                                              Crime|Thriller     15
## 1139  1996                                   Action|Adventure|Thriller     15
## 1148  1959                                                Comedy|Crime     15
## 1152  1964                                Comedy|Drama|Musical|Romance     15
## 1153  1953                                        Comedy|Drama|Romance     15
## 1154  1939                          Adventure|Children|Fantasy|Musical     15
## 1155  1939                                           Drama|Romance|War     15
## 1156  1950                                     Drama|Film-Noir|Romance     15
## 1159  1950                                                       Drama     15
## 1160  1945                                    Mystery|Romance|Thriller     15
## 1161  1946                              Children|Drama|Fantasy|Romance     15
## 1163  1993                                                      Comedy     15
## 1164  1965                                             Musical|Romance     15
## 1167  1996                                       Action|Drama|Thriller     15
## 1168  1996                                               Drama|Romance     15
## 1170  1971                             Children|Comedy|Fantasy|Musical     15
## 1172  1967                                                 Crime|Drama     15
## 1173  1987                                       Drama|Musical|Romance     15
## 1175  1992                                      Crime|Mystery|Thriller     15
## 1176  1991                                                       Drama     15
## 1180  1990                                        Action|Drama|Romance     15
## 1181  1986                                              Action|Romance     15
## 1182  1996                                                Comedy|Drama     15
## 1184  1986                                               Drama|Mystery     15
## 1185  1975                                    Adventure|Comedy|Fantasy     15
## 1186  1996                                                 Documentary     15
## 1187  1993                             Animation|Children|Comedy|Crime     15
## 1189  1989                                                Comedy|Drama     15
## 1191  1957                                                   Drama|War     15
## 1193  1996                                           Drama|Romance|War     15
## 1195  1988                                                 Documentary     15
## 1198  1987                     Action|Adventure|Comedy|Fantasy|Romance     15
## 1200  1985                                              Fantasy|Sci-Fi     15
## 1202  1966                                    Action|Adventure|Western     15
## 1204  1962                                         Adventure|Drama|War     15
## 1206  1962                                                       Drama     15
## 1210  1987                                       Drama|Fantasy|Romance     15
## 1211  1949                                  Film-Noir|Mystery|Thriller     15
## 1212  1990                                                 Crime|Drama     15
## 1214  1993                      Action|Adventure|Comedy|Fantasy|Horror     15
## 1215  1985                                                   Drama|War     15
## 1217  1960                                                Crime|Horror     15
## 1218  1980                                       Action|Comedy|Musical     15
## 1224  1977                                              Comedy|Romance     15
## 1226  1981                                            Action|Drama|War     15
## 1228  1971                                        Comedy|Drama|Romance     15
## 1229  1984                                      Action|Sci-Fi|Thriller     15
## 1230  1990                                                Comedy|Drama     15
## 1232  1989                                                       Drama     15
## 1234  1958                                    Crime|Film-Noir|Thriller     15
## 1235  1990                               Action|Crime|Romance|Thriller     15
## 1237  1963                                               Drama|Fantasy     15
## 1239  1948                              Action|Adventure|Drama|Western     15
## 1241  1986                                             Adventure|Drama     15
## 1242  1931                                    Crime|Film-Noir|Thriller     15
## 1243  1963                                  Action|Adventure|Drama|War     15
## 1245  1981                       Action|Drama|Mystery|Romance|Thriller     15
## 1250  1970                                                   Drama|War     15
## 1251  1967                                                       Drama     15
## 1252  1991                                                       Drama     15
## 1253  1940                                            Comedy|Drama|War     15
## 1254  1952                                               Drama|Western     15
## 1255  1946                                     Crime|Film-Noir|Mystery     15
## 1256  1959                                      Action|Adventure|Drama     15
## 1259  1987                                               Drama|Romance     15
## 1263  1989                                      Children|Drama|Fantasy     15
## 1264  1975                                             Adventure|Drama     15
## 1265  1969                                              Action|Western     15
## 1267  1992                               Action|Horror|Sci-Fi|Thriller     15
## 1268  1963                                             Horror|Thriller     15
## 1269  1958                                               Horror|Sci-Fi     15
## 1270  1992                             Fantasy|Horror|Romance|Thriller     15
## 1271  1992                                             Horror|Thriller     15
## 1272  1996                            Action|Adventure|Sci-Fi|Thriller     15
## 1273  1996                                                       Drama     15
## 1274  1996                                                 Documentary     15
## 1275  1990                                   Action|Adventure|Thriller     15
## 1276  1992                                                Action|Crime     15
## 1277  1978                                      Comedy|Musical|Romance     15
## 1278  1992                                       Action|Drama|Thriller     15
## 1280  1996                                        Action|Comedy|Sci-Fi     15
## 1281  1996                                               Drama|Romance     15
## 1284  1996                            Adventure|Animation|Comedy|Crime     15
## 1289  1997                                                Comedy|Drama     15
## 1290  1997                              Action|Romance|Sci-Fi|Thriller     15
## 1291  1996                                              Drama|Thriller     15
## 1292  1996                                Comedy|Drama|Mystery|Romance     15
## 1293  1997                                                      Comedy     15
## 1294  1997                                        Comedy|Crime|Romance     15
## 1295  1996                                               Drama|Romance     15
## 1296  1997                                                      Comedy     15
## 1297  1997                                                      Comedy     15
## 1298  1997                                     Action|Adventure|Comedy     15
## 1299  1997                              Action|Adventure|Comedy|Sci-Fi     15
## 1300  1997                                                Comedy|Drama     15
## 1301  1997                            Action|Adventure|Sci-Fi|Thriller     15
## 1303  1997                                   Action|Adventure|Thriller     15
## 1304  1997                                     Action|Romance|Thriller     15
## 1305  1997                           Action|Adventure|Fantasy|Thriller     15
## 1306  1997                                              Comedy|Romance     15
## 1310  1997                                 Action|Crime|Drama|Thriller     15
## 1311  1997                              Drama|Mystery|Romance|Thriller     15
## 1312  1997                                             Action|Thriller     15
## 1313  1990                                   Action|Adventure|Thriller     15
## 1314  1997                                             Adventure|Drama     15
## 1315  1997                                         Action|Thriller|War     15
## 1320  1997                                     Horror|Mystery|Thriller     15
## 1321  1997                                      Drama|Mystery|Thriller     15
## 1322  1997                                                 Documentary     15
## 1323  1997                                       Drama|Sci-Fi|Thriller     15
## 1324  1981                                                  Comedy|War     15
## 1325  1997                                                       Drama     15
## 1327  1998                                               Drama|Romance     15
## 1328  1998                                         Comedy|Drama|Sci-Fi     15
## 1330  1997                                        Action|Horror|Sci-Fi     15
## 1331  1997                                                       Drama     15
## 1335  1997                                               Drama|Romance     15
## 1336  1997                                   Action|Adventure|Thriller     15
## 1337  1997                                        Crime|Drama|Thriller     15
## 1338  1998                                                Comedy|Crime     15
## 1339  1998                                               Drama|Romance     15
## 1340  1997                                                      Comedy     15
## 1342  1998                                       Action|Crime|Thriller     15
## 1343  1998                                                      Comedy     15
## 1344  1998                                Crime|Drama|Fantasy|Thriller     15
## 1345  1998                                              Comedy|Romance     15
## 1346  1998                                             Sci-Fi|Thriller     15
## 1347  1997                                        Comedy|Drama|Romance     15
## 1348  1998                                       Action|Crime|Thriller     15
## 1349  1998                                Crime|Drama|Mystery|Thriller     15
## 1350  1998                                                       Drama     15
## 1351  1998                                                Comedy|Drama     15
## 1352  1997                                                Comedy|Drama     15
## 1354  1998                                     Action|Adventure|Sci-Fi     15
## 1355  1997                                Crime|Drama|Mystery|Thriller     15
## 1356  1998                                                Comedy|Drama     15
## 1360  1998                                               Horror|Sci-Fi     15
## 1361  1998                                       Drama|Sci-Fi|Thriller     15
## 1362  1998                                      Action|Sci-Fi|Thriller     15
## 1364  1997                                      Drama|Mystery|Thriller     15
## 1365  1998                                        Comedy|Drama|Romance     15
## 1366  1998                                               Drama|Romance     15
## 1367  1997                                                Comedy|Drama     15
## 1368  1998                        Action|Crime|Mystery|Sci-Fi|Thriller     15
## 1370  1998                                                Comedy|Drama     15
## 1371  1998                              Action|Romance|Sci-Fi|Thriller     15
## 1375  1967                                               Drama|Mystery     15
## 1376  1969                                                       Drama     15
## 1377  1971                                       Action|Crime|Thriller     15
## 1378  1976                                                       Drama     15
## 1381  1988                                                       Drama     15
## 1382  1989                                                       Drama     15
## 1383  1971                                               Drama|Mystery     15
## 1385  1982                                             Horror|Thriller     15
## 1387  1987                                   Action|Comedy|Crime|Drama     15
## 1388  1984                                               Comedy|Horror     15
## 1391  1927                                                Drama|Sci-Fi     15
## 1392  1989                                     Adventure|Comedy|Sci-Fi     15
## 1393  1990                             Adventure|Comedy|Sci-Fi|Western     15
## 1394  1942                                    Animation|Children|Drama     15
## 1396  1988                                               Drama|Romance     15
## 1397  1997                                               Drama|Romance     15
## 1398  1998                                            Action|Drama|War     15
## 1399  1981                            Action|Adventure|Children|Comedy     15
## 1400  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     15
## 1401  1998                         Action|Crime|Drama|Mystery|Thriller     15
## 1402  1998                                                      Comedy     15
## 1404  1986                                      Drama|Mystery|Thriller     15
## 1405  1984                                      Comedy|Fantasy|Romance     15
## 1409  1991                                     Children|Comedy|Fantasy     15
## 1410  1998                               Action|Crime|Mystery|Thriller     15
## 1411  1987                                            Adventure|Comedy     15
## 1412  1985                                       Comedy|Fantasy|Sci-Fi     15
## 1413  1982                                           Adventure|Fantasy     15
## 1414  1986                                        Comedy|Drama|Romance     15
## 1415  1980                                            Adventure|Comedy     15
## 1416  1968                                       Drama|Horror|Thriller     15
## 1417  1984                                  Adventure|Children|Fantasy     15
## 1418  1998                                      Action|Horror|Thriller     15
## 1420  1951                              Crime|Drama|Film-Noir|Thriller     15
## 1422  1998                                                       Drama     15
## 1425  1989                                        Comedy|Drama|Romance     15
## 1426  1992                                        Crime|Drama|Thriller     15
## 1427  1993                                               Drama|Romance     15
## 1428  1998                                Action|Comedy|Crime|Thriller     15
## 1429  1998                                       Action|Crime|Thriller     15
## 1430  1998                                                Comedy|Drama     15
## 1431  1982                               Action|Horror|Sci-Fi|Thriller     15
## 1433  1990                                       Drama|Fantasy|Romance     15
## 1434  1998                 Adventure|Animation|Children|Comedy|Fantasy     15
## 1435  1992                                                      Comedy     15
## 1436  1975                                               Drama|Musical     15
## 1437  1984                                                      Sci-Fi     15
## 1438  1980                                                       Drama     15
## 1440  1998                                        Comedy|Drama|Fantasy     15
## 1441  1997                                    Comedy|Drama|Romance|War     15
## 1442  1998                                                 Crime|Drama     15
## 1443  1998                                                       Drama     15
## 1444  1998                                             Action|Thriller     15
## 1445  1998                                                       Drama     15
## 1446  1998                                                     Romance     15
## 1447  1957                                                       Drama     15
## 1448  1998                                             Action|Thriller     15
## 1449  1998                         Adventure|Animation|Children|Comedy     15
## 1450  1998                                                       Drama     15
## 1451  1998                                                       Drama     15
## 1452  1933                             Action|Adventure|Fantasy|Horror     15
## 1453  1985                                        Comedy|Drama|Romance     15
## 1454  1985                                        Comedy|Crime|Mystery     15
## 1455  1984                                                Comedy|Crime     15
## 1456  1998                                                Comedy|Crime     15
## 1457  1998                                        Crime|Drama|Thriller     15
## 1459  1998                                        Comedy|Drama|Romance     15
## 1460  1985                             Action|Adventure|Comedy|Romance     15
## 1461  1984                             Action|Adventure|Comedy|Romance     15
## 1462  1985                                               Comedy|Sci-Fi     15
## 1464  1998                                              Comedy|Romance     15
## 1465  1998                                            Action|Drama|War     15
## 1466  1998                                               Horror|Sci-Fi     15
## 1467  1997                                                       Drama     15
## 1468  1999                                                Comedy|Drama     15
## 1469  1986                                Drama|Horror|Sci-Fi|Thriller     15
## 1470  1986                                Crime|Drama|Mystery|Thriller     15
## 1472  1999                                             Action|Thriller     15
## 1473  1999                                                       Drama     15
## 1475  1999                                      Drama|Mystery|Thriller     15
## 1476  1976                                     Action|Adventure|Sci-Fi     15
## 1477  1999                                                      Comedy     15
## 1478  1999                                                       Drama     15
## 1479  1998                                       Comedy|Crime|Thriller     15
## 1480  1999                                             Horror|Thriller     15
## 1481  1999                                                Action|Crime     15
## 1484  1999                                                      Comedy     15
## 1485  1998                                                       Drama     15
## 1486  1998                                      Crime|Mystery|Thriller     15
## 1487  1999                                                Comedy|Crime     15
## 1488  1999                                              Comedy|Romance     15
## 1489  1998                                               Drama|Romance     15
## 1491  1999                                                      Comedy     15
## 1492  1999                                                      Comedy     15
## 1493  1999                                      Action|Sci-Fi|Thriller     15
## 1494  1999                                              Crime|Thriller     15
## 1495  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     15
## 1496  1998                                               Drama|Fantasy     15
## 1497  1999                                     Action|Adventure|Sci-Fi     15
## 1499  1931                                         Drama|Horror|Sci-Fi     15
## 1500  1975                                Comedy|Horror|Musical|Sci-Fi     15
## 1502  1998                                                       Drama     15
## 1503  1999                                     Action|Adventure|Comedy     15
## 1504  1998                                               Drama|Mystery     15
## 1505  1998                                                Action|Crime     15
## 1506  1990                                               Comedy|Horror     15
## 1507  1999                                    Animation|Comedy|Musical     15
## 1508  1999                                Action|Comedy|Sci-Fi|Western     15
## 1509  1999                                                       Drama     15
## 1510  1999                                              Comedy|Romance     15
## 1511  1999                                                    Thriller     15
## 1512  1999                                             Children|Comedy     15
## 1513  1999                                       Drama|Horror|Thriller     15
## 1515  1999                                             Horror|Thriller     15
## 1517  1989                                       Comedy|Fantasy|Sci-Fi     15
## 1518  1999                                                      Comedy     15
## 1519  1999                               Action|Horror|Sci-Fi|Thriller     15
## 1520  1999                                       Action|Comedy|Fantasy     15
## 1521  1956                                             Crime|Film-Noir     15
## 1522  1962                                               Drama|Romance     15
## 1523  1999                                                      Comedy     15
## 1524  1999                   Adventure|Animation|Children|Drama|Sci-Fi     15
## 1525  1999                                        Drama|Horror|Mystery     15
## 1526  1999                                              Action|Mystery     15
## 1527  2000                                                 Crime|Drama     15
## 1530  1983                                                      Comedy     15
## 1532  1993                        Crime|Drama|Mystery|Romance|Thriller     15
## 1533  1975                              Drama|Mystery|Romance|Thriller     15
## 1534  1999                                              Drama|Thriller     15
## 1535  1999                                     Horror|Mystery|Thriller     15
## 1538  1999                                 Action|Crime|Drama|Thriller     15
## 1541  1999                                                       Drama     15
## 1543  1983                                                      Comedy     15
## 1549  1996                                        Crime|Drama|Thriller     15
## 1552  1999                                                       Drama     15
## 1554  1987                          Action|Crime|Drama|Sci-Fi|Thriller     15
## 1556  1989                                   Action|Adventure|Thriller     15
## 1560  1999                                              Comedy|Romance     15
## 1561  1999                                                    Thriller     15
## 1563  1999                                                 Documentary     15
## 1564  1998                                                Drama|Sci-Fi     15
## 1566  1989                                                 Crime|Drama     15
## 1567  1993                                                Action|Drama     15
## 1571  1991                                    Mystery|Romance|Thriller     15
## 1572  1999                                    Adventure|Comedy|Fantasy     15
## 1574  1998                                                 Documentary     15
## 1575  1999                              Fantasy|Horror|Mystery|Romance     15
## 1576  1999                                   Action|Adventure|Thriller     15
## 1578  1948                                                       Drama     15
## 1581  1991                                                Action|Drama     15
## 1583  1999                      Action|Fantasy|Horror|Mystery|Thriller     15
## 1584  1999                 Adventure|Animation|Children|Comedy|Fantasy     15
## 1586  1999                                                Comedy|Drama     15
## 1587  1937                                                   Drama|War     15
## 1588  1999                                                      Comedy     15
## 1589  1999                                                 Crime|Drama     15
## 1590  1999                                                       Drama     15
## 1591  1999                                              Drama|Thriller     15
## 1592  1971                                                       Drama     15
## 1593  1999                                     Children|Comedy|Fantasy     15
## 1594  1999                                                       Drama     15
## 1595  1969                                             Adventure|Drama     15
## 1596  1999                                                       Drama     15
## 1597  1999                                                Comedy|Drama     15
## 1599  1999                                      Drama|Mystery|Thriller     15
## 1600  1999                                                       Drama     15
## 1601  1999                                                 Documentary     15
## 1602  1999                                                       Drama     15
## 1604  1990                                            Mystery|Thriller     15
## 1605  2000                                              Comedy|Romance     15
## 1607  1993                                                       Drama     15
## 1608  1992                                                      Comedy     15
## 1609  1992                                                Comedy|Drama     15
## 1610  1992                                 Action|Crime|Drama|Thriller     15
## 1612  1992                                Crime|Drama|Mystery|Thriller     15
## 1615  1992                               Action|Crime|Thriller|Western     15
## 1616  1992                                                 Crime|Drama     15
## 1617  2000                              Comedy|Horror|Mystery|Thriller     15
## 1618  2000                                 Action|Crime|Drama|Thriller     15
## 1619  2000                                             Adventure|Drama     15
## 1620  2000                                                      Comedy     15
## 1624  1931                                        Comedy|Drama|Romance     15
## 1625  2000                                             Action|Thriller     15
## 1627  1999                                              Drama|Thriller     15
## 1630  1991                                Comedy|Drama|Fantasy|Romance     15
## 1631  1988                                        Comedy|Drama|Romance     15
## 1632  1975                                                 Crime|Drama     15
## 1633  1991                                      Drama|Mystery|Thriller     15
## 1634  1986                               Adventure|Crime|Drama|Romance     15
## 1635  2000                                                       Drama     15
## 1637  1991                                       Adventure|Crime|Drama     15
## 1638  1978                                                      Comedy     15
## 1639  1989                                            Animation|Comedy     15
## 1640  1944                                       Crime|Drama|Film-Noir     15
## 1641  1987                                            Comedy|Drama|War     15
## 1642  1963                                    Adventure|Drama|Thriller     15
## 1643  1936                                        Comedy|Drama|Romance     15
## 1646  1995                                                Comedy|Drama     15
## 1648  2000                                                    Thriller     15
## 1649  1991                                    Adventure|Comedy|Fantasy     15
## 1650  1990                                       Drama|Horror|Thriller     15
## 1653  2000                                              Drama|Thriller     15
## 1654  2000                                               Drama|Romance     15
## 1655  1987                                      Action|Sci-Fi|Thriller     15
## 1656  2000                                                       Drama     15
## 1657  2000                               Crime|Horror|Mystery|Thriller     15
## 1659  1999                                                      Comedy     15
## 1660  1982                                                Comedy|Drama     15
## 1661  1980                                                      Comedy     15
## 1662  2000                                         Action|Thriller|War     15
## 1663  1999                                               Drama|Romance     15
## 1664  2000                                                Comedy|Drama     15
## 1667  1988                                               Drama|Romance     15
## 1668  2000                                      Action|Adventure|Drama     15
## 1669  2000                                Crime|Drama|Romance|Thriller     15
## 1671  2000                                                Comedy|Crime     15
## 1672  2000                                   Action|Adventure|Thriller     15
## 1673  2000                             Action|Adventure|Comedy|Western     15
## 1674  1999                                                      Comedy     15
## 1676  1964                                                    Thriller     15
## 1677  1977                                   Action|Adventure|Thriller     15
## 1678  1979                            Action|Adventure|Sci-Fi|Thriller     15
## 1679  1974                                   Action|Adventure|Thriller     15
## 1680  1974                                              Comedy|Western     15
## 1683  2000                                                Action|Crime     15
## 1686  1973                                                 Crime|Drama     15
## 1687  1925                                                   Drama|War     15
## 1688  2000                  Action|Adventure|Animation|Children|Sci-Fi     15
## 1689  1999                                                       Drama     15
## 1690  2000                                   Animation|Children|Comedy     15
## 1691  2000                                            Adventure|Comedy     15
## 1692  2000                                              Drama|Thriller     15
## 1693  1986                                       Action|Crime|Thriller     15
## 1694  1998                                                 Crime|Drama     15
## 1696  1999                                                      Comedy     15
## 1697  1999                                                      Comedy     15
## 1698  1966                                               Drama|Mystery     15
## 1699  2000                                     Action|Adventure|Sci-Fi     15
## 1701  2000                                        Drama|Horror|Mystery     15
## 1702  1999                                Crime|Drama|Romance|Thriller     15
## 1703  1959                                               Drama|Mystery     15
## 1704  1999                                                       Drama     15
## 1705  2000                                        Comedy|Drama|Romance     15
## 1706  2000                                      Horror|Sci-Fi|Thriller     15
## 1707  2000                              Action|Adventure|Comedy|Sci-Fi     15
## 1708  2000                                                      Comedy     15
## 1709  1999                                           Drama|Romance|War     15
## 1710  2000                                                      Comedy     15
## 1711  2000                                       Drama|Horror|Thriller     15
## 1714  2000                                                      Horror     15
## 1715  2000                         Comedy|Crime|Drama|Romance|Thriller     15
## 1716  2000                                              Crime|Thriller     15
## 1717  2000                                                       Drama     15
## 1718  2000                                               Drama|Musical     15
## 1719  2000                                                      Comedy     15
## 1721  2000                                                      Comedy     15
## 1725  2000                                       Drama|Horror|Thriller     15
## 1726  2000                                                       Drama     15
## 1727  2000                                                      Comedy     15
## 1728  2000                                                       Drama     15
## 1729  2000                                               Action|Comedy     15
## 1730  2000                                                      Comedy     15
## 1731  2000                                      Action|Sci-Fi|Thriller     15
## 1734  2000                                      Action|Sci-Fi|Thriller     15
## 1736  2000                                     Children|Comedy|Fantasy     15
## 1737  1999                                                 Documentary     15
## 1738  2000                                   Animation|Children|Comedy     15
## 1739  2000                                               Drama|Romance     15
## 1742  2000                                                       Drama     15
## 1743  2000                                            Action|Adventure     15
## 1744  1987                                   Action|Adventure|Thriller     15
## 1745  1986                         Adventure|Animation|Children|Sci-Fi     15
## 1746  1987                                                       Drama     15
## 1747  1985                                                      Comedy     15
## 1748  2000                                       Comedy|Crime|Thriller     15
## 1749  2000                                               Drama|Romance     15
## 1752  2000                                              Comedy|Romance     15
## 1753  2000                                                       Drama     15
## 1754  2000                                                    Thriller     15
## 1755  2000                                                       Drama     15
## 1756  2000                                                       Drama     15
## 1757  2000                                        Comedy|Drama|Romance     15
## 1758  2000                                                Comedy|Crime     15
## 1759  2000                                      Adventure|Comedy|Crime     15
## 1761  2000                                                      Horror     15
## 1764  2000                                                Drama|Horror     15
## 1765  1987                            Crime|Film-Noir|Mystery|Thriller     15
## 1766  2001                                        Crime|Drama|Thriller     15
## 1767  2000                                                       Drama     15
## 1771  1987                                        Comedy|Drama|Romance     15
## 1772  1984                                   Action|Comedy|Crime|Drama     15
## 1773  1987                              Action|Adventure|Comedy|Sci-Fi     15
## 1775  2001                                             Horror|Thriller     15
## 1776  2001                                              Comedy|Romance     15
## 1777  2001                                    Animation|Comedy|Fantasy     15
## 1778  2001                                               Action|Comedy     15
## 1779  2001                                                    Thriller     15
## 1780  2001                                              Comedy|Romance     15
## 1782  2001                                                   Drama|War     15
## 1783  2001                                                      Comedy     15
## 1785  2001                            Action|Adventure|Children|Comedy     15
## 1787  2001                               Action|Crime|Mystery|Thriller     15
## 1788  2001                                                 Crime|Drama     15
## 1789  2001                                        Comedy|Drama|Romance     15
## 1790  2001                            Adventure|Comedy|Mystery|Romance     15
## 1791  1983                                          Action|Crime|Drama     15
## 1792  2001                            Action|Adventure|Comedy|Thriller     15
## 1794  2001                                       Action|Comedy|Romance     15
## 1796  2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     15
## 1797  2001                                       Drama|Musical|Romance     15
## 1798  2001                                    Action|Drama|Romance|War     15
## 1799  1991                                              Comedy|Western     15
## 1801  2001                                               Comedy|Sci-Fi     15
## 1802  2001                                          Action|Crime|Drama     15
## 1803  1991                                       Action|Crime|Thriller     15
## 1805  2001                                            Action|Adventure     15
## 1806  2001                                       Action|Crime|Thriller     15
## 1807  2001                                      Adventure|Drama|Sci-Fi     15
## 1808  2001                                               Drama|Romance     15
## 1809  2000                                                 Crime|Drama     15
## 1810  2000                                               Drama|Romance     15
## 1811  2001                                                      Comedy     15
## 1812  2000                                Crime|Drama|Mystery|Thriller     15
## 1813  2001                                             Children|Comedy     15
## 1814  2001                                                      Comedy     15
## 1815  1986                                          Comedy|Crime|Drama     15
## 1817  2001                                              Comedy|Romance     15
## 1818  2001                                                Action|Drama     15
## 1819  2001                                        Crime|Drama|Thriller     15
## 1820  2001                                        Comedy|Drama|Romance     15
## 1822  1988                                              Drama|Thriller     15
## 1823  1989                                     Adventure|Comedy|Sci-Fi     15
## 1824  1989                                              Comedy|Romance     15
## 1826  2001                            Action|Adventure|Sci-Fi|Thriller     15
## 1827  2001                                              Comedy|Romance     15
## 1828  2001                                                Comedy|Drama     15
## 1829  2000                                        Comedy|Drama|Musical     15
## 1830  2001                               Action|Adventure|Drama|Sci-Fi     15
## 1831  1989                                                Action|Drama     15
## 1832  1989                               Drama|Horror|Mystery|Thriller     15
## 1833  1989                                                      Comedy     15
## 1834  1989                                               Action|Comedy     15
## 1836  1989                                                      Comedy     15
## 1837  2001                                     Children|Comedy|Romance     15
## 1838  2001                                               Action|Comedy     15
## 1841  2001        Action|Animation|Comedy|Crime|Drama|Romance|Thriller     15
## 1842  2001                               Drama|Horror|Mystery|Thriller     15
## 1843  2001                                                       Drama     15
## 1844  2001                                           Drama|Romance|War     15
## 1847  2001                                            Adventure|Comedy     15
## 1848  2000                                              Romance|Sci-Fi     15
## 1849  2001                                                      Horror     15
## 1850  2001                                        Crime|Drama|Thriller     15
## 1851  2001                                                      Comedy     15
## 1852  2001                                              Comedy|Romance     15
## 1853  2001                                        Comedy|Crime|Romance     15
## 1854  2001                      Crime|Drama|Film-Noir|Mystery|Thriller     15
## 1857  2001                                                 Crime|Drama     15
## 1859  2001                                                       Drama     15
## 1860  2001                                      Comedy|Fantasy|Romance     15
## 1861  2001                                  Adventure|Children|Fantasy     15
## 1863  2001                           Drama|Fantasy|Horror|Thriller|War     15
## 1866  2001                                            Action|Drama|War     15
## 1868  2001                                              Comedy|Romance     15
## 1869  2001                                                      Comedy     15
## 1870  2001                             Mystery|Romance|Sci-Fi|Thriller     15
## 1872  2001                                              Comedy|Romance     15
## 1874  2001                                               Drama|Romance     15
## 1875  1969                                               Drama|Romance     15
## 1876  1957                                      Drama|Mystery|Thriller     15
## 1878  2001                                        Comedy|Drama|Mystery     15
## 1879  2001                                               Drama|Romance     15
## 1880  2001                                     Action|Mystery|Thriller     15
## 1881  1970                                            Comedy|Drama|War     15
## 1882  2002                                               Drama|Romance     15
## 1884  2001                                                Comedy|Drama     15
## 1886  2001                                        Comedy|Crime|Mystery     15
## 1887  1972                                     Comedy|Mystery|Thriller     15
## 1888  2002                                              Fantasy|Horror     15
## 1890  2002                                         Action|Comedy|Crime     15
## 1891  2002                                     Action|Adventure|Sci-Fi     15
## 1892  2002                         Adventure|Animation|Children|Comedy     15
## 1893  2002                               Action|Horror|Sci-Fi|Thriller     15
## 1894  2002                                               Action|Comedy     15
## 1895  2001                                              Comedy|Romance     15
## 1896  2001                                               Drama|Romance     15
## 1897  2002                                      Action|Horror|Thriller     15
## 1898  2002                                                    Thriller     15
## 1900  1991                                              Comedy|Romance     15
## 1901  2002                                                      Comedy     15
## 1902  1950                                         Crime|Drama|Mystery     15
## 1903  2002                                              Drama|Thriller     15
## 1904  2002                                              Comedy|Romance     15
## 1905  2001                                              Comedy|Romance     15
## 1906  2002                                              Comedy|Romance     15
## 1907  1987                                                      Comedy     15
## 1908  2002                           Action|Adventure|Fantasy|Thriller     15
## 1909  2000                                              Crime|Thriller     15
## 1910  1992                                                Comedy|Drama     15
## 1911  1990                                               Drama|Romance     15
## 1912  2002                            Action|Adventure|Sci-Fi|Thriller     15
## 1913  2002                                                      Comedy     15
## 1914  2002                                              Drama|Thriller     15
## 1916  2002                                Action|Adventure|Sci-Fi|IMAX     15
## 1917  2002                         Action|Crime|Drama|Mystery|Thriller     15
## 1918  2001                                                       Drama     15
## 1919  2002                                              Drama|Thriller     15
## 1920  1972                                                Drama|Sci-Fi     15
## 1921  2002                                       Comedy|Drama|Thriller     15
## 1922  2002                                     Action|Mystery|Thriller     15
## 1923  2002                   Adventure|Children|Comedy|Fantasy|Mystery     15
## 1924  2002                         Adventure|Animation|Children|Sci-Fi     15
## 1926  2002                                              Comedy|Romance     15
## 1927  2002                                     Children|Comedy|Fantasy     15
## 1928  2002                                        Action|Comedy|Sci-Fi     15
## 1929  2002                                    Action|Adventure|Fantasy     15
## 1930  2002                                                 Crime|Drama     15
## 1932  2002                                 Action|Comedy|Horror|Sci-Fi     15
## 1933  2002                                                      Comedy     15
## 1935  2002                                      Horror|Sci-Fi|Thriller     15
## 1936  2002                                          Adventure|Children     15
## 1937  2002                                       Action|Crime|Thriller     15
## 1938  2002                                        Comedy|Drama|Musical     15
## 1940  2002                                     Adventure|Drama|Romance     15
## 1941  2002                                              Drama|Thriller     15
## 1942  1991                                   Action|Comedy|Romance|War     15
## 1943  1987                               Comedy|Crime|Romance|Thriller     15
## 1944  1984                                                      Comedy     15
## 1945  2002                                                Comedy|Drama     15
## 1946  2002                                        Comedy|Drama|Romance     15
## 1947  2001                                 Adventure|Animation|Fantasy     15
## 1948  2002                                              Comedy|Romance     15
## 1949  2002                                      Crime|Mystery|Thriller     15
## 1950  1983                                                      Comedy     15
## 1953  2002                                        Comedy|Drama|Romance     15
## 1955  2002                                               Drama|Romance     15
## 1957  2002                                              Crime|Thriller     15
## 1958  2002                                           Adventure|Fantasy     15
## 1959  2002                                   Action|Adventure|Thriller     15
## 1960  2002                                               Drama|Romance     15
## 1963  2002                                      Action|Sci-Fi|Thriller     15
## 1964  2001                                         Comedy|Drama|Horror     15
## 1965  2002                                                Comedy|Drama     15
## 1967  2002                                                 Crime|Drama     15
## 1968  2002                                                 Crime|Drama     15
## 1970  2002                                        Crime|Drama|Thriller     15
## 1971  1990                                          Comedy|Crime|Drama     15
## 1972  2002                                                 Crime|Drama     15
## 1973  2002                                  Comedy|Crime|Drama|Musical     15
## 1975  2002                                 Comedy|Crime|Drama|Thriller     15
## 1976  2002                       Action|Adventure|Crime|Drama|Thriller     15
## 1977  1993                                                      Comedy     15
## 1978  1982                                        Comedy|Drama|Romance     15
## 1979  2003                                             Action|Thriller     15
## 1980  2003                                              Comedy|Romance     15
## 1981  2003                                                Action|Crime     15
## 1982  1990                                                 Crime|Drama     15
## 1983  2003                                                      Comedy     15
## 1984  1991                                                      Comedy     15
## 1985  2002                                        Comedy|Drama|Romance     15
## 1987  2002                                              Drama|Thriller     15
## 1988  2001                            Action|Animation|Sci-Fi|Thriller     15
## 1989  2003                                                      Comedy     15
## 1990  2003                                              Comedy|Musical     15
## 1991  2001                                                 Documentary     15
## 1992  1971                                              Mystery|Sci-Fi     15
## 1994  2002                                                 Documentary     15
## 1995  2003                            Action|Adventure|Sci-Fi|Thriller     15
## 1996  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 1997  2003                                Comedy|Drama|Fantasy|Romance     15
## 1998  2003                         Adventure|Animation|Children|Comedy     15
## 1999  2003                                                Action|Crime     15
## 2000  2003                                                 Documentary     15
## 2001  2002                                                       Drama     15
## 2002  1929                                                 Documentary     15
## 2003  1991                                              Drama|Thriller     15
## 2004  1992                                              Comedy|Romance     15
## 2005  1997                                             Children|Comedy     15
## 2006  2002                                        Action|Horror|Sci-Fi     15
## 2007  2003                      Action|Adventure|Comedy|Crime|Thriller     15
## 2008  2003                                     Action|Adventure|Sci-Fi     15
## 2009  2003                                     Action|Adventure|Sci-Fi     15
## 2010  2003                             Action|Adventure|Comedy|Fantasy     15
## 2011  2003                                               Drama|Fantasy     15
## 2012  2002                                        Crime|Drama|Thriller     15
## 2013  2003                                                      Comedy     15
## 2014  2003                                     Children|Comedy|Fantasy     15
## 2015  2003                                                Comedy|Drama     15
## 2017  1949                                                Comedy|Drama     15
## 2018  2003                                          Comedy|Crime|Drama     15
## 2019  2003                                        Comedy|Drama|Romance     15
## 2020  2003                                       Action|Fantasy|Horror     15
## 2021  2003                                    Animation|Comedy|Fantasy     15
## 2022  1939                                                Comedy|Drama     15
## 2025  2000                                       Drama|Horror|Thriller     15
## 2026  2003                                              Comedy|Musical     15
## 2027  2003                                                Comedy|Drama     15
## 2028  2003                                         Crime|Drama|Mystery     15
## 2029  2003                                              Comedy|Romance     15
## 2030  2003                                       Action|Crime|Thriller     15
## 2031  2003                                        Comedy|Drama|Romance     15
## 2032  2003                                              Drama|Thriller     15
## 2033  2003                        Crime|Drama|Mystery|Romance|Thriller     15
## 2035  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2036  2003                                     Children|Comedy|Fantasy     15
## 2037  2003                                        Comedy|Drama|Romance     15
## 2039  2003                                         Adventure|Drama|War     15
## 2040  2003                        Crime|Drama|Mystery|Romance|Thriller     15
## 2042  1992                                                       Drama     15
## 2044  1991                                                Comedy|Drama     15
## 2045  1983                                       Drama|Sci-Fi|Thriller     15
## 2046  1983                                        Crime|Drama|Thriller     15
## 2047  1991                        Comedy|Drama|Mystery|Sci-Fi|Thriller     15
## 2048  1990                                Action|Comedy|Crime|Thriller     15
## 2049  1972                                               Drama|Romance     15
## 2050  1992                                               Drama|Romance     15
## 2051  1990                                                Comedy|Crime     15
## 2053  2002                                      Action|Adventure|Drama     15
## 2054  1991                                Drama|Fantasy|Mystery|Sci-Fi     15
## 2055  1935                                      Comedy|Musical|Romance     15
## 2056  2003                                  Action|Adventure|Drama|War     15
## 2057  2003                                       Drama|Fantasy|Romance     15
## 2058  2003                              Action|Adventure|Drama|Fantasy     15
## 2059  2003                                             Documentary|War     15
## 2060  2003                                           Drama|Romance|War     15
## 2061  2004                                              Comedy|Romance     15
## 2062  2003                                                Comedy|Drama     15
## 2063  2004                                       Drama|Sci-Fi|Thriller     15
## 2064  2003                                                       Drama     15
## 2065  2004                                              Comedy|Romance     15
## 2066  2004                                            Adventure|Comedy     15
## 2067  2003                                                Comedy|Drama     15
## 2068  2004                                Action|Comedy|Crime|Thriller     15
## 2069  1966                                                       Drama     15
## 2070  2004                                              Comedy|Romance     15
## 2071  2004                                                    Thriller     15
## 2073  2003                                      Drama|Mystery|Thriller     15
## 2074  2004                             Action|Adventure|Fantasy|Horror     15
## 2075  2004                                       Action|Drama|Thriller     15
## 2076  2004                                      Comedy|Fantasy|Romance     15
## 2077  2004                         Action|Crime|Drama|Mystery|Thriller     15
## 2078  2004                                                      Comedy     15
## 2079  2004                                  Action|Adventure|Drama|War     15
## 2081  1990                                                       Drama     15
## 2082  1964                                          Drama|Thriller|War     15
## 2083  1967                            Action|Adventure|Sci-Fi|Thriller     15
## 2084  1983                                   Action|Adventure|Thriller     15
## 2085  1979                                              Drama|Thriller     15
## 2086  1974                                                    Thriller     15
## 2087  1958                                            Action|Adventure     15
## 2088  2002                                                 Documentary     15
## 2090  2004         Adventure|Animation|Children|Comedy|Musical|Romance     15
## 2092  2004                                                Comedy|Drama     15
## 2093  2004                                      Adventure|Fantasy|IMAX     15
## 2094  2004                                                      Comedy     15
## 2095  2004                                    Comedy|Documentary|Drama     15
## 2096  2004                                                      Comedy     15
## 2097  2004                                        Comedy|Drama|Romance     15
## 2098  2004                                         Action|Comedy|Crime     15
## 2099  1999                                           Documentary|Drama     15
## 2100  1992                                             Documentary|War     15
## 2101  2004                                                 Documentary     15
## 2102  1987                                              Comedy|Romance     15
## 2103  2004                                Action|Adventure|Sci-Fi|IMAX     15
## 2105  2004                                                      Comedy     15
## 2106  2004                            Action|Adventure|Sci-Fi|Thriller     15
## 2107  2004                                                 Crime|Drama     15
## 2108  2004                                       Action|Crime|Thriller     15
## 2109  2004                                                    Thriller     15
## 2110  2004                                        Comedy|Drama|Romance     15
## 2111  2004                                 Action|Crime|Drama|Thriller     15
## 2112  2004                                            Adventure|Comedy     15
## 2113  2004                                     Action|Adventure|Sci-Fi     15
## 2114  2004                                               Comedy|Horror     15
## 2115  2004                                                      Comedy     15
## 2118  2003                                                 Documentary     15
## 2119  2004                                        Comedy|Drama|Romance     15
## 2121  2004                                      Drama|Mystery|Thriller     15
## 2122  2004                                     Horror|Mystery|Thriller     15
## 2123  2004                                                       Drama     15
## 2124  2004                  Action|Adventure|Animation|Children|Comedy     15
## 2125  2004                                                       Drama     15
## 2126  2004                     Action|Adventure|Drama|Mystery|Thriller     15
## 2127  2004                         Adventure|Animation|Children|Comedy     15
## 2128  2004                                Action|Comedy|Crime|Thriller     15
## 2133  1993                                                       Drama     15
## 2134  1998                                               Drama|Romance     15
## 2135  2002                                                      Comedy     15
## 2137  2003                                            Mystery|Thriller     15
## 2138  2005                                              Drama|Thriller     15
## 2140  2006                     Animation|Drama|Mystery|Sci-Fi|Thriller     15
## 2141  2004                                                       Drama     15
## 2142  2004                                                   Drama|War     15
## 2143  2004                                    Adventure|Comedy|Fantasy     15
## 2144  2004                                                       Drama     15
## 2145  2004                                                      Comedy     15
## 2146  2005                                              Comedy|Romance     15
## 2147  2005                              Action|Fantasy|Horror|Thriller     15
## 2148  2005                     Action|Crime|Film-Noir|Mystery|Thriller     15
## 2149  2005                                     Adventure|Comedy|Sci-Fi     15
## 2150  2005                                                 Documentary     15
## 2151  2004                                                 Crime|Drama     15
## 2153  2005                             Action|Adventure|Comedy|Romance     15
## 2155  2005                            Action|Adventure|Sci-Fi|Thriller     15
## 2156  2005                                                 Documentary     15
## 2157  2005                                     Action|Adventure|Sci-Fi     15
## 2158  2005                                              Comedy|Romance     15
## 2159  2005                                      Action|Sci-Fi|Thriller     15
## 2160  2005                            Action|Adventure|Sci-Fi|Thriller     15
## 2161  2005                                     Action|Adventure|Sci-Fi     15
## 2162  2005                                                 Documentary     15
## 2163  2005                                              Comedy|Romance     15
## 2164  2005                                             Horror|Thriller     15
## 2165  2005                                              Drama|Thriller     15
## 2166  2005                             Action|Crime|Drama|Thriller|War     15
## 2167  2005                                               Action|Sci-Fi     15
## 2168  2005                    Animation|Comedy|Fantasy|Musical|Romance     15
## 2169  2005                                                 Crime|Drama     15
## 2171  2005                                                Comedy|Drama     15
## 2173  2005                                              Drama|Thriller     15
## 2174  2005                             Adventure|Fantasy|Thriller|IMAX     15
## 2175  2005                                 Action|Crime|Drama|Thriller     15
## 2177  2006                                              Comedy|Romance     15
## 2178  2006                                 Action|Sci-Fi|Thriller|IMAX     15
## 2179  2006                                                Comedy|Drama     15
## 2181  2006                                      Drama|Romance|Thriller     15
## 2182  1963                                        Action|Crime|Mystery     15
## 2183  2006                                         Crime|Drama|Mystery     15
## 2184  2005                               Crime|Drama|Film-Noir|Mystery     15
## 2186  2006                                   Action|Adventure|Thriller     15
## 2187  2006                                      Drama|Mystery|Thriller     15
## 2188  2006                                      Action|Sci-Fi|Thriller     15
## 2189  2006                                   Animation|Children|Comedy     15
## 2191  2006                      Adventure|Comedy|Drama|Fantasy|Romance     15
## 2192  2006                                                Comedy|Drama     15
## 2193  2006                                    Action|Adventure|Fantasy     15
## 2194  2006                                                      Comedy     15
## 2195  2006                                                 Documentary     15
## 2196  2006                                Action|Adventure|Sci-Fi|IMAX     15
## 2197  2006                                      Adventure|Comedy|Drama     15
## 2198  2006                                              Drama|Thriller     15
## 2199  2006                                               Action|Comedy     15
## 2200  2006                                  Action|Comedy|Fantasy|IMAX     15
## 2201  2006                                Comedy|Drama|Fantasy|Romance     15
## 2202  2006                               Drama|Fantasy|Mystery|Romance     15
## 2203  2006                                           Documentary|Drama     15
## 2204  2006                                       Drama|Fantasy|Romance     15
## 2205  2006                                Comedy|Drama|Fantasy|Romance     15
## 2207  2006                                      Drama|Fantasy|Thriller     15
## 2208  2006                                        Crime|Drama|Thriller     15
## 2212  2006                                      Action|Sci-Fi|Thriller     15
## 2213  2006                                              Comedy|Romance     15
## 2214  2006                                                 Documentary     15
## 2215  2007                                    Animation|Children|Drama     15
## 2217  2007                                 Action|Comedy|Crime|Mystery     15
## 2219  2007                                     Action|Fantasy|War|IMAX     15
## 2220  2007                                              Comedy|Romance     15
## 2221  2007                             Adventure|Drama|Sci-Fi|Thriller     15
## 2222  2007                                Crime|Drama|Mystery|Thriller     15
## 2223  2007                       Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2224  2007                                        Comedy|Drama|Romance     15
## 2225  2007                                              Crime|Thriller     15
## 2226  2007                                     Action|Adventure|Sci-Fi     15
## 2227  2007                                           Documentary|Drama     15
## 2228  2007                             Action|Adventure|Crime|Thriller     15
## 2230  2007                                Adventure|Drama|Fantasy|IMAX     15
## 2231  2007                                            Animation|Comedy     15
## 2232  2007                                       Action|Crime|Thriller     15
## 2234  2007                                                      Comedy     15
## 2236  2007                                      Action|Adventure|Drama     15
## 2237  2007                                      Adventure|Comedy|Drama     15
## 2238  2007                                              Drama|Thriller     15
## 2239  2007                                             Animation|Drama     15
## 2240  2007                                        Crime|Drama|Thriller     15
## 2241  2007                                                 Crime|Drama     15
## 2242  2008                                                      Comedy     15
## 2243  2007                          Action|Horror|Sci-Fi|Thriller|IMAX     15
## 2244  2007                                        Comedy|Drama|Romance     15
## 2246  2007                                            Action|Adventure     15
## 2247  2007                                               Drama|Western     15
## 2248  2008                              Action|Mystery|Sci-Fi|Thriller     15
## 2250  2008                                 Comedy|Crime|Drama|Thriller     15
## 2251  2008                      Action|Adventure|Drama|Sci-Fi|Thriller     15
## 2252  2008                                       Action|Crime|Thriller     15
## 2254  2008                                              Comedy|Romance     15
## 2257  2008                                 Action|Crime|Drama|Thriller     15
## 2258  2006                                                       Drama     15
## 2259  2008                              Action|Adventure|Comedy|Sci-Fi     15
## 2260  2008                       Action|Animation|Children|Comedy|IMAX     15
## 2261  2008                                                      Comedy     15
## 2262  2008                                       Drama|Sci-Fi|Thriller     15
## 2263  2008                                               Action|Sci-Fi     15
## 2265  2008                                             Action|Thriller     15
## 2266  2008                       Action|Adventure|Comedy|Crime|Fantasy     15
## 2267  2008                                               Action|Comedy     15
## 2268  2007                                                 Documentary     15
## 2270  2008                                                 Documentary     15
## 2271  2008                                         Action|Comedy|Crime     15
## 2272  2008                                 Action|Adventure|Comedy|War     15
## 2273  2008                                          Comedy|Crime|Drama     15
## 2274  2008                                                      Comedy     15
## 2275  2008                                       Action|Drama|Thriller     15
## 2276  2008                                        Comedy|Drama|Romance     15
## 2278  2008                                         Crime|Drama|Romance     15
## 2279  2008                                   Action|Adventure|Thriller     15
## 2280  2008                                                      Comedy     15
## 2281  2008                  Action|Adventure|Animation|Children|Comedy     15
## 2282  2008                                                       Drama     15
## 2283  2008                                                       Drama     15
## 2284  2008                               Drama|Fantasy|Mystery|Romance     15
## 2286  2009                                         Action|Comedy|Crime     15
## 2287  2009                                  Animation|Fantasy|Thriller     15
## 2288  2008                                                Action|Drama     15
## 2289  2009                                        Comedy|Drama|Romance     15
## 2290  2009                                        Comedy|Crime|Mystery     15
## 2291  2009                                        Comedy|Drama|Romance     15
## 2292  2008                                 Comedy|Drama|Musical|Sci-Fi     15
## 2293  2009                                                      Comedy     15
## 2294  2009                                      Crime|Romance|Thriller     15
## 2295  2008                                         Documentary|Musical     15
## 2296  2009                                                Comedy|Drama     15
## 2298  2009                                            Action|Drama|War     15
## 2300  2009                               Drama|Mystery|Sci-Fi|Thriller     15
## 2301  2009                                      Action|Sci-Fi|Thriller     15
## 2302  2009                                                       Drama     15
## 2305  2009                                          Action|Comedy|IMAX     15
## 2306  2009                          Adventure|Animation|Children|Drama     15
## 2307  2009                                                Comedy|Crime     15
## 2308  2009                                        Crime|Drama|Thriller     15
## 2309  2009                                              Comedy|Romance     15
## 2310  2009                                            Adventure|Comedy     15
## 2313  2009                                Action|Adventure|Sci-Fi|IMAX     15
## 2315  2009                                        Comedy|Drama|Romance     15
## 2317  2009                           Action|Adventure|Children|Fantasy     15
## 2318  2008                                                 Documentary     15
## 2319  2009                                 Comedy|Crime|Drama|Thriller     15
## 2320  2009                             Animation|Children|Fantasy|IMAX     15
## 2321  2008                                                 Documentary     15
## 2322  2009                                                 Documentary     15
## 2323  2009                                                Comedy|Drama     15
## 2324  2009                                        Action|Comedy|Horror     15
## 2325  2009                                              Drama|Thriller     15
## 2326  2009                                               Drama|Romance     15
## 2327  2009                   Adventure|Animation|Children|Comedy|Crime     15
## 2328  2009                                Action|Drama|Sci-Fi|Thriller     15
## 2330  2009                               Action|Crime|Mystery|Thriller     15
## 2331  2009                                                 Crime|Drama     15
## 2332  2010                                      Drama|Mystery|Thriller     15
## 2334  2010                                   Action|Drama|Thriller|War     15
## 2335  2010                                                Action|Crime     15
## 2336  2010                                               Comedy|Sci-Fi     15
## 2338  2010                                               Action|Comedy     15
## 2339  2010                                       Action|Comedy|Romance     15
## 2340  2010                                                 Documentary     15
## 2341  2010                     Action|Adventure|Drama|Mystery|Thriller     15
## 2343  2010                       Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2344  2010                                                      Comedy     15
## 2345  2010                                      Action|Comedy|Thriller     15
## 2346  2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX     15
## 2348  2010                                      Action|Sci-Fi|Thriller     15
## 2350  2010                                       Action|Comedy|Romance     15
## 2351  2010                                                Comedy|Drama     15
## 2352  2010                                             Action|Thriller     15
## 2353  2010                                                      Comedy     15
## 2354  2010                                   Action|Adventure|Thriller     15
## 2355  2010                       Action|Comedy|Fantasy|Musical|Romance     15
## 2356  2010                                              Drama|Thriller     15
## 2357  2010                                                 Documentary     15
## 2358  2010                                                       Drama     15
## 2360  2010                                         Documentary|Mystery     15
## 2362  2010                                             Documentary|War     15
## 2363  2010                                                 Documentary     15
## 2364  2010                                               Action|Comedy     15
## 2365  2010                                              Drama|Thriller     15
## 2366  2010                                       Action|Drama|Thriller     15
## 2367  2010                               Action|Adventure|Fantasy|IMAX     15
## 2368  2010                                                       Drama     15
## 2369  2010      Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX     15
## 2370  2010                                                       Drama     15
## 2371  2010                                Action|Adventure|Sci-Fi|IMAX     15
## 2372  2010                                    Adventure|Comedy|Fantasy     15
## 2373  2010                                                Comedy|Drama     15
## 2374  2010                                                 Documentary     15
## 2375  2011                   Action|Comedy|Crime|Fantasy|Thriller|IMAX     15
## 2376  2011                         Action|Sci-Fi|Thriller|Western|IMAX     15
## 2378  2011                                             Sci-Fi|Thriller     15
## 2379  2011                                              Comedy|Romance     15
## 2380  2011                                        Crime|Drama|Thriller     15
## 2381  2011                                     Romance|Sci-Fi|Thriller     15
## 2384  2011                           Action|Adventure|Mystery|Thriller     15
## 2385  2011                         Action|Adventure|Drama|Fantasy|IMAX     15
## 2386  2011                            Action|Crime|Drama|Thriller|IMAX     15
## 2389  2011                                      Comedy|Fantasy|Romance     15
## 2390  2011                                                       Drama     15
## 2391  2011                                                      Comedy     15
## 2393  2011                        Action|Adventure|Sci-Fi|Thriller|War     15
## 2394  2010                                                       Drama     15
## 2395  2011                                Mystery|Sci-Fi|Thriller|IMAX     15
## 2396  2011                                     Action|Adventure|Sci-Fi     15
## 2397  2011                                                      Comedy     15
## 2399  2011                                                Comedy|Crime     15
## 2400  2011                                                 Documentary     15
## 2401  2011                 Action|Adventure|Drama|Fantasy|Mystery|IMAX     15
## 2402  2011                              Crime|Drama|Film-Noir|Thriller     15
## 2403  2011                        Action|Adventure|Sci-Fi|Thriller|War     15
## 2404  2011                                        Comedy|Drama|Romance     15
## 2405  2011                                   Animation|Children|Comedy     15
## 2407  2010                                                       Drama     15
## 2408  2011                                                 Documentary     15
## 2409  2011                                                 Documentary     15
## 2410  2011                                        Sci-Fi|Thriller|IMAX     15
## 2412  2012                                Action|Adventure|Sci-Fi|IMAX     15
## 2413  2011                                             Action|Thriller     15
## 2414  2011                                    Action|Drama|Sci-Fi|IMAX     15
## 2415  2011                                                 Documentary     15
## 2417  2011                                              Drama|Thriller     15
## 2419  2011                                       Action|Crime|Thriller     15
## 2420  2011                                      Action|Animation|Crime     15
## 2421  2011                     Adventure|Animation|Comedy|Fantasy|IMAX     15
## 2422  2011                               Action|Animation|Mystery|IMAX     15
## 2423  2011                                      Children|Drama|Mystery     15
## 2424  2011                                        Crime|Drama|Thriller     15
## 2425  2012                      Action|Adventure|Drama|Sci-Fi|Thriller     15
## 2426  2010                                        Drama|Romance|Sci-Fi     15
## 2427  2012                                 Action|Adventure|Crime|IMAX     15
## 2428  2012                        Action|Adventure|Drama|Thriller|IMAX     15
## 2429  2011              Action|Adventure|Comedy|Crime|Mystery|Thriller     15
## 2430  2011                              Action|Adventure|Thriller|IMAX     15
## 2433  2012                                 Action|Crime|Drama|Thriller     15
## 2434  2011                                                 Documentary     15
## 2435  2012                                      Action|Sci-Fi|Thriller     15
## 2436  2012                               Action|Crime|Mystery|Thriller     15
## 2437  2012                                       Action|Comedy|Romance     15
## 2438  2012                                Action|Adventure|Sci-Fi|IMAX     15
## 2439  2012                                         Action|Comedy|Crime     15
## 2440  2011                                                 Documentary     15
## 2441  2012                                                      Comedy     15
## 2442  2012                               Comedy|Horror|Sci-Fi|Thriller     15
## 2443  2012                                    Adventure|Comedy|Fantasy     15
## 2444  2012                                 Action|Sci-Fi|Thriller|IMAX     15
## 2445  2012                                          Comedy|Horror|IMAX     15
## 2447  2012                                   Action|Comedy|Sci-Fi|IMAX     15
## 2448  2012                                      Action|Adventure|Drama     15
## 2449  2012                         Adventure|Animation|Children|Comedy     15
## 2450  2012                                   Action|Horror|Sci-Fi|IMAX     15
## 2451  2012                                        Comedy|Drama|Romance     15
## 2452  2012                    Adventure|Animation|Children|Comedy|IMAX     15
## 2453  2012                         Action|Adventure|Animation|Children     15
## 2454  2012                                        Comedy|Drama|Romance     15
## 2455  2008                           Animation|Children|Comedy|Fantasy     15
## 2456  2012                                        Comedy|Drama|Romance     15
## 2457  2012                                Action|Adventure|Sci-Fi|IMAX     15
## 2458  2012                                               Drama|Fantasy     15
## 2459  2012                                      Action|Sci-Fi|Thriller     15
## 2460  2012                              Action|Adventure|Thriller|IMAX     15
## 2461  2012                                                 Documentary     15
## 2462  2012                                                 Documentary     15
## 2463  2012                                         Action|Crime|Sci-Fi     15
## 2464  2012                                                 Documentary     15
## 2465  2012                                               Action|Sci-Fi     15
## 2466  2012                                              Drama|Thriller     15
## 2467  2012                                                 Documentary     15
## 2468  2012                                                 Documentary     15
## 2469  2012                                            Animation|Comedy     15
## 2470  2012                                                       Drama     15
## 2471  2012                                        Adventure|Drama|IMAX     15
## 2472  2012                                                 Documentary     15
## 2473  2012                                                   Drama|War     15
## 2474  2012                                      Adventure|Fantasy|IMAX     15
## 2475  2012                                       Action|Drama|Thriller     15
## 2476  2013                                       Comedy|Horror|Romance     15
## 2477  2012                                       Action|Crime|Thriller     15
## 2478  2012                                        Action|Drama|Western     15
## 2479  2012                                  Drama|Musical|Romance|IMAX     15
## 2480  2012                                                 Documentary     15
## 2482  2012                                                 Documentary     15
## 2483  2013                                                      Comedy     15
## 2484  2012                                                 Documentary     15
## 2485  2013                                Crime|Drama|Mystery|Thriller     15
## 2486  2012                                                 Documentary     15
## 2488  2012                                                 Documentary     15
## 2489  2013                                               Drama|Romance     15
## 2490  2013                                                 Documentary     15
## 2491  2013                       Action|Adventure|Sci-Fi|Thriller|IMAX     15
## 2492  2013                               Action|Adventure|Fantasy|IMAX     15
## 2493  2013                                             Action|Thriller     15
## 2494  2013                                Action|Adventure|Sci-Fi|IMAX     15
## 2495  2013                                                       Drama     15
## 2496  2013                                               Action|Comedy     15
## 2497  2013                                 Action|Sci-Fi|Thriller|IMAX     15
## 2498  2013                                Action|Adventure|Sci-Fi|IMAX     15
## 2499  2012                                                Comedy|Drama     15
## 2500  2013                                Action|Adventure|Sci-Fi|IMAX     15
## 2501  2013                                      Crime|Mystery|Thriller     15
## 2502  2013                        Action|Adventure|Fantasy|Sci-Fi|IMAX     15
## 2504  2013                                    Action|Drama|Horror|IMAX     15
## 2505  2013                                    Action|Drama|Sci-Fi|IMAX     15
## 2506  2013                                         Action|Comedy|Crime     15
## 2507  2013                                Action|Comedy|Crime|Thriller     15
## 2508  2013                                                Comedy|Crime     15
## 2509  2013                                         Action|Comedy|Crime     15
## 2510  2013                                                 Documentary     15
## 2511  2012                                                 Documentary     15
## 2512  2013                                          Action|Sci-Fi|IMAX     15
## 2514  2013                               Adventure|Drama|Thriller|IMAX     15
## 2515  2013                               Action|Adventure|Fantasy|IMAX     15
## 2516  2013                                                      Comedy     15
## 2517  2013                                                 Documentary     15
## 2518  2013                                      Adventure|Fantasy|IMAX     15
## 2519  2013                                          Comedy|Crime|Drama     15
## 2520  2013                                                 Crime|Drama     15
## 2522  2013                                                      Comedy     15
## 2525  2014                                  Action|Drama|Thriller|IMAX     15
## 2526  2014                               Adventure|Romance|Sci-Fi|IMAX     15
## 2527  2014                                  Action|Fantasy|Sci-Fi|IMAX     15
## 2528  2013                                            Mystery|Thriller     15
## 2529  2014          Action|Adventure|Animation|Children|Comedy|Fantasy     15
## 2530  2014                                    Action|Crime|Sci-Fi|IMAX     15
## 2531  2013                                        Drama|Fantasy|Sci-Fi     15
## 2532  2014                                                Comedy|Drama     15
## 2533  2014                                                 Sci-Fi|IMAX     15
## 2534  2014                                       Action|Drama|War|IMAX     15
## 2535  2013                                                 Documentary     15
## 2536  2013                                      Horror|Sci-Fi|Thriller     15
## 2538  2014                                        Adventure|Drama|IMAX     15
## 2539  2014                                          Action|Sci-Fi|IMAX     15
## 2540  2014                                           Drama|Sci-Fi|IMAX     15
## 2541  2014                                              Comedy|Romance     15
## 2542  2013                                                 Documentary     15
## 2543  2014                                               Action|Sci-Fi     15
## 2544  2014                                     Action|Adventure|Sci-Fi     15
## 2550  2014                                         Action|Comedy|Crime     15
## 2551  2014                                       Action|Crime|Thriller     15
## 2552  2014                                                Comedy|Drama     15
## 2553  2014                                     Action|Adventure|Sci-Fi     15
## 2554  2014                                                       Drama     15
## 2557  2014                                                      Comedy     15
## 2559  2014                                                    Thriller     15
## 2560  2015                                     Action|Adventure|Sci-Fi     15
## 2561  2014                                     Action|Adventure|Comedy     15
## 2562  2014                                                Drama|Sci-Fi     15
## 2563  2013                               Drama|Mystery|Sci-Fi|Thriller     15
## 2564  2014                                       Action|Mystery|Sci-Fi     15
## 2567  2014                                              Comedy|Romance     15
## 2569  2014                                     Action|Animation|Comedy     15
## 2570  2015                                       Drama|Sci-Fi|Thriller     15
## 2571  2014                                                       Drama     15
## 2572  2014                                          Drama|Thriller|War     15
## 2573  2014                          Comedy|Crime|Drama|Mystery|Romance     15
## 2574  2014                                   Adventure|Sci-Fi|Thriller     15
## 2576  2014                                               Drama|Romance     15
## 2578  2014                                                 Documentary     15
## 2579  2014                                           Adventure|Fantasy     15
## 2580  2014                                               Action|Comedy     15
## 2581  2015                               Action|Adventure|Comedy|Crime     15
## 2582  2015                                             Action|Thriller     15
## 2583  2015                            Action|Adventure|Sci-Fi|Thriller     15
## 2584  2014                                                 Documentary     15
## 2586  2015                            Action|Adventure|Sci-Fi|Thriller     15
## 2587  2015                        Action|Adventure|Fantasy|Sci-Fi|IMAX     15
## 2588  2016                                    Action|Adventure|Fantasy     15
## 2589  2015                                     Action|Adventure|Sci-Fi     15
## 2590  2015                                     Action|Adventure|Sci-Fi     15
## 2591  2015                             Action|Adventure|Fantasy|Sci-Fi     15
## 2592  2016                              Action|Adventure|Comedy|Sci-Fi     15
## 2593  2016                                      Action|Sci-Fi|Thriller     15
## 2594  2016                             Action|Adventure|Fantasy|Sci-Fi     15
## 2595  2015                                      Drama|Mystery|Thriller     15
## 2596  2015                                                     Western     15
## 2597  2015                                 Action|Crime|Drama|Thriller     15
## 2598  2014                                                Comedy|Drama     15
## 2599  2015                                      Action|Sci-Fi|Thriller     15
## 2600  2015                                                Drama|Sci-Fi     15
## 2601  2015                                       Action|Crime|Thriller     15
## 2602  2015                                                Comedy|Crime     15
## 2603  2015                    Action|Adventure|Children|Mystery|Sci-Fi     15
## 2604  2015                                       Drama|Fantasy|Romance     15
## 2605  2015                                       Action|Drama|Thriller     15
## 2606  2015                                                       Drama     15
## 2607  2015                                      Adventure|Drama|Sci-Fi     15
## 2610  2015           Adventure|Animation|Children|Comedy|Drama|Fantasy     15
## 2611  2015                                            Adventure|Sci-Fi     15
## 2612  2016                                            Animation|Comedy     15
## 2613  2016                                     Action|Adventure|Sci-Fi     15
## 2614  2016                                     Action|Adventure|Sci-Fi     15
## 2615  2015                                      Action|Adventure|Crime     15
## 2616  2015                                                       Drama     15
## 2617  2016                             Action|Adventure|Fantasy|Sci-Fi     15
## 2618  2015                                                 Documentary     15
## 2619  2016                                     Adventure|Drama|Fantasy     15
## 2620  2015                                     Action|Adventure|Comedy     15
## 2621  2015                                             Adventure|Drama     15
## 2622  2015                                         Crime|Drama|Mystery     15
## 2623  2015                                                 Documentary     15
## 2624  2015                                    Animation|Comedy|Fantasy     15
## 2625  2015                                                      Comedy     15
## 2628  2015                               Action|Comedy|Sci-Fi|Thriller     15
## 2629  2015                                                Comedy|Drama     15
## 2630  2015                                                    Thriller     15
## 2631  2015                                                       Drama     15
## 2632  2015                                              Drama|Thriller     15
## 2633  2015                                                       Drama     15
## 2634  2015                         Adventure|Animation|Children|Comedy     15
## 2635  2015                                                       Drama     15
## 2636  2015                                                       Drama     15
## 2637  2015                                                      Comedy     15
## 2638  2015                                             Children|Comedy     15
## 2640  2016                                                       Drama     15
## 2641  2016                                                    Thriller     15
## 2642  2016                                       Action|Crime|Thriller     15
## 2643  2016                  Action|Adventure|Animation|Children|Comedy     15
## 2644  2016                                                      Comedy     15
## 2645  2016                              Action|Adventure|Drama|Fantasy     15
## 2646  2016                                                      Comedy     15
## 2647  2016                                              Drama|Thriller     15
## 2648  2016                                  Adventure|Animation|Comedy     15
## 2649  2016                                                      Comedy     15
## 2650  2016                                      Crime|Mystery|Thriller     15
## 2651  2016                                              Drama|Thriller     15
## 2652  2016                                      Action|Comedy|Thriller     15
## 2653  2016                                     Action|Adventure|Comedy     15
## 2654  2016                                                      Comedy     15
## 2656  2016                                       Drama|Sci-Fi|Thriller     15
## 2657  2016                                 Action|Comedy|Horror|Sci-Fi     15
## 2658  2016                                               Action|Comedy     15
## 2659  2016                                            Action|Adventure     15
## 2660  2016                                        Action|Horror|Sci-Fi     15
## 2662  2016                                                      Sci-Fi     15
## 2670  1988                                                       Drama     16
## 2672  1998                                       Action|Crime|Thriller     16
## 2675  1988                                Comedy|Drama|Fantasy|Romance     16
## 2678  2000                                               Drama|Romance     16
## 2686  2002                            Action|Adventure|Sci-Fi|Thriller     16
## 2690  2003                                       Action|Crime|Thriller     16
## 2701  1995                                      Action|Sci-Fi|Thriller     17
## 2702  1995                                       Action|Crime|Thriller     17
## 2705  1994                                                      Comedy     17
## 2707  1994                                                 Crime|Drama     17
## 2708  1977                                     Action|Adventure|Sci-Fi     17
## 2709  1994                                       Action|Crime|Thriller     17
## 2712  1993                                                       Drama     17
## 2714  1994                                                      Comedy     17
## 2715  1994                                    Comedy|Drama|Romance|War     17
## 2716  1994                                     Action|Romance|Thriller     17
## 2718  1993                            Action|Adventure|Sci-Fi|Thriller     17
## 2719  1994                                        Crime|Drama|Thriller     17
## 2724  1990                                     Adventure|Drama|Western     17
## 2726  1996                                 Comedy|Crime|Drama|Thriller     17
## 2729  1996                           Action|Adventure|Romance|Thriller     17
## 2736  1959                                                Comedy|Crime     17
## 2743  1946                                  Film-Noir|Romance|Thriller     17
## 2745  1944                                     Crime|Film-Noir|Mystery     17
## 2746  1935                                      Drama|Mystery|Thriller     17
## 2747  1988                                       Action|Crime|Thriller     17
## 2749  1988                                                Comedy|Crime     17
## 2752  1992                                                       Drama     17
## 2753  1951                                                       Drama     17
## 2755  1989                                                Comedy|Drama     17
## 2760  1983                                     Action|Adventure|Sci-Fi     17
## 2770  1984                                      Action|Sci-Fi|Thriller     17
## 2771  1992                                       Comedy|Fantasy|Horror     17
## 2776  1990                               Action|Crime|Romance|Thriller     17
## 2777  1963                                               Drama|Fantasy     17
## 2779  1987                                        Comedy|Horror|Sci-Fi     17
## 2780  1980                                                      Horror     17
## 2786  1963                                             Horror|Thriller     17
## 2788  1992                            Action|Comedy|Crime|Drama|Sci-Fi     17
## 2792  1997                                     Action|Adventure|Comedy     17
## 2793  1992                                               Horror|Sci-Fi     17
## 2794  1997                                        Action|Comedy|Sci-Fi     17
## 2795  1997                              Drama|Mystery|Romance|Thriller     17
## 2799  1997                                      Drama|Mystery|Thriller     17
## 2804  1997                                               Drama|Romance     17
## 2805  1997                                        Crime|Drama|Thriller     17
## 2808  1997                                                 Crime|Drama     17
## 2812  1998                                              Comedy|Romance     17
## 2817  1984                                            Adventure|Sci-Fi     17
## 2819  1998                                            Action|Drama|War     17
## 2823  1982                                       Comedy|Crime|Thriller     17
## 2826  1986                                       Crime|Horror|Thriller     17
## 2828  1998                                      Action|Horror|Thriller     17
## 2831  1998                                       Action|Crime|Thriller     17
## 2834  1998                                             Action|Thriller     17
## 2839  1999                                                Comedy|Crime     17
## 2840  1999                                                      Comedy     17
## 2846  1999                                               Comedy|Horror     17
## 2847  1975                                Comedy|Horror|Musical|Sci-Fi     17
## 2848  1999                                       Drama|Sci-Fi|Thriller     17
## 2850  1999                                     Action|Adventure|Comedy     17
## 2852  1999                                                    Thriller     17
## 2853  1999                                       Drama|Horror|Thriller     17
## 2854  1999                                      Drama|Mystery|Thriller     17
## 2857  1980                                                      Comedy     17
## 2859  1998                                                Action|Drama     17
## 2861  1986                                                      Comedy     17
## 2862  1996                                        Crime|Drama|Thriller     17
## 2869  1999                                                       Drama     17
## 2870  1992                                                      Comedy     17
## 2875  2000                                                       Drama     17
## 2879  1976                                                Comedy|Drama     17
## 2884  1974                                               Drama|Mystery     17
## 2887  2000                                               Comedy|Horror     17
## 2889  2000                                       Drama|Horror|Thriller     17
## 2891  2000                                               Action|Comedy     17
## 2894  2000                                      Adventure|Comedy|Crime     17
## 2897  1986                          Action|Crime|Drama|Horror|Thriller     17
## 2899  2001                                                 Crime|Drama     17
## 2900  2001                                        Comedy|Drama|Romance     17
## 2902  2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     17
## 2911  2001                 Adventure|Animation|Children|Comedy|Fantasy     17
## 2912  2001                                  Adventure|Children|Fantasy     17
## 2918  2001                                               Drama|Romance     17
## 2922  1970                                            Comedy|Drama|War     17
## 2924  2001                                            Animation|Sci-Fi     17
## 2927  2002                                      Action|Horror|Thriller     17
## 2928  2002                                                    Thriller     17
## 2929  2002                                              Comedy|Romance     17
## 2930  2001                                            Romance|Thriller     17
## 2931  2002                            Action|Adventure|Sci-Fi|Thriller     17
## 2933  2002                                     Action|Mystery|Thriller     17
## 2936  2002                                      Horror|Sci-Fi|Thriller     17
## 2937  2002                                                Action|Crime     17
## 2942  2002                                           Drama|Fantasy|War     17
## 2944  2002                                              Crime|Thriller     17
## 2945  1981                                      Horror|Sci-Fi|Thriller     17
## 2948  1994                                        Crime|Drama|Thriller     17
## 2949  2002                                      Action|Sci-Fi|Thriller     17
## 2953  2003                                             Action|Thriller     17
## 2956  2002                                Crime|Drama|Mystery|Thriller     17
## 2958  2002                                              Drama|Thriller     17
## 2959  2003                                                      Comedy     17
## 2960  2003                                     Action|Adventure|Sci-Fi     17
## 2961  2003                                              Crime|Thriller     17
## 2962  2003                               Crime|Horror|Mystery|Thriller     17
## 2963  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     17
## 2964  2003                                                Action|Crime     17
## 2965  2003                                       Action|Crime|Thriller     17
## 2967  2002                                        Action|Horror|Sci-Fi     17
## 2968  2003                      Action|Adventure|Comedy|Crime|Thriller     17
## 2971  1966                             Adventure|Comedy|Crime|Thriller     17
## 2974  2003                                          Comedy|Crime|Drama     17
## 2975  2003                                        Comedy|Drama|Romance     17
## 2979  2001                                        Drama|Fantasy|Sci-Fi     17
## 2980  1962                                                       Drama     17
## 2983  1997                                       Drama|Horror|Thriller     17
## 2984  1983                                       Drama|Sci-Fi|Thriller     17
## 2988  1955                                    Drama|Film-Noir|Thriller     17
## 2990  1990                        Crime|Drama|Mystery|Romance|Thriller     17
## 2993  1972                                              Comedy|Romance     17
## 3000  2003                                      Action|Sci-Fi|Thriller     17
## 3006  2004                         Action|Crime|Drama|Mystery|Thriller     17
## 3014  2003                               Drama|Horror|Mystery|Thriller     17
## 3015  1975                                               Action|Sci-Fi     17
## 3016  1960                                       Drama|Mystery|Romance     17
## 3018  2004         Adventure|Animation|Children|Comedy|Musical|Romance     17
## 3019  2003                                   Action|Comedy|Crime|Drama     17
## 3022  1962                                Comedy|Drama|Fantasy|Mystery     17
## 3023  2004                                                 Documentary     17
## 3024  2004                            Action|Adventure|Sci-Fi|Thriller     17
## 3025  2004                                       Action|Crime|Thriller     17
## 3026  1972                                     Comedy|Drama|Sci-Fi|War     17
## 3027  2004                                                    Thriller     17
## 3028  2004                                      Drama|Mystery|Thriller     17
## 3030  2004                                     Action|Adventure|Sci-Fi     17
## 3031  2004                                               Comedy|Horror     17
## 3033  1967                                               Comedy|Horror     17
## 3035  2004                                     Horror|Mystery|Thriller     17
## 3037  2004                                              Drama|Thriller     17
## 3038  2004                                        Action|Drama|Romance     17
## 3039  2004                                Drama|Fantasy|Romance|Sci-Fi     17
## 3041  2001                                     Horror|Mystery|Thriller     17
## 3044  2005                               Drama|Mystery|Sci-Fi|Thriller     17
## 3047  2004                                               Action|Comedy     17
## 3050  2005                                     Adventure|Comedy|Sci-Fi     17
## 3051  2005                         Adventure|Animation|Children|Comedy     17
## 3052  2003                                             Horror|Thriller     17
## 3053  2005                            Action|Adventure|Sci-Fi|Thriller     17
## 3055  1995                                                      Comedy     18
## 3057  1995                                              Comedy|Romance     18
## 3058  1995                                                      Action     18
## 3059  1995                                                       Drama     18
## 3061  1995                                                      Comedy     18
## 3064  1995                                                 Crime|Drama     18
## 3065  1995                                        Comedy|Drama|Romance     18
## 3067  1996                                               Drama|Romance     18
## 3068  1995                                      Action|Sci-Fi|Thriller     18
## 3069  1996                                              Drama|Thriller     18
## 3070  1995                                         Crime|Drama|Romance     18
## 3073  1996                                       Drama|Horror|Thriller     18
## 3074  1996                                   Action|Adventure|Thriller     18
## 3076  1996                                               Drama|Romance     18
## 3078  1977                                     Action|Adventure|Sci-Fi     18
## 3079  1994                                             Action|Thriller     18
## 3080  1996                                   Action|Adventure|Thriller     18
## 3083  1996                                              Drama|Thriller     18
## 3084  1996                           Action|Adventure|Mystery|Thriller     18
## 3086  1996                                        Crime|Drama|Thriller     18
## 3088  1996                                                      Comedy     18
## 3090  1996                           Action|Adventure|Romance|Thriller     18
## 3091  1996                                                      Comedy     18
## 3092  1996                                      Action|Sci-Fi|Thriller     18
## 3093  1996                                                Comedy|Crime     18
## 3094  1996                                                Comedy|Drama     18
## 3095  1996                            Action|Adventure|Sci-Fi|Thriller     18
## 3098  1996                               Comedy|Fantasy|Romance|Sci-Fi     18
## 3101  1996                                                      Comedy     18
## 3102  1996                                              Crime|Thriller     18
## 3104  1996                                        Comedy|Drama|Romance     18
## 3105  1996                                             Sci-Fi|Thriller     18
## 3106  1995                 Adventure|Animation|Children|Comedy|Fantasy     19
## 3107  1995                                  Adventure|Children|Fantasy     19
## 3108  1995                                              Comedy|Romance     19
## 3109  1995                                        Comedy|Drama|Romance     19
## 3110  1995                                       Action|Crime|Thriller     19
## 3111  1995                                              Comedy|Romance     19
## 3112  1995                                                      Action     19
## 3113  1995                                   Action|Adventure|Thriller     19
## 3114  1995                                        Comedy|Drama|Romance     19
## 3117  1995                                       Comedy|Crime|Thriller     19
## 3118  1995                         Crime|Drama|Horror|Mystery|Thriller     19
## 3119  1995                                       Action|Crime|Thriller     19
## 3120  1995                                               Drama|Romance     19
## 3121  1995                      Adventure|Drama|Fantasy|Mystery|Sci-Fi     19
## 3122  1995                                     Mystery|Sci-Fi|Thriller     19
## 3124  1995                                               Drama|Romance     19
## 3125  1995                                                 Crime|Drama     19
## 3126  1995                                              Comedy|Romance     19
## 3127  1995                                          Action|Crime|Drama     19
## 3128  1995                                       Comedy|Drama|Thriller     19
## 3130  1995                    Animation|Children|Drama|Musical|Romance     19
## 3132  1995                                        Comedy|Drama|Romance     19
## 3133  1995                                                       Drama     19
## 3134  1994                                        Comedy|Drama|Romance     19
## 3135  1996                                                Comedy|Crime     19
## 3136  1996                                              Comedy|Romance     19
## 3138  1996                                               Drama|Romance     19
## 3139  1995                                             Action|Thriller     19
## 3140  1996                                        Comedy|Drama|Romance     19
## 3141  1996                                   Action|Adventure|Thriller     19
## 3143  1996                              Adventure|Comedy|Crime|Romance     19
## 3144  1995                                               Drama|Romance     19
## 3145  1995                                            Action|Drama|War     19
## 3147  1995                               Action|Adventure|Comedy|Crime     19
## 3148  1992                                              Comedy|Romance     19
## 3149  1996                                                      Comedy     19
## 3150  1996                                                      Comedy     19
## 3152  1995                                        Adventure|Drama|IMAX     19
## 3153  1995                               Action|Adventure|Comedy|Crime     19
## 3158  1995                                       Action|Crime|Thriller     19
## 3159  1995                                          Comedy|Crime|Drama     19
## 3160  1995                                      Action|Sci-Fi|Thriller     19
## 3162  1995                                                      Horror     19
## 3163  1995                                               Drama|Romance     19
## 3164  1995                                              Comedy|Romance     19
## 3166  1995                                               Horror|Sci-Fi     19
## 3167  1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller     19
## 3168  1995                                               Drama|Romance     19
## 3169  1995                                                 Documentary     19
## 3170  1995                                     Action|Adventure|Sci-Fi     19
## 3171  1995                                                       Drama     19
## 3172  1995                                               Drama|Romance     19
## 3176  1994                                            Adventure|Comedy     19
## 3177  1994                                                Comedy|Drama     19
## 3180  1994                                               Drama|Romance     19
## 3181  1994                                                Drama|Horror     19
## 3185  1994                                   Drama|Romance|War|Western     19
## 3186  1993                                                       Drama     19
## 3187  1994                                              Comedy|Romance     19
## 3188  1994                                        Comedy|Drama|Romance     19
## 3189  1995                                                 Crime|Drama     19
## 3194  1994                                                       Drama     19
## 3198  1994                                     Action|Adventure|Sci-Fi     19
## 3202  1994                                      Adventure|Drama|Sci-Fi     19
## 3203  1995                                               Horror|Sci-Fi     19
## 3204  1995                                                      Comedy     19
## 3206  1993                                                       Drama     19
## 3208  1994                                         Adventure|Drama|War     19
## 3209  1994                                                      Comedy     19
## 3210  1994                                                Comedy|Drama     19
## 3211  1993                                               Drama|Musical     19
## 3213  1994                                 Action|Crime|Drama|Thriller     19
## 3214  1994                                      Drama|Mystery|Thriller     19
## 3215  1994                               Action|Crime|Fantasy|Thriller     19
## 3216  1994                                                       Drama     19
## 3220  1994             Adventure|Animation|Children|Drama|Musical|IMAX     19
## 3221  1993                                                       Drama     19
## 3222  1994                               Drama|Horror|Mystery|Thriller     19
## 3223  1994                                 Action|Comedy|Crime|Fantasy     19
## 3224  1994                                                       Drama     19
## 3225  1994                                                Comedy|Drama     19
## 3226  1994                                        Comedy|Drama|Romance     19
## 3228  1994                                             Action|Thriller     19
## 3229  1994                                     Action|Romance|Thriller     19
## 3230  1994                                      Action|Sci-Fi|Thriller     19
## 3231  1994                    Action|Adventure|Comedy|Romance|Thriller     19
## 3232  1994                               Drama|Horror|Romance|Thriller     19
## 3233  1994                                                     Western     19
## 3234  1995                                             Horror|Thriller     19
## 3235  1993                                                       Drama     19
## 3236  1994                                             Action|Thriller     19
## 3237  1993                                                       Drama     19
## 3240  1993                                   Action|Adventure|Thriller     19
## 3241  1993                                              Comedy|Romance     19
## 3242  1993                                                      Comedy     19
## 3243  1993                                                      Comedy     19
## 3244  1993                                                       Drama     19
## 3245  1994                                                Comedy|Drama     19
## 3246  1993                                       Drama|Mystery|Romance     19
## 3247  1993                                              Drama|Thriller     19
## 3253  1994                                                      Comedy     19
## 3254  1993                                             Action|Thriller     19
## 3255  1993                                                       Drama     19
## 3256  1993                                       Action|Crime|Thriller     19
## 3258  1993                                              Drama|Thriller     19
## 3259  1994                                        Crime|Drama|Thriller     19
## 3260  1993                             Action|Adventure|Comedy|Fantasy     19
## 3261  1993                                                       Drama     19
## 3263  1996                                   Action|Adventure|Thriller     19
## 3264  1993                                                Comedy|Drama     19
## 3266  1994                                         Action|Drama|Sci-Fi     19
## 3267  1993                                        Crime|Drama|Thriller     19
## 3268  1993                                                       Drama     19
## 3270  1994                                      Comedy|Mystery|Romance     19
## 3272  1993                                        Action|Drama|Mystery     19
## 3273  1993                          Action|Crime|Drama|Sci-Fi|Thriller     19
## 3274  1993                                                      Comedy     19
## 3275  1992                                                Action|Drama     19
## 3277  1993                                                       Drama     19
## 3281  1994                                                       Drama     19
## 3284  1994                                              Comedy|Romance     19
## 3286  1993                                              Crime|Thriller     19
## 3287  1995                                                Comedy|Drama     19
## 3288  1994                                                       Drama     19
## 3289  1990                                             Children|Comedy     19
## 3290  1992                 Adventure|Animation|Children|Comedy|Musical     19
## 3291  1991                                               Action|Sci-Fi     19
## 3292  1990                                     Adventure|Drama|Western     19
## 3294  1991                                       Crime|Horror|Thriller     19
## 3298  1990                                              Comedy|Romance     19
## 3302  1996                                                      Comedy     19
## 3303  1996                                Crime|Drama|Mystery|Thriller     19
## 3304  1996                           Action|Adventure|Mystery|Thriller     19
## 3305  1996                                    Action|Adventure|Fantasy     19
## 3307  1996                                                    Thriller     19
## 3310  1996                                                       Drama     19
## 3311  1996                               Drama|Fantasy|Horror|Thriller     19
## 3312  1996                                   Action|Adventure|Thriller     19
## 3313  1996                           Action|Adventure|Romance|Thriller     19
## 3314  1996                                      Action|Sci-Fi|Thriller     19
## 3316  1996                            Action|Adventure|Sci-Fi|Thriller     19
## 3317  1996                                             Comedy|Thriller     19
## 3318  1996                                                      Comedy     19
## 3319  1996                                       Action|Drama|Thriller     19
## 3320  1996                               Comedy|Fantasy|Romance|Sci-Fi     19
## 3321  1996                                      Comedy|Horror|Thriller     19
## 3322  1996                                       Drama|Mystery|Western     19
## 3323  1996                                               Drama|Romance     19
## 3324  1996                                              Drama|Thriller     19
## 3326  1996                                             Sci-Fi|Thriller     19
## 3327  1995                                             Horror|Thriller     19
## 3329  1961                                               Drama|Romance     19
## 3334  1942                                               Drama|Romance     19
## 3336  1964                                Comedy|Drama|Musical|Romance     19
## 3346  1945                                    Mystery|Romance|Thriller     19
## 3347  1955                              Crime|Mystery|Romance|Thriller     19
## 3359  1961                                     Children|Comedy|Romance     19
## 3363  1964                             Children|Comedy|Fantasy|Musical     19
## 3368  1996                                                Comedy|Drama     19
## 3370  1996                                                    Thriller     19
## 3372  1973                                               Comedy|Sci-Fi     19
## 3374  1979                                                      Comedy     19
## 3375  1972                                                       Drama     19
## 3378  1987                                       Drama|Musical|Romance     19
## 3381  1989                                                      Comedy     19
## 3382  1992                                      Crime|Mystery|Thriller     19
## 3383  1991                                                       Drama     19
## 3387  1986                                              Action|Romance     19
## 3390  1981                                                       Drama     19
## 3391  1991                                              Comedy|Fantasy     19
## 3392  1989                            Action|Adventure|Sci-Fi|Thriller     19
## 3394  1981                            Action|Adventure|Sci-Fi|Thriller     19
## 3398  1979                                                   Drama|War     19
## 3399  1992                                                      Comedy     19
## 3400  1991                                        Comedy|Drama|Romance     19
## 3404  1996                                           Drama|Romance|War     19
## 3408  1987                     Action|Adventure|Comedy|Fantasy|Romance     19
## 3424  1988                                     Adventure|Drama|Romance     19
## 3432  1984                                                 Crime|Drama     19
## 3442  1989                                                       Drama     19
## 3443  1967                                        Comedy|Drama|Romance     19
## 3452  1986                                             Adventure|Drama     19
## 3460  1990                                                Comedy|Drama     19
## 3463  1991                                          Comedy|Crime|Drama     19
## 3464  1970                                                   Drama|War     19
## 3466  1986                                    Action|Adventure|Fantasy     19
## 3472  1989                                                      Comedy     19
## 3476  1987                                               Drama|Romance     19
## 3477  1989                                            Action|Adventure     19
## 3480  1982                                               Drama|Musical     19
## 3482  1989                                      Children|Drama|Fantasy     19
## 3483  1969                                              Action|Western     19
## 3484  1991                                      Adventure|Drama|Sci-Fi     19
## 3485  1989                                              Comedy|Romance     19
## 3486  1992                               Action|Horror|Sci-Fi|Thriller     19
## 3487  1981                                      Comedy|Horror|Thriller     19
## 3488  1979                               Drama|Horror|Mystery|Thriller     19
## 3489  1987                                             Horror|Thriller     19
## 3491  1958                                               Horror|Sci-Fi     19
## 3492  1991                                             Horror|Thriller     19
## 3493  1992                             Fantasy|Horror|Romance|Thriller     19
## 3494  1992                                             Horror|Thriller     19
## 3498  1984                                             Horror|Thriller     19
## 3500  1976                                     Horror|Mystery|Thriller     19
## 3502  1996                            Action|Adventure|Sci-Fi|Thriller     19
## 3506  1991                                       Action|Mystery|Sci-Fi     19
## 3507  1989                                               Action|Sci-Fi     19
## 3508  1982                            Action|Adventure|Sci-Fi|Thriller     19
## 3510  1986                                     Adventure|Comedy|Sci-Fi     19
## 3511  1992                                                Action|Crime     19
## 3512  1988                                       Action|Comedy|Western     19
## 3513  1978                                      Comedy|Musical|Romance     19
## 3514  1982                                      Comedy|Musical|Romance     19
## 3515  1990                                                Action|Drama     19
## 3516  1992                                       Action|Drama|Thriller     19
## 3518  1978                                             Horror|Thriller     19
## 3519  1983                                               Action|Horror     19
## 3520  1996                                        Action|Comedy|Sci-Fi     19
## 3521  1996                                               Drama|Romance     19
## 3523  1992                            Action|Comedy|Crime|Drama|Sci-Fi     19
## 3524  1996                            Adventure|Animation|Comedy|Crime     19
## 3525  1992                                  Action|Romance|War|Western     19
## 3526  1993                                              Comedy|Romance     19
## 3527  1954                                      Action|Adventure|Drama     19
## 3529  1995                 Adventure|Animation|Children|Comedy|Fantasy     20
## 3530  1995                                     Mystery|Sci-Fi|Thriller     20
## 3531  1995                                              Children|Drama     20
## 3532  1996                           Adventure|Children|Comedy|Musical     20
## 3533  1995                                            Action|Drama|War     20
## 3534  1995                                        Adventure|Drama|IMAX     20
## 3536  1995                                               Drama|Romance     20
## 3537  1994                                            Adventure|Comedy     20
## 3538  1977                                     Action|Adventure|Sci-Fi     20
## 3539  1994                                 Comedy|Crime|Drama|Thriller     20
## 3540  1994                                     Action|Adventure|Sci-Fi     20
## 3542  1994                                                      Comedy     20
## 3543  1994                                    Comedy|Drama|Romance|War     20
## 3544  1994             Adventure|Animation|Children|Drama|Musical|IMAX     20
## 3545  1994                                 Action|Comedy|Crime|Fantasy     20
## 3548  1993                            Action|Adventure|Sci-Fi|Thriller     20
## 3550  1993                                                Comedy|Drama     20
## 3551  1993                                                   Drama|War     20
## 3552  1992                 Adventure|Animation|Children|Comedy|Musical     20
## 3553  1990                                     Adventure|Drama|Western     20
## 3555  1991                                       Crime|Horror|Thriller     20
## 3558  1996                                 Comedy|Crime|Drama|Thriller     20
## 3561  1996                           Action|Adventure|Romance|Thriller     20
## 3565  1972                                                 Crime|Drama     20
## 3566  1954                                            Mystery|Thriller     20
## 3567  1934                                              Comedy|Romance     20
## 3568  1942                                               Drama|Romance     20
## 3569  1954                                      Adventure|Drama|Sci-Fi     20
## 3570  1982                                       Children|Drama|Sci-Fi     20
## 3574  1980                                     Action|Adventure|Sci-Fi     20
## 3578  1983                                     Action|Adventure|Sci-Fi     20
## 3579  1967                                        Comedy|Drama|Romance     20
## 3581  1985                                     Adventure|Comedy|Sci-Fi     20
## 3582  1982                                                       Drama     20
## 3583  1988                                       Action|Comedy|Western     20
## 3584  1993                                              Comedy|Romance     20
## 3589  1972                                      Action|Adventure|Drama     20
## 3593  1999                                        Drama|Horror|Mystery     20
## 3594  1999                                                       Drama     20
## 3595  1999                                 Action|Crime|Drama|Thriller     20
## 3596  1999                                                       Drama     20
## 3597  1953                                                   Drama|War     20
## 3599  2000                                         Action|Thriller|War     20
## 3600  1991                                                      Comedy     20
## 3603  2001                                 Adventure|Animation|Fantasy     20
## 3611  2003                                              Fantasy|Sci-Fi     20
## 3613  1990                                            Action|Drama|War     20
## 3614  1947                                                      Comedy     20
## 3615  2004                                                       Drama     20
## 3620  1956                                            Children|Fantasy     20
## 3624  2008                         Adventure|Animation|Children|Comedy     20
## 3627  1995                                   Action|Adventure|Thriller     21
## 3628  1995                                       Comedy|Crime|Thriller     21
## 3631  1995                                                 Crime|Drama     21
## 3632  1995                                    Action|Adventure|Fantasy     21
## 3634  1996                                   Action|Adventure|Thriller     21
## 3637  1995                                             Action|Children     21
## 3638  1995                                               Horror|Sci-Fi     21
## 3639  1995                                     Action|Adventure|Sci-Fi     21
## 3640  1977                                     Action|Adventure|Sci-Fi     21
## 3641  1994                                   Drama|Romance|War|Western     21
## 3642  1994                                         Drama|Horror|Sci-Fi     21
## 3643  1994                                       Action|Crime|Thriller     21
## 3644  1994                                 Comedy|Crime|Drama|Thriller     21
## 3645  1994                                     Action|Adventure|Sci-Fi     21
## 3646  1994                                      Adventure|Drama|Sci-Fi     21
## 3647  1995                                                      Comedy     21
## 3648  1994                                                      Comedy     21
## 3651  1994                                      Action|Sci-Fi|Thriller     21
## 3652  1994                    Action|Adventure|Comedy|Romance|Thriller     21
## 3653  1994                                    Action|Adventure|Fantasy     21
## 3654  1993                                     Action|Adventure|Sci-Fi     21
## 3655  1993                                                    Thriller     21
## 3656  1993                                           Action|Comedy|War     21
## 3657  1993                            Action|Adventure|Sci-Fi|Thriller     21
## 3658  1993                             Action|Adventure|Comedy|Fantasy     21
## 3661  1982                                      Action|Sci-Fi|Thriller     21
## 3662  1993                                     Comedy|Romance|Thriller     21
## 3663  1993                          Animation|Children|Fantasy|Musical     21
## 3664  1993                                        Action|Drama|Western     21
## 3665  1990                                             Children|Comedy     21
## 3668  1989                                       Action|Crime|Thriller     21
## 3670  1937                    Animation|Children|Drama|Fantasy|Musical     21
## 3671  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     21
## 3672  1990                                              Comedy|Romance     21
## 3673  1981                    Action|Adventure|Animation|Horror|Sci-Fi     21
## 3674  1996                           Action|Adventure|Mystery|Thriller     21
## 3675  1996                                   Action|Adventure|Thriller     21
## 3677  1996                            Action|Adventure|Sci-Fi|Thriller     21
## 3678  1996                            Action|Adventure|Sci-Fi|Thriller     21
## 3680  1952                                      Comedy|Musical|Romance     21
## 3681  1959                   Action|Adventure|Mystery|Romance|Thriller     21
## 3682  1959                                                Comedy|Crime     21
## 3692  1935                                      Comedy|Musical|Romance     21
## 3693  1956                                       Drama|Romance|Western     21
## 3694  1956                                            Adventure|Comedy     21
## 3698  1957                                              Children|Drama     21
## 3699  1954                                      Adventure|Drama|Sci-Fi     21
## 3700  1950                  Animation|Children|Fantasy|Musical|Romance     21
## 3701  1964                             Children|Comedy|Fantasy|Musical     21
## 3702  1971                                  Adventure|Children|Musical     21
## 3703  1951                Adventure|Animation|Children|Fantasy|Musical     21
## 3706  1988                                                Comedy|Crime     21
## 3707  1979                                                      Comedy     21
## 3708  1987                                       Drama|Musical|Romance     21
## 3709  1992                                      Crime|Mystery|Thriller     21
## 3711  1989                                                      Comedy     21
## 3712  1982                                       Children|Drama|Sci-Fi     21
## 3713  1955                                                       Drama     21
## 3716  1989                            Action|Adventure|Sci-Fi|Thriller     21
## 3717  1981                            Action|Adventure|Sci-Fi|Thriller     21
## 3718  1980                                                      Comedy     21
## 3723  1975                                                       Drama     21
## 3734  1974                                                 Crime|Drama     21
## 3735  1987                                                   Drama|War     21
## 3739  1983                                                       Drama     21
## 3740  1973                                                Comedy|Crime     21
## 3744  1974                            Crime|Film-Noir|Mystery|Thriller     21
## 3745  1951                                       Drama|Sci-Fi|Thriller     21
## 3747  1933                                          Comedy|Musical|War     21
## 3750  1993                                      Comedy|Fantasy|Romance     21
## 3751  1992                                               Drama|Western     21
## 3753  1986                                    Action|Adventure|Fantasy     21
## 3755  1940                          Animation|Children|Fantasy|Musical     21
## 3761  1988                                                       Drama     21
## 3763  1985                                                      Comedy     21
## 3764  1982                                               Drama|Musical     21
## 3765  1956                                                Drama|Sci-Fi     21
## 3768  1992                               Action|Horror|Sci-Fi|Thriller     21
## 3770  1979                               Drama|Horror|Mystery|Thriller     21
## 3771  1958                                               Horror|Sci-Fi     21
## 3772  1976                               Drama|Fantasy|Horror|Thriller     21
## 3773  1982                                        Drama|Fantasy|Horror     21
## 3774  1976                                     Horror|Mystery|Thriller     21
## 3775  1990                                   Action|Adventure|Thriller     21
## 3776  1979                                            Adventure|Sci-Fi     21
## 3777  1991                                       Action|Mystery|Sci-Fi     21
## 3778  1989                                               Action|Sci-Fi     21
## 3780  1984                                     Action|Adventure|Sci-Fi     21
## 3781  1986                                     Adventure|Comedy|Sci-Fi     21
## 3782  1978                                      Comedy|Musical|Romance     21
## 3783  1975                                               Action|Horror     21
## 3784  1978                                             Horror|Thriller     21
## 3786  1987                                                Comedy|Drama     21
## 3787  1997                                             Action|Thriller     21
## 3788  1970                                            Comedy|Drama|War     21
## 3790  1995                                    Action|Adventure|Fantasy     22
## 3791  1995                                            Mystery|Thriller     22
## 3792  1995                    Animation|Children|Drama|Musical|Romance     22
## 3793  1996                               Action|Comedy|Horror|Thriller     22
## 3794  1995                               Action|Adventure|Comedy|Crime     22
## 3795  1995                                          Adventure|Children     22
## 3797  1995                                         Action|Crime|Sci-Fi     22
## 3798  1995                                     Action|Adventure|Sci-Fi     22
## 3799  1994                                            Adventure|Comedy     22
## 3800  1994                                                Comedy|Drama     22
## 3803  1995                                                      Comedy     22
## 3805  1994                                       Action|Drama|Thriller     22
## 3806  1994                                     Children|Comedy|Fantasy     22
## 3807  1994                                    Comedy|Drama|Romance|War     22
## 3808  1993                                     Action|Adventure|Sci-Fi     22
## 3811  1993                             Action|Adventure|Comedy|Fantasy     22
## 3814  1993                             Action|Adventure|Comedy|Romance     22
## 3816  1990                                             Children|Comedy     22
## 3817  1992                 Adventure|Animation|Children|Comedy|Musical     22
## 3822  1996                                             Comedy|Thriller     22
## 3823  1996                                                      Comedy     22
## 3825  1979                                                      Comedy     22
## 3827  1982                                       Children|Drama|Sci-Fi     22
## 3828  1986                                              Action|Romance     22
## 3829  1993                             Animation|Children|Comedy|Crime     22
## 3833  1966                                    Action|Adventure|Western     22
## 3834  1979                                            Action|Drama|War     22
## 3836  1979                                               Horror|Sci-Fi     22
## 3840  1978                                                   Drama|War     22
## 3843  1992                               Action|Horror|Sci-Fi|Thriller     22
## 3846  1979                                            Adventure|Sci-Fi     22
## 3848  1982                            Action|Adventure|Sci-Fi|Thriller     22
## 3853  1996                                        Action|Comedy|Sci-Fi     22
## 3855  1997                            Action|Adventure|Sci-Fi|Thriller     22
## 3857  1997                                             Action|Thriller     22
## 3858  1997                                      Drama|Mystery|Thriller     22
## 3859  1997                                                Comedy|Drama     22
## 3860  1997                                      Drama|Mystery|Thriller     22
## 3861  1998                                         Comedy|Drama|Sci-Fi     22
## 3862  1997                                               Drama|Mystery     22
## 3863  1997                                               Drama|Romance     22
## 3864  1997                                   Action|Adventure|Thriller     22
## 3865  1998                                       Action|Crime|Thriller     22
## 3867  1998                                       Drama|Sci-Fi|Thriller     22
## 3869  1998                        Action|Crime|Mystery|Sci-Fi|Thriller     22
## 3870  1998                              Action|Romance|Sci-Fi|Thriller     22
## 3871  1998                                              Comedy|Romance     22
## 3872  1973                                              Horror|Mystery     22
## 3873  1998                                       Action|Comedy|Romance     22
## 3874  1989                                     Adventure|Comedy|Sci-Fi     22
## 3875  1990                                Crime|Drama|Mystery|Thriller     22
## 3876  1989                   Animation|Children|Comedy|Musical|Romance     22
## 3877  1984                                    Action|Adventure|Fantasy     22
## 3879  1997                              Horror|Mystery|Sci-Fi|Thriller     22
## 3882  1981                                              Comedy|Musical     22
## 3883  1998                                                     Romance     22
## 3884  1985                                   Action|Adventure|Thriller     22
## 3885  1998                                                Comedy|Drama     22
## 3887  1999                                                Comedy|Crime     22
## 3890  1999                                              Crime|Thriller     22
## 3891  1990                                                Action|Crime     22
## 3892  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     22
## 3893  1975                                Comedy|Horror|Musical|Sci-Fi     22
## 3894  1999                                       Drama|Sci-Fi|Thriller     22
## 3895  1999                                     Action|Adventure|Comedy     22
## 3896  1999                                    Animation|Comedy|Musical     22
## 3897  1999                                Action|Comedy|Sci-Fi|Western     22
## 3898  1999                                       Drama|Horror|Thriller     22
## 3900  1984                                        Action|Comedy|Sci-Fi     22
## 3901  1989                                       Comedy|Fantasy|Sci-Fi     22
## 3902  1999                                       Action|Comedy|Fantasy     22
## 3904  1999                                              Action|Mystery     22
## 3906  1999                                 Action|Crime|Drama|Thriller     22
## 3907  1992                                             Children|Comedy     22
## 3909  1987                          Action|Crime|Drama|Sci-Fi|Thriller     22
## 3911  1989                                   Action|Adventure|Thriller     22
## 3913  1999                                    Adventure|Comedy|Fantasy     22
## 3915  1999                                   Action|Adventure|Thriller     22
## 3916  1999                                                 Crime|Drama     22
## 3917  1999                                      Drama|Mystery|Thriller     22
## 3919  1992                                                      Comedy     22
## 3920  2000                                             Adventure|Drama     22
## 3921  2000                                      Horror|Sci-Fi|Thriller     22
## 3922  2000                                                      Sci-Fi     22
## 3924  2000                                                       Drama     22
## 3925  1990                       Action|Children|Comedy|Fantasy|Sci-Fi     22
## 3928  2000                                      Action|Adventure|Drama     22
## 3929  2000                                   Action|Adventure|Thriller     22
## 3930  1990                                      Action|Sci-Fi|Thriller     22
## 3931  2000                                   Animation|Children|Comedy     22
## 3933  1991                                                      Comedy     22
## 3934  2000                                      Horror|Sci-Fi|Thriller     22
## 3936  2000                                               Action|Comedy     22
## 3937  2000                                                Drama|Sci-Fi     22
## 3938  2000                                        Action|Drama|Romance     22
## 3939  2000                                            Action|Adventure     22
## 3941  2000                                               Comedy|Sci-Fi     22
## 3942  2000                                      Adventure|Comedy|Crime     22
## 3945  2001                                                 Crime|Drama     22
## 3946  1983                                          Action|Crime|Drama     22
## 3948  2001                                      Adventure|Drama|Sci-Fi     22
## 3949  2000                                Crime|Drama|Mystery|Thriller     22
## 3950  2001                               Action|Adventure|Drama|Sci-Fi     22
## 3952  2001                               Drama|Horror|Mystery|Thriller     22
## 3953  2001                                        Crime|Drama|Thriller     22
## 3955  2001                                  Adventure|Children|Fantasy     22
## 3956  2001                                              Crime|Thriller     22
## 3959  2001                                            Action|Drama|War     22
## 3961  2002                               Action|Horror|Sci-Fi|Thriller     22
## 3962  2002                                                    Thriller     22
## 3964  2002                                              Drama|Thriller     22
## 3966  2002                                        Action|Comedy|Sci-Fi     22
## 3967  2002                                                 Crime|Drama     22
## 3970  2002                                           Adventure|Fantasy     22
## 3971  2002                                   Action|Adventure|Thriller     22
## 3974  2002                                                 Crime|Drama     22
## 3977  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     22
## 3978  2003                                Comedy|Drama|Fantasy|Romance     22
## 3979  2002                                        Action|Horror|Sci-Fi     22
## 3981  2003                                       Action|Fantasy|Sci-Fi     22
## 3982  2003                                       Action|Fantasy|Horror     22
## 3984  1969                                         Action|Comedy|Crime     22
## 3985  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     22
## 3989  2004                                Action|Drama|Horror|Thriller     22
## 3990  2004                             Action|Adventure|Fantasy|Horror     22
## 3992  2004                             Action|Adventure|Fantasy|Horror     22
## 3994  2004         Adventure|Animation|Children|Comedy|Musical|Romance     22
## 3995  2004                                      Adventure|Fantasy|IMAX     22
## 3997  2004                                 Action|Crime|Drama|Thriller     22
## 3998  2004                                     Horror|Mystery|Thriller     22
## 4001  2004                  Action|Adventure|Animation|Children|Comedy     22
## 4006  2005                                     Action|Adventure|Sci-Fi     22
## 4007  2005                                           Action|Crime|IMAX     22
## 4009  1995                 Adventure|Animation|Children|Comedy|Fantasy     23
## 4010  1995                                       Action|Crime|Thriller     23
## 4011  1995                                        Comedy|Drama|Romance     23
## 4013  1995                                                      Comedy     23
## 4014  1995                          Action|Comedy|Crime|Drama|Thriller     23
## 4015  1995                                                Drama|Sci-Fi     23
## 4017  1995                                              Children|Drama     23
## 4020  1994                                        Comedy|Drama|Romance     23
## 4023  1996                                                      Comedy     23
## 4024  1995                                            Action|Drama|War     23
## 4026  1995                                        Adventure|Drama|IMAX     23
## 4027  1995                               Action|Adventure|Comedy|Crime     23
## 4029  1995                                      Action|Sci-Fi|Thriller     23
## 4030  1995                                       Action|Crime|Thriller     23
## 4037  1994                                                Drama|Horror     23
## 4040  1992                                       Drama|Fantasy|Romance     23
## 4041  1995                                Action|Drama|Sci-Fi|Thriller     23
## 4045  1994                                                       Drama     23
## 4046  1993                                                       Drama     23
## 4047  1994                                     Action|Adventure|Sci-Fi     23
## 4051  1994                                                      Comedy     23
## 4055  1994                                               Drama|Romance     23
## 4056  1993                                                 Crime|Drama     23
## 4057  1993                                     Action|Adventure|Sci-Fi     23
## 4058  1993                                                    Thriller     23
## 4059  1993                                            Action|Drama|War     23
## 4060  1994                                                      Comedy     23
## 4061  1993                            Action|Adventure|Sci-Fi|Thriller     23
## 4062  1993                             Action|Adventure|Comedy|Fantasy     23
## 4067  1993                                                   Drama|War     23
## 4068  1994                                         Comedy|Crime|Horror     23
## 4070  1993                                        Comedy|Drama|Romance     23
## 4071  1982                                      Action|Sci-Fi|Thriller     23
## 4072  1990                                             Children|Comedy     23
## 4074  1991                                               Action|Sci-Fi     23
## 4075  1990                                     Adventure|Drama|Western     23
## 4076  1989                                       Action|Crime|Thriller     23
## 4079  1990                                              Comedy|Romance     23
## 4083  1996                                    Action|Adventure|Fantasy     23
## 4089  1996                            Action|Adventure|Sci-Fi|Thriller     23
## 4090  1996                               Comedy|Fantasy|Romance|Sci-Fi     23
## 4091  1996                                               Drama|Romance     23
## 4092  1996                                              Drama|Thriller     23
## 4097  1951                                             Musical|Romance     23
## 4098  1958                              Drama|Mystery|Romance|Thriller     23
## 4102  1960                                        Comedy|Drama|Romance     23
## 4107  1964                                Comedy|Drama|Musical|Romance     23
## 4108  1939                                           Drama|Romance|War     23
## 4111  1968                                      Adventure|Drama|Sci-Fi     23
## 4116  1955                              Crime|Mystery|Romance|Thriller     23
## 4118  1956                                       Drama|Romance|Western     23
## 4119  1955                                                       Drama     23
## 4120  1956                                            Adventure|Comedy     23
## 4123  1938                                              Comedy|Romance     23
## 4124  1935                                      Drama|Mystery|Thriller     23
## 4125  1951                                Adventure|Comedy|Romance|War     23
## 4126  1958                                                       Drama     23
## 4127  1965                                             Musical|Romance     23
## 4128  1988                                       Action|Crime|Thriller     23
## 4131  1996                                                    Thriller     23
## 4136  1992                                      Crime|Mystery|Thriller     23
## 4138  1982                                                       Drama     23
## 4140  1986                                              Action|Romance     23
## 4145  1991                                        Comedy|Drama|Romance     23
## 4146  1991                                       Drama|Fantasy|Romance     23
## 4149  1989                                                       Drama     23
## 4155  1985                                              Fantasy|Sci-Fi     23
## 4161  1962                                                       Drama     23
## 4164  1987                                       Drama|Fantasy|Romance     23
## 4165  1949                                  Film-Noir|Mystery|Thriller     23
## 4168  1989                                 Action|Crime|Drama|Thriller     23
## 4171  1987                                                   Drama|War     23
## 4173  1984                                                 Crime|Drama     23
## 4178  1981                                            Action|Drama|War     23
## 4179  1973                                                Comedy|Crime     23
## 4180  1971                                        Comedy|Drama|Romance     23
## 4182  1984                                      Action|Sci-Fi|Thriller     23
## 4183  1992                                       Comedy|Fantasy|Horror     23
## 4184  1990                                                Comedy|Drama     23
## 4185  1979                                        Comedy|Drama|Romance     23
## 4192  1948                              Action|Adventure|Drama|Western     23
## 4193  1933                                          Comedy|Musical|War     23
## 4194  1980                                                      Horror     23
## 4197  1978                                                   Drama|War     23
## 4199  1992                                               Drama|Western     23
## 4203  1970                                                   Drama|War     23
## 4204  1990                                        Comedy|Drama|Romance     23
## 4206  1940                                            Comedy|Drama|War     23
## 4209  1984                                                      Comedy     23
## 4210  1989                                            Action|Adventure     23
## 4215  1963                                             Horror|Thriller     23
## 4217  1922                                                      Horror     23
## 4219  1996                            Action|Adventure|Sci-Fi|Thriller     23
## 4220  1992                                                Action|Crime     23
## 4221  1978                                      Comedy|Musical|Romance     23
## 4222  1975                                               Action|Horror     23
## 4223  1996                                        Action|Comedy|Sci-Fi     23
## 4226  1992                                  Action|Romance|War|Western     23
## 4227  1996                                         Crime|Drama|Romance     23
## 4228  1997                                             Action|Thriller     23
## 4229  1997               Crime|Drama|Fantasy|Film-Noir|Mystery|Romance     23
## 4230  1997                                   Action|Adventure|Thriller     23
## 4232  1997                                       Action|Drama|Thriller     23
## 4233  1997                              Action|Adventure|Comedy|Sci-Fi     23
## 4234  1997                            Action|Adventure|Sci-Fi|Thriller     23
## 4235  1997                                   Action|Adventure|Thriller     23
## 4236  1997                                     Action|Romance|Thriller     23
## 4237  1997                           Action|Adventure|Fantasy|Thriller     23
## 4238  1997                                        Action|Comedy|Sci-Fi     23
## 4240  1997                                             Action|Thriller     23
## 4246  1997                                               Drama|Romance     23
## 4248  1997                                   Action|Adventure|Thriller     23
## 4252  1998                                       Action|Crime|Thriller     23
## 4253  1998                                            Documentary|IMAX     23
## 4254  1998                                       Drama|Fantasy|Romance     23
## 4256  1998                                     Crime|Drama|Romance|War     23
## 4257  1998                                       Drama|Sci-Fi|Thriller     23
## 4258  1997                                                Comedy|Drama     23
## 4259  1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance     23
## 4260  1998                              Action|Romance|Sci-Fi|Thriller     23
## 4261  1930                                            Action|Drama|War     23
## 4263  1936                                               Drama|Musical     23
## 4265  1948                                                       Drama     23
## 4270  1966                                                       Drama     23
## 4272  1968                                               Drama|Musical     23
## 4274  1971                                       Action|Crime|Thriller     23
## 4275  1976                                                       Drama     23
## 4277  1980                                                       Drama     23
## 4278  1981                                                       Drama     23
## 4279  1983                                                Comedy|Drama     23
## 4280  1985                                               Drama|Romance     23
## 4281  1987                                                       Drama     23
## 4283  1989                                                       Drama     23
## 4284  1973                                              Horror|Mystery     23
## 4285  1992                                   Action|Comedy|Crime|Drama     23
## 4286  1927                                                Drama|Sci-Fi     23
## 4291  1990                                Crime|Drama|Mystery|Thriller     23
## 4292  1998                                                Comedy|Crime     23
## 4294  1965                                           Drama|Romance|War     23
## 4297  1998                               Action|Crime|Mystery|Thriller     23
## 4299  1985                                   Adventure|Fantasy|Romance     23
## 4300  1988                                              Comedy|Fantasy     23
## 4302  1972                                                    Thriller     23
## 4304  1956                            Adventure|Drama|Mystery|Thriller     23
## 4306  1987                                          Action|Crime|Drama     23
## 4308  1941                                              Comedy|Romance     23
## 4309  1998                                                       Drama     23
## 4310  1989                                        Comedy|Drama|Romance     23
## 4311  1998                                Action|Comedy|Crime|Thriller     23
## 4315  1980                                                       Drama     23
## 4317  1997                                    Comedy|Drama|Romance|War     23
## 4318  1998                                                 Crime|Drama     23
## 4319  1998                                                       Drama     23
## 4320  1998                                             Action|Thriller     23
## 4321  1998                                                       Drama     23
## 4323  1998                                             Action|Thriller     23
## 4325  1998                                                       Drama     23
## 4327  1998                                           Animation|Musical     23
## 4330  1998                                              Comedy|Romance     23
## 4332  1986                                                       Drama     23
## 4335  1999                                                      Comedy     23
## 4336  1998                                       Comedy|Crime|Thriller     23
## 4338  1998                                                       Drama     23
## 4339  1999                                                Comedy|Crime     23
## 4340  1999                                                      Comedy     23
## 4342  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     23
## 4343  1999                                     Action|Adventure|Sci-Fi     23
## 4345  1931                                                      Horror     23
## 4347  1975                                Comedy|Horror|Musical|Sci-Fi     23
## 4349  1990                                               Comedy|Horror     23
## 4352  1984                                        Action|Comedy|Sci-Fi     23
## 4353  1999                                              Comedy|Romance     23
## 4354  1999                                              Comedy|Romance     23
## 4357  1962                                               Drama|Romance     23
## 4361  1986                                       Comedy|Horror|Musical     23
## 4363  1999                                              Comedy|Romance     23
## 4364  1999                                               Drama|Romance     23
## 4365  1972                                    Adventure|Drama|Thriller     23
## 4368  1999                                                       Drama     23
## 4371  1964                                   Action|Adventure|Thriller     23
## 4372  1996                                        Crime|Drama|Thriller     23
## 4373  1992                                             Children|Comedy     23
## 4374  1999                                 Action|Crime|Drama|Thriller     23
## 4377  1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     23
## 4380  1989                                                 Crime|Drama     23
## 4381  1993                                                Action|Drama     23
## 4382  1999                                    Adventure|Comedy|Fantasy     23
## 4383  1999                                                   Drama|War     23
## 4385  1999                              Fantasy|Horror|Mystery|Romance     23
## 4386  1999                                   Action|Adventure|Thriller     23
## 4388  1950                                              Comedy|Fantasy     23
## 4390  1940                                                       Drama     23
## 4391  1992                                                       Drama     23
## 4392  1999                 Adventure|Animation|Children|Comedy|Fantasy     23
## 4393  1999                                                 Crime|Drama     23
## 4394  1971                                                       Drama     23
## 4395  1999                                               Drama|Romance     23
## 4400  1970                                                       Drama     23
## 4403  1993                                                      Comedy     23
## 4405  1992                               Action|Crime|Thriller|Western     23
## 4409  1956                                               Drama|Western     23
## 4410  1976                                                       Drama     23
## 4412  1958                                                Action|Drama     23
## 4414  1975                                                       Drama     23
## 4419  1961                                                       Drama     23
## 4421  1951                                               Drama|Romance     23
## 4422  2000                                        Comedy|Drama|Romance     23
## 4423  1991                                    Adventure|Comedy|Fantasy     23
## 4425  1972                                        Drama|Mystery|Sci-Fi     23
## 4426  1976                                                Comedy|Drama     23
## 4427  2000                                              Drama|Thriller     23
## 4430  1952                                        Comedy|Drama|Romance     23
## 4431  1998                                                Comedy|Drama     23
## 4433  2000                                                Comedy|Crime     23
## 4434  2000                                   Action|Adventure|Thriller     23
## 4436  1968                                               Drama|Romance     23
## 4437  1974                                              Comedy|Western     23
## 4438  1965                               Action|Drama|Thriller|Western     23
## 4439  1974                                               Drama|Mystery     23
## 4441  1973                                        Crime|Drama|Thriller     23
## 4443  2000                                            Action|Drama|War     23
## 4445  1959                                               Drama|Mystery     23
## 4446  1989                                                       Drama     23
## 4447  1953                                               Drama|Western     23
## 4453  2000                                           Drama|Romance|War     23
## 4459  2000                                               Drama|Romance     23
## 4460  2000                                                       Drama     23
## 4461  2000                                      Adventure|Comedy|Crime     23
## 4462  2000                                        Crime|Drama|Thriller     23
## 4463  1987                            Crime|Film-Noir|Mystery|Thriller     23
## 4464  1987                                  Action|Adventure|Drama|War     23
## 4465  2001                                             Horror|Thriller     23
## 4466  2001                                                    Thriller     23
## 4467  2001                                                   Drama|War     23
## 4472  1934                                                 Documentary     23
## 4473  1969                                               Drama|Fantasy     23
## 4474  1987                                                       Drama     23
## 4476  2001                                    Action|Drama|Romance|War     23
## 4477  1999                                             Adventure|Drama     23
## 4478  2001                                               Comedy|Sci-Fi     23
## 4479  2001                                          Action|Crime|Drama     23
## 4480  1955                                                      Comedy     23
## 4481  2001                                      Adventure|Drama|Sci-Fi     23
## 4483  1957                                             Drama|Film-Noir     23
## 4484  2001                                              Comedy|Romance     23
## 4485  1994                                            Documentary|IMAX     23
## 4486  1989                                       Drama|Fantasy|Romance     23
## 4487  1989                                     Adventure|Comedy|Sci-Fi     23
## 4490  2001                                                      Comedy     23
## 4493  1971                                               Drama|Musical     23
## 4494  2001                               Crime|Horror|Mystery|Thriller     23
## 4495  2001                               Drama|Mystery|Sci-Fi|Thriller     23
## 4496  2001                                                 Crime|Drama     23
## 4497  2001                 Adventure|Animation|Children|Comedy|Fantasy     23
## 4498  2001                                  Adventure|Children|Fantasy     23
## 4499  2001                                 Action|Crime|Drama|Thriller     23
## 4504  2001                             Mystery|Romance|Sci-Fi|Thriller     23
## 4505  2001                                                       Drama     23
## 4511  2001                                                       Drama     23
## 4512  2001                                               Drama|Romance     23
## 4513  1970                                            Comedy|Drama|War     23
## 4514  2001                                                       Drama     23
## 4515  1994                                                      Comedy     23
## 4524  2002                                              Comedy|Romance     23
## 4525  1945                                                   Drama|War     23
## 4526  2002                                                Comedy|Drama     23
## 4527  2002                            Action|Adventure|Sci-Fi|Thriller     23
## 4529  1957                                           Drama|Romance|War     23
## 4530  2002                                        Comedy|Drama|Romance     23
## 4531  2002                                Action|Adventure|Sci-Fi|IMAX     23
## 4532  1978                                                 Documentary     23
## 4533  2002                         Action|Crime|Drama|Mystery|Thriller     23
## 4534  2002                        Action|Crime|Mystery|Sci-Fi|Thriller     23
## 4536  2002                                    Action|Adventure|Fantasy     23
## 4537  2002                                                 Crime|Drama     23
## 4538  1952                                              Comedy|Romance     23
## 4539  1979                                                      Horror     23
## 4541  1931                                               Drama|Romance     23
## 4542  2001                                 Adventure|Animation|Fantasy     23
## 4546  2002                                     Horror|Mystery|Thriller     23
## 4547  2001                                                       Drama     23
## 4549  2002                                           Adventure|Fantasy     23
## 4552  2002                    Adventure|Animation|Children|Sci-Fi|IMAX     23
## 4557  2002                                                 Crime|Drama     23
## 4558  2002                                                 Crime|Drama     23
## 4561  2002                                  Comedy|Crime|Drama|Musical     23
## 4565  2002                                                       Drama     23
## 4567  2002                                             Adventure|Drama     23
## 4568  2002                                               Drama|Mystery     23
## 4569  2002                                Crime|Drama|Mystery|Thriller     23
## 4573  2003                               Crime|Horror|Mystery|Thriller     23
## 4574  2003                            Action|Adventure|Sci-Fi|Thriller     23
## 4576  2003                         Adventure|Animation|Children|Comedy     23
## 4577  1952                                              Comedy|Romance     23
## 4578  1987                                                Comedy|Drama     23
## 4579  1991                                              Drama|Thriller     23
## 4580  2003                                     Action|Adventure|Sci-Fi     23
## 4582  2002                                        Crime|Drama|Thriller     23
## 4584  1961                                                       Drama     23
## 4586  2003                                                Comedy|Drama     23
## 4587  2000                                                       Drama     23
## 4589  1972                                        Comedy|Drama|Fantasy     23
## 4591  2003                                          Comedy|Crime|Drama     23
## 4592  2003                             Action|Adventure|Crime|Thriller     23
## 4593  2003                                        Comedy|Drama|Romance     23
## 4596  1991                                                 Crime|Drama     23
## 4597  1983                                                      Comedy     23
## 4598  2003                                                Comedy|Drama     23
## 4599  2003                                         Crime|Drama|Mystery     23
## 4606  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     23
## 4607  1991                                                      Comedy     23
## 4608  2003                                         Adventure|Drama|War     23
## 4609  2003                        Crime|Drama|Mystery|Romance|Thriller     23
## 4610  2003                          Comedy|Crime|Drama|Mystery|Romance     23
## 4612  1955                                                       Drama     23
## 4613  1952                                                   Drama|War     23
## 4616  1986                                        Comedy|Drama|Romance     23
## 4617  1990                                Action|Comedy|Crime|Thriller     23
## 4618  1972                                               Drama|Romance     23
## 4621  1986                                               Drama|Romance     23
## 4627  1979                                                  Comedy|War     23
## 4628  1935                                      Comedy|Musical|Romance     23
## 4630  2002                                               Drama|Romance     23
## 4633  2003                                                 Crime|Drama     23
## 4634  2003                                             Children|Comedy     23
## 4635  2003                                           Drama|Romance|War     23
## 4639  2004                                            Mystery|Thriller     23
## 4642  1985                                             Comedy|Thriller     23
## 4643  2004                                       Action|Drama|Thriller     23
## 4644  2004                                  Action|Adventure|Drama|War     23
## 4645  1967                            Action|Adventure|Sci-Fi|Thriller     23
## 4647  1942                               Drama|Horror|Romance|Thriller     23
## 4648  1965                                                 Crime|Drama     23
## 4649  1983                                                       Drama     23
## 4652  1953                                               Drama|Romance     23
## 4653  2002                               Drama|Horror|Mystery|Thriller     23
## 4656  1960                                                       Drama     23
## 4657  1960                                       Drama|Mystery|Romance     23
## 4658  1961                                                Comedy|Drama     23
## 4659  1947                                                       Drama     23
## 4662  2004                                    Comedy|Documentary|Drama     23
## 4663  1932                                          Crime|Drama|Horror     23
## 4664  2004                                        Comedy|Drama|Romance     23
## 4665  2004                                Action|Adventure|Sci-Fi|IMAX     23
## 4666  1988                                                 Crime|Drama     23
## 4669  2004                                        Comedy|Drama|Romance     23
## 4672  2004                                                       Drama     23
## 4675  2004                                Action|Comedy|Crime|Thriller     23
## 4676  1924                                                       Drama     23
## 4678  1934                                        Comedy|Drama|Romance     23
## 4683  2004                                Drama|Fantasy|Romance|Sci-Fi     23
## 4684  1999                       Drama|Horror|Mystery|Romance|Thriller     23
## 4685  2004                                   Drama|Mystery|Romance|War     23
## 4687  2004                                                       Drama     23
## 4689  2005                      Adventure|Children|Comedy|Fantasy|IMAX     23
## 4690  2004                                                       Drama     23
## 4693  2004                         Adventure|Animation|Fantasy|Romance     23
## 4694  2005                     Action|Crime|Film-Noir|Mystery|Thriller     23
## 4696  2005                                    Action|Drama|Romance|War     23
## 4699  2005                                           Action|Crime|IMAX     23
## 4700  2004                                  Comedy|Crime|Drama|Romance     23
## 4701  2005                            Action|Adventure|Sci-Fi|Thriller     23
## 4702  2005                                       Drama|Horror|Thriller     23
## 4704  2005                                                Comedy|Drama     23
## 4705  2005                                              Drama|Thriller     23
## 4706  2005                             Action|Crime|Drama|Thriller|War     23
## 4708  2005                                 Action|Crime|Drama|Thriller     23
## 4709  2005                                                       Drama     23
## 4716  2005                                            Action|Drama|War     23
## 4719  2005                             Adventure|Fantasy|Thriller|IMAX     23
## 4720  2005                                       Drama|Musical|Romance     23
## 4722  2005                     Action|Adventure|Drama|Fantasy|Thriller     23
## 4723  2005                                               Drama|Romance     23
## 4724  2006                                       Adventure|Crime|Drama     23
## 4727  2005                                     Adventure|Drama|Romance     23
## 4728  2005                                   Animation|Children|Comedy     23
## 4731  2006                                   Action|Adventure|Thriller     23
## 4732  2006                                      Drama|Mystery|Thriller     23
## 4733  2006                                    Action|Adventure|Fantasy     23
## 4734  2006                                                      Comedy     23
## 4736  1995                                                 Crime|Drama     24
## 4738  1996                                   Action|Adventure|Thriller     24
## 4739  1995                                        Adventure|Drama|IMAX     24
## 4742  1994                                     Action|Adventure|Sci-Fi     24
## 4746  1992                 Adventure|Animation|Children|Comedy|Musical     24
## 4748  1989                                       Action|Crime|Thriller     24
## 4749  1981                    Action|Adventure|Animation|Horror|Sci-Fi     24
## 4751  1996                           Action|Adventure|Romance|Thriller     24
## 4754  1996                                 Comedy|Crime|Drama|Thriller     24
## 4756  1995                                              Comedy|Romance     25
## 4758  1995                                 Action|Crime|Drama|Thriller     25
## 4761  1996                                   Action|Adventure|Thriller     25
## 4762  1996                                 Comedy|Crime|Drama|Thriller     25
## 4763  1996                                    Action|Adventure|Fantasy     25
## 4764  1996                                                      Comedy     25
## 4765  1996                                        Crime|Drama|Thriller     25
## 4768  1996                                             Comedy|Thriller     25
## 4769  1996                                       Action|Drama|Thriller     25
## 4770  1996                               Comedy|Fantasy|Romance|Sci-Fi     25
## 4772  1996                                              Crime|Thriller     25
## 4773  1996                                               Comedy|Horror     25
## 4775  1996                                               Drama|Mystery     25
## 4776  1996                            Action|Adventure|Sci-Fi|Thriller     25
## 4778  1996                                        Action|Comedy|Sci-Fi     25
## 4779  1996                            Adventure|Animation|Comedy|Crime     25
## 4780  1996                                Comedy|Drama|Fantasy|Romance     25
## 4781  1996                                              Drama|Thriller     25
## 4786  1996                                                Comedy|Crime     26
## 4788  1995                               Action|Adventure|Comedy|Crime     26
## 4789  1995                                       Action|Crime|Thriller     26
## 4790  1977                                     Action|Adventure|Sci-Fi     26
## 4791  1994                                 Comedy|Crime|Drama|Thriller     26
## 4792  1994                                     Action|Adventure|Sci-Fi     26
## 4794  1994                                                      Comedy     26
## 4796  1994                                 Action|Comedy|Crime|Fantasy     26
## 4797  1994                                     Action|Romance|Thriller     26
## 4798  1994                    Action|Adventure|Comedy|Romance|Thriller     26
## 4799  1993                                                    Thriller     26
## 4800  1993                            Action|Adventure|Sci-Fi|Thriller     26
## 4801  1993                                                Comedy|Drama     26
## 4802  1993                                              Crime|Thriller     26
## 4804  1991                                       Crime|Horror|Thriller     26
## 4805  1996                                 Comedy|Crime|Drama|Thriller     26
## 4806  1996                           Action|Adventure|Mystery|Thriller     26
## 4807  1996                                  Adventure|Animation|Comedy     26
## 4808  1996                                   Action|Adventure|Thriller     26
## 4810  1996                            Action|Adventure|Sci-Fi|Thriller     26
## 4812  1988                                       Action|Crime|Thriller     26
## 4813  1992                                      Crime|Mystery|Thriller     26
## 4814  1980                                     Action|Adventure|Sci-Fi     26
## 4816  1983                                     Action|Adventure|Sci-Fi     26
## 4817  1996                            Adventure|Animation|Comedy|Crime     26
## 4819  1997                                        Action|Comedy|Sci-Fi     26
## 4820  1997                                       Drama|Sci-Fi|Thriller     26
## 4821  1997                                             Action|Thriller     26
## 4823  1998                                                      Comedy     26
## 4824  1998                                     Action|Adventure|Sci-Fi     26
## 4826  1998                                            Action|Drama|War     26
## 4834  1991                                Comedy|Drama|Fantasy|Romance     26
## 4836  1999                                                 Crime|Drama     26
## 4838  2000                                        Comedy|Drama|Romance     26
## 4839  2000                                      Action|Adventure|Drama     26
## 4843  2000                                      Adventure|Comedy|Crime     26
## 4844  2001                                               Action|Comedy     26
## 4846  1983                                          Action|Crime|Drama     26
## 4849  2001                                        Comedy|Crime|Romance     26
## 4851  2001                                              Crime|Thriller     26
## 4852  2001                                              Comedy|Romance     26
## 4854  2001                                               Drama|Romance     26
## 4855  2001                                            Action|Drama|War     26
## 4860  2002                                        Comedy|Drama|Romance     26
## 4861  2002                                      Action|Sci-Fi|Thriller     26
## 4863  2002                                                 Crime|Drama     26
## 4864  2002                                                 Crime|Drama     26
## 4866  2003                            Action|Adventure|Sci-Fi|Thriller     26
## 4867  2003                             Action|Adventure|Comedy|Fantasy     26
## 4868  2003                                          Comedy|Crime|Drama     26
## 4870  2003                                         Crime|Drama|Mystery     26
## 4873  2004                                        Drama|Romance|Sci-Fi     26
## 4874  2004                                       Action|Drama|Thriller     26
## 4876  2004                                      Adventure|Fantasy|IMAX     26
## 4878  2004                                        Comedy|Drama|Romance     26
## 4880  2004                                               Comedy|Horror     26
## 4882  2001                                       Action|Drama|Thriller     26
## 4884  2004                                    Adventure|Comedy|Fantasy     26
## 4885  2004                                                   Drama|War     26
## 4889  2005                                                Comedy|Drama     26
## 4891  2005                                                 Crime|Drama     26
## 4892  2005                                                 Crime|Drama     26
## 4893  2005                         Adventure|Animation|Children|Comedy     26
## 4899  2006                                         Crime|Drama|Mystery     26
## 4903  2006                      Action|Adventure|Drama|Sci-Fi|Thriller     26
## 4906  2006                                      Action|Sci-Fi|Thriller     26
## 4908  2006                                                 Documentary     26
## 4910  2007                                 Action|Comedy|Crime|Mystery     26
## 4915  2007                             Action|Adventure|Crime|Thriller     26
## 4917  2007                                                      Comedy     26
## 4918  2007                                        Crime|Drama|Thriller     26
## 4919  2006                    Action|Adventure|Animation|Crime|Fantasy     26
## 4921  2007                                              Drama|Thriller     26
## 4922  2007                                                Comedy|Drama     26
## 4923  2007                                        Crime|Drama|Thriller     26
## 4924  2007                                                 Crime|Drama     26
## 4925  2007                                               Drama|Western     26
## 4926  2008                                 Comedy|Crime|Drama|Thriller     26
## 4928  2008                                     Action|Adventure|Sci-Fi     26
## 4930  2006                                     Adventure|Drama|Fantasy     26
## 4932  2008                 Adventure|Animation|Children|Romance|Sci-Fi     26
## 4934  2008                                         Action|Comedy|Crime     26
## 4935  2008                                          Comedy|Crime|Drama     26
## 4937  2008                                         Crime|Drama|Romance     26
## 4939  2009                                                      Comedy     26
## 4940  2009                                            Action|Drama|War     26
## 4941  2009                                Action|Adventure|Sci-Fi|IMAX     26
## 4942  2009                          Adventure|Animation|Children|Drama     26
## 4943  2009                                                Comedy|Crime     26
## 4944  2007                                     Action|Animation|Sci-Fi     26
## 4945  2009                                                Comedy|Drama     26
## 4946  2009                                Action|Adventure|Sci-Fi|IMAX     26
## 4947  2009                               Action|Crime|Mystery|Thriller     26
## 4949  2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     26
## 4950  2010                                        Crime|Drama|Thriller     26
## 4952  2011              Action|Adventure|Comedy|Crime|Mystery|Thriller     26
## 4966  1997                                               Drama|Romance     27
## 4968  1998                                                      Comedy     27
## 4969  1998                                        Crime|Drama|Thriller     27
## 4970  1998                                        Comedy|Drama|Romance     27
## 4973  1999                                       Drama|Horror|Thriller     27
## 4984  1958                              Drama|Mystery|Romance|Thriller     28
## 4993  1946                              Children|Drama|Fantasy|Romance     28
## 5010  1998                                     Action|Adventure|Sci-Fi     28
## 5014  1989                                                       Drama     28
## 5015  1954                                      Action|Adventure|Drama     28
## 5016  1998                                            Action|Drama|War     28
## 5022  1984                             Action|Adventure|Comedy|Romance     28
## 5028  1997                                              Comedy|Romance     29
## 5029  1997                                    Action|Adventure|Fantasy     29
## 5030  1997                              Comedy|Horror|Mystery|Thriller     29
## 5031  1985                                Comedy|Drama|Fantasy|Romance     29
## 5032  1976                   Adventure|Fantasy|Romance|Sci-Fi|Thriller     29
## 5033  1998                                    Adventure|Children|Drama     29
## 5034  1974                                                      Horror     29
## 5035  1989                                                      Horror     29
## 5037  1999                                             Horror|Thriller     29
## 5038  1989                                       Comedy|Fantasy|Sci-Fi     29
## 5039  1983                                               Drama|Romance     29
## 5041  2002                       Drama|Fantasy|Horror|Mystery|Thriller     29
## 5042  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     29
## 5044  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     29
## 5048  2010                                Action|Drama|Horror|Thriller     29
## 5050  1995                                  Adventure|Children|Fantasy     30
## 5056  1995                                                      Comedy     30
## 5060  1995                                     Mystery|Sci-Fi|Thriller     30
## 5062  1995                                          Action|Crime|Drama     30
## 5063  1995                                       Comedy|Drama|Thriller     30
## 5067  1995                                  Adventure|Children|Fantasy     30
## 5069  1995                                 Action|Crime|Drama|Thriller     30
## 5073  1996                                              Comedy|Romance     30
## 5076  1995                                          Adventure|Children     30
## 5078  1994                                                 Documentary     30
## 5081  1995                                               Horror|Sci-Fi     30
## 5082  1995                                                      Comedy     30
## 5083  1995                                     Action|Adventure|Sci-Fi     30
## 5084  1995                                                       Drama     30
## 5086  1994                                             Action|Thriller     30
## 5087  1995                                                      Comedy     30
## 5090  1995                                                       Drama     30
## 5096  1994                                       Action|Crime|Thriller     30
## 5102  1994                                                      Comedy     30
## 5108  1994             Adventure|Animation|Children|Drama|Musical|IMAX     30
## 5110  1994                                                       Drama     30
## 5117  1994                                                      Comedy     30
## 5118  1993                                                      Comedy     30
## 5121  1993                                      Horror|Sci-Fi|Thriller     30
## 5123  1994                                    Adventure|Comedy|Western     30
## 5145  1994                                                      Comedy     30
## 5146  1993                                                       Drama     30
## 5148  1993                                              Children|Drama     30
## 5149  1994                                         Comedy|Crime|Horror     30
## 5153  1993                                        Comedy|Drama|Romance     30
## 5159  1995                                                 Documentary     30
## 5161  1990                       Comedy|Drama|Fantasy|Romance|Thriller     30
## 5167  1937                    Animation|Children|Drama|Fantasy|Musical     30
## 5173  1996                                              Drama|Thriller     30
## 5175  1996                Adventure|Animation|Children|Fantasy|Musical     30
## 5176  1996                                        Crime|Drama|Thriller     30
## 5179  1964                                                  Comedy|War     30
## 5180  1996                                                Comedy|Crime     30
## 5181  1996                                                Comedy|Drama     30
## 5184  1996                                              Drama|Thriller     30
## 5187  1996                                                 Crime|Drama     30
## 5190  1996                                Crime|Drama|Musical|Thriller     30
## 5212  1996                                 Action|Crime|Drama|Thriller     30
## 5214  1969                                             Children|Comedy     30
## 5215  1957                                              Children|Drama     30
## 5217  1960                                          Adventure|Children     30
## 5218  1965                                     Children|Comedy|Mystery     30
## 5220  1991                                             Adventure|Drama     30
## 5225  1996                                                    Thriller     30
## 5226  1971                             Children|Comedy|Fantasy|Musical     30
## 5227  1971                                                  Comedy|War     30
## 5236  1989                                                      Comedy     30
## 5238  1991                                                       Drama     30
## 5245  1996                                                 Crime|Drama     30
## 5248  1991                                              Comedy|Fantasy     30
## 5249  1981                            Action|Adventure|Sci-Fi|Thriller     30
## 5250  1980                                                      Comedy     30
## 5251  1992                                                      Comedy     30
## 5255  1988                                                 Documentary     30
## 5258  1987                     Action|Adventure|Comedy|Fantasy|Romance     30
## 5260  1986                              Action|Adventure|Horror|Sci-Fi     30
## 5261  1971                                 Crime|Drama|Sci-Fi|Thriller     30
## 5265  1949                                  Film-Noir|Mystery|Thriller     30
## 5278  1971                                        Comedy|Drama|Romance     30
## 5298  1974                                              Comedy|Fantasy     30
## 5301  1980                                               Drama|Romance     30
## 5308  1992                               Action|Horror|Sci-Fi|Thriller     30
## 5316  1976                               Drama|Fantasy|Horror|Thriller     30
## 5323  1992                                                Action|Crime     30
## 5326  1992                                       Action|Drama|Thriller     30
## 5328  1978                                             Horror|Thriller     30
## 5329  1996                                                      Comedy     30
## 5334  1996                                                       Drama     30
## 5336  1997                                             Action|Thriller     30
## 5337  1993                                                      Comedy     30
## 5344  1997                                     Action|Adventure|Comedy     30
## 5347  1997                           Action|Adventure|Fantasy|Thriller     30
## 5351  1997                                             Children|Comedy     30
## 5352  1997                                 Action|Crime|Drama|Thriller     30
## 5356  1991                                               Drama|Romance     30
## 5357  1997                                                      Comedy     30
## 5361  1997                                      Drama|Mystery|Thriller     30
## 5368  1997                                        Action|Horror|Sci-Fi     30
## 5374  1997                               Action|Adventure|Drama|Sci-Fi     30
## 5376  1998                                                Comedy|Crime     30
## 5382  1998                                                    Thriller     30
## 5384  1998                                                Comedy|Drama     30
## 5386  1998                                                      Comedy     30
## 5389  1998                                      Action|Sci-Fi|Thriller     30
## 5390  1998                                      Adventure|Comedy|Drama     30
## 5395  1952                                                       Drama     30
## 5405  1983                                                Comedy|Drama     30
## 5411  1978                                                      Horror     30
## 5416  1992                                   Action|Comedy|Crime|Drama     30
## 5417  1984                                               Comedy|Horror     30
## 5418  1973                               Drama|Mystery|Sci-Fi|Thriller     30
## 5420  1990                             Adventure|Comedy|Sci-Fi|Western     30
## 5421  1972                                      Action|Adventure|Drama     30
## 5422  1961                                     Children|Comedy|Fantasy     30
## 5424  1991                                               Drama|Mystery     30
## 5427  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     30
## 5432  1967                           Animation|Children|Comedy|Musical     30
## 5434  1992                                             Children|Comedy     30
## 5436  1980                                    Adventure|Comedy|Musical     30
## 5438  1982                                     Action|Adventure|Sci-Fi     30
## 5440  1979                                                      Comedy     30
## 5441  1991                                                 Crime|Drama     30
## 5444  1978                        Adventure|Animation|Children|Fantasy     30
## 5445  1984                                                Drama|Sci-Fi     30
## 5448  1983                                             Horror|Thriller     30
## 5449  1984                                             Horror|Thriller     30
## 5452  1963                                               Comedy|Sci-Fi     30
## 5453  1984                                              Comedy|Romance     30
## 5454  1986                                        Comedy|Drama|Romance     30
## 5456  1986                                       Comedy|Fantasy|Horror     30
## 5457  1986                                       Crime|Horror|Thriller     30
## 5463  1998                                                       Drama     30
## 5464  1988                                    Action|Adventure|Fantasy     30
## 5467  1998                                                       Drama     30
## 5474  1992                                              Comedy|Fantasy     30
## 5475  1982                                                      Comedy     30
## 5476  1984                                              Comedy|Romance     30
## 5477  1988                                      Drama|Fantasy|Thriller     30
## 5478  1989                                                Comedy|Crime     30
## 5482  1998                                       Action|Crime|Thriller     30
## 5483  1980                                                      Comedy     30
## 5486  1998                                                      Comedy     30
## 5491  1984                                                      Sci-Fi     30
## 5495  1998                                                 Crime|Drama     30
## 5496  1998                                             Action|Thriller     30
## 5498  1975                                     Mystery|Sci-Fi|Thriller     30
## 5499  1984                                                       Drama     30
## 5503  1976                   Adventure|Fantasy|Romance|Sci-Fi|Thriller     30
## 5505  1985                                        Comedy|Crime|Mystery     30
## 5506  1986                                                Comedy|Drama     30
## 5508  1998                                       Crime|Horror|Thriller     30
## 5512  1985                                   Action|Adventure|Thriller     30
## 5513  1982                             Action|Adventure|Drama|Thriller     30
## 5519  1986                                                Comedy|Drama     30
## 5520  1986                                                      Comedy     30
## 5521  1984                                                       Drama     30
## 5523  1998                                            Action|Drama|War     30
## 5526  1998                                                       Drama     30
## 5530  1986                              Action|Comedy|Romance|Thriller     30
## 5534  1999                                      Drama|Mystery|Thriller     30
## 5535  1989                                                      Horror     30
## 5536  1983                                                      Horror     30
## 5537  1982                                                      Comedy     30
## 5539  1974                                       Action|Drama|Thriller     30
## 5540  1977                                              Drama|Thriller     30
## 5542  1976                                     Action|Adventure|Sci-Fi     30
## 5544  1970                                               Action|Sci-Fi     30
## 5545  1973                                               Action|Sci-Fi     30
## 5546  1972                                               Action|Sci-Fi     30
## 5547  1971                                               Action|Sci-Fi     30
## 5550  1988                                       Drama|Horror|Thriller     30
## 5552  1999                                      Action|Sci-Fi|Thriller     30
## 5553  1999                                                      Comedy     30
## 5554  1997                                                Comedy|Drama     30
## 5559  1990                                                Action|Crime     30
## 5560  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     30
## 5564  1983                                     Action|Adventure|Sci-Fi     30
## 5565  1956                                      Horror|Sci-Fi|Thriller     30
## 5569  1999                                Action|Comedy|Sci-Fi|Western     30
## 5570  1999                                                       Drama     30
## 5571  1999                                                    Thriller     30
## 5576  1986                                                Comedy|Drama     30
## 5582  1982                                                       Drama     30
## 5585  1999                                                      Comedy     30
## 5588  1981                                             Horror|Thriller     30
## 5589  1980                                                      Comedy     30
## 5590  1997                              Comedy|Horror|Romance|Thriller     30
## 5591  1985                                    Adventure|Comedy|Romance     30
## 5601  1980                                   Adventure|Sci-Fi|Thriller     30
## 5617  1983                                               Drama|Romance     30
## 5620  1980                                     Adventure|Drama|Romance     30
## 5628  1999                                                       Drama     30
## 5629  1999                                                Comedy|Drama     30
## 5635  1978                                                    Thriller     30
## 5636  1989                                                 Crime|Drama     30
## 5642  1991                                    Mystery|Romance|Thriller     30
## 5644  1992                                              Drama|Thriller     30
## 5649  1999                              Fantasy|Horror|Mystery|Romance     30
## 5650  1999                                   Action|Adventure|Thriller     30
## 5651  1988                                      Comedy|Fantasy|Romance     30
## 5652  1940                                                       Drama     30
## 5659  1991                                Comedy|Drama|Fantasy|Romance     30
## 5663  1990                                          Comedy|Crime|Drama     30
## 5664  1988                                                       Drama     30
## 5666  1966                                              Comedy|Romance     30
## 5672  1985                                        Crime|Drama|Thriller     30
## 5673  1999                                                       Drama     30
## 5676  1999                                                       Drama     30
## 5682  1991                                                       Drama     30
## 5686  1992                                                Comedy|Crime     30
## 5692  1992                                      Drama|Romance|Thriller     30
## 5693  1992                                              Comedy|Fantasy     30
## 5695  1992                                        Drama|Romance|Sci-Fi     30
## 5697  2000                                                      Comedy     30
## 5701  2000                                             Action|Thriller     30
## 5711  1985                                                      Comedy     30
## 5713  1987                                                      Comedy     30
## 5714  1987                                              Comedy|Romance     30
## 5721  1984                                            Action|Drama|War     30
## 5722  1978                                            Mystery|Thriller     30
## 5726  1990                                              Horror|Mystery     30
## 5728  2000                                          Animation|Children     30
## 5730  1969                                     Adventure|Drama|Western     30
## 5736  1979                                                Comedy|Drama     30
## 5739  1981                                              Comedy|Romance     30
## 5741  1991                                               Drama|Romance     30
## 5743  2000                               Crime|Horror|Mystery|Thriller     30
## 5754  2000                                                Comedy|Drama     30
## 5767  1982                                                      Comedy     30
## 5768  1988                                 Crime|Drama|Sci-Fi|Thriller     30
## 5770  1985                                     Action|Adventure|Sci-Fi     30
## 5778  1986                                       Action|Crime|Thriller     30
## 5781  1979                                                      Comedy     30
## 5782  1972                                                      Comedy     30
## 5793  1971                                                Action|Drama     30
## 5802  1988                                                Comedy|Drama     30
## 5806  2000                                                Comedy|Crime     30
## 5812  1982                                            Children|Musical     30
## 5817  1992                                        Comedy|Drama|Romance     30
## 5821  1987                                          Animation|Children     30
## 5827  1987                                              Comedy|Romance     30
## 5828  2001                                       Drama|Mystery|Romance     30
## 5830  2001                                                    Thriller     30
## 5833  1984                                                      Comedy     30
## 5834  2000                                            Mystery|Thriller     30
## 5835  2001                                        Comedy|Crime|Romance     30
## 5842  1980                                                Comedy|Crime     30
## 5847  1978                                                       Drama     30
## 5852  1987                                                Comedy|Crime     30
## 5855  1989                                                Comedy|Drama     30
## 5859  2000                                                 Crime|Drama     30
## 5860  1981                                               Action|Comedy     30
## 5862  1991                               Comedy|Drama|Mystery|Thriller     30
## 5867  1988                                        Comedy|Drama|Musical     30
## 5870  1988                                               Drama|Romance     30
## 5871  1988                                          Action|Crime|Drama     30
## 5873  1988                                                    Thriller     30
## 5874  1988                                              Comedy|Romance     30
## 5881  1988                                       Comedy|Romance|Sci-Fi     30
## 5882  1988                                         Action|Thriller|War     30
## 5888  1989                                                       Drama     30
## 5890  1989                                              Comedy|Romance     30
## 5891  1989                                                      Comedy     30
## 5893  1989                                       Action|Crime|Thriller     30
## 5897  1989                                                Comedy|Drama     30
## 5901  1980                                                Drama|Sci-Fi     30
## 5902  1980                                                      Comedy     30
## 5903  2001                                                      Comedy     30
## 5911  1980                                                       Drama     30
## 5916  2001                                      Comedy|Fantasy|Romance     30
## 5919  1982                                                      Comedy     30
## 5921  1980                                     Action|Adventure|Sci-Fi     30
## 5922  1990                                    Adventure|Drama|Thriller     30
## 5929  2001                                           Adventure|Fantasy     30
## 5932  1990                          Action|Comedy|Crime|Drama|Thriller     30
## 5933  1980                                                    Thriller     30
## 5935  1970                                            Comedy|Drama|War     30
## 5936  1984                                               Drama|Romance     30
## 5941  1980                                                      Comedy     30
## 5942  2002                      Drama|Fantasy|Mystery|Romance|Thriller     30
## 5947  1980                                                     Musical     30
## 5950  1977                                              Comedy|Fantasy     30
## 5952  1977                                               Action|Comedy     30
## 5954  2001                                                       Drama     30
## 5956  1984                                             Action|Thriller     30
## 5960  1990                                              Comedy|Romance     30
## 5961  1990                                                      Comedy     30
## 5963  1990                                              Comedy|Romance     30
## 5965  1985                                              Comedy|Romance     30
## 5969  1991                                                       Drama     30
## 5970  1978                                                      Comedy     30
## 5975  1993                                     Children|Comedy|Romance     30
## 5977  1985                                               Drama|Romance     30
## 5978  2002                                      Horror|Sci-Fi|Thriller     30
## 5984  2002                                                    Thriller     30
## 5985  1990                                                      Comedy     30
## 5988  1981                                              Drama|Thriller     30
## 5990  2002                                     Horror|Mystery|Thriller     30
## 5993  1983                                        Comedy|Drama|Musical     30
## 5996  1980                                                      Comedy     30
## 6001  1981                                               Drama|Romance     30
## 6005  1981                                                      Comedy     30
## 6011  1981                                                      Comedy     30
## 6012  1981                                          Drama|Thriller|War     30
## 6014  2002                                                Comedy|Crime     30
## 6016  1982                                                Comedy|Drama     30
## 6017  1982                                        Comedy|Drama|Romance     30
## 6021  1982                                                      Comedy     30
## 6024  2002                                        Crime|Drama|Thriller     30
## 6027  1993                                              Drama|Thriller     30
## 6033  1982                                                Comedy|Drama     30
## 6034  1982                                                       Drama     30
## 6035  1982                                      Drama|Mystery|Thriller     30
## 6036  1982                                                   Drama|War     30
## 6037  1982                                                       Drama     30
## 6039  1990                                                 Crime|Drama     30
## 6040  2003                                            Action|Drama|War     30
## 6041  2003                                                      Comedy     30
## 6042  1993                                              Comedy|Romance     30
## 6043  1977                                               Drama|Mystery     30
## 6046  1991                                          Action|Crime|Drama     30
## 6047  2003                                          Drama|Thriller|War     30
## 6050  1991                                              Comedy|Romance     30
## 6052  1979                                              Comedy|Western     30
## 6062  1995                                      Crime|Mystery|Thriller     31
## 6067  1994                                        Comedy|Drama|Romance     31
## 6071  1996                                          Comedy|Crime|Drama     31
## 6075  1989                                                      Comedy     31
## 6076  1989                                                       Drama     31
## 6084  1996                                               Drama|Musical     31
## 6095  1987                                              Comedy|Romance     31
## 6096  1988                                      Comedy|Fantasy|Romance     31
## 6102  2001                                                Comedy|Drama     31
## 6106  2002                                                   Drama|War     31
## 6107  2003                             Action|Adventure|Comedy|Fantasy     31
## 6127  2010                   Adventure|Animation|Children|Fantasy|IMAX     31
## 6130  1995                                                      Comedy     32
## 6132  1995                                    Action|Adventure|Fantasy     32
## 6136  1995                                          Adventure|Children     32
## 6138  1995                                        Action|Drama|Romance     32
## 6139  1995                                         Action|Crime|Sci-Fi     32
## 6142  1994                                              Drama|Thriller     32
## 6144  1994                                              Comedy|Romance     32
## 6146  1994                                   Drama|Romance|War|Western     32
## 6148  1994                                 Comedy|Crime|Drama|Thriller     32
## 6149  1994                                                       Drama     32
## 6150  1994                                     Action|Adventure|Sci-Fi     32
## 6151  1994                                        Comedy|Drama|Fantasy     32
## 6152  1995                                                      Comedy     32
## 6156  1994                                      Drama|Mystery|Thriller     32
## 6158  1994             Adventure|Animation|Children|Drama|Musical|IMAX     32
## 6161  1994                    Action|Adventure|Comedy|Romance|Thriller     32
## 6162  1993                                     Children|Comedy|Fantasy     32
## 6163  1994                                Action|Comedy|Crime|Thriller     32
## 6164  1993                                                       Drama     32
## 6165  1994                                    Adventure|Comedy|Western     32
## 6166  1993                                   Action|Adventure|Thriller     32
## 6172  1992                 Adventure|Animation|Children|Comedy|Musical     32
## 6176  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     32
## 6177  1995                                                      Comedy     33
## 6178  1996                                                      Comedy     33
## 6179  1995                                                  Comedy|War     33
## 6180  1994                                            Adventure|Comedy     33
## 6182  1994                                     Action|Romance|Thriller     33
## 6186  1996                                                       Drama     33
## 6192  1980                                     Action|Adventure|Sci-Fi     33
## 6200  1984                                             Horror|Thriller     33
## 6201  1996                                             Children|Comedy     33
## 6202  1987                                                      Comedy     33
## 6204  1997                              Comedy|Horror|Mystery|Thriller     33
## 6205  1997                                                      Comedy     33
## 6207  1986                                   Adventure|Fantasy|Musical     33
## 6208  1980                                     Horror|Mystery|Thriller     33
## 6211  1982                                                      Horror     33
## 6215  1998                                                      Comedy     33
## 6217  1980                                    Adventure|Comedy|Musical     33
## 6218  1998                                             Horror|Thriller     33
## 6220  1998                                               Action|Comedy     33
## 6221  1988                                    Action|Adventure|Fantasy     33
## 6224  1998                                                Comedy|Drama     33
## 6227  1999                                               Comedy|Sci-Fi     33
## 6230  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     33
## 6231  1999                                                 Documentary     33
## 6232  1999                                              Comedy|Romance     33
## 6234  1997                              Comedy|Horror|Romance|Thriller     33
## 6236  1999                                              Comedy|Romance     33
## 6237  1999                                                      Comedy     33
## 6240  1988                                                Comedy|Drama     33
## 6244  1999                                     Children|Comedy|Fantasy     33
## 6245  2000                              Comedy|Horror|Mystery|Thriller     33
## 6247  2000                                                Comedy|Drama     33
## 6248  2000                                                       Drama     33
## 6249  2000                                        Comedy|Drama|Romance     33
## 6250  1980                                                      Comedy     33
## 6251  2000                                                Comedy|Drama     33
## 6252  1999                                              Comedy|Romance     33
## 6255  1999                                                       Drama     33
## 6256  2000                                            Adventure|Comedy     33
## 6257  2000                                               Comedy|Horror     33
## 6260  2000                                                      Comedy     33
## 6261  2000                                          Comedy|Documentary     33
## 6263  2000                         Comedy|Crime|Drama|Romance|Thriller     33
## 6264  2000                                                       Drama     33
## 6265  2000                                               Drama|Musical     33
## 6269  2000                                      Adventure|Comedy|Crime     33
## 6271  2001                            Adventure|Comedy|Mystery|Romance     33
## 6272  2001                                                      Comedy     33
## 6276  2000                                                 Crime|Drama     33
## 6277  2001                                                      Comedy     33
## 6278  2001                                              Comedy|Romance     33
## 6280  2001                                                      Comedy     33
## 6282  1988                                          Action|Crime|Drama     33
## 6283  1988                                             Children|Comedy     33
## 6285  1988                                                      Comedy     33
## 6287  1989                                                      Comedy     33
## 6288  2001                                                Comedy|Drama     33
## 6289  2001                               Action|Adventure|Drama|Sci-Fi     33
## 6293  1989                                                      Comedy     33
## 6296  2001                                                      Comedy     33
## 6297  1983                                                       Drama     33
## 6302  1980              Action|Adventure|Comedy|Drama|Romance|Thriller     33
## 6303  2001                                              Crime|Thriller     33
## 6304  2001                                                      Comedy     33
## 6306  1987                                                   Adventure     33
## 6309  2002                                      Comedy|Musical|Romance     33
## 6315  1995                                       Action|Crime|Thriller     34
## 6318  1995                                              Comedy|Romance     34
## 6324  1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller     34
## 6332  1994                                     Action|Romance|Thriller     34
## 6333  1995                                             Horror|Thriller     34
## 6334  1993                                     Action|Adventure|Sci-Fi     34
## 6345  1969                                           Adventure|Western     34
## 6354  1939                          Adventure|Children|Fantasy|Musical     34
## 6364  1982                                       Children|Drama|Sci-Fi     34
## 6367  1996                                                Comedy|Drama     34
## 6369  1980                                              Horror|Mystery     34
## 6372  1990                                       Crime|Drama|Film-Noir     34
## 6374  1980                                     Action|Adventure|Sci-Fi     34
## 6384  1993                      Action|Adventure|Comedy|Fantasy|Horror     34
## 6386  1980                                       Action|Comedy|Musical     34
## 6390  1973                                                Comedy|Crime     34
## 6402  1985                                     Adventure|Comedy|Sci-Fi     34
## 6406  1982                                               Drama|Musical     34
## 6408  1992                               Action|Horror|Sci-Fi|Thriller     34
## 6411  1935                                         Drama|Horror|Sci-Fi     34
## 6413  1975                                               Action|Horror     34
## 6416  1997               Crime|Drama|Fantasy|Film-Noir|Mystery|Romance     34
## 6417  1997                              Action|Adventure|Comedy|Sci-Fi     34
## 6418  1997                                        Action|Comedy|Sci-Fi     34
## 6420  1997                              Drama|Mystery|Romance|Thriller     34
## 6423  1997                                      Drama|Mystery|Thriller     34
## 6425  1997                                               Action|Sci-Fi     34
## 6426  1997                                        Action|Horror|Sci-Fi     34
## 6427  1998                                Crime|Drama|Fantasy|Thriller     34
## 6430  1969                                                       Drama     34
## 6431  1976                                                       Drama     34
## 6432  1984                                               Comedy|Sci-Fi     34
## 6442  1998                                     Horror|Mystery|Thriller     34
## 6443  1998                                             Action|Thriller     34
## 6446  1985                                               Comedy|Sci-Fi     34
## 6448  1976                                     Action|Adventure|Sci-Fi     34
## 6450  1960                                      Horror|Sci-Fi|Thriller     34
## 6457  1984                                        Action|Comedy|Sci-Fi     34
## 6459  1997                              Comedy|Horror|Romance|Thriller     34
## 6460  1988                                Comedy|Drama|Fantasy|Romance     34
## 6468  1967                                            Action|Drama|War     34
## 6469  1962                                   Action|Adventure|Thriller     34
## 6472  1987                          Action|Crime|Drama|Sci-Fi|Thriller     34
## 6477  1970                                            Action|Drama|War     34
## 6481  1992                                 Action|Crime|Drama|Thriller     34
## 6482  2000                                                      Comedy     34
## 6485  1991                                       Adventure|Crime|Drama     34
## 6501  1970                                            Comedy|Drama|War     34
## 6502  1995                                                Drama|Sci-Fi     35
## 6503  1995                                              Drama|Thriller     35
## 6504  1994                                                 Crime|Drama     35
## 6506  1996                               Drama|Fantasy|Horror|Thriller     35
## 6508  1964                                Comedy|Drama|Musical|Romance     35
## 6509  1941                            Animation|Children|Drama|Musical     35
## 6510  1996                                       Action|Drama|Thriller     35
## 6511  1992                                              Comedy|Romance     35
## 6512  1983                                                       Drama     35
## 6513  1990                               Action|Crime|Romance|Thriller     35
## 6514  1962                                          Crime|Thriller|War     35
## 6515  1982                                     Action|Adventure|Sci-Fi     35
## 6517  1992                                          Comedy|Crime|Drama     35
## 6518  1998                                                       Drama     35
## 6519  1981                             Adventure|Comedy|Fantasy|Sci-Fi     35
## 6521  2000                                              Drama|Thriller     35
## 6522  1995                                       Action|Crime|Thriller     36
## 6523  1995                                                 Crime|Drama     36
## 6525  1995                                       Comedy|Crime|Thriller     36
## 6527  1995                                                       Drama     36
## 6530  1995                                                   Drama|War     36
## 6533  1995                                        Comedy|Drama|Romance     36
## 6540  1995                          Action|Comedy|Crime|Drama|Thriller     36
## 6541  1995                                                       Drama     36
## 6542  1995                                    Action|Drama|Romance|War     36
## 6543  1995                                       Action|Crime|Thriller     36
## 6544  1995                                                      Comedy     36
## 6547  1995                                       Action|Comedy|Romance     36
## 6550  1994                                                      Comedy     36
## 6552  1994                                              Comedy|Romance     36
## 6554  1994                                               Comedy|Sci-Fi     36
## 6559  1994                                         Drama|Horror|Sci-Fi     36
## 6560  1994                                                       Drama     36
## 6561  1994                                                       Drama     36
## 6569  1995                                                      Comedy     36
## 6575  1994                                                      Comedy     36
## 6576  1994                                      Drama|Mystery|Thriller     36
## 6577  1994                                    Comedy|Drama|Romance|War     36
## 6580  1994                                    Adventure|Comedy|Western     36
## 6581  1994                                        Comedy|Drama|Romance     36
## 6582  1994                                               Drama|Romance     36
## 6583  1994                               Drama|Horror|Romance|Thriller     36
## 6585  1994                                Action|Comedy|Crime|Thriller     36
## 6587  1994                                    Adventure|Comedy|Western     36
## 6588  1993                                   Action|Adventure|Thriller     36
## 6589  1993                                              Comedy|Romance     36
## 6590  1993                                              Drama|Thriller     36
## 6591  1993                                                    Thriller     36
## 6594  1993                            Action|Adventure|Sci-Fi|Thriller     36
## 6596  1993                                                       Drama     36
## 6599  1993                                               Drama|Romance     36
## 6601  1993                                                       Drama     36
## 6604  1994                                         Comedy|Crime|Horror     36
## 6606  1993                                        Comedy|Drama|Romance     36
## 6607  1993                                                    Thriller     36
## 6608  1993                                     Comedy|Romance|Thriller     36
## 6609  1993                          Animation|Children|Fantasy|Musical     36
## 6610  1990                                             Children|Comedy     36
## 6611  1990                       Comedy|Drama|Fantasy|Romance|Thriller     36
## 6612  1992                 Adventure|Animation|Children|Comedy|Musical     36
## 6613  1990                                     Adventure|Drama|Western     36
## 6614  1989                                       Action|Crime|Thriller     36
## 6616  1990                                              Comedy|Romance     36
## 6617  1996                                              Drama|Thriller     36
## 6620  1996                               Comedy|Fantasy|Romance|Sci-Fi     36
## 6622  1988                                       Action|Crime|Thriller     36
## 6623  1982                                                       Drama     36
## 6625  1996                                   Adventure|Children|Comedy     36
## 6629  1961                                               Drama|Romance     37
## 6632  1938                                    Action|Adventure|Romance     37
## 6634  1980                                     Action|Adventure|Sci-Fi     37
## 6641  1998                                Action|Comedy|Crime|Thriller     37
## 6647  2000                                   Animation|Children|Comedy     37
## 6649  2000                                               Action|Comedy     37
## 6651  2000                                       Comedy|Crime|Thriller     37
## 6653  2000                                               Comedy|Sci-Fi     37
## 6656  2001                                               Drama|Romance     37
## 6668  1994                                 Action|Comedy|Crime|Fantasy     38
## 6671  1990                                     Adventure|Drama|Western     38
## 6686  1997                                               Drama|Romance     38
## 6687  1987                                   Action|Comedy|Crime|Drama     38
## 6688  1997                                               Drama|Romance     38
## 6691  1994        Adventure|Animation|Children|Fantasy|Musical|Romance     38
## 6693  1987                                          Action|Crime|Drama     38
## 6707  1991                                                       Drama     38
## 6708  1980                                               Drama|Musical     38
## 6716  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     38
## 6727  2004                                       Action|Drama|Thriller     38
## 6740  2007                                      Action|Adventure|Drama     38
## 6756  2012                                                       Drama     38
## 6772  1995                                       Comedy|Crime|Thriller     39
## 6774  1995                                                       Drama     39
## 6776  1995                                      Crime|Mystery|Thriller     39
## 6777  1995                                                      Comedy     39
## 6779  1995                                                   Drama|War     39
## 6780  1995                                      Action|Sci-Fi|Thriller     39
## 6782  1995                          Action|Comedy|Crime|Drama|Thriller     39
## 6784  1995                               Action|Adventure|Comedy|Crime     39
## 6785  1995                             Action|Adventure|Mystery|Sci-Fi     39
## 6788  1995                                        Action|Drama|Romance     39
## 6789  1995                             Action|Adventure|Crime|Thriller     39
## 6790  1995                                                       Drama     39
## 6793  1995                                      Fantasy|Horror|Mystery     39
## 6799  1994                                         Drama|Horror|Sci-Fi     39
## 6807  1995                                         Action|Crime|Horror     39
## 6808  1995                                               Horror|Sci-Fi     39
## 6809  1995                                                      Comedy     39
## 6810  1995                                      Action|Sci-Fi|Thriller     39
## 6813  1994                               Drama|Horror|Mystery|Thriller     39
## 6815  1993                                      Horror|Sci-Fi|Thriller     39
## 6820  1992                 Adventure|Animation|Children|Comedy|Musical     39
## 6821  1990                                     Adventure|Drama|Western     39
## 6822  1989                                       Action|Crime|Thriller     39
## 6823  1991                                       Crime|Horror|Thriller     39
## 6824  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     39
## 6859  2010                                      Drama|Mystery|Thriller     40
## 6874  1995                                  Adventure|Children|Fantasy     41
## 6879  1995                                      Action|Sci-Fi|Thriller     41
## 6881  1995                                               Horror|Sci-Fi     41
## 6887  1994                                     Action|Adventure|Sci-Fi     41
## 6892  1994                                    Comedy|Drama|Romance|War     41
## 6895  1993                                      Horror|Sci-Fi|Thriller     41
## 6897  1993                                     Action|Adventure|Sci-Fi     41
## 6901  1981                    Action|Adventure|Animation|Horror|Sci-Fi     41
## 6905  1996                                      Action|Sci-Fi|Thriller     41
## 6911  1996                                          Adventure|Children     41
## 6912  1992                               Action|Horror|Sci-Fi|Thriller     41
## 6916  1989                            Action|Adventure|Sci-Fi|Thriller     41
## 6920  1971                                 Crime|Drama|Sci-Fi|Thriller     41
## 6928  1989                                      Children|Drama|Fantasy     41
## 6930  1963                                             Horror|Thriller     41
## 6932  1979                                            Adventure|Sci-Fi     41
## 6941  1997                                   Action|Adventure|Thriller     41
## 6947  1997                                                      Comedy     41
## 6950  1998                                             Sci-Fi|Thriller     41
## 6951  1998                                       Drama|Sci-Fi|Thriller     41
## 6954  1984                                               Comedy|Sci-Fi     41
## 6956  1989                                   Action|Comedy|Crime|Drama     41
## 6957  1984                                               Comedy|Horror     41
## 6960  1990                             Adventure|Comedy|Sci-Fi|Western     41
## 6965  1997                              Horror|Mystery|Sci-Fi|Thriller     41
## 6967  1998                                           Action|Sci-Fi|War     41
## 6968  1958                                       Horror|Mystery|Sci-Fi     41
## 6969  1986                                Drama|Horror|Sci-Fi|Thriller     41
## 6970  1970                                                       Drama     41
## 6971  1974                                       Action|Drama|Thriller     41
## 6975  1970                                               Action|Sci-Fi     41
## 6976  1973                                               Action|Sci-Fi     41
## 6977  1972                                               Action|Sci-Fi     41
## 6978  1979                                                       Drama     41
## 6981  1999                                      Action|Sci-Fi|Thriller     41
## 6983  1980                                               Action|Sci-Fi     41
## 6984  1983                                     Action|Adventure|Sci-Fi     41
## 6985  1962                                               Drama|Romance     41
## 6986  1986                                       Comedy|Horror|Musical     41
## 6990  1990                            Action|Adventure|Sci-Fi|Thriller     41
## 6996  1992                                                      Comedy     41
## 6998  2000                                                      Sci-Fi     41
## 7003  1979                            Action|Adventure|Sci-Fi|Thriller     41
## 7004  1987                                               Action|Sci-Fi     41
## 7005  1984                              Adventure|Drama|Romance|Sci-Fi     41
## 7009  2000                  Action|Adventure|Animation|Children|Sci-Fi     41
## 7011  1992                                               Action|Sci-Fi     41
## 7012  2000                                       Drama|Horror|Thriller     41
## 7014  1984                                             Sci-Fi|Thriller     41
## 7015  2000                                      Action|Sci-Fi|Thriller     41
## 7020  1981                                      Action|Sci-Fi|Thriller     41
## 7023  1989                                       Drama|Sci-Fi|Thriller     41
## 7025  1985                                               Action|Sci-Fi     41
## 7028  2001                                Drama|Fantasy|Mystery|Sci-Fi     41
## 7031  2002                            Action|Adventure|Sci-Fi|Thriller     41
## 7033  2002                                        Action|Comedy|Sci-Fi     41
## 7034  2002                                    Action|Adventure|Fantasy     41
## 7035  1976                                               Action|Comedy     41
## 7039  1983                                        Comedy|Drama|Musical     41
## 7041  2002                                        Drama|Romance|Sci-Fi     41
## 7046  2003                                Action|Drama|Sci-Fi|Thriller     41
## 7052  2002                                        Action|Horror|Sci-Fi     41
## 7053  2003                                     Action|Adventure|Sci-Fi     41
## 7056  1990                                                Drama|Sci-Fi     41
## 7066  1974                                              Fantasy|Sci-Fi     41
## 7074  1995                                       Action|Crime|Thriller     42
## 7080  1994                    Action|Adventure|Comedy|Romance|Thriller     42
## 7083  1993                                                       Drama     42
## 7088  1996                                   Action|Adventure|Thriller     42
## 7097  1992                               Action|Horror|Sci-Fi|Thriller     42
## 7098  1990                                   Action|Adventure|Thriller     42
## 7100  1997                                 Action|Crime|Drama|Thriller     42
## 7104  1999                                      Action|Sci-Fi|Thriller     42
## 7107  2000                                     Action|Adventure|Sci-Fi     42
## 7108  2000                                        Action|Drama|Romance     42
## 7117  2005                                           Action|Crime|IMAX     42
## 7118  2005                             Adventure|Fantasy|Thriller|IMAX     42
## 7124  2008                                         Crime|Drama|Romance     42
## 7125  2009                                Action|Adventure|Sci-Fi|IMAX     42
## 7129  2010                                      Drama|Mystery|Thriller     42
## 7134  2012                                 Action|Adventure|Crime|IMAX     42
## 7135  2012                                      Adventure|Fantasy|IMAX     42
## 7136  2013                                      Adventure|Fantasy|IMAX     42
## 7139  2014                                          Action|Sci-Fi|IMAX     42
## 7140  2014                                     Action|Adventure|Sci-Fi     42
## 7142  2015           Adventure|Animation|Children|Comedy|Drama|Fantasy     42
## 7146  1996                               Action|Comedy|Horror|Thriller     43
## 7147  1996                                                      Comedy     43
## 7149  1995                                                      Comedy     43
## 7150  1994                                                      Comedy     43
## 7151  1994                                            Adventure|Comedy     43
## 7155  1993                                                Comedy|Drama     43
## 7156  1993                                                       Drama     43
## 7158  1995                                                      Comedy     43
## 7159  1992                 Adventure|Animation|Children|Comedy|Musical     43
## 7160  1991                                               Action|Sci-Fi     43
## 7165  1983                                     Action|Adventure|Sci-Fi     43
## 7166  1978                                      Comedy|Musical|Romance     43
## 7167  1997                                        Comedy|Drama|Romance     43
## 7170  1997                                     Action|Adventure|Comedy     43
## 7171  1997                            Action|Adventure|Sci-Fi|Thriller     43
## 7175  1997                                                       Drama     43
## 7176  1997                               Action|Adventure|Drama|Sci-Fi     43
## 7177  1998                                              Comedy|Romance     43
## 7178  1998                                   Adventure|Children|Comedy     43
## 7179  1998                                              Comedy|Romance     43
## 7180  1998                                        Comedy|Drama|Romance     43
## 7181  1998                                        Comedy|Drama|Romance     43
## 7182  1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance     43
## 7184  1985                                                Comedy|Drama     43
## 7186  1987                                   Action|Comedy|Crime|Drama     43
## 7187  1984                                               Comedy|Horror     43
## 7188  1990                                               Comedy|Horror     43
## 7189  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     43
## 7191  1992                                             Children|Comedy     43
## 7192  1979                                                      Comedy     43
## 7193  1984                                              Comedy|Romance     43
## 7194  1980                                            Adventure|Comedy     43
## 7195  1968                                       Drama|Horror|Thriller     43
## 7196  1990                                       Drama|Fantasy|Romance     43
## 7200  1998                                                      Comedy     43
## 7201  1998                                                Comedy|Drama     43
## 7203  1999                                                Comedy|Drama     43
## 7204  1958                                       Horror|Mystery|Sci-Fi     43
## 7205  1986                                Drama|Horror|Sci-Fi|Thriller     43
## 7206  1999                                              Comedy|Romance     43
## 7207  1999                                                      Comedy     43
## 7208  1999                                              Comedy|Fantasy     43
## 7210  1999                                     Action|Adventure|Comedy     43
## 7211  1999                                Crime|Drama|Mystery|Thriller     43
## 7213  1999                                    Animation|Comedy|Musical     43
## 7215  1999                                       Action|Comedy|Fantasy     43
## 7216  1999                                                      Comedy     43
## 7217  1980                                                      Comedy     43
## 7219  1999                                                      Comedy     43
## 7222  1999                                              Comedy|Romance     43
## 7224  1999                                                    Thriller     43
## 7225  1999                                    Adventure|Comedy|Fantasy     43
## 7227  1999                                        Drama|Romance|Sci-Fi     43
## 7229  1999                                                       Drama     43
## 7231  1992                                                Comedy|Crime     43
## 7232  1993                                                      Comedy     43
## 7233  1992                                                Comedy|Drama     43
## 7234  2000                                                      Comedy     43
## 7235  2000                                                Comedy|Crime     43
## 7237  1993                                                      Comedy     43
## 7238  2000                                        Comedy|Drama|Romance     43
## 7241  1984                                                      Comedy     43
## 7242  2000                               Crime|Horror|Mystery|Thriller     43
## 7243  2000                                         Action|Thriller|War     43
## 7244  2000                             Action|Adventure|Comedy|Western     43
## 7245  1991                                                      Comedy     43
## 7247  1990                                                      Comedy     43
## 7248  1988                                 Action|Comedy|Crime|Romance     43
## 7249  1991                                                      Comedy     43
## 7250  1987                                                      Horror     43
## 7251  2000                                                      Comedy     43
## 7255  1995                                                      Comedy     44
## 7256  1995                                       Action|Crime|Thriller     44
## 7257  1995                                               Drama|Romance     44
## 7258  1995                                               Drama|Romance     44
## 7259  1995                                     Mystery|Sci-Fi|Thriller     44
## 7261  1996                                   Action|Adventure|Thriller     44
## 7264  1996                                                      Comedy     44
## 7265  1977                                     Action|Adventure|Sci-Fi     44
## 7266  1996                                   Action|Adventure|Thriller     44
## 7267  1996                                Crime|Drama|Mystery|Thriller     44
## 7268  1996                                                      Comedy     44
## 7269  1996                           Action|Adventure|Mystery|Thriller     44
## 7273  1996                                       Action|Drama|Thriller     44
## 7274  1996                               Comedy|Fantasy|Romance|Sci-Fi     44
## 7275  1996                                               Drama|Romance     44
## 7277  1996                                       Action|Drama|Thriller     44
## 7278  1993                                                      Comedy     45
## 7283  1997                                        Comedy|Drama|Romance     45
## 7286  1999                                              Comedy|Romance     45
## 7288  1990                                               Comedy|Horror     45
## 7289  1999                                    Adventure|Comedy|Fantasy     45
## 7292  2000                                            Action|Drama|War     45
## 7294  2001                                        Comedy|Drama|Romance     45
## 7295  2001                                               Drama|Romance     45
## 7342  1995                                              Comedy|Romance     47
## 7344  1996                                   Action|Adventure|Thriller     47
## 7348  1995                             Action|Adventure|Mystery|Sci-Fi     47
## 7352  1995                                     Action|Adventure|Sci-Fi     47
## 7353  1994                                            Adventure|Comedy     47
## 7355  1994                                                Drama|Horror     47
## 7356  1994                                   Drama|Romance|War|Western     47
## 7360  1994                                                       Drama     47
## 7364  1994                                                      Comedy     47
## 7367  1993                                     Children|Comedy|Fantasy     47
## 7368  1994                                Action|Comedy|Crime|Thriller     47
## 7370  1993                                     Action|Adventure|Sci-Fi     47
## 7373  1989                                       Action|Crime|Thriller     47
## 7375  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     47
## 7377  1995                                  Adventure|Children|Fantasy     48
## 7378  1995                                              Children|Drama     48
## 7380  1976                                        Crime|Drama|Thriller     48
## 7381  1995                                          Adventure|Children     48
## 7382  1995                                      Action|Romance|Western     48
## 7383  1994                                                      Comedy     48
## 7384  1994                                            Adventure|Comedy     48
## 7385  1994                                       Action|Crime|Thriller     48
## 7388  1994                                                      Comedy     48
## 7391  1994                                 Action|Comedy|Crime|Fantasy     48
## 7392  1993                            Action|Adventure|Sci-Fi|Thriller     48
## 7393  1993                                                       Drama     48
## 7396  1995                                                Comedy|Drama     48
## 7397  1991                                       Crime|Horror|Thriller     48
## 7398  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     48
## 7399  1996                           Action|Adventure|Mystery|Thriller     48
## 7400  1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     48
## 7403  1996                                             Comedy|Thriller     48
## 7406  1982                                       Children|Drama|Sci-Fi     48
## 7407  1989                            Action|Adventure|Sci-Fi|Thriller     48
## 7408  1993                             Animation|Children|Comedy|Crime     48
## 7411  1971                                 Crime|Drama|Sci-Fi|Thriller     48
## 7412  1979                                               Horror|Sci-Fi     48
## 7413  1987                                                   Drama|War     48
## 7414  1984                                      Action|Sci-Fi|Thriller     48
## 7416  1985                                     Adventure|Comedy|Sci-Fi     48
## 7417  1988                           Action|Adventure|Animation|Sci-Fi     48
## 7419  1996                              Comedy|Horror|Mystery|Thriller     48
## 7420  1997                                                      Comedy     48
## 7421  1997                                   Action|Adventure|Thriller     48
## 7422  1997                              Action|Adventure|Comedy|Sci-Fi     48
## 7423  1997                            Action|Adventure|Sci-Fi|Thriller     48
## 7424  1997                                        Action|Comedy|Sci-Fi     48
## 7425  1997                            Action|Adventure|Sci-Fi|Thriller     48
## 7426  1997                                               Action|Sci-Fi     48
## 7427  1998                                         Comedy|Drama|Sci-Fi     48
## 7429  1998                                                Comedy|Crime     48
## 7431  1998                                      Action|Sci-Fi|Thriller     48
## 7433  1998                              Action|Romance|Sci-Fi|Thriller     48
## 7435  1998                                              Comedy|Romance     48
## 7436  1973                                              Horror|Mystery     48
## 7437  1998                                       Action|Comedy|Romance     48
## 7438  1998                                      Action|Horror|Thriller     48
## 7439  1997                              Horror|Mystery|Sci-Fi|Thriller     48
## 7440  1982                               Action|Horror|Sci-Fi|Thriller     48
## 7442  1998                 Adventure|Animation|Children|Comedy|Fantasy     48
## 7443  1998                                                Comedy|Drama     48
## 7446  1998                         Adventure|Animation|Children|Comedy     48
## 7447  1986                                Drama|Horror|Sci-Fi|Thriller     48
## 7448  1998                                       Comedy|Crime|Thriller     48
## 7450  1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     48
## 7451  1998                                                Action|Crime     48
## 7452  1999                                    Animation|Comedy|Musical     48
## 7453  1999                                              Comedy|Romance     48
## 7454  1999                                       Drama|Horror|Thriller     48
## 7455  1999                               Action|Horror|Sci-Fi|Thriller     48
## 7456  1999                                        Drama|Horror|Mystery     48
## 7457  1999                                              Drama|Thriller     48
## 7459  1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     48
## 7460  1999                                        Comedy|Drama|Fantasy     48
## 7462  1999                 Adventure|Animation|Children|Comedy|Fantasy     48
## 7464  1987                                      Action|Sci-Fi|Thriller     48
## 7467  2000                                                Action|Crime     48
## 7468  2000                  Action|Adventure|Animation|Children|Sci-Fi     48
## 7469  2000                                   Animation|Children|Comedy     48
## 7470  2000                                     Action|Adventure|Sci-Fi     48
## 7472  2000                                                      Comedy     48
## 7474  2000                 Adventure|Animation|Children|Comedy|Fantasy     48
## 7475  2000                                                       Drama     48
## 7476  2000                                            Mystery|Thriller     48
## 7477  2001                            Action|Adventure|Comedy|Thriller     48
## 7479  2001                                       Action|Crime|Thriller     48
## 7480  2001                          Adventure|Animation|Fantasy|Sci-Fi     48
## 7481  2001                               Drama|Horror|Mystery|Thriller     48
## 7483  2001                 Adventure|Animation|Children|Comedy|Fantasy     48
## 7484  2001                           Drama|Fantasy|Horror|Thriller|War     48
## 7486  2001                             Mystery|Romance|Sci-Fi|Thriller     48
## 7492  2001                                               Drama|Romance     48
## 7493  2002                            Action|Adventure|Sci-Fi|Thriller     48
## 7494  2002                                        Action|Comedy|Sci-Fi     48
## 7495  2002                                      Horror|Sci-Fi|Thriller     48
## 7496  1996                                       Drama|Horror|Thriller     48
## 7499  2002                                     Horror|Mystery|Thriller     48
## 7502  2002                                      Action|Sci-Fi|Thriller     48
## 7507  2002                                Crime|Drama|Mystery|Thriller     48
## 7508  2001                                          Comedy|Crime|Drama     48
## 7509  1998                                     Horror|Mystery|Thriller     48
## 7510  2001                            Action|Animation|Sci-Fi|Thriller     48
## 7511  2002                                                 Crime|Drama     48
## 7513  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7517  2003                                        Comedy|Drama|Romance     48
## 7518  1995                          Action|Adventure|Animation|Fantasy     48
## 7519  2003                                                       Drama     48
## 7520  2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7521  2003                        Crime|Drama|Mystery|Romance|Thriller     48
## 7523  2003                                       Drama|Fantasy|Romance     48
## 7525  2001                   Action|Comedy|Crime|Drama|Horror|Thriller     48
## 7528  2004                                Action|Drama|Horror|Thriller     48
## 7530  2004                             Action|Adventure|Fantasy|Horror     48
## 7531  2003                                      Drama|Mystery|Thriller     48
## 7534  1998                                  Animation|Fantasy|Thriller     48
## 7535  2004         Adventure|Animation|Children|Comedy|Musical|Romance     48
## 7536  2004                                                      Comedy     48
## 7539  2004                                                 Crime|Drama     48
## 7543  1980                                                      Horror     48
## 7544  2004                                   Animation|Children|Comedy     48
## 7546  2004                                     Horror|Mystery|Thriller     48
## 7547  2004                  Action|Adventure|Animation|Children|Comedy     48
## 7548  2004                   Adventure|Animation|Children|Fantasy|IMAX     48
## 7552  2001                                              Comedy|Romance     48
## 7553  2003                               Action|Animation|Drama|Sci-Fi     48
## 7555  2003                                               Drama|Romance     48
## 7557  2003                                            Mystery|Thriller     48
## 7558  2003                  Adventure|Animation|Fantasy|Musical|Sci-Fi     48
## 7559  2003                                             Action|Thriller     48
## 7560  2004                                              Drama|Thriller     48
## 7562  2003                                                 Documentary     48
## 7564  2005                      Adventure|Children|Comedy|Fantasy|IMAX     48
## 7569  2004                                               Action|Comedy     48
## 7570  2005     Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX     48
## 7571  1995                           Animation|Fantasy|Sci-Fi|Thriller     48
## 7575  2004                                                 Crime|Drama     48
## 7576  2005                         Adventure|Animation|Children|Comedy     48
## 7577  2005                             Action|Adventure|Comedy|Romance     48
## 7578  2005                                         Action|Crime|Horror     48
## 7579  2005                                     Action|Adventure|Sci-Fi     48
## 7580  2005                                      Drama|Mystery|Thriller     48
## 7581  2005                                                Comedy|Drama     48
## 7582  2005                    Animation|Comedy|Fantasy|Musical|Romance     48
## 7583  2004                   Action|Adventure|Animation|Fantasy|Sci-Fi     48
## 7584  2005                         Adventure|Animation|Children|Comedy     48
## 7586  2005                     Action|Adventure|Drama|Fantasy|Thriller     48
## 7587  2005                                        Comedy|Drama|Romance     48
## 7588  2005                                                      Horror     48
## 7589  2006                         Adventure|Animation|Children|Comedy     48
## 7590  2006                                 Action|Sci-Fi|Thriller|IMAX     48
## 7591  2006                                       Drama|Horror|Thriller     48
## 7594  2006                                        Comedy|Horror|Sci-Fi     48
## 7595  2005                                              Drama|Thriller     48
## 7598  2006                                                Comedy|Drama     48
## 7600  2006                                      Adventure|Comedy|Drama     48
## 7601  2006                          Animation|Children|Fantasy|Mystery     48
## 7602  2006                                Comedy|Drama|Fantasy|Romance     48
## 7603  2006                                                       Drama     48
## 7604  2006            Adventure|Animation|Children|Comedy|Fantasy|IMAX     48
## 7608  2006                                       Drama|Fantasy|Romance     48
## 7610  2006                                                      Comedy     48
## 7612  2006                    Adventure|Animation|Children|Comedy|IMAX     48
## 7613  2006                      Action|Adventure|Drama|Sci-Fi|Thriller     48
## 7614  2006                               Drama|Mystery|Sci-Fi|Thriller     48
## 7615  2006                                            Animation|Comedy     48
## 7617  2006                                      Action|Sci-Fi|Thriller     48
## 7618  2005                                                Comedy|Drama     48
## 7620  2007                                    Animation|Children|Drama     48
## 7621  2007                                 Action|Comedy|Crime|Mystery     48
## 7622  2007                                        Crime|Drama|Thriller     48
## 7624  2007                         Action|Crime|Horror|Sci-Fi|Thriller     48
## 7625  2007           Action|Adventure|Animation|Children|Comedy|Sci-Fi     48
## 7627  2007                             Adventure|Drama|Sci-Fi|Thriller     48
## 7628  2007                                              Drama|Thriller     48
## 7629  2007                       Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7630  2007                 Adventure|Animation|Children|Comedy|Fantasy     48
## 7631  2006                                                      Horror     48
## 7632  2007                                   Animation|Children|Comedy     48
## 7633  2007                      Action|Adventure|Crime|Horror|Thriller     48
## 7636  2007                                 Action|Sci-Fi|Thriller|IMAX     48
## 7637  2007                                            Animation|Comedy     48
## 7638  2007                                                      Comedy     48
## 7644  2007                                            Animation|Comedy     48
## 7646  2007                                                Drama|Sci-Fi     48
## 7647  2007                     Action|Adventure|Animation|Fantasy|IMAX     48
## 7648  2007                                Comedy|Drama|Horror|Thriller     48
## 7649  2007                                                       Drama     48
## 7650  2007                                               Horror|Sci-Fi     48
## 7651  2007                          Action|Horror|Sci-Fi|Thriller|IMAX     48
## 7653  2007                                        Comedy|Drama|Romance     48
## 7655  2007                               Drama|Horror|Musical|Thriller     48
## 7656  2007                                               Drama|Western     48
## 7658  2007                                       Drama|Horror|Thriller     48
## 7660  2007                                        Comedy|Drama|Romance     48
## 7662  2008                             Action|Adventure|Fantasy|Sci-Fi     48
## 7664  2006                                                Comedy|Drama     48
## 7665  2008                         Adventure|Animation|Children|Comedy     48
## 7666  2006                                      Comedy|Fantasy|Romance     48
## 7667  2007                                                       Drama     48
## 7670  2007                                       Children|Comedy|Drama     48
## 7674  2008                       Action|Animation|Children|Comedy|IMAX     48
## 7676  2008                                               Action|Comedy     48
## 7677  2008                      Action|Animation|Comedy|Romance|Sci-Fi     48
## 7679  2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     48
## 7680  2008                                                 Documentary     48
## 7682  2008                                          Comedy|Crime|Drama     48
## 7684  2008                                                 Crime|Drama     48
## 7685  2008            Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi     48
## 7686  2008             Action|Adventure|Animation|Children|Comedy|IMAX     48
## 7687  2008                                         Crime|Drama|Romance     48
## 7688  2008                                                      Comedy     48
## 7689  2008                                                       Drama     48
## 7690  2008                  Action|Adventure|Animation|Children|Comedy     48
## 7693  2008                               Drama|Fantasy|Mystery|Romance     48
## 7694  2008                                                      Comedy     48
## 7695  2008                                          Drama|Thriller|War     48
## 7698  2008                        Adventure|Animation|Children|Fantasy     48
## 7700  2009                                  Animation|Fantasy|Thriller     48
## 7701  2008                                                       Drama     48
## 7702  2009                        Action|Drama|Mystery|Sci-Fi|Thriller     48
## 7704  2009                                       Animation|Sci-Fi|IMAX     48
## 7705  2009                                                Comedy|Drama     48
## 7708  2009                                Action|Adventure|Sci-Fi|IMAX     48
## 7709  1997                             Action|Animation|Mystery|Sci-Fi     48
## 7712  2009                                Action|Adventure|Sci-Fi|IMAX     48
## 7713  2009          Action|Adventure|Animation|Children|Comedy|Romance     48
## 7714  2009                                                       Drama     48
## 7721  2009                                  Adventure|Animation|Sci-Fi     48
## 7722  2009                             Animation|Children|Fantasy|IMAX     48
## 7723  2008                                                 Documentary     48
## 7726  2009                                       Action|Fantasy|Sci-Fi     48
## 7727  2009                                                      Comedy     48
## 7728  2009                                        Action|Comedy|Horror     48
## 7729  2009                                               Drama|Romance     48
## 7731  1989                     Animation|Drama|Mystery|Sci-Fi|Thriller     48
## 7732  2009                            Action|Animation|Children|Sci-Fi     48
## 7733  2009                              Horror|Mystery|Sci-Fi|Thriller     48
## 7734  2009                         Crime|Drama|Fantasy|Horror|Thriller     48
## 7735  2009                                                       Drama     48
## 7738  2010                                Action|Drama|Horror|Thriller     48
## 7739  2010                                      Action|Adventure|Drama     48
## 7740  2009                                                 Documentary     48
## 7741  2008                                Adventure|Animation|Children     48
## 7743  2009                               Drama|Horror|Mystery|Thriller     48
## 7745  2010                                      Adventure|Fantasy|IMAX     48
## 7748  2010                                               Action|Comedy     48
## 7750  2009                                                      Horror     48
## 7751  2010                       Action|Adventure|Sci-Fi|Thriller|IMAX     48
## 7757  2009                                Drama|Fantasy|Romance|Sci-Fi     48
## 7759  2009                             Fantasy|Horror|Mystery|Thriller     48
## 7761  2010                                        Comedy|Drama|Romance     48
## 7762  2010                                        Drama|Horror|Mystery     48
## 7763  2010                                         Documentary|Mystery     48
## 7765  2010                                                   Animation     48
## 7766  2010                                    Adventure|Drama|Thriller     48
## 7767  2010                Action|Animation|Children|Comedy|Sci-Fi|IMAX     48
## 7769  2010                                                       Drama     48
## 7770  2010      Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX     48
## 7771  2010                                Action|Adventure|Sci-Fi|IMAX     48
## 7772  2010                                              Crime|Thriller     48
## 7773  2010                                  Animation|Children|Fantasy     48
## 7774  2010                                               Comedy|Horror     48
## 7775  2010                                          Animation|Children     48
## 7778  2011                                     Adventure|Comedy|Sci-Fi     48
## 7781  2010                                              Fantasy|Horror     48
## 7783  2011                                Action|Fantasy|Thriller|IMAX     48
## 7786  2010                                     Fantasy|Horror|Thriller     48
## 7787  2011                             Action|Adventure|Crime|Thriller     48
## 7789  2011                         Action|Adventure|Drama|Fantasy|IMAX     48
## 7790  2008                                                      Comedy     48
## 7791  2008                                     Animation|Drama|Fantasy     48
## 7794  2011                                Mystery|Sci-Fi|Thriller|IMAX     48
## 7795  2011                                     Action|Adventure|Sci-Fi     48
## 7796  2011                            Action|Adventure|Sci-Fi|War|IMAX     48
## 7797  2011                        Action|Adventure|Sci-Fi|Thriller|War     48
## 7798  2011                                Action|Drama|Sci-Fi|Thriller     48
## 7799  2012                                Action|Adventure|Sci-Fi|IMAX     48
## 7800  2011                                     Horror|Mystery|Thriller     48
## 7801  2011                                                      Horror     48
## 7802  2011                                                       Drama     48
## 7803  2011                     Adventure|Animation|Comedy|Fantasy|IMAX     48
## 7804  2011                               Action|Animation|Mystery|IMAX     48
## 7805  2011                             Animation|Children|Comedy|Drama     48
## 7806  2012                                 Action|Adventure|Crime|IMAX     48
## 7807  2011              Action|Adventure|Comedy|Crime|Mystery|Thriller     48
## 7808  2011                                                      Horror     48
## 7809  2012                                      Action|Sci-Fi|Thriller     48
## 7810  2012                              Animation|Fantasy|Musical|IMAX     48
## 7811  2011                                                Action|Crime     48
## 7812  2012                               Comedy|Horror|Sci-Fi|Thriller     48
## 7815  2003                                          Animation|Children     48
## 7816  2012                                Action|Adventure|Sci-Fi|IMAX     48
## 7817  2012                                  Adventure|Animation|Comedy     48
## 7819  2012                                      Action|Sci-Fi|Thriller     48
## 7820  2012                                  Adventure|Animation|Comedy     48
## 7821  2011                                                 Documentary     48
## 7822  2012                                         Action|Crime|Sci-Fi     48
## 7825  2012                                             Horror|Thriller     48
## 7826  2012                                   Animation|Children|Comedy     48
## 7828  2012                                            Animation|Comedy     48
## 7829  2012                                                Comedy|Drama     48
## 7830  2012                                        Adventure|Drama|IMAX     48
## 7832  2012                                               Drama|Romance     48
## 7833  2012                   Adventure|Animation|Children|Fantasy|IMAX     48
## 7838  2013                                  Adventure|Animation|Comedy     48
## 7839  2013                                 Action|Sci-Fi|Thriller|IMAX     48
## 7841  2013                        Action|Adventure|Fantasy|Sci-Fi|IMAX     48
## 7842  2013                                Action|Adventure|Sci-Fi|IMAX     48
## 7843  2013                                    Action|Drama|Horror|IMAX     48
## 7844  2013                                    Action|Drama|Sci-Fi|IMAX     48
## 7845  2012                                             Horror|Thriller     48
## 7846  2013                              Animation|Children|Comedy|IMAX     48
## 7847  2013                                             Horror|Thriller     48
## 7848  2013                                          Action|Sci-Fi|IMAX     48
## 7849  2013                                Action|Adventure|Sci-Fi|IMAX     48
## 7850  2013                               Action|Adventure|Fantasy|IMAX     48
## 7851  2013                                                       Drama     48
## 7853  2013          Adventure|Animation|Comedy|Fantasy|Musical|Romance     48
## 7854  2013                                         Action|Drama|Sci-Fi     48
## 7855  2014                                             Horror|Thriller     48
## 7856  2013                               Action|Animation|Fantasy|IMAX     48
## 7857  2014                               Adventure|Romance|Sci-Fi|IMAX     48
## 7858  2014                                    Action|Crime|Sci-Fi|IMAX     48
## 7859  2014                                                 Sci-Fi|IMAX     48
## 7860  2014                                     Action|Mystery|Thriller     48
## 7861  2014                                       Action|Drama|War|IMAX     48
## 7862  2014                                  Adventure|Animation|Comedy     48
## 7863  2013                                      Horror|Sci-Fi|Thriller     48
## 7864  2014                                     Action|Crime|Drama|IMAX     48
## 7865  2014                                Action|Adventure|Sci-Fi|IMAX     48
## 7866  2014                                        Adventure|Drama|IMAX     48
## 7867  2014                                       Action|Crime|Thriller     48
## 7868  2014                                          Action|Sci-Fi|IMAX     48
## 7869  2013                                                      Horror     48
## 7870  2014                         Adventure|Animation|Children|Comedy     48
## 7871  2014                                           Drama|Sci-Fi|IMAX     48
## 7872  2014                                     Action|Adventure|Sci-Fi     48
## 7873  2014                                Action|Adventure|Sci-Fi|IMAX     48
## 7874  2014                              Action|Adventure|Children|IMAX     48
## 7876  2014                                  Action|Adventure|Animation     48
## 7877  2014                                     Action|Adventure|Sci-Fi     48
## 7878  2014                                       Drama|Horror|Thriller     48
## 7879  2014                                                      Sci-Fi     48
## 7880  2014                                     Action|Adventure|Sci-Fi     48
## 7881  2013                               Drama|Mystery|Sci-Fi|Thriller     48
## 7882  2014                                       Action|Mystery|Sci-Fi     48
## 7883  2014                              Action|Mystery|Sci-Fi|Thriller     48
## 7884  2014                                             Action|Thriller     48
## 7885  2014                                                      Horror     48
## 7886  2014                                     Action|Animation|Comedy     48
## 7887  2010                                                      Horror     48
## 7888  2014                                           Adventure|Fantasy     48
## 7890  1995                                  Adventure|Children|Fantasy     49
## 7892  1995                                         Action|Crime|Sci-Fi     49
## 7893  1995                   Adventure|Children|Comedy|Fantasy|Romance     49
## 7894  1995                                     Action|Thriller|Western     49
## 7895  1994                                      Adventure|Drama|Sci-Fi     49
## 7897  1994                                    Adventure|Children|Drama     49
## 7899  1993                                                       Drama     49
## 7900  1990                                     Adventure|Drama|Western     49
## 7901  1989                                       Action|Crime|Thriller     49
## 7903  1968                                     Adventure|Comedy|Sci-Fi     49
## 7904  1995                                 Action|Adventure|Comedy|War     49
## 7905  1996                                   Action|Adventure|Thriller     49
## 7913  1956                                            Adventure|Comedy     49
## 7916  1960                                          Adventure|Children     49
## 7920  1981                            Action|Adventure|Sci-Fi|Thriller     49
## 7926  1983                                     Action|Adventure|Sci-Fi     49
## 7933  1982                            Action|Adventure|Sci-Fi|Thriller     49
## 7936  1996                                        Action|Comedy|Sci-Fi     49
## 7937  1997                                        Action|Comedy|Sci-Fi     49
## 7938  1997                                               Action|Sci-Fi     49
## 7940  1972                                      Action|Adventure|Drama     49
## 7941  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     49
## 7942  1980                                    Adventure|Comedy|Musical     49
## 7943  1991                                     Action|Adventure|Sci-Fi     49
## 7944  1982                                     Action|Adventure|Sci-Fi     49
## 7949  1933                             Action|Adventure|Fantasy|Horror     49
## 7950  1985                                   Action|Adventure|Thriller     49
## 7952  1985          Action|Adventure|Children|Fantasy|Mystery|Thriller     49
## 7955  1974                             Action|Adventure|Drama|Thriller     49
## 7956  1979                                                   Adventure     49
## 7958  1959                                                         War     49
## 7959  1987                                     Action|Adventure|Comedy     49
## 7960  1986                                                  Action|War     49
## 7961  1988                                                  Action|War     49
## 7962  1992                                                      Action     49
## 7963  1972                                    Adventure|Drama|Thriller     49
## 7964  1958                                         Musical|Romance|War     49
## 7969  1970                                            Action|Drama|War     49
## 7971  1992                                                Comedy|Crime     49
## 7972  1992                                        Drama|Romance|Sci-Fi     49
## 7974  1988                                    Adventure|Children|Drama     49
## 7976  1984                                            Action|Drama|War     49
## 7977  1963                                    Adventure|Drama|Thriller     49
## 7978  1978                                            Action|Drama|War     49
## 7982  1970                                           Action|Comedy|War     49
## 7983  1966                                            Adventure|Sci-Fi     49
## 7985  1960                                    Action|Drama|War|Western     49
## 7989  1995                                       Comedy|Crime|Thriller     50
## 7990  1995                                              Comedy|Romance     50
## 7991  1995                                            Mystery|Thriller     50
## 7992  1996                                   Action|Adventure|Thriller     50
## 7994  1995                                        Adventure|Drama|IMAX     50
## 7995  1995                             Action|Adventure|Mystery|Sci-Fi     50
## 7998  1995                                       Action|Crime|Thriller     50
## 7999  1995                                     Action|Adventure|Sci-Fi     50
## 8000  1994                                            Adventure|Comedy     50
## 8001  1994                                                Drama|Horror     50
## 8002  1994                                                       Drama     50
## 8005  1994                                       Action|Drama|Thriller     50
## 8006  1994                                     Action|Adventure|Sci-Fi     50
## 8007  1993                                                       Drama     50
## 8009  1994                                                      Comedy     50
## 8010  1994                                 Action|Crime|Drama|Thriller     50
## 8015  1994                                     Action|Romance|Thriller     50
## 8016  1994                    Action|Adventure|Comedy|Romance|Thriller     50
## 8017  1994                                Action|Comedy|Crime|Thriller     50
## 8018  1993                                   Action|Adventure|Thriller     50
## 8020  1993                                     Action|Adventure|Sci-Fi     50
## 8021  1993                                              Drama|Thriller     50
## 8022  1993                                                    Thriller     50
## 8024  1993                                               Drama|Romance     50
## 8026  1993                                        Comedy|Drama|Romance     50
## 8027  1993                                        Action|Drama|Western     50
## 8028  1990                       Comedy|Drama|Fantasy|Romance|Thriller     50
## 8030  1990                                     Adventure|Drama|Western     50
## 8031  1990                                              Comedy|Romance     50
## 8033  1996                                       Action|Drama|Thriller     50
## 8035  1997                                             Action|Thriller     51
## 8036  1998                                        Comedy|Drama|Romance     51
## 8040  1985                                        Comedy|Drama|Romance     51
## 8041  1998                                        Comedy|Drama|Romance     51
## 8047  1999                                Action|Comedy|Sci-Fi|Western     51
## 8050  1999                                              Comedy|Romance     51
## 8051  1986                                    Adventure|Drama|Thriller     51
## 8056  1999                                              Drama|Thriller     51
## 8066  1993                                                       Drama     52
## 8067  1994                                               Drama|Romance     52
## 8072  1997                                        Comedy|Drama|Romance     52
## 8074  1985                                                      Horror     52
## 8075  1998                                     Horror|Mystery|Thriller     52
## 8077  1988                                               Comedy|Sci-Fi     52
## 8078  1999                                             Comedy|Thriller     52
## 8082  2000                                     Action|Adventure|Sci-Fi     52
## 8085  2000                                               Drama|Romance     52
## 8088  2001                                        Comedy|Crime|Romance     52
## 8092  2001                                              Comedy|Romance     52
## 8093  2002                                              Comedy|Romance     52
## 8101  2003                                             Horror|Thriller     52
## 8104  2003                             Action|Adventure|Comedy|Fantasy     52
## 8105  2001                                Comedy|Drama|Musical|Romance     52
## 8111  2004                                                    Thriller     52
## 8112  2004                                          Comedy|Crime|Drama     52
## 8114  2004                                        Action|Drama|Romance     52
## 8117  2004                                                      Comedy     52
## 8119  2005                                       Action|Drama|Thriller     52
## 8120  2005                                                Comedy|Drama     52
## 8123  2005                                               Drama|Romance     52
## 8126  2006                                      Drama|Mystery|Thriller     52
## 8127  2007                                    Animation|Children|Drama     52
## 8128  2006                                        Comedy|Drama|Romance     52
## 8132  2008                                        Comedy|Drama|Romance     52
## 8135  1995                                          Adventure|Children     53
## 8136  1993                                         Adventure|Animation     53
## 8137  1994                                Action|Comedy|Crime|Thriller     53
## 8138  1994                                    Adventure|Children|Drama     53
## 8139  1994                                          Adventure|Children     53
## 8142  1990                                   Action|Adventure|Thriller     53
## 8143  1997                                        Action|Comedy|Sci-Fi     53
## 8146  1998                                                      Comedy     53
## 8148  1986                                             Horror|Thriller     53
## 8149  1992                                   Action|Comedy|Crime|Drama     53
## 8150  1985                                  Adventure|Children|Fantasy     53
## 8152  1986                                            Adventure|Sci-Fi     53
## 8153  1998                                           Animation|Musical     53
## 8155  1990                                                Action|Drama     53
## 8160  1999                                    Animation|Comedy|Musical     53
## 8161  1999                                             Children|Comedy     53
## 8162  1999                                       Drama|Horror|Thriller     53
## 8163  1984                                        Action|Comedy|Sci-Fi     53
## 8164  1989                                       Comedy|Fantasy|Sci-Fi     53
## 8165  1999                            Action|Adventure|Children|Comedy     53
## 8166  1999                   Adventure|Animation|Children|Drama|Sci-Fi     53
## 8168  1999                                              Drama|Thriller     53
## 8169  1999                                        Crime|Drama|Thriller     53
## 8171  1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     53
## 8172  1999                                        Comedy|Drama|Fantasy     53
## 8174  1999                 Adventure|Animation|Children|Comedy|Fantasy     53
## 8175  1999                                                       Drama     53
## 8184  1963                                             Horror|Thriller     54
## 8187  1988                                     Action|Adventure|Comedy     54
## 8188  1999                                      Action|Sci-Fi|Thriller     54
## 8189  1973                                   Action|Adventure|Thriller     54
## 8191  1936                                        Comedy|Drama|Romance     54
## 8194  1988                                    Adventure|Comedy|Fantasy     54
## 8200  1967                  Action|Adventure|Animation|Children|Comedy     54
## 8202  2004                                                   Drama|War     54
## 8203  2005                                           Action|Crime|IMAX     54
## 8207  2006                                               Drama|Romance     54
## 8209  2006                                        Crime|Drama|Thriller     54
## 8211  2007                                                 Crime|Drama     54
## 8216  2009                                        Crime|Drama|Thriller     54
## 8220  2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     54
## 8221  2006                 Adventure|Animation|Children|Comedy|Fantasy     54
## 8223  1995                 Adventure|Animation|Children|Comedy|Fantasy     55
## 8224  1995                                                      Comedy     55
## 8226  1995                                              Comedy|Romance     55
## 8227  1995                                                      Action     55
## 8230  1996                                               Drama|Romance     55
## 8231  1996                                              Drama|Thriller     55
## 8232  1996                                   Action|Adventure|Thriller     55
## 8233  1996                                              Drama|Thriller     55
## 8235  1995                               Action|Adventure|Comedy|Crime     55
## 8239  1996                                   Action|Adventure|Thriller     55
## 8240  1996                                 Comedy|Crime|Drama|Thriller     55
## 8241  1996                                          Adventure|Children     55
## 8245  1996                                        Crime|Drama|Thriller     55
## 8246  1996                                              Comedy|Romance     55
## 8250  1996                           Action|Adventure|Romance|Thriller     55
## 8251  1996                                               Action|Sci-Fi     55
## 8252  1996                                            Action|Adventure     55
## 8254  1996                                             Comedy|Thriller     55
## 8257  1996                                               Drama|Romance     55
## 8260  1971                             Children|Comedy|Fantasy|Musical     55
## 8264  1995                                       Comedy|Crime|Thriller     56
## 8272  1995                                                       Drama     56
## 8273  1995                             Action|Adventure|Mystery|Sci-Fi     56
## 8277  1994                                            Adventure|Comedy     56
## 8280  1977                                     Action|Adventure|Sci-Fi     56
## 8281  1995                                Action|Drama|Sci-Fi|Thriller     56
## 8285  1995                                                      Comedy     56
## 8287  1994                                                      Comedy     56
## 8291  1993                                     Action|Adventure|Sci-Fi     56
## 8300  1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     56
## 8301  1964                                                  Comedy|War     56
## 8307  1968                                      Adventure|Drama|Sci-Fi     56
## 8309  1944                                     Crime|Film-Noir|Mystery     56
## 8316  1992                                      Drama|Romance|Thriller     56
## 8319  1996                                                Comedy|Drama     56
## 8321  1989                                                       Drama     56
## 8323  1980                                     Action|Adventure|Sci-Fi     56
## 8331  1983                                     Action|Adventure|Sci-Fi     56
## 8337  1977                                              Comedy|Romance     56
## 8339  1984                                      Action|Sci-Fi|Thriller     56
## 8340  1979                                        Comedy|Drama|Romance     56
## 8341  1967                                        Comedy|Drama|Romance     56
## 8347  1978                                                   Drama|War     56
## 8356  1969                                              Action|Western     56
## 8357  1989                                              Comedy|Romance     56
## 8367  1997                                               Action|Sci-Fi     56
## 8372  1997                                        Comedy|Drama|Romance     56
## 8376  1969                                                       Drama     56
## 8380  1983                                                Comedy|Drama     56
## 8381  1988                                                       Drama     56
## 8383  1987                                   Action|Comedy|Crime|Drama     56
## 8386  1989                                     Adventure|Comedy|Sci-Fi     56
## 8388  1994                                             Children|Comedy     56
## 8391  1989                                                      Comedy     56
## 8392  1992                                             Children|Comedy     56
## 8396  1987                                          Action|Crime|Drama     56
## 8398  1992                                              Comedy|Fantasy     56
## 8401  1997                                    Comedy|Drama|Romance|War     56
## 8407  1999                                              Comedy|Romance     56
## 8412  1984                                        Action|Comedy|Sci-Fi     56
## 8422  1964                                   Action|Adventure|Thriller     56
## 8423  1964                                              Action|Western     56
## 8427  1983                                                      Comedy     56
## 8432  1984                                                       Drama     56
## 8433  1988                                Action|Comedy|Crime|Thriller     56
## 8435  1971                                                       Drama     56
## 8437  1982                                        Comedy|Drama|Romance     56
## 8439  1992                                                Comedy|Drama     56
## 8440  1992                                               Action|Comedy     56
## 8442  1988                                        Comedy|Drama|Romance     56
## 8446  1961                                                       Drama     56
## 8448  1991                                    Adventure|Comedy|Fantasy     56
## 8450  1980                                                      Comedy     56
## 8452  1985                                            Adventure|Comedy     56
## 8460  2000                                                       Drama     56
## 8461  2000                                                       Drama     56
## 8462  1994                                               Action|Comedy     56
## 8463  2000                                     Children|Comedy|Fantasy     56
## 8469  1984                                   Action|Comedy|Crime|Drama     56
## 8471  1987                                          Comedy|Documentary     56
## 8473  1983                                          Action|Crime|Drama     56
## 8476  1962                                         Crime|Drama|Western     56
## 8481  2001                                        Crime|Drama|Thriller     56
## 8482  2001                                                      Comedy     56
## 8485  2001                                                 Crime|Drama     56
## 8500  1991                                        Comedy|Drama|Romance     56
## 8502  2002                                 Comedy|Crime|Drama|Thriller     56
## 8504  2003                                                      Comedy     56
## 8505  2003                                Comedy|Drama|Fantasy|Romance     56
## 8507  2001                                               Action|Comedy     56
## 8512  2003                                         Crime|Drama|Mystery     56
## 8513  2003                                              Comedy|Romance     56
## 8517  2003                                        Comedy|Drama|Romance     56
## 8518  1991                                                Comedy|Drama     56
## 8519  1990                                        Crime|Drama|Thriller     56
## 8520  2000                                Action|Drama|Horror|Thriller     56
## 8521  1985                                              Comedy|Fantasy     56
## 8533  2004                                                      Comedy     56
## 8536  2004                                        Comedy|Drama|Romance     56
## 8539  2004                                                Drama|Sci-Fi     56
## 8542  2004                     Action|Adventure|Drama|Mystery|Thriller     56
## 8544  1983                                          Comedy|Documentary     56
## 8548  2005                                              Comedy|Romance     56
## 8549  2004                                                 Crime|Drama     56
## 8553  2005                                                Comedy|Drama     56
## 8557  2005                                 Action|Crime|Drama|Thriller     56
## 8566  2006                                        Crime|Drama|Thriller     56
## 8570  2006                                                       Drama     56
## 8580  2007                                     Action|Fantasy|War|IMAX     56
## 8584  2007                             Action|Adventure|Comedy|Fantasy     56
## 8590  2007                                           Drama|Romance|War     56
## 8591  2007                                        Crime|Drama|Thriller     56
## 8592  2007                                      Action|Adventure|Drama     56
## 8593  2007                                        Crime|Drama|Thriller     56
## 8596  2007                          Action|Horror|Sci-Fi|Thriller|IMAX     56
## 8601  2008                                                      Comedy     56
## 8603  2008                      Action|Adventure|Drama|Sci-Fi|Thriller     56
## 8606  2008                                     Action|Adventure|Sci-Fi     56
## 8607  2008                                 Action|Crime|Drama|Thriller     56
## 8608  2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     56
## 8614  2008                                   Action|Adventure|Thriller     56
## 8617  2008                                          Drama|Thriller|War     56
## 8625  2009                                        Crime|Drama|Thriller     56
## 8637  2009                                                       Drama     56
## 8657  2010                                       Drama|Musical|Romance     56
## 8664  2011                                                      Comedy     56
## 8665  2011                        Action|Adventure|Sci-Fi|Thriller|War     56
## 8667  2011                                        Comedy|Drama|Romance     56
## 8668  2011                                                Comedy|Crime     56
## 8671  2011                                                       Drama     56
## 8672  2011                                         Action|Comedy|Crime     56
## 8680  2012                                 Action|Adventure|Crime|IMAX     56
## 8682  2012                                                      Comedy     56
## 8691  2012                                              Comedy|Fantasy     56
## 8694  2012                                                      Comedy     56
## 8700  2012                                               Action|Comedy     56
## 8702  2012                                                Comedy|Drama     56
## 8703  2012                                                       Drama     56
## 8706  2012                                                       Drama     56
## 8708  2013                                     Romance|Sci-Fi|Thriller     56
## 8711  2013                                    Action|Adventure|Romance     56
## 8718  2013                                             Horror|Thriller     56
## 8722  2010                                              Comedy|Romance     56
## 8724  2013                                                      Comedy     56
## 8729  2013                                                 Crime|Drama     56
## 8731  2013                                                Comedy|Drama     56
## 8734  2014                                               Action|Comedy     56
## 8737  2014                                     Action|Adventure|Sci-Fi     56
## 8738  2014                                                      Comedy     56
## 8744  2014                                              Drama|Thriller     56
## 8745  2014                                     Action|Adventure|Sci-Fi     56
## 8747  2014                                                Comedy|Crime     56
## 8748  2014                                                       Drama     56
## 8751  2014                                                       Drama     56
## 8757  2015                        Action|Adventure|Fantasy|Sci-Fi|IMAX     56
## 8761  2015                                                      Comedy     56
## 8766  2015                                Action|Comedy|Fantasy|Sci-Fi     56
## 8768  2016                             Action|Adventure|Fantasy|Sci-Fi     56
## 8772  2015                                                       Drama     56
## 8777  2015                                                       Drama     56
## 8790  1995                            Crime|Film-Noir|Mystery|Thriller     57
## 8796  1994                                      Drama|Mystery|Thriller     57
## 8797  1994                                    Comedy|Drama|Romance|War     57
## 8809  1989                                       Action|Crime|Thriller     57
## 8812  1996                           Action|Adventure|Mystery|Thriller     57
## 8818  1975                                     Children|Comedy|Western     57
## 8828  1989                                                      Comedy     57
## 8829  1992                                      Crime|Mystery|Thriller     57
## 8836  1980                                                      Horror     57
## 8837  1981                            Action|Adventure|Sci-Fi|Thriller     57
## 8849  1986                              Action|Adventure|Horror|Sci-Fi     57
## 8850  1979                                            Action|Drama|War     57
## 8851  1979                                               Horror|Sci-Fi     57
## 8859  1984                                      Action|Sci-Fi|Thriller     57
## 8868  1985                                     Adventure|Comedy|Sci-Fi     57
## 8869  1970                                                   Drama|War     57
## 8870  1986                                    Action|Adventure|Fantasy     57
## 8873  1984                                                      Comedy     57
## 8880  1983                                                      Horror     57
## 8881  1982                                                      Horror     57
## 8895  1997                                Crime|Drama|Mystery|Thriller     57
## 8898  1982                                    Action|Adventure|Fantasy     57
## 8902  1997                                      Drama|Mystery|Thriller     57
## 8909  1997                                               Drama|Romance     57
## 8910  1998                                                Comedy|Crime     57
## 8911  1998                                Crime|Drama|Fantasy|Thriller     57
## 8914  1998                        Action|Crime|Mystery|Sci-Fi|Thriller     57
## 8916  1998                              Action|Romance|Sci-Fi|Thriller     57
## 8917  1998                                Action|Comedy|Crime|Thriller     57
## 8930  1986                                   Adventure|Fantasy|Musical     57
## 8932  1980                                     Horror|Mystery|Thriller     57
## 8933  1981                                                      Horror     57
## 8934  1984                                                      Horror     57
## 8935  1985                                                      Horror     57
## 8936  1986                                                      Horror     57
## 8937  1989                                                      Horror     57
## 8939  1981                                                      Horror     57
## 8940  1982                                                      Horror     57
## 8941  1980                                                      Horror     57
## 8943  1986                                             Horror|Thriller     57
## 8944  1988                                             Horror|Thriller     57
## 8948  1984                                               Comedy|Horror     57
## 8949  1985                    Action|Adventure|Children|Comedy|Fantasy     57
## 8951  1973                               Drama|Mystery|Sci-Fi|Thriller     57
## 8954  1998                                                Comedy|Crime     57
## 8957  1981                                              Comedy|Fantasy     57
## 8958  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     57
## 8960  1980                                    Adventure|Comedy|Musical     57
## 8961  1983                     Children|Drama|Fantasy|Mystery|Thriller     57
## 8965  1983                                                      Comedy     57
## 8968  1983                                                    Thriller     57
## 8969  1983                                             Horror|Thriller     57
## 8970  1984                                             Horror|Thriller     57
## 8973  1985                                   Adventure|Fantasy|Romance     57
## 8974  1984                                              Comedy|Romance     57
## 8975  1998                                            Action|Adventure     57
## 8976  1984                                  Adventure|Children|Fantasy     57
## 8977  1978                                               Comedy|Horror     57
## 8987  1968                                                      Comedy     57
## 8988  1981                                              Comedy|Musical     57
## 8993  1995                                                      Comedy     58
## 8995  1994                                                      Comedy     58
## 8996  1993                                     Children|Comedy|Fantasy     58
## 8997  1993                                             Comedy|Thriller     58
## 9000  1960                                        Comedy|Drama|Romance     58
## 9002  1938                                    Action|Adventure|Romance     58
## 9003  1956                                            Adventure|Comedy     58
## 9006  1996                                             Crime|Film-Noir     58
## 9007  1975                                     Children|Comedy|Western     58
## 9010  1989                            Action|Adventure|Sci-Fi|Thriller     58
## 9015  1977                                              Comedy|Romance     58
## 9017  1992                               Action|Horror|Sci-Fi|Thriller     58
## 9021  1997                                   Action|Adventure|Thriller     58
## 9022  1997                                     Action|Adventure|Comedy     58
## 9025  1997                                        Comedy|Drama|Romance     58
## 9028  1961                                     Children|Comedy|Fantasy     58
## 9029  1979                                     Children|Comedy|Western     58
## 9030  1989                                                      Comedy     58
## 9031  1961                                Adventure|Animation|Children     58
## 9032  1991                                     Children|Comedy|Fantasy     58
## 9034  1998                                            Action|Adventure     58
## 9039  1986                                     Action|Mystery|Thriller     58
## 9041  1970                                                       Drama     58
## 9042  1977                                                       Drama     58
## 9043  1988                                       Drama|Horror|Thriller     58
## 9044  1999                                     Action|Adventure|Comedy     58
## 9048  1992                                                      Action     58
## 9049  1999                                      Horror|Sci-Fi|Thriller     58
## 9052  1958                                    Action|Adventure|Fantasy     58
## 9058  2000                               Crime|Horror|Mystery|Thriller     58
## 9060  1980                                                       Drama     58
## 9061  1974                                          Adventure|Children     58
## 9064  1988                                Action|Comedy|Crime|Thriller     58
## 9065  1995                                        Comedy|Drama|Romance     59
## 9068  1976                                        Crime|Drama|Thriller     59
## 9070  1994                                                      Comedy     59
## 9071  1994                                            Adventure|Comedy     59
## 9072  1995                                Action|Drama|Sci-Fi|Thriller     59
## 9075  1994                                                 Crime|Drama     59
## 9076  1994                                 Action|Comedy|Crime|Fantasy     59
## 9077  1994                    Action|Adventure|Comedy|Romance|Thriller     59
## 9078  1993                                     Children|Comedy|Fantasy     59
## 9083  1990                                             Children|Comedy     59
## 9084  1990                                     Adventure|Drama|Western     59
## 9085  1991                                       Crime|Horror|Thriller     59
## 9090  1939                          Adventure|Children|Fantasy|Musical     59
## 9093  1975                                                       Drama     59
## 9094  1990                                                 Crime|Drama     59
## 9096  1996                            Action|Adventure|Sci-Fi|Thriller     59
## 9098  1997                                   Action|Adventure|Thriller     59
## 9099  1998                                              Comedy|Romance     59
## 9100  1988                                                       Drama     59
## 9101  1985                                                Comedy|Drama     59
## 9102  1998                                            Action|Drama|War     59
## 9103  1982                                     Action|Adventure|Sci-Fi     59
## 9104  1984                                  Adventure|Children|Fantasy     59
## 9106  1988                                    Action|Adventure|Fantasy     59
## 9107  1987                                          Action|Crime|Drama     59
## 9108  1992                                                      Comedy     59
## 9110  1998                                        Comedy|Drama|Romance     59
## 9111  1986                                            Adventure|Comedy     59
## 9112  1998                                       Comedy|Crime|Thriller     59
## 9114  1978                                     Action|Adventure|Sci-Fi     59
## 9115  1999                                              Comedy|Romance     59
## 9116  1999                                     Action|Adventure|Comedy     59
## 9118  1984                                        Action|Comedy|Sci-Fi     59
## 9119  1999                                              Action|Mystery     59
## 9120  1988                                Comedy|Drama|Fantasy|Romance     59
## 9123  1999                                        Comedy|Drama|Fantasy     59
## 9126  2000                                   Action|Adventure|Thriller     59
## 9128  2000                                                      Comedy     59
## 9129  2000                                                      Comedy     59
## 9130  2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     59
## 9132  1970                                            Comedy|Drama|War     59
## 9133  2002                            Action|Adventure|Sci-Fi|Thriller     59
## 9140  1990                                                       Drama     59
## 9141  2005                                           Action|Crime|IMAX     59
## 9144  1995                                       Comedy|Crime|Thriller     60
## 9147  1995                                         Action|Crime|Sci-Fi     60
## 9152  1996                                    Action|Adventure|Fantasy     60
## 9154  1995                                   Animation|Children|Comedy     60
## 9162  1978                                      Comedy|Musical|Romance     60
## 9163  1997                                                      Comedy     60
## 9168  1984                                    Action|Adventure|Fantasy     60
## 9174  1985                                        Comedy|Horror|Sci-Fi     60
## 9175  1999                                                       Drama     60
## 9177  1976                                             Action|Thriller     60
## 9184  2002                                           Adventure|Fantasy     60
## 9189  2003                                                Comedy|Crime     60
## 9195  2003                                             Action|Thriller     60
## 9198  1995                                  Adventure|Children|Fantasy     61
## 9199  1995                                              Children|Drama     61
## 9200  1995                    Animation|Children|Drama|Musical|Romance     61
## 9203  1995                                          Adventure|Children     61
## 9205  1994                                        Comedy|Drama|Fantasy     61
## 9206  1994             Adventure|Animation|Children|Drama|Musical|IMAX     61
## 9208  1993                          Animation|Children|Fantasy|Musical     61
## 9209  1995                                                      Comedy     61
## 9210  1990                                             Children|Comedy     61
## 9212  1992                 Adventure|Animation|Children|Comedy|Musical     61
## 9214  1991                                       Crime|Horror|Thriller     61
## 9215  1937                    Animation|Children|Drama|Fantasy|Musical     61
## 9216  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     61
## 9217  1940                          Animation|Children|Fantasy|Musical     61
## 9218  1970                                          Animation|Children     61
## 9219  1996                Adventure|Animation|Children|Fantasy|Musical     61
## 9220  1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     61
## 9221  1996                                             Children|Comedy     61
## 9222  1939                          Adventure|Children|Fantasy|Musical     61
## 9223  1946                              Children|Drama|Fantasy|Romance     61
## 9224  1969                                             Children|Comedy     61
## 9225  1950                  Animation|Children|Fantasy|Musical|Romance     61
## 9226  1964                             Children|Comedy|Fantasy|Musical     61
## 9227  1941                            Animation|Children|Drama|Musical     61
## 9229  1996                                               Drama|Romance     61
## 9230  1971                             Children|Comedy|Fantasy|Musical     61
## 9231  1982                                       Children|Drama|Sci-Fi     61
## 9234  1962                                                       Drama     61
## 9235  1980                                       Action|Comedy|Musical     61
## 9236  1996                                   Adventure|Children|Comedy     61
## 9237  1978                                      Comedy|Musical|Romance     61
## 9239  1997                                        Action|Comedy|Sci-Fi     61
## 9240  1998                                              Comedy|Romance     61
## 9242  1976                                                       Drama     61
## 9244  1942                                    Animation|Children|Drama     61
## 9245  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     61
## 9246  1967                           Animation|Children|Comedy|Musical     61
## 9247  1955                           Animation|Children|Comedy|Romance     61
## 9248  1989                   Animation|Children|Comedy|Musical|Romance     61
## 9249  1961                                Adventure|Animation|Children     61
## 9250  1953                          Animation|Children|Fantasy|Musical     61
## 9251  1989                     Animation|Children|Comedy|Drama|Fantasy     61
## 9252  1984                                              Comedy|Romance     61
## 9253  1984                                  Adventure|Children|Fantasy     61
## 9254  1988                                              Comedy|Fantasy     61
## 9255  1998                                Action|Comedy|Crime|Thriller     61
## 9257  1998                         Adventure|Animation|Children|Comedy     61
## 9258  1998                                    Adventure|Children|Drama     61
## 9262  1984                                        Action|Comedy|Sci-Fi     61
## 9263  1999                   Adventure|Animation|Children|Drama|Sci-Fi     61
## 9264  1983                                             Children|Comedy     61
## 9267  1992                                             Children|Comedy     61
## 9268  1999                 Adventure|Animation|Children|Comedy|Fantasy     61
## 9269  1968                                               Drama|Romance     61
## 9270  2000                                   Animation|Children|Comedy     61
## 9271  2000                                     Children|Comedy|Fantasy     61
## 9272  2000                 Adventure|Animation|Children|Comedy|Fantasy     61
## 9273  2000                                                Comedy|Crime     61
## 9274  2001                            Action|Adventure|Children|Comedy     61
## 9275  2001                                        Comedy|Drama|Romance     61
## 9276  2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     61
## 9278  2001                                               Action|Comedy     61
## 9279  2001                 Adventure|Animation|Children|Comedy|Fantasy     61
## 9280  2001                                      Comedy|Fantasy|Romance     61
## 9281  2001                                  Adventure|Children|Fantasy     61
## 9283  2002                                              Comedy|Romance     61
## 9285  2002                         Adventure|Animation|Children|Sci-Fi     61
## 9286  2002                                              Comedy|Romance     61
## 9287  2002                                        Action|Comedy|Sci-Fi     61
## 9288  2002                                                      Comedy     61
## 9290  1977                                        Comedy|Drama|Romance     61
## 9291  2002                                           Adventure|Fantasy     61
## 9294  2002                                        Comedy|Drama|Romance     61
## 9296  2003                                Comedy|Drama|Fantasy|Romance     61
## 9297  2003                         Adventure|Animation|Children|Comedy     61
## 9298  2003                             Action|Adventure|Comedy|Fantasy     61
## 9299  1942                                           Adventure|Fantasy     61
## 9301  2003                                     Children|Comedy|Fantasy     61
## 9304  2003                                             Children|Comedy     61
## 9306  2004         Adventure|Animation|Children|Comedy|Musical|Romance     61
## 9307  2004                                      Adventure|Fantasy|IMAX     61
## 9308  2004                                                      Comedy     61
## 9309  2004                                    Comedy|Documentary|Drama     61
## 9310  1972                                               Comedy|Sci-Fi     61
## 9312  2004                                                       Drama     61
## 9314  2004                           Adventure|Children|Comedy|Fantasy     61
## 9315  2005                      Adventure|Children|Comedy|Fantasy|IMAX     61
## 9316  2005                                     Adventure|Comedy|Sci-Fi     61
## 9317  2005                         Adventure|Animation|Children|Comedy     61
## 9318  2005                                               Drama|Romance     61
## 9321  2005                                     Action|Adventure|Sci-Fi     61
## 9323  2005                                               Drama|Romance     61
## 9325  2005                                  Adventure|Children|Fantasy     61
## 9328  2006                         Adventure|Animation|Children|Comedy     61
## 9329  2006                                   Animation|Children|Comedy     61
## 9331  2006                                    Action|Adventure|Fantasy     61
## 9335  2006                                Comedy|Drama|Fantasy|Romance     61
## 9336  2006                               Drama|Fantasy|Mystery|Romance     61
## 9341  2007                 Adventure|Animation|Children|Comedy|Fantasy     61
## 9342  2007                             Action|Adventure|Comedy|Fantasy     61
## 9344  2007                                     Action|Adventure|Sci-Fi     61
## 9346  2007                                Adventure|Drama|Fantasy|IMAX     61
## 9347  2007                                            Animation|Comedy     61
## 9349  2008                                                      Comedy     61
## 9350  2007                                                 Documentary     61
## 9354  2007                               Drama|Horror|Musical|Thriller     61
## 9355  2008                             Action|Adventure|Fantasy|Sci-Fi     61
## 9357  2008                      Action|Adventure|Drama|Sci-Fi|Thriller     61
## 9362  2008                       Action|Adventure|Comedy|Crime|Fantasy     61
## 9366  1994                                                 Crime|Drama     62
## 9378  2006                   Action|Adventure|Crime|Drama|Thriller|War     62
## 9383  2008                                   Action|Drama|Thriller|War     62
## 9389  2012                        Action|Adventure|Drama|Thriller|IMAX     62
## 9390  2011                                                Comedy|Drama     62
## 9392  2013                                Action|Adventure|Sci-Fi|IMAX     62
## 9393  2011                                                 Documentary     62
## 9401  2014                                                Comedy|Drama     62
## 9404  2014                                                  Action|War     62
## 9405  2014                                             Action|Thriller     62
## 9406  2014                                        Crime|Drama|Thriller     62
## 9409  2015                         Action|Crime|Drama|Mystery|Thriller     62
## 9411  2015                                     Action|Adventure|Sci-Fi     62
## 9418  1995                                        Comedy|Drama|Romance     63
## 9420  1994                                        Comedy|Drama|Romance     63
## 9421  1995                               Action|Adventure|Comedy|Crime     63
## 9423  1995                                    Action|Drama|Romance|War     63
## 9424  1994                                                 Documentary     63
## 9426  1994                                       Action|Drama|Thriller     63
## 9428  1994                    Action|Adventure|Comedy|Romance|Thriller     63
## 9430  1993                                                    Thriller     63
## 9432  1993                                               Drama|Romance     63
## 9433  1993                                                      Comedy     63
## 9437  1996                                              Crime|Thriller     63
## 9438  1993                                    Adventure|Children|Drama     63
## 9441  1996                                                      Horror     63
## 9446  1977                                              Comedy|Romance     63
## 9447  1973                                                Comedy|Crime     63
## 9450  1989                                              Comedy|Romance     63
## 9452  1991                                       Action|Mystery|Sci-Fi     63
## 9454  1986                                     Adventure|Comedy|Sci-Fi     63
## 9456  1997                                             Children|Comedy     63
## 9457  1997                                                      Comedy     63
## 9462  1997                                                Comedy|Drama     63
## 9465  1988                                                       Drama     63
## 9468  1978                        Adventure|Animation|Children|Fantasy     63
## 9469  1988                                              Comedy|Fantasy     63
## 9471  1992                                                      Comedy     63
## 9478  1999                                        Drama|Horror|Mystery     63
## 9489  2000                                                       Drama     63
## 9493  2000                                   Animation|Children|Comedy     63
## 9499  2000                                                       Drama     63
## 9509  2003                                       Action|Fantasy|Sci-Fi     63
## 9513  2004                                                       Drama     63
## 9515  1995                                        Adventure|Drama|IMAX     64
## 9517  1995                                       Action|Crime|Thriller     64
## 9518  1995                                        Action|Drama|Romance     64
## 9519  1994                                            Adventure|Comedy     64
## 9525  1994                                                      Comedy     64
## 9534  1991             Animation|Children|Fantasy|Musical|Romance|IMAX     64
## 9538  1939                                           Drama|Romance|War     65
## 9543  1983                                     Action|Adventure|Sci-Fi     65
## 9546  1983                                                      Comedy     65
## 9548  1985                                     Adventure|Comedy|Sci-Fi     65
## 9550  1984                                                      Comedy     65
## 9555  1980                                                       Drama     65
## 9563  1995                         Crime|Drama|Horror|Mystery|Thriller     66
## 9564  1995                                               Drama|Romance     66
## 9583  1986                              Action|Adventure|Horror|Sci-Fi     66
## 9588  1986                                    Action|Adventure|Fantasy     66
## 9589  1997                                 Action|Crime|Drama|Thriller     66
## 9590  1997                                        Action|Comedy|Sci-Fi     66
## 9592  1998                                                Comedy|Crime     66
## 9599  1998                                        Crime|Drama|Thriller     66
## 9600  1986                                Drama|Horror|Sci-Fi|Thriller     66
## 9601  1989                                               Horror|Sci-Fi     66
## 9602  1999                                      Action|Sci-Fi|Thriller     66
## 9607  1987                                      Action|Sci-Fi|Thriller     66
## 9610  1971                                                Action|Drama     66
## 9611  1995                 Adventure|Animation|Children|Comedy|Fantasy     67
## 9613  1995                                               Comedy|Horror     67
## 9619  1995                                          Action|Crime|Drama     67
## 9622  1995                                                       Drama     67
## 9624  1996                                                      Comedy     67
## 9625  1996                                        Comedy|Drama|Romance     67
## 9626  1996                                   Action|Adventure|Thriller     67
## 9627  1996                                                      Comedy     67
## 9628  1996                           Adventure|Children|Comedy|Musical     67
## 9630  1995                               Action|Adventure|Comedy|Crime     67
## 9631  1996                                                      Comedy     67
## 9634  1995                                          Adventure|Children     67
## 9637  1994                                   Drama|Romance|War|Western     67
## 9645  1995                                              Comedy|Romance     67
## 9648  1994                                     Action|Adventure|Sci-Fi     67
## 9651  1994                                      Drama|Mystery|Thriller     67
## 9654  1994                                  Adventure|Children|Romance     67
## 9656  1994                                    Adventure|Comedy|Western     67
## 9660  1993                                   Action|Adventure|Thriller     67
## 9662  1993                                              Drama|Thriller     67
## 9664  1993                                             Action|Thriller     67
## 9671  1993                                                       Drama     67
## 9676  1990                       Comedy|Drama|Fantasy|Romance|Thriller     67
## 9679  1989                                       Action|Crime|Thriller     67
## 9683  1996                                          Adventure|Children     67
## 9687  1996                                Crime|Drama|Mystery|Thriller     67
## 9688  1996        Adventure|Animation|Children|Fantasy|Musical|Romance     67
## 9689  1996                                                      Comedy     67
## 9690  1996                           Action|Adventure|Mystery|Thriller     67
## 9692  1996                                    Action|Adventure|Fantasy     67
## 9693  1996                                                      Comedy     67
## 9694  1996                                          Action|Crime|Drama     67
## 9696  1996                                              Comedy|Romance     67
## 9698  1996                                          Adventure|Children     67
## 9699  1996                                                      Comedy     67
## 9700  1996                               Drama|Fantasy|Horror|Thriller     67
## 9703  1996                                                      Comedy     67
## 9705  1996                                             Comedy|Thriller     67
## 9706  1996                               Comedy|Fantasy|Romance|Sci-Fi     67
## 9707  1996                            Action|Adventure|Sci-Fi|Thriller     67
## 9708  1996                                        Comedy|Drama|Romance     67
## 9710  1965                                             Musical|Romance     67
## 9715  1995                                  Adventure|Children|Fantasy     68
## 9716  1995                                        Comedy|Drama|Romance     68
## 9718  1977                                     Action|Adventure|Sci-Fi     68
## 9719  1994                                        Comedy|Drama|Fantasy     68
## 9722  1994                                 Action|Comedy|Crime|Fantasy     68
## 9726  1995                                              Comedy|Romance     68
## 9729  1993                                                   Drama|War     68
## 9730  1993                                        Comedy|Drama|Romance     68
## 9731  1982                                      Action|Sci-Fi|Thriller     68
## 9732  1990                                             Children|Comedy     68
## 9734  1990                                     Adventure|Drama|Western     68
## 9735  1989                                       Action|Crime|Thriller     68
## 9736  1990                                              Comedy|Romance     68
## 9737  1996                                          Comedy|Crime|Drama     68
## 9738  1996                            Action|Adventure|Sci-Fi|Thriller     68
## 9743  1955                              Crime|Mystery|Romance|Thriller     68
## 9744  1950                                                      Comedy     68
## 9747  1971                             Children|Comedy|Fantasy|Musical     68
## 9749  1989                                                       Drama     68
## 9751  1987                     Action|Adventure|Comedy|Fantasy|Romance     68
## 9753  1986                              Action|Adventure|Horror|Sci-Fi     68
## 9763  1996                                Comedy|Drama|Fantasy|Romance     68
## 9766  1997                                               Drama|Romance     68
## 9771  1998                                    Adventure|Children|Drama     68
## 9772  1984                                                       Drama     68
## 9774  1986                                                Comedy|Drama     68
## 9776  1986                                       Comedy|Horror|Musical     68
## 9778  1978                                                      Comedy     68
## 9779  1980                                                      Comedy     68
## 9780  1988                                Comedy|Drama|Fantasy|Romance     68
## 9782  1981                             Adventure|Comedy|Fantasy|Sci-Fi     68
## 9783  1987                                              Comedy|Romance     68
## 9784  1999                                                       Drama     68
## 9785  1992                                                Comedy|Crime     68
## 9787  2000                                      Action|Adventure|Drama     68
## 9789  2000                                              Drama|Thriller     68
## 9792  2001                 Adventure|Animation|Children|Comedy|Fantasy     68
## 9793  2001                                              Crime|Thriller     68
## 9794  2001                                              Comedy|Romance     68
## 9797  2002                         Adventure|Animation|Children|Comedy     68
## 9798  2002                                              Comedy|Romance     68
## 9800  2002                                     Action|Mystery|Thriller     68
## 9804  2002                                                   Drama|War     68
## 9805  2002                                        Comedy|Drama|Romance     68
## 9806  2003                           Adventure|Children|Comedy|Mystery     68
## 9807  2003                                Comedy|Drama|Fantasy|Romance     68
## 9808  2003                         Adventure|Animation|Children|Comedy     68
## 9810  2003                                              Comedy|Musical     68
## 9811  2003                                       Action|Crime|Thriller     68
## 9812  2003                                       Drama|Fantasy|Romance     68
## 9814  2004                                        Drama|Romance|Sci-Fi     68
## 9816  2004                                        Comedy|Drama|Romance     68
## 9819  2004                                     Action|Adventure|Sci-Fi     68
## 9822  1957                                             Adventure|Drama     68
## 9824  2004                                                       Drama     68
## 9825  2004                                                   Drama|War     68
## 9826  2004                                                       Drama     68
## 9828  2004                         Adventure|Animation|Fantasy|Romance     68
## 9830  2005                                     Adventure|Comedy|Sci-Fi     68
## 9831  2006                         Adventure|Animation|Children|Comedy     68
## 9832  2006                                   Animation|Children|Comedy     68
## 9833  2006                                       Drama|Fantasy|Romance     68
## 9834  2006                                Comedy|Drama|Fantasy|Romance     68
## 9835  2007                            Adventure|Comedy|Fantasy|Romance     68
## 9838  1995                                  Adventure|Children|Fantasy     69
## 9845  1995                                          Adventure|Children     69
## 9848  1994                                 Comedy|Crime|Drama|Thriller     69
## 9854  1994                                             Children|Comedy     69
## 9855  1993                                     Children|Comedy|Fantasy     69
## 9856  1993                                                Comedy|Drama     69
## 9861  1940                          Animation|Children|Fantasy|Musical     69
## 9863  1996                               Comedy|Fantasy|Romance|Sci-Fi     69
## 9867  1964                             Children|Comedy|Fantasy|Musical     69
## 9873  1997                                                      Comedy     69
## 9877  1976                                                       Drama     69
## 9882  1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     69
## 9883  1998                                     Children|Comedy|Romance     69
## 9884  1963                                               Comedy|Sci-Fi     69
## 9889  1985                                                Comedy|Crime     69
## 9895  1968                                               Drama|Romance     69
## 9897  2000                                                      Comedy     69
## 9898  2000                                                      Comedy     69
## 9899  2000                                               Action|Comedy     69
## 9900  2001                                                Comedy|Drama     69
## 9902  2001                               Drama|Mystery|Sci-Fi|Thriller     69
## 9907  2002                            Action|Adventure|Sci-Fi|Thriller     69
## 9915  2008                                        Comedy|Drama|Romance     69
## 9921  1995                                              Comedy|Romance     70
## 9922  1995                                                      Action     70
## 9923  1995                                               Comedy|Horror     70
## 9924  1995                                                       Drama     70
## 9935  1996                                                      Comedy     70
## 9941  1996                                                      Comedy     70
## 9945  1996                                                      Comedy     70
## 9951  1996                                   Action|Adventure|Thriller     70
## 9957  1996                                                      Comedy     70
## 9958  1996                                              Drama|Thriller     70
## 9959  1996                           Action|Adventure|Mystery|Thriller     70
## 9962  1996                                                      Comedy     70
## 9964  1996                                               Comedy|Sci-Fi     70
## 9965  1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     70
## 9972  1996                               Drama|Fantasy|Horror|Thriller     70
## 9975  1996                                               Action|Sci-Fi     70
## 9976  1996                                                      Comedy     70
## 9978  1996                                      Action|Sci-Fi|Thriller     70
## 9979  1996                                            Action|Adventure     70
## 9982  1996                                             Comedy|Thriller     70
## 9989  1996                                     Children|Comedy|Fantasy     70
## 10002 1991                                               Action|Sci-Fi     71
## 10014 1986                                              Comedy|Romance     71
## 10021 1964                                                     Musical     71
## 10024 1995                 Adventure|Animation|Children|Comedy|Fantasy     72
## 10025 1995                                  Adventure|Children|Fantasy     72
## 10026 1995                                            Mystery|Thriller     72
## 10028 1995                                            Action|Drama|War     72
## 10029 1995                                        Adventure|Drama|IMAX     72
## 10030 1977                                     Action|Adventure|Sci-Fi     72
## 10034 1993                            Action|Adventure|Sci-Fi|Thriller     72
## 10037 1991                                       Crime|Horror|Thriller     72
## 10041 1942                                               Drama|Romance     72
## 10043 1988                                       Action|Crime|Thriller     72
## 10044 1980                                     Action|Adventure|Sci-Fi     72
## 10045 1986                              Action|Adventure|Horror|Sci-Fi     72
## 10051 1989                                                       Drama     72
## 10053 1985                                     Adventure|Comedy|Sci-Fi     72
## 10054 1998                                         Comedy|Drama|Sci-Fi     72
## 10055 1988                                                       Drama     72
## 10056 1998                                       Action|Comedy|Romance     72
## 10057 1998                                            Action|Drama|War     72
## 10059 1998                                                Comedy|Drama     72
## 10060 1999                                      Action|Sci-Fi|Thriller     72
## 10061 1999                                     Action|Adventure|Sci-Fi     72
## 10062 1998                                                Action|Crime     72
## 10065 1986                                                      Comedy     72
## 10067 1999                 Adventure|Animation|Children|Comedy|Fantasy     72
## 10068 2000                                        Comedy|Drama|Romance     72
## 10069 2000                                      Action|Adventure|Drama     72
## 10070 2000                                                Action|Crime     72
## 10071 2000                                            Action|Drama|War     72
## 10072 2000                                     Action|Adventure|Sci-Fi     72
## 10073 2000                                                       Drama     72
## 10074 2000                                                       Drama     72
## 10075 2000                                        Action|Drama|Romance     72
## 10076 2000                                       Comedy|Crime|Thriller     72
## 10077 2000                                              Comedy|Romance     72
## 10079 2000                                                Comedy|Crime     72
## 10080 2000                                      Adventure|Comedy|Crime     72
## 10082 2001                                        Comedy|Drama|Romance     72
## 10084 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     72
## 10085 2001                                              Comedy|Romance     72
## 10086 2001                               Drama|Horror|Mystery|Thriller     72
## 10088 2001                 Adventure|Animation|Children|Comedy|Fantasy     72
## 10089 2001                                              Crime|Thriller     72
## 10090 2001                                              Comedy|Romance     72
## 10091 2001                                                Comedy|Drama     72
## 10092 2001                                           Adventure|Fantasy     72
## 10093 2001                                               Drama|Romance     72
## 10094 2002                         Adventure|Animation|Children|Comedy     72
## 10095 2002                            Action|Adventure|Sci-Fi|Thriller     72
## 10096 2002                                Action|Adventure|Sci-Fi|IMAX     72
## 10097 2002                                     Action|Mystery|Thriller     72
## 10098 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     72
## 10099 2002                                     Horror|Mystery|Thriller     72
## 10100 2002                                      Action|Sci-Fi|Thriller     72
## 10101 2002                                           Adventure|Fantasy     72
## 10102 2002                                                 Crime|Drama     72
## 10103 2002                                                   Drama|War     72
## 10104 2003                            Action|Adventure|Sci-Fi|Thriller     72
## 10105 2003                         Adventure|Animation|Children|Comedy     72
## 10106 2002                                        Action|Horror|Sci-Fi     72
## 10107 2003                             Action|Adventure|Comedy|Fantasy     72
## 10109 2003                                              Comedy|Musical     72
## 10110 2003                                       Action|Crime|Thriller     72
## 10111 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     72
## 10112 2003                                  Action|Adventure|Drama|War     72
## 10113 2003                                       Drama|Fantasy|Romance     72
## 10114 2003                              Action|Adventure|Drama|Fantasy     72
## 10115 2004                                       Drama|Sci-Fi|Thriller     72
## 10116 2004                                        Drama|Romance|Sci-Fi     72
## 10117 2004                                       Action|Drama|Thriller     72
## 10118 2004                                  Action|Adventure|Drama|War     72
## 10119 2001                                            Action|Drama|War     72
## 10120 2004                            Action|Adventure|Sci-Fi|Thriller     72
## 10121 2004                                               Comedy|Horror     72
## 10122 2004                                      Drama|Mystery|Thriller     72
## 10123 2004                  Action|Adventure|Animation|Children|Comedy     72
## 10124 2005                              Action|Fantasy|Horror|Thriller     72
## 10125 2005                                           Action|Crime|IMAX     72
## 10126 2005                             Action|Crime|Drama|Thriller|War     72
## 10127 2005                                  Adventure|Children|Fantasy     72
## 10128 2006                                 Action|Sci-Fi|Thriller|IMAX     72
## 10129 2006                                                Comedy|Drama     72
## 10130 2006                                      Drama|Mystery|Thriller     72
## 10131 2006                                      Adventure|Comedy|Drama     72
## 10132 2006                               Drama|Fantasy|Mystery|Romance     72
## 10133 2006                                                      Comedy     72
## 10134 2006                                      Drama|Fantasy|Thriller     72
## 10135 2006                                        Crime|Drama|Thriller     72
## 10136 2006                                   Action|Adventure|Thriller     72
## 10138 2007                                 Action|Comedy|Crime|Mystery     72
## 10139 2007                                        Crime|Drama|Thriller     72
## 10140 2007                                     Action|Fantasy|War|IMAX     72
## 10141 2007                         Action|Crime|Horror|Sci-Fi|Thriller     72
## 10142 2007                       Action|Adventure|Sci-Fi|Thriller|IMAX     72
## 10143 2007                                        Comedy|Drama|Romance     72
## 10144 2007                                      Horror|Sci-Fi|Thriller     72
## 10145 2007                             Action|Adventure|Comedy|Fantasy     72
## 10146 2007                                              Crime|Thriller     72
## 10147 2007                      Action|Adventure|Crime|Horror|Thriller     72
## 10148 2007                             Action|Adventure|Crime|Thriller     72
## 10149 2007                                 Action|Sci-Fi|Thriller|IMAX     72
## 10150 2007                                Adventure|Drama|Fantasy|IMAX     72
## 10151 2007                            Adventure|Comedy|Fantasy|Romance     72
## 10152 2007                                            Animation|Comedy     72
## 10153 2007                                       Action|Crime|Thriller     72
## 10154 2007                                                      Comedy     72
## 10155 2007                                  Action|Crime|Drama|Western     72
## 10156 2007                                      Action|Adventure|Drama     72
## 10157 2007                                      Adventure|Comedy|Drama     72
## 10158 2007                                        Crime|Drama|Thriller     72
## 10160 2007                          Action|Horror|Sci-Fi|Thriller|IMAX     72
## 10162 2007                               Drama|Horror|Musical|Thriller     72
## 10164 2008                                     Action|Crime|Drama|IMAX     72
## 10165 2008                                     Action|Adventure|Sci-Fi     72
## 10167 2008                                          Comedy|Crime|Drama     72
## 10168 2008                               Drama|Fantasy|Mystery|Romance     72
## 10169 2009                                            Action|Drama|War     72
## 10170 2009                                      Action|Sci-Fi|Thriller     72
## 10171 2009                                Action|Adventure|Sci-Fi|IMAX     72
## 10173 2009                                                Comedy|Crime     72
## 10174 2009                                Action|Adventure|Sci-Fi|IMAX     72
## 10175 2010                                      Drama|Mystery|Thriller     72
## 10176 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     72
## 10177 2010                       Action|Comedy|Fantasy|Musical|Romance     72
## 10178 2010                                    Adventure|Drama|Thriller     72
## 10179 2010                                              Drama|Thriller     72
## 10180 2010                                                     Western     72
## 10181 2011                                      Comedy|Fantasy|Romance     72
## 10182 2011                        Action|Adventure|Sci-Fi|Thriller|War     72
## 10183 2011                                Action|Drama|Sci-Fi|Thriller     72
## 10184 2011                                                       Drama     72
## 10185 2012                                Action|Adventure|Sci-Fi|IMAX     72
## 10186 2012                                 Action|Adventure|Crime|IMAX     72
## 10189 2012                                           Drama|Sci-Fi|IMAX     72
## 10190 2012                                        Adventure|Drama|IMAX     72
## 10191 2012                                        Action|Drama|Western     72
## 10192 2013                                Action|Adventure|Sci-Fi|IMAX     72
## 10193 2013                                    Action|Drama|Horror|IMAX     72
## 10194 2013                                       Drama|Fantasy|Romance     72
## 10195 2013                                          Action|Sci-Fi|IMAX     72
## 10196 2013                                                       Drama     72
## 10197 2013                                                       Drama     72
## 10199 2014                                                 Sci-Fi|IMAX     72
## 10200 2014                                                       Drama     72
## 10201 2014                                     Action|Adventure|Sci-Fi     72
## 10202 2014                                                  Action|War     72
## 10203 2015                                       Drama|Sci-Fi|Thriller     72
## 10204 2014                                          Drama|Thriller|War     72
## 10205 2014                                               Drama|Romance     72
## 10207 2015                        Action|Adventure|Fantasy|Sci-Fi|IMAX     72
## 10208 2016                              Action|Adventure|Comedy|Sci-Fi     72
## 10209 2016                                      Action|Sci-Fi|Thriller     72
## 10210 2015                                      Adventure|Drama|Sci-Fi     72
## 10211 2016                             Action|Adventure|Fantasy|Sci-Fi     72
## 10212 2015                                             Adventure|Drama     72
## 10213 2015                                                    Thriller     72
## 10214 2016                              Action|Adventure|Drama|Fantasy     72
## 10216 1995                                  Adventure|Children|Fantasy     73
## 10218 1995                                   Action|Adventure|Thriller     73
## 10219 1995                                    Action|Adventure|Romance     73
## 10221 1995                                                      Comedy     73
## 10222 1995                                       Comedy|Crime|Thriller     73
## 10224 1995                                                       Drama     73
## 10226 1995                                              Children|Drama     73
## 10229 1995                                    Action|Adventure|Fantasy     73
## 10231 1995                    Animation|Children|Drama|Musical|Romance     73
## 10233 1995                                  Adventure|Children|Fantasy     73
## 10234 1996                                                Comedy|Crime     73
## 10235 1996                                                      Comedy     73
## 10237 1996                               Action|Comedy|Horror|Thriller     73
## 10238 1994                                             Action|Thriller     73
## 10239 1996                              Adventure|Comedy|Crime|Romance     73
## 10240 1996                                                      Comedy     73
## 10241 1996                           Adventure|Children|Comedy|Musical     73
## 10243 1976                                        Crime|Drama|Thriller     73
## 10244 1995                               Action|Adventure|Comedy|Crime     73
## 10245 1995                          Action|Comedy|Crime|Drama|Thriller     73
## 10247 1995                                        Adventure|Drama|IMAX     73
## 10248 1995                               Action|Adventure|Comedy|Crime     73
## 10249 1995                                          Adventure|Children     73
## 10250 1995                             Action|Adventure|Mystery|Sci-Fi     73
## 10251 1995                                      Action|Romance|Western     73
## 10252 1995                                       Action|Crime|Thriller     73
## 10253 1995                                        Action|Drama|Romance     73
## 10254 1995                                    Adventure|Children|Drama     73
## 10255 1995                                      Action|Sci-Fi|Thriller     73
## 10256 1995                                         Action|Crime|Sci-Fi     73
## 10258 1995                                                      Horror     73
## 10259 1995                                              Comedy|Romance     73
## 10260 1995                                       Action|Crime|Thriller     73
## 10261 1995                                                       Drama     73
## 10263 1995                                     Action|Adventure|Sci-Fi     73
## 10267 1994                                            Adventure|Comedy     73
## 10270 1995                           Animation|Children|Comedy|Romance     73
## 10273 1994                                                Drama|Horror     73
## 10274 1994                                               Comedy|Sci-Fi     73
## 10275 1995                   Adventure|Children|Comedy|Fantasy|Romance     73
## 10278 1995                                                      Comedy     73
## 10279 1994                                       Action|Crime|Thriller     73
## 10280 1995                                Action|Drama|Sci-Fi|Thriller     73
## 10284 1994                                     Action|Adventure|Sci-Fi     73
## 10288 1995                                        Action|Comedy|Sci-Fi     73
## 10289 1995                                                      Comedy     73
## 10290 1993                                                       Drama     73
## 10291 1995                                      Action|Sci-Fi|Thriller     73
## 10292 1994                                                      Comedy     73
## 10293 1994                                 Action|Crime|Drama|Thriller     73
## 10294 1994                                                Comedy|Drama     73
## 10298 1994                                 Action|Comedy|Crime|Fantasy     73
## 10299 1994                                    Adventure|Comedy|Western     73
## 10300 1994                                             Children|Comedy     73
## 10301 1994                                     Action|Romance|Thriller     73
## 10302 1994                    Action|Adventure|Comedy|Romance|Thriller     73
## 10303 1995                                             Horror|Thriller     73
## 10304 1994                                                 Crime|Drama     73
## 10305 1993                                     Children|Comedy|Fantasy     73
## 10306 1994                                                      Comedy     73
## 10308 1993                                                 Crime|Drama     73
## 10309 1993                                               Comedy|Sci-Fi     73
## 10310 1993                                                      Comedy     73
## 10311 1993                                     Action|Adventure|Sci-Fi     73
## 10314 1993                                           Action|Comedy|War     73
## 10316 1993                                             Action|Thriller     73
## 10318 1993                                              Drama|Thriller     73
## 10320 1993                             Action|Adventure|Comedy|Fantasy     73
## 10322 1993                                              Comedy|Romance     73
## 10323 1993                                                Comedy|Drama     73
## 10324 1994                                     Action|Children|Romance     73
## 10325 1993                                        Crime|Drama|Thriller     73
## 10327 1993                                                       Drama     73
## 10328 1994                                                      Comedy     73
## 10330 1992                                                Action|Drama     73
## 10333 1993                          Animation|Children|Fantasy|Musical     73
## 10336 1994                                             Children|Comedy     73
## 10337 1995                                                      Comedy     73
## 10338 1990                                             Children|Comedy     73
## 10340 1991                                               Action|Sci-Fi     73
## 10344 1937                    Animation|Children|Drama|Fantasy|Musical     73
## 10346 1940                          Animation|Children|Fantasy|Musical     73
## 10347 1990                                              Comedy|Romance     73
## 10349 1981                    Action|Adventure|Animation|Horror|Sci-Fi     73
## 10351 1996        Adventure|Animation|Children|Fantasy|Musical|Romance     73
## 10352 1996                           Action|Adventure|Mystery|Thriller     73
## 10353 1996                                    Action|Adventure|Fantasy     73
## 10354 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi     73
## 10355 1996                                          Action|Crime|Drama     73
## 10356 1996                                            Action|Adventure     73
## 10357 1996                                              Comedy|Romance     73
## 10358 1996                                                      Comedy     73
## 10359 1996                                   Action|Adventure|Thriller     73
## 10361 1996                           Action|Adventure|Romance|Thriller     73
## 10362 1996                                               Action|Sci-Fi     73
## 10364 1996                                             Horror|Thriller     73
## 10366 1996                                      Action|Sci-Fi|Thriller     73
## 10367 1996                                            Action|Adventure     73
## 10369 1996                            Action|Adventure|Sci-Fi|Thriller     73
## 10370 1996                                             Comedy|Thriller     73
## 10371 1996                                                      Comedy     73
## 10372 1996                                       Action|Drama|Thriller     73
## 10373 1996                               Comedy|Fantasy|Romance|Sci-Fi     73
## 10374 1996                                      Comedy|Horror|Thriller     73
## 10375 1996                                               Drama|Romance     73
## 10376 1996                                              Crime|Thriller     73
## 10377 1996                            Action|Adventure|Sci-Fi|Thriller     73
## 10379 1996                                             Sci-Fi|Thriller     73
## 10383 1968                                      Adventure|Drama|Sci-Fi     73
## 10386 1993                                    Adventure|Children|Drama     73
## 10387 1993                                                      Comedy     73
## 10388 1950                  Animation|Children|Fantasy|Musical|Romance     73
## 10389 1963                          Animation|Children|Fantasy|Musical     73
## 10390 1991                                             Adventure|Drama     73
## 10391 1941                            Animation|Children|Drama|Musical     73
## 10392 1951                Adventure|Animation|Children|Fantasy|Musical     73
## 10393 1981                                    Animation|Children|Drama     73
## 10395 1996                                            Action|Adventure     73
## 10396 1996                                               Drama|Romance     73
## 10400 1992                                      Crime|Mystery|Thriller     73
## 10402 1991                                                       Drama     73
## 10403 1992                                      Drama|Romance|Thriller     73
## 10405 1986                                              Action|Romance     73
## 10406 1996                                                Comedy|Drama     73
## 10409 1975                                    Adventure|Comedy|Fantasy     73
## 10412 1989                                                       Drama     73
## 10430 1980                                       Action|Comedy|Musical     73
## 10433 1984                                                       Drama     73
## 10437 1989                                                   Drama|War     73
## 10439 1989                                                       Drama     73
## 10444 1986                                             Adventure|Drama     73
## 10454 1989                                                      Comedy     73
## 10455 1984                                                      Comedy     73
## 10458 1982                                               Drama|Musical     73
## 10459 1984                                                   Drama|War     73
## 10460 1989                                      Children|Drama|Fantasy     73
## 10461 1992                               Action|Horror|Sci-Fi|Thriller     73
## 10462 1981                                      Comedy|Horror|Thriller     73
## 10463 1992                             Fantasy|Horror|Romance|Thriller     73
## 10464 1992                                             Horror|Thriller     73
## 10467 1984                                             Horror|Thriller     73
## 10468 1976                                     Horror|Mystery|Thriller     73
## 10469 1996                            Action|Adventure|Sci-Fi|Thriller     73
## 10471 1996                                             Children|Comedy     73
## 10472 1996                                   Adventure|Children|Comedy     73
## 10473 1990                                   Action|Adventure|Thriller     73
## 10474 1991                                       Action|Mystery|Sci-Fi     73
## 10476 1992                                                Action|Crime     73
## 10479 1996                                        Action|Comedy|Sci-Fi     73
## 10483 1996                            Adventure|Animation|Comedy|Crime     73
## 10485 1992                                  Action|Romance|War|Western     73
## 10486 1997                                             Action|Thriller     73
## 10487 1997                                                      Comedy     73
## 10488 1997               Crime|Drama|Fantasy|Film-Noir|Mystery|Romance     73
## 10490 1997                              Action|Romance|Sci-Fi|Thriller     73
## 10491 1997                                                      Comedy     73
## 10492 1997                                   Action|Adventure|Thriller     73
## 10494 1997                                       Action|Drama|Thriller     73
## 10495 1997                                     Action|Adventure|Comedy     73
## 10496 1997                              Action|Adventure|Comedy|Sci-Fi     73
## 10497 1997                            Action|Adventure|Sci-Fi|Thriller     73
## 10498 1997                                   Action|Adventure|Thriller     73
## 10499 1997                           Action|Adventure|Fantasy|Thriller     73
## 10501 1997                                 Action|Crime|Drama|Thriller     73
## 10502 1997                                        Action|Comedy|Sci-Fi     73
## 10503 1997                                                Drama|Sci-Fi     73
## 10506 1997                            Action|Adventure|Sci-Fi|Thriller     73
## 10507 1997                                    Adventure|Children|Drama     73
## 10508 1997                              Drama|Mystery|Romance|Thriller     73
## 10509 1997                                                      Action     73
## 10510 1997                                      Horror|Sci-Fi|Thriller     73
## 10511 1997                                             Action|Thriller     73
## 10514 1997                                        Comedy|Drama|Romance     73
## 10515 1997                                     Horror|Mystery|Thriller     73
## 10516 1997                                      Drama|Mystery|Thriller     73
## 10517 1997                                       Drama|Sci-Fi|Thriller     73
## 10519 1985                                      Drama|Romance|Thriller     73
## 10520 1997                                               Action|Sci-Fi     73
## 10521 1997                                    Action|Adventure|Fantasy     73
## 10523 1997                                        Action|Horror|Sci-Fi     73
## 10525 1997                                             Children|Comedy     73
## 10526 1997                                               Drama|Romance     73
## 10527 1997                                        Crime|Drama|Thriller     73
## 10530 1998                                       Action|Crime|Thriller     73
## 10532 1997                                                      Comedy     73
## 10533 1998                                        Action|Horror|Sci-Fi     73
## 10534 1998                                              Comedy|Romance     73
## 10535 1998                                             Sci-Fi|Thriller     73
## 10537 1990                                              Crime|Thriller     73
## 10538 1998                                       Action|Crime|Thriller     73
## 10539 1998                                          Adventure|Children     73
## 10540 1998                                                       Drama     73
## 10541 1997                                               Action|Comedy     73
## 10542 1998                                               Horror|Sci-Fi     73
## 10543 1998                                       Drama|Sci-Fi|Thriller     73
## 10544 1998                                      Action|Sci-Fi|Thriller     73
## 10545 1998                                      Adventure|Comedy|Drama     73
## 10546 1998                        Action|Crime|Mystery|Sci-Fi|Thriller     73
## 10547 1998                                                      Comedy     73
## 10550 1998                              Action|Romance|Sci-Fi|Thriller     73
## 10551 1998                              Animation|Children|Fantasy|War     73
## 10552 1998                                              Comedy|Romance     73
## 10553 1971                                       Action|Crime|Thriller     73
## 10556 1984                                               Comedy|Sci-Fi     73
## 10559 1980                                     Horror|Mystery|Thriller     73
## 10561 1988                                             Horror|Thriller     73
## 10568 1998                                       Action|Comedy|Romance     73
## 10571 1990                             Adventure|Comedy|Sci-Fi|Western     73
## 10573 1984                                            Adventure|Sci-Fi     73
## 10574 1990                                Crime|Drama|Mystery|Thriller     73
## 10576 1985                        Adventure|Animation|Children|Fantasy     73
## 10577 1993                              Children|Comedy|Fantasy|Horror     73
## 10578 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     73
## 10579 1998                         Action|Crime|Drama|Mystery|Thriller     73
## 10580 1998                                                      Comedy     73
## 10583 1955                           Animation|Children|Comedy|Romance     73
## 10584 1989                   Animation|Children|Comedy|Musical|Romance     73
## 10585 1992                                             Children|Comedy     73
## 10586 1953                          Animation|Children|Fantasy|Musical     73
## 10587 1990                                Adventure|Animation|Children     73
## 10588 1977                    Adventure|Animation|Children|Crime|Drama     73
## 10590 1959                                  Animation|Children|Musical     73
## 10591 1982                                     Action|Adventure|Sci-Fi     73
## 10594 1991                                     Children|Comedy|Fantasy     73
## 10599 1991                Adventure|Animation|Children|Musical|Western     73
## 10600 1985                                   Adventure|Fantasy|Romance     73
## 10602 1986                                       Comedy|Fantasy|Horror     73
## 10603 1980                                            Adventure|Comedy     73
## 10604 1986                                       Crime|Horror|Thriller     73
## 10605 1984                                  Adventure|Children|Fantasy     73
## 10606 1987                                  Action|Comedy|Drama|Horror     73
## 10607 1998                                      Action|Horror|Thriller     73
## 10611 1998                                                      Comedy     73
## 10614 1989                                        Comedy|Drama|Romance     73
## 10616 1998                                Action|Comedy|Crime|Thriller     73
## 10620 1990                                       Drama|Fantasy|Romance     73
## 10621 1998                 Adventure|Animation|Children|Comedy|Fantasy     73
## 10622 1992                                                      Comedy     73
## 10624 1998                                      Comedy|Horror|Thriller     73
## 10626 1998                                        Comedy|Drama|Fantasy     73
## 10627 1997                                    Comedy|Drama|Romance|War     73
## 10628 1990                                     Fantasy|Horror|Thriller     73
## 10630 1998                                                      Comedy     73
## 10631 1998                                                     Romance     73
## 10632 1998                                             Action|Thriller     73
## 10633 1998                         Adventure|Animation|Children|Comedy     73
## 10635 1984                                                Comedy|Crime     73
## 10636 1998                                                Comedy|Crime     73
## 10637 1998                                        Crime|Drama|Thriller     73
## 10638 1998                                           Animation|Musical     73
## 10641 1985                                   Action|Adventure|Thriller     73
## 10642 1982                             Action|Adventure|Drama|Thriller     73
## 10643 1988                               Action|Adventure|Thriller|War     73
## 10644 1984                             Action|Adventure|Comedy|Romance     73
## 10646 1982                                                Action|Drama     73
## 10647 1985                                                Action|Drama     73
## 10648 1990                                                Action|Drama     73
## 10651 1989                             Action|Adventure|Children|Drama     73
## 10652 1998                                              Comedy|Romance     73
## 10654 1998                                               Horror|Sci-Fi     73
## 10655 1998                     Action|Adventure|Drama|Fantasy|Thriller     73
## 10657 1987                                                      Horror     73
## 10660 1986                                                      Horror     73
## 10662 1986                                            Adventure|Comedy     73
## 10663 1999                                             Action|Thriller     73
## 10664 1973                                            Animation|Sci-Fi     73
## 10666 1976                                     Action|Adventure|Sci-Fi     73
## 10668 1999                                                       Drama     73
## 10670 1988                                       Drama|Horror|Thriller     73
## 10671 1999                                                      Comedy     73
## 10674 1999                                              Comedy|Romance     73
## 10676 1992                                               Action|Comedy     73
## 10679 1999                                              Crime|Thriller     73
## 10680 1999                                               Comedy|Horror     73
## 10681 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     73
## 10682 1999                                     Action|Adventure|Sci-Fi     73
## 10683 1975                                Comedy|Horror|Musical|Sci-Fi     73
## 10684 1999                                              Comedy|Romance     73
## 10685 1999                                     Action|Adventure|Comedy     73
## 10688 1999                                                      Comedy     73
## 10689 1990                                               Comedy|Horror     73
## 10690 1999                                    Animation|Comedy|Musical     73
## 10691 1999                                Action|Comedy|Sci-Fi|Western     73
## 10692 1999                                              Comedy|Romance     73
## 10694 1999                                       Drama|Horror|Thriller     73
## 10696 1999                                             Horror|Thriller     73
## 10698 1989                                       Comedy|Fantasy|Sci-Fi     73
## 10699 1999                            Action|Adventure|Children|Comedy     73
## 10700 1999                               Action|Horror|Sci-Fi|Thriller     73
## 10701 1999                                       Action|Comedy|Fantasy     73
## 10702 1999                                              Comedy|Romance     73
## 10704 1986                                    Adventure|Drama|Thriller     73
## 10705 1986                                       Comedy|Horror|Musical     73
## 10706 1999                   Adventure|Animation|Children|Drama|Sci-Fi     73
## 10708 1999                                                      Comedy     73
## 10709 1980                                                      Comedy     73
## 10710 1988                                Comedy|Drama|Fantasy|Romance     73
## 10711 1990                                             Children|Comedy     73
## 10713 1992                                               Action|Sci-Fi     73
## 10716 1999                                                      Comedy     73
## 10717 1979                                                       Drama     73
## 10720 1981                                           Adventure|Fantasy     73
## 10721 1991                                     Action|Adventure|Comedy     73
## 10722 1999                           Action|Adventure|Comedy|Drama|War     73
## 10723 1988                                               Horror|Sci-Fi     73
## 10724 1979                                               Horror|Sci-Fi     73
## 10725 1983                                                      Comedy     73
## 10734 1992                                             Children|Comedy     73
## 10736 1981                             Adventure|Comedy|Fantasy|Sci-Fi     73
## 10737 1999                                             Horror|Thriller     73
## 10739 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     73
## 10742 1990                                               Comedy|Horror     73
## 10744 1985                                        Comedy|Horror|Sci-Fi     73
## 10747 1987                                               Comedy|Sci-Fi     73
## 10750 1999                                    Adventure|Comedy|Fantasy     73
## 10751 1984                                     Adventure|Comedy|Sci-Fi     73
## 10752 1999                              Fantasy|Horror|Mystery|Romance     73
## 10753 1999                                   Action|Adventure|Thriller     73
## 10754 1987                                              Drama|Thriller     73
## 10757 1999                      Action|Fantasy|Horror|Mystery|Thriller     73
## 10759 1999                                                      Comedy     73
## 10760 1999                                                 Crime|Drama     73
## 10762 1999                                                       Drama     73
## 10763 1999                                                       Drama     73
## 10765 1999                                     Adventure|Comedy|Sci-Fi     73
## 10767 1982                                        Comedy|Drama|Romance     73
## 10770 1992                                                      Comedy     73
## 10771 1993                                                      Comedy     73
## 10772 1992                                                Comedy|Drama     73
## 10773 1992                                 Action|Crime|Drama|Thriller     73
## 10776 1992                               Action|Crime|Thriller|Western     73
## 10777 2000                              Comedy|Horror|Mystery|Thriller     73
## 10778 2000                                 Action|Crime|Drama|Thriller     73
## 10780 2000                                      Horror|Sci-Fi|Thriller     73
## 10782 1986                                               Drama|Romance     73
## 10783 1988                                        Comedy|Drama|Romance     73
## 10787 1991                                               Drama|Romance     73
## 10788 1990                       Action|Children|Comedy|Fantasy|Sci-Fi     73
## 10789 1991                                     Action|Children|Fantasy     73
## 10790 1993                    Action|Adventure|Children|Comedy|Fantasy     73
## 10791 1987                                            Comedy|Drama|War     73
## 10792 1977                                      Adventure|Drama|Sci-Fi     73
## 10796 1991                                    Adventure|Comedy|Fantasy     73
## 10798 1987                                      Action|Sci-Fi|Thriller     73
## 10801 2000                                               Drama|Romance     73
## 10802 2000                                         Action|Thriller|War     73
## 10803 1995                                               Horror|Sci-Fi     73
## 10804 1996                                               Horror|Sci-Fi     73
## 10807 2000                                               Action|Sci-Fi     73
## 10808 2000                                                      Comedy     73
## 10809 2000                                   Action|Adventure|Thriller     73
## 10810 1974                                              Comedy|Western     73
## 10812 1988                          Adventure|Animation|Fantasy|Sci-Fi     73
## 10813 1982                                                      Comedy     73
## 10816 1979                                     Action|Adventure|Sci-Fi     73
## 10817 1981                            Action|Adventure|Sci-Fi|Thriller     73
## 10818 1985                                     Action|Adventure|Sci-Fi     73
## 10820 2000                                                Action|Crime     73
## 10821 1987                                              Horror|Western     73
## 10824 1986                             Action|Adventure|Comedy|Fantasy     73
## 10825 2000                  Action|Adventure|Animation|Children|Sci-Fi     73
## 10826 2000                                   Animation|Children|Comedy     73
## 10827 2000                                            Adventure|Comedy     73
## 10828 2000                                            Action|Drama|War     73
## 10829 2000                                              Drama|Thriller     73
## 10831 2000                                               Comedy|Horror     73
## 10832 2000                                     Action|Adventure|Sci-Fi     73
## 10833 2000                                                      Comedy     73
## 10834 2000                                      Horror|Sci-Fi|Thriller     73
## 10836 2000                                                      Comedy     73
## 10837 2000                                                      Comedy     73
## 10838 2000                                                      Comedy     73
## 10840 2000                                                       Drama     73
## 10841 1987                                                      Horror     73
## 10844 2000                                                       Drama     73
## 10845 2000                                                      Comedy     73
## 10846 1985                                                      Horror     73
## 10847 1987                                               Comedy|Horror     73
## 10848 2000                                                       Drama     73
## 10851 2000                                               Action|Comedy     73
## 10852 2000                                                      Comedy     73
## 10853 2000                                      Action|Sci-Fi|Thriller     73
## 10854 2000                                                Drama|Sci-Fi     73
## 10855 2000                                        Action|Drama|Romance     73
## 10856 1987                                                      Comedy     73
## 10861 2000                                               Comedy|Sci-Fi     73
## 10862 2000                                              Comedy|Romance     73
## 10863 2000                                                       Drama     73
## 10864 2000                                                       Drama     73
## 10865 2000                                                Comedy|Crime     73
## 10868 2001                                               Drama|Romance     73
## 10869 2001                                              Comedy|Romance     73
## 10870 1984                                   Action|Comedy|Crime|Drama     73
## 10873 1987                                      Comedy|Horror|Thriller     73
## 10874 1987                                     Adventure|Comedy|Horror     73
## 10875 2001                                             Horror|Thriller     73
## 10876 1984                                                      Comedy     73
## 10877 2001                                                   Drama|War     73
## 10879 2001                            Action|Adventure|Children|Comedy     73
## 10881 2001                                        Comedy|Drama|Romance     73
## 10882 2001                                                      Comedy     73
## 10884 2001                            Action|Adventure|Comedy|Thriller     73
## 10886 2001                                       Action|Comedy|Romance     73
## 10888 2001                                       Drama|Musical|Romance     73
## 10889 2001                                    Action|Drama|Romance|War     73
## 10890 2001                                                      Comedy     73
## 10891 2001                                               Comedy|Sci-Fi     73
## 10892 2001                                          Action|Crime|Drama     73
## 10895 2001                                            Action|Adventure     73
## 10897 2001                                      Adventure|Drama|Sci-Fi     73
## 10898 2000                                                 Crime|Drama     73
## 10899 2001                                                      Comedy     73
## 10900 1981                                                      Comedy     73
## 10901 1977                                                      Horror     73
## 10903 1978                                                      Action     73
## 10906 2001                                              Comedy|Romance     73
## 10907 2001                                                Action|Drama     73
## 10908 1998                                 Animation|Drama|Sci-Fi|IMAX     73
## 10910 1988                                          Action|Crime|Drama     73
## 10912 1985                                        Comedy|Horror|Sci-Fi     73
## 10914 1989                                     Adventure|Comedy|Sci-Fi     73
## 10916 1989                                                      Action     73
## 10917 1989                                      Horror|Sci-Fi|Thriller     73
## 10918 1989                                                      Comedy     73
## 10919 1989                                              Comedy|Romance     73
## 10921 2001                            Action|Adventure|Sci-Fi|Thriller     73
## 10924 2001                               Action|Adventure|Drama|Sci-Fi     73
## 10925 1982                                               Comedy|Horror     73
## 10926 2001                                               Action|Comedy     73
## 10928 2001                                                      Comedy     73
## 10929 2001                               Drama|Horror|Mystery|Thriller     73
## 10930 2001                                                      Comedy     73
## 10931 2001                                            Adventure|Comedy     73
## 10932 2001                                                      Horror     73
## 10933 2001                                       Drama|Musical|Romance     73
## 10934 2001                                        Crime|Drama|Thriller     73
## 10936 2001                                                      Comedy     73
## 10937 2001                                              Comedy|Romance     73
## 10939 2001                      Crime|Drama|Film-Noir|Mystery|Thriller     73
## 10941 2001                               Crime|Horror|Mystery|Thriller     73
## 10945 2001                 Adventure|Animation|Children|Comedy|Fantasy     73
## 10946 2001                                      Comedy|Fantasy|Romance     73
## 10947 2001                                  Adventure|Children|Fantasy     73
## 10948 2001                                    Adventure|Comedy|Fantasy     73
## 10949 1982                                    Action|Adventure|Fantasy     73
## 10950 2001                                              Crime|Thriller     73
## 10951 2001                                                      Comedy     73
## 10952 2001                             Mystery|Romance|Sci-Fi|Thriller     73
## 10954 1991                             Adventure|Comedy|Fantasy|Sci-Fi     73
## 10955 1983                                     Action|Adventure|Sci-Fi     73
## 10956 2001                                                      Comedy     73
## 10961 2002                                                      Comedy     73
## 10962 1984                                    Action|Adventure|Fantasy     73
## 10963 1993                                                Action|Drama     73
## 10965 2002                                               Action|Sci-Fi     73
## 10967 2001                                        Comedy|Crime|Mystery     73
## 10968 1976                                                      Comedy     73
## 10970 2002                                              Comedy|Romance     73
## 10971 2002                                            Action|Drama|War     73
## 10974 1980                                               Comedy|Horror     73
## 10975 1981                                                      Horror     73
## 10976 2002                         Adventure|Animation|Children|Comedy     73
## 10977 2002                               Action|Horror|Sci-Fi|Thriller     73
## 10979 2002                                                    Thriller     73
## 10980 2002                                                      Comedy     73
## 10981 2001                                        Crime|Drama|Thriller     73
## 10982 2002                                              Comedy|Romance     73
## 10983 2002                           Action|Adventure|Fantasy|Thriller     73
## 10986 2002                                Action|Adventure|Sci-Fi|IMAX     73
## 10987 2002                         Action|Crime|Drama|Mystery|Thriller     73
## 10988 2002                                                      Comedy     73
## 10989 2002                                     Action|Mystery|Thriller     73
## 10990 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     73
## 10991 2002                                              Comedy|Romance     73
## 10992 1993                                     Children|Comedy|Romance     73
## 10993 2002                                        Action|Comedy|Sci-Fi     73
## 10994 2002                                    Action|Adventure|Fantasy     73
## 10995 2002                                                 Crime|Drama     73
## 10996 2002                                                      Comedy     73
## 10997 2002                                      Horror|Sci-Fi|Thriller     73
## 10998 2002                                          Adventure|Children     73
## 10999 2002                                       Action|Crime|Thriller     73
## 11000 2002                                     Adventure|Drama|Romance     73
## 11002 1991                                   Action|Comedy|Romance|War     73
## 11003 2002                                                      Comedy     73
## 11004 2002                                                Action|Crime     73
## 11005 1991                                                      Comedy     73
## 11006 2002                                        Comedy|Drama|Romance     73
## 11008 2002                                               Action|Comedy     73
## 11009 2002                                      Crime|Mystery|Thriller     73
## 11013 2002                                     Horror|Mystery|Thriller     73
## 11015 1993                                               Action|Horror     73
## 11016 1981                                          Documentary|Horror     73
## 11017 1978                                          Documentary|Horror     73
## 11018 1985                                          Documentary|Horror     73
## 11019 1990                                          Documentary|Horror     73
## 11021 2002                                                       Drama     73
## 11022 2002                                           Adventure|Fantasy     73
## 11023 2002                    Adventure|Animation|Children|Sci-Fi|IMAX     73
## 11026 2002                                                      Comedy     73
## 11027 2002                                              Comedy|Romance     73
## 11030 2002                                                       Drama     73
## 11031 2002                                                 Crime|Drama     73
## 11034 2002                                  Comedy|Crime|Drama|Musical     73
## 11037 2003                                              Comedy|Romance     73
## 11038 2003                                     Action|Adventure|Comedy     73
## 11039 2003                                                Action|Crime     73
## 11040 2003                                                      Comedy     73
## 11041 2003                                                      Comedy     73
## 11042 2003                                       Action|Drama|Thriller     73
## 11043 2002                                        Comedy|Drama|Romance     73
## 11045 2002                                              Drama|Thriller     73
## 11046 2003                                                      Comedy     73
## 11047 2003                                                Comedy|Crime     73
## 11048 1971                                              Mystery|Sci-Fi     73
## 11050 2003                            Action|Adventure|Sci-Fi|Thriller     73
## 11051 2003                                             Children|Comedy     73
## 11052 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11053 2003                                Comedy|Drama|Fantasy|Romance     73
## 11055 2003                                                Action|Crime     73
## 11056 2003                                             Horror|Thriller     73
## 11057 2003                                       Action|Crime|Thriller     73
## 11059 2002                                        Action|Horror|Sci-Fi     73
## 11060 2003                      Action|Adventure|Comedy|Crime|Thriller     73
## 11061 2003                                     Action|Adventure|Sci-Fi     73
## 11062 2003                                     Action|Adventure|Sci-Fi     73
## 11064 2003                                Action|Comedy|Crime|Thriller     73
## 11066 2003                    Action|Adventure|Comedy|Romance|Thriller     73
## 11067 2003                                                       Drama     73
## 11068 2003                                   Action|Adventure|Children     73
## 11069 1985                                Action|Comedy|Crime|Thriller     73
## 11070 2003                                                      Comedy     73
## 11071 2003                                     Children|Comedy|Fantasy     73
## 11072 2003                                             Action|Thriller     73
## 11073 1988                                               Comedy|Horror     73
## 11074 2003                                      Action|Horror|Thriller     73
## 11076 1985                                            Action|Adventure     73
## 11077 2003                                             Horror|Thriller     73
## 11078 2002                                             Horror|Thriller     73
## 11082 2003                                       Action|Fantasy|Horror     73
## 11084 1983                              Fantasy|Horror|Sci-Fi|Thriller     73
## 11087 1983                                                      Comedy     73
## 11089 2000                                       Drama|Horror|Thriller     73
## 11090 1995                          Action|Adventure|Animation|Fantasy     73
## 11091 2003                                              Comedy|Musical     73
## 11094 2003                                                       Drama     73
## 11095 2003                                               Comedy|Horror     73
## 11096 2002      Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller     73
## 11097 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11098 2003                                     Children|Comedy|Fantasy     73
## 11099 2003                                         Adventure|Drama|War     73
## 11100 2003                                             Horror|Thriller     73
## 11101 2003                        Crime|Drama|Mystery|Romance|Thriller     73
## 11102 2003                                                Comedy|Crime     73
## 11103 1991                                          Action|Crime|Drama     73
## 11107 1985                                              Comedy|Fantasy     73
## 11108 1990                                            Children|Fantasy     73
## 11109 1987                              Comedy|Fantasy|Horror|Thriller     73
## 11113 1993                                               Comedy|Horror     73
## 11115 2003                                  Action|Adventure|Drama|War     73
## 11116 2003                                       Drama|Fantasy|Romance     73
## 11118 2003                                             Children|Comedy     73
## 11120 2004                                       Drama|Sci-Fi|Thriller     73
## 11122 2004                                              Comedy|Romance     73
## 11123 1985                                            Adventure|Comedy     73
## 11125 2004                                                       Drama     73
## 11126 2004                                             Adventure|Drama     73
## 11127 2004                                Action|Comedy|Crime|Thriller     73
## 11128 2004                                              Comedy|Romance     73
## 11129 2004                                Action|Drama|Horror|Thriller     73
## 11131 2004                                                Comedy|Crime     73
## 11132 2004                             Action|Adventure|Fantasy|Horror     73
## 11133 1978                                         Action|Drama|Horror     73
## 11134 1987                                               Comedy|Horror     73
## 11137 2004                         Action|Crime|Drama|Mystery|Thriller     73
## 11138 2004                             Action|Adventure|Fantasy|Horror     73
## 11139 2004                                  Action|Adventure|Drama|War     73
## 11143 1990                                              Comedy|Romance     73
## 11144 1985                                   Adventure|Children|Sci-Fi     73
## 11146 2000                                        Drama|Fantasy|Sci-Fi     73
## 11148 1996                                        Comedy|Horror|Sci-Fi     73
## 11149 2001                                        Comedy|Horror|Sci-Fi     73
## 11150 1998                                     Action|Adventure|Comedy     73
## 11152 1986                                               Horror|Sci-Fi     73
## 11153 1987                                                      Horror     73
## 11156 2004         Adventure|Animation|Children|Comedy|Musical|Romance     73
## 11157 2004                      Action|Adventure|Drama|Sci-Fi|Thriller     73
## 11158 2004                                                      Comedy     73
## 11159 2004                                      Adventure|Fantasy|IMAX     73
## 11160 2004                                      Action|Sci-Fi|Thriller     73
## 11161 2004                                   Animation|Children|Comedy     73
## 11162 2004                                     Comedy|Fantasy|Thriller     73
## 11163 2004                                                      Comedy     73
## 11164 1932                                          Crime|Drama|Horror     73
## 11165 2004                                   Adventure|Children|Comedy     73
## 11166 2004                                                      Comedy     73
## 11168 2004                                         Action|Comedy|Crime     73
## 11169 2004                                                 Documentary     73
## 11170 2004                                Action|Adventure|Sci-Fi|IMAX     73
## 11172 2004                                  Action|Adventure|Drama|War     73
## 11174 2004                            Action|Adventure|Sci-Fi|Thriller     73
## 11175 2004                                       Action|Crime|Thriller     73
## 11176 2004                                      Drama|Mystery|Thriller     73
## 11178 2004                                 Action|Crime|Drama|Thriller     73
## 11179 2004                                            Adventure|Comedy     73
## 11180 2004                               Action|Horror|Sci-Fi|Thriller     73
## 11181 2004                          Action|Adventure|Animation|Fantasy     73
## 11182 1988                                                      Horror     73
## 11183 2004                                                      Comedy     73
## 11184 2004                               Action|Horror|Sci-Fi|Thriller     73
## 11188 2004                                                Drama|Sci-Fi     73
## 11189 2004                           Action|Adventure|Animation|Comedy     73
## 11190 1967                                               Comedy|Horror     73
## 11191 2004                                     Horror|Mystery|Thriller     73
## 11192 2004                                        Comedy|Drama|Romance     73
## 11195 2004                  Action|Adventure|Animation|Children|Comedy     73
## 11196 2004                     Action|Adventure|Drama|Mystery|Thriller     73
## 11197 2004                                Action|Comedy|Crime|Thriller     73
## 11200 1977                                  Animation|Children|Fantasy     73
## 11201 1983                                       Action|Mystery|Sci-Fi     73
## 11203 1986                                        Crime|Drama|Thriller     73
## 11204 1987                              Fantasy|Horror|Sci-Fi|Thriller     73
## 11206 1990                                               Comedy|Horror     73
## 11208 1991                                                 Documentary     73
## 11211 1998                           Action|Documentary|Drama|Thriller     73
## 11216 2000                                            Animation|Comedy     73
## 11217 2002                                                      Comedy     73
## 11220 2003                                            Drama|Sci-Fi|War     73
## 11223 2003                                   Action|Drama|Thriller|War     73
## 11224 2004                           Adventure|Children|Comedy|Fantasy     73
## 11225 2002                                                      Horror     73
## 11227 2004                                              Fantasy|Horror     73
## 11228 2004                                    Action|Horror|Sci-Fi|War     73
## 11229 2003                  Adventure|Animation|Fantasy|Musical|Sci-Fi     73
## 11231 2004                                        Comedy|Drama|Romance     73
## 11233 2006                     Animation|Drama|Mystery|Sci-Fi|Thriller     73
## 11237 2004                                                       Drama     73
## 11238 2004                                                       Drama     73
## 11239 2004                                                      Comedy     73
## 11241 2005                                                       Drama     73
## 11242 1991                             Action|Adventure|Fantasy|Sci-Fi     73
## 11243 2005                                             Children|Comedy     73
## 11244 2005                               Drama|Horror|Mystery|Thriller     73
## 11246 2005                                              Comedy|Romance     73
## 11247 2005                              Action|Fantasy|Horror|Thriller     73
## 11248 2004                                               Action|Comedy     73
## 11249 1995                          Adventure|Animation|Comedy|Fantasy     73
## 11252 2005                                     Action|Adventure|Comedy     73
## 11253 2005                                     Adventure|Comedy|Sci-Fi     73
## 11255 2005                                             Horror|Thriller     73
## 11258 2005                                     Action|Adventure|Sci-Fi     73
## 11259 2005                             Action|Adventure|Comedy|Romance     73
## 11261 2005                                      Action|Horror|Thriller     73
## 11262 2005                            Action|Adventure|Sci-Fi|Thriller     73
## 11263 2005                                     Action|Adventure|Sci-Fi     73
## 11264 2005                                              Comedy|Romance     73
## 11265 2005                                      Action|Sci-Fi|Thriller     73
## 11266 2005                                     Action|Adventure|Sci-Fi     73
## 11267 2005                                                Comedy|Drama     73
## 11268 2005                                                      Comedy     73
## 11269 2005                                              Comedy|Romance     73
## 11270 2005                                       Action|Crime|Thriller     73
## 11271 2005                             Action|Crime|Drama|Thriller|War     73
## 11272 2005                                  Adventure|Animation|Comedy     73
## 11273 2005                                               Action|Sci-Fi     73
## 11276 2005                               Comedy|Crime|Mystery|Thriller     73
## 11277 2005                                         Crime|Drama|Western     73
## 11278 2005                                             Horror|Thriller     73
## 11279 2005                                            Action|Drama|War     73
## 11280 2005                                          Action|Crime|Drama     73
## 11281 2005                                               Drama|Romance     73
## 11283 2005                             Adventure|Fantasy|Thriller|IMAX     73
## 11284 2005                                         Crime|Drama|Romance     73
## 11285 2005                                  Adventure|Children|Fantasy     73
## 11286 2005                     Action|Adventure|Drama|Fantasy|Thriller     73
## 11288 2005                                                Comedy|Crime     73
## 11289 2005                                                      Horror     73
## 11290 2006                                                      Comedy     73
## 11291 1986                                       Comedy|Fantasy|Horror     73
## 11292 2006                                              Comedy|Romance     73
## 11294 2006                                              Crime|Thriller     73
## 11296 2006                                                Comedy|Drama     73
## 11299 2006                                       Drama|Horror|Thriller     73
## 11302 2006                                               Comedy|Horror     73
## 11304 2005                                Action|Comedy|Crime|Thriller     73
## 11305 2006                                   Action|Adventure|Thriller     73
## 11306 2006                                      Drama|Mystery|Thriller     73
## 11308 2006                                                      Comedy     73
## 11309 2006                      Adventure|Comedy|Drama|Fantasy|Romance     73
## 11310 2006                                    Action|Adventure|Fantasy     73
## 11311 2006                                                      Comedy     73
## 11312 2006                                                      Comedy     73
## 11314 2006                                 Action|Crime|Drama|Thriller     73
## 11315 2006                                   Animation|Children|Comedy     73
## 11316 2006                                      Adventure|Comedy|Drama     73
## 11317 2006                                                      Comedy     73
## 11318 2006                               Action|Comedy|Horror|Thriller     73
## 11319 2006                                               Action|Comedy     73
## 11320 2006                                  Action|Comedy|Fantasy|IMAX     73
## 11322 2006                                                       Drama     73
## 11323 2006                                             Action|Thriller     73
## 11325 2006                                                      Comedy     73
## 11326 2006                                                Action|Drama     73
## 11328 2006                                       Drama|Fantasy|Romance     73
## 11329 2006                                    Adventure|Drama|Thriller     73
## 11330 2006                                                      Comedy     73
## 11331 2006                                      Drama|Fantasy|Thriller     73
## 11333 2006                               Drama|Horror|Mystery|Thriller     73
## 11335 2006                                        Comedy|Drama|Romance     73
## 11338 2006                                       Crime|Horror|Thriller     73
## 11340 2006                                      Action|Sci-Fi|Thriller     73
## 11341 2006                                                      Comedy     73
## 11342 2006                     Adventure|Drama|Horror|Mystery|Thriller     73
## 11343 2006                   Action|Adventure|Crime|Drama|Thriller|War     73
## 11344 2006                                    Action|Adventure|Fantasy     73
## 11345 2006                                                Action|Drama     73
## 11348 2006                                                      Comedy     73
## 11349 2006                                 Action|Crime|Drama|Thriller     73
## 11350 2007                                            Adventure|Comedy     73
## 11351 2007                                              Comedy|Romance     73
## 11352 2007                                    Animation|Children|Drama     73
## 11353 2007                                 Action|Comedy|Crime|Mystery     73
## 11356 2007                                     Action|Fantasy|War|IMAX     73
## 11358 2007                                             Horror|Thriller     73
## 11359 2007                                              Comedy|Romance     73
## 11360 2007                         Action|Crime|Horror|Sci-Fi|Thriller     73
## 11361 2007                             Adventure|Drama|Sci-Fi|Thriller     73
## 11362 2007                                              Drama|Thriller     73
## 11363 2007    Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi     73
## 11365 2007                       Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11367 2007                                        Comedy|Drama|Romance     73
## 11368 2007                                      Horror|Sci-Fi|Thriller     73
## 11369 2007                 Adventure|Animation|Children|Comedy|Fantasy     73
## 11370 2007                             Action|Adventure|Comedy|Fantasy     73
## 11372 2007                                              Crime|Thriller     73
## 11374 2007                      Action|Adventure|Crime|Horror|Thriller     73
## 11376 2007                             Action|Adventure|Crime|Thriller     73
## 11377 2007                                 Action|Sci-Fi|Thriller|IMAX     73
## 11378 2007                                Adventure|Drama|Fantasy|IMAX     73
## 11379 2007                               Drama|Fantasy|Musical|Romance     73
## 11380 2007                                            Animation|Comedy     73
## 11381 2007                                       Action|Crime|Thriller     73
## 11382 2007                                                      Comedy     73
## 11385 2007                                Action|Comedy|Crime|Thriller     73
## 11386 2007                                                Comedy|Drama     73
## 11387 2007                                        Action|Horror|Sci-Fi     73
## 11392 2007                               Action|Horror|Sci-Fi|Thriller     73
## 11393 2007                                              Comedy|Romance     73
## 11395 2007                                      Adventure|Comedy|Drama     73
## 11397 2007                                       Crime|Horror|Thriller     73
## 11399 2007                                        Crime|Drama|Thriller     73
## 11400 2007                                        Crime|Drama|Thriller     73
## 11402 2008                                                      Comedy     73
## 11403 2007                     Action|Adventure|Animation|Fantasy|IMAX     73
## 11404 2006                                Comedy|Drama|Sci-Fi|Thriller     73
## 11406 2007                          Action|Horror|Sci-Fi|Thriller|IMAX     73
## 11407 2007                                     Animation|Comedy|Sci-Fi     73
## 11408 2007                                        Comedy|Drama|Romance     73
## 11409 2007                                                Comedy|Drama     73
## 11410 2007                               Drama|Horror|Musical|Thriller     73
## 11411 2007                                            Action|Adventure     73
## 11413 2007                                        Action|Horror|Sci-Fi     73
## 11414 2008                              Action|Mystery|Sci-Fi|Thriller     73
## 11415 2008                                   Action|Drama|Thriller|War     73
## 11416 2008                                                      Comedy     73
## 11417 2008                             Action|Adventure|Fantasy|Sci-Fi     73
## 11419 2008                      Action|Adventure|Drama|Sci-Fi|Thriller     73
## 11420 2008                                                      Comedy     73
## 11421 2008                                  Adventure|Romance|Thriller     73
## 11422 2008                                       Action|Crime|Thriller     73
## 11424 2008                                                      Comedy     73
## 11427 2008                                                      Action     73
## 11428 2008                                Crime|Drama|Romance|Thriller     73
## 11429 2008                                             Horror|Thriller     73
## 11430 2008                                              Comedy|Romance     73
## 11431 2008                                        Action|Comedy|Sci-Fi     73
## 11432 2008                                            Adventure|Comedy     73
## 11433 2008                                     Action|Adventure|Sci-Fi     73
## 11434 2008                                 Action|Crime|Drama|Thriller     73
## 11435 2006                                     Adventure|Drama|Fantasy     73
## 11436 2008                              Action|Adventure|Comedy|Sci-Fi     73
## 11437 2008                       Action|Animation|Children|Comedy|IMAX     73
## 11438 2008                                                      Comedy     73
## 11440 2008                                       Drama|Sci-Fi|Thriller     73
## 11441 2008                 Adventure|Animation|Children|Romance|Sci-Fi     73
## 11442 2008                                             Action|Thriller     73
## 11443 2008                       Action|Adventure|Comedy|Crime|Fantasy     73
## 11444 2008                                               Action|Comedy     73
## 11447 1966                                   Animation|Children|Comedy     73
## 11449 2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     73
## 11450 2008                                                 Crime|Drama     73
## 11452 2008                                         Action|Comedy|Crime     73
## 11453 2008                                 Action|Adventure|Comedy|War     73
## 11454 2008                            Action|Adventure|Sci-Fi|Thriller     73
## 11455 2008                                          Comedy|Crime|Drama     73
## 11456 2008                                                      Comedy     73
## 11457 2008                                                      Comedy     73
## 11458 2008                                 Action|Crime|Drama|Thriller     73
## 11459 2008                                        Comedy|Drama|Romance     73
## 11461 2008                                                     Musical     73
## 11462 2008            Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi     73
## 11463 2009                                    Adventure|Drama|Thriller     73
## 11465 2008                                   Action|Adventure|Thriller     73
## 11466 2008                                                      Comedy     73
## 11467 2008                                   Adventure|Children|Comedy     73
## 11468 2008                                      Action|Horror|Thriller     73
## 11470 2008                              Drama|Fantasy|Romance|Thriller     73
## 11472 2008                                           Action|Sci-Fi|War     73
## 11478 2008                                          Drama|Thriller|War     73
## 11480 2006                                       Comedy|Horror|Musical     73
## 11482 2008                                     Action|Adventure|Sci-Fi     73
## 11483 2009                                                      Horror     73
## 11485 2009                              Action|Animation|Comedy|Sci-Fi     73
## 11486 2009                                                   Animation     73
## 11488 2008                                                      Action     73
## 11490 2008                                         Documentary|Musical     73
## 11491 2009                                               Action|Comedy     73
## 11492 2009                                                Comedy|Drama     73
## 11493 2009                                 Action|Crime|Drama|Thriller     73
## 11498 2009                                      Action|Sci-Fi|Thriller     73
## 11499 2009                                Action|Adventure|Sci-Fi|IMAX     73
## 11500 2008                                                      Comedy     73
## 11501 2009                                Crime|Drama|Mystery|Thriller     73
## 11502 2007                                                       Drama     73
## 11503 2009                                               Comedy|Horror     73
## 11505 2005                            Action|Adventure|Animation|Drama     73
## 11506 2009                                              Comedy|Musical     73
## 11507 2009                                                Comedy|Crime     73
## 11508 2009                                        Crime|Drama|Thriller     73
## 11510 2009                                        Crime|Drama|Thriller     73
## 11511 2002                                            Animation|Comedy     73
## 11512 2009                           Action|Adventure|Animation|Horror     73
## 11514 2009                      Adventure|Fantasy|Mystery|Romance|IMAX     73
## 11515 2009                                     Mystery|Sci-Fi|Thriller     73
## 11517 1990                                              Fantasy|Horror     73
## 11518 2009                                  Adventure|Animation|Sci-Fi     73
## 11521 2009                                                      Comedy     73
## 11522 2009                                             Horror|Thriller     73
## 11526 2009                                         Action|Comedy|Crime     73
## 11528 2009                       Adventure|Children|Drama|Fantasy|IMAX     73
## 11529 2009                                              Drama|Thriller     73
## 11531 2009                                               Action|Comedy     73
## 11533 2009                                                   Animation     73
## 11538 2010                                Action|Drama|Horror|Thriller     73
## 11539 2010                                      Action|Adventure|Drama     73
## 11544 2010                                                Action|Crime     73
## 11545 2010                                        Crime|Drama|Thriller     73
## 11547 2009                                 Comedy|Crime|Drama|Thriller     73
## 11548 2009                                                      Comedy     73
## 11549 2010                                               Comedy|Sci-Fi     73
## 11552 2009                                        Crime|Drama|Thriller     73
## 11553 2010                       Action|Adventure|Sci-Fi|Thriller|IMAX     73
## 11554 2010                                                Comedy|Drama     73
## 11555 2010                                                       Drama     73
## 11556 2010                          Action|Adventure|Drama|Romance|War     73
## 11557 2010                                                      Comedy     73
## 11558 2009                                      Horror|Sci-Fi|Thriller     73
## 11559 2009                                            Mystery|Thriller     73
## 11560 2010                                      Action|Comedy|Thriller     73
## 11562 2010                                              Drama|Thriller     73
## 11563 2010                               Fantasy|Romance|Thriller|IMAX     73
## 11565 2010                                      Action|Sci-Fi|Thriller     73
## 11568 2010                                                Comedy|Drama     73
## 11569 2010                                             Horror|Thriller     73
## 11572 2010                                                      Action     73
## 11573 2010                                   Action|Adventure|Thriller     73
## 11575 2010                                                 Crime|Drama     73
## 11576 2010                                      Action|Horror|Thriller     73
## 11577 1989                   Action|Adventure|Animation|Fantasy|Sci-Fi     73
## 11582 2010                                        Drama|Horror|Mystery     73
## 11583 2010                                     Horror|Mystery|Thriller     73
## 11584 2010                                               Comedy|Sci-Fi     73
## 11585 2010                                    Adventure|Drama|Thriller     73
## 11588 1982                                               Action|Sci-Fi     73
## 11592 2009                                                      Horror     73
## 11597 2011                         Action|Sci-Fi|Thriller|Western|IMAX     73
## 11599 2011                                     Adventure|Comedy|Sci-Fi     73
## 11605 2011                                                Comedy|Drama     73
## 11607 2011                            Action|Crime|Drama|Thriller|IMAX     73
## 11612 2010                                                Comedy|Drama     73
## 11614 2011                                                Comedy|Crime     73
## 11617 2011                              Crime|Drama|Film-Noir|Thriller     73
## 11618 2011                        Action|Adventure|Sci-Fi|Thriller|War     73
## 11620 2011                                Action|Drama|Sci-Fi|Thriller     73
## 11621 2011                                        Drama|Romance|Sci-Fi     73
## 11623 2011                                Action|Crime|Horror|Thriller     73
## 11624 2011                                        Sci-Fi|Thriller|IMAX     73
## 11627 2011                                                Comedy|Drama     73
## 11628 2011                                              Drama|Thriller     73
## 11629 2011                                                Comedy|Drama     73
## 11630 2011                                              Drama|Thriller     73
## 11632 2012                                            Action|Adventure     73
## 11637 2012                                                Action|Drama     73
## 11638 2011                                             Horror|Thriller     73
## 11640 2012                                Action|Adventure|Sci-Fi|IMAX     73
## 11641 2011                                                Comedy|Drama     73
## 11643 2012                                                      Comedy     73
## 11647 2012                                 Action|Sci-Fi|Thriller|IMAX     73
## 11650 2012                         Adventure|Animation|Children|Comedy     73
## 11654 1987                         Action|Adventure|Animation|Children     73
## 11655 1990                  Action|Adventure|Animation|Sci-Fi|Thriller     73
## 11656 1990                           Action|Adventure|Animation|Sci-Fi     73
## 11658 1992                                  Action|Adventure|Animation     73
## 11662 2012                                               Drama|Fantasy     73
## 11663 1994                                  Action|Adventure|Animation     73
## 11664 1995                                  Action|Adventure|Animation     73
## 11665 2012                                      Action|Sci-Fi|Thriller     73
## 11666 1995                                  Action|Adventure|Animation     73
## 11669 1997                                  Action|Adventure|Animation     73
## 11671 2012                                                      Comedy     73
## 11672 2012                                  Adventure|Animation|Comedy     73
## 11673 2012                                                 Crime|Drama     73
## 11674 2012                                              Comedy|Musical     73
## 11676 2012                                               Action|Sci-Fi     73
## 11681 2012                                        Crime|Drama|Thriller     73
## 11682 2012                                            Animation|Comedy     73
## 11684 2012                                                       Drama     73
## 11686 2009                                     Action|Animation|Sci-Fi     73
## 11690 2012                                       Action|Crime|Thriller     73
## 11693 2013                                          Action|Crime|Drama     73
## 11698 2013                                Action|Adventure|Sci-Fi|IMAX     73
## 11699 2013                                         Action|Comedy|Crime     73
## 11703 2013                                                       Drama     73
## 11705 2013                                  Action|Crime|Thriller|IMAX     73
## 11707 2013                        Action|Adventure|Fantasy|Sci-Fi|IMAX     73
## 11709 2013                                Action|Adventure|Sci-Fi|IMAX     73
## 11710 2013                                    Action|Drama|Horror|IMAX     73
## 11711 2013                                    Action|Drama|Sci-Fi|IMAX     73
## 11712 2013                               Action|Adventure|Western|IMAX     73
## 11713 2013                                                       Drama     73
## 11714 2013                                             Horror|Thriller     73
## 11715 2013                             Action|Adventure|Fantasy|Sci-Fi     73
## 11719 2013                                        Comedy|Drama|Romance     73
## 11721 2013                                Action|Adventure|Sci-Fi|IMAX     73
## 11724 2013                                Action|Adventure|Sci-Fi|IMAX     73
## 11725 2013                                      Adventure|Fantasy|IMAX     73
## 11726 2013                                    Action|Adventure|Fantasy     73
## 11729 2013                                      Adventure|Comedy|Drama     73
## 11731 2013                                   Action|Drama|Thriller|War     73
## 11732 2013                                                      Comedy     73
## 11734 2013                               Action|Animation|Fantasy|IMAX     73
## 11735 1991                                          Animation|Children     73
## 11736 1996                         Action|Adventure|Animation|Children     73
## 11737 2014                               Adventure|Romance|Sci-Fi|IMAX     73
## 11740 2013                                               Drama|Mystery     73
## 11744 2014                                     Action|Crime|Drama|IMAX     73
## 11745 2013                                                      Comedy     73
## 11746 2014                                        Adventure|Drama|IMAX     73
## 11749 2013                                                       Drama     73
## 11750 2014                                               Action|Sci-Fi     73
## 11752 2014                                Action|Adventure|Sci-Fi|IMAX     73
## 11753 2014                                                Comedy|Drama     73
## 11754 2014                              Action|Adventure|Children|IMAX     73
## 11756 2015                                   Action|Adventure|Thriller     73
## 11759 2014                                                       Drama     73
## 11760 2014                                       Drama|Horror|Thriller     73
## 11763 2014                                                      Sci-Fi     73
## 11764 2014                                      Action|Horror|Thriller     73
## 11767 2014                                     Action|Adventure|Comedy     73
## 11768 2014                                       Action|Crime|Thriller     73
## 11770 2014                                       Action|Mystery|Sci-Fi     73
## 11772 2014                                         Comedy|Drama|Horror     73
## 11775 2014                                             Action|Thriller     73
## 11779 2012                                            Animation|Comedy     73
## 11780 2005                                           Animation|Fantasy     73
## 11781 2014                                                    Thriller     73
## 11783 2014                                   Adventure|Sci-Fi|Thriller     73
## 11784 2014                                                Comedy|Drama     73
## 11786 2015                      Action|Adventure|Drama|Sci-Fi|Thriller     73
## 11787 2014                                       Comedy|Crime|Thriller     73
## 11788 2014                                           Adventure|Fantasy     73
## 11789 2015                               Action|Adventure|Comedy|Crime     73
## 11790 2015                                             Action|Thriller     73
## 11791 2014                                                      Horror     73
## 11795 2015                                     Action|Adventure|Sci-Fi     73
## 11797 2016                             Action|Adventure|Fantasy|Sci-Fi     73
## 11798 1948                                  Animation|Children|Fantasy     73
## 11799 2015                                                Comedy|Drama     73
## 11801 2014                                       Drama|Horror|Thriller     73
## 11802 2015                                                      Horror     73
## 11803 2015                                       Comedy|Romance|Sci-Fi     73
## 11805 2015                         Adventure|Animation|Children|Comedy     73
## 11806 2016                                     Adventure|Drama|Fantasy     73
## 11809 2015                                         Crime|Drama|Mystery     73
## 11810 2015                                                      Horror     73
## 11812 2015                                               Comedy|Horror     73
## 11815 2015                                                       Drama     73
## 11816 2016                                                    Thriller     73
## 11817 2016                                                      Comedy     73
## 11819 2016                                                    Thriller     73
## 11821 1987                                                      Horror     73
## 11822 2016                                                      Horror     73
## 11823 2016             Action|Adventure|Animation|Drama|Fantasy|Sci-Fi     73
## 11826 1995                                                 Crime|Drama     74
## 11835 1996                                                      Comedy     74
## 11838 1979                                                      Comedy     74
## 11839 1982                                       Children|Drama|Sci-Fi     74
## 11849 1997                                               Drama|Romance     74
## 11851 1998                                       Drama|Sci-Fi|Thriller     74
## 11854 1976                                                       Drama     74
## 11861 1998                                                       Drama     74
## 11866 1999                                               Action|Sci-Fi     74
## 11870 1978                                     Action|Adventure|Sci-Fi     74
## 11874 1995                 Adventure|Animation|Children|Comedy|Fantasy     75
## 11875 1995                                              Comedy|Romance     75
## 11880 1994                                     Action|Adventure|Sci-Fi     75
## 11882 1994                                      Drama|Mystery|Thriller     75
## 11885 1994                                    Adventure|Comedy|Western     75
## 11887 1994                                      Action|Sci-Fi|Thriller     75
## 11888 1993                                     Action|Adventure|Sci-Fi     75
## 11889 1993                            Action|Adventure|Sci-Fi|Thriller     75
## 11890 1993                                               Drama|Romance     75
## 11891 1993                                                      Comedy     75
## 11895 1989                                       Action|Crime|Thriller     75
## 11897 1996                                       Action|Drama|Thriller     75
## 11898 1996                                       Drama|Mystery|Western     75
## 11899 1972                                                 Crime|Drama     75
## 11900 1996                                             Sci-Fi|Thriller     75
## 11901 1952                                      Comedy|Musical|Romance     75
## 11908 1979                                                      Comedy     75
## 11909 1989                            Action|Adventure|Sci-Fi|Thriller     75
## 11911 1987                     Action|Adventure|Comedy|Fantasy|Romance     75
## 11913 1966                                    Action|Adventure|Western     75
## 11914 1962                                                       Drama     75
## 11915 1979                                            Action|Drama|War     75
## 11918 1974                                                 Crime|Drama     75
## 11919 1984                                                       Drama     75
## 11920 1973                                                Comedy|Crime     75
## 11921 1984                                      Action|Sci-Fi|Thriller     75
## 11925 1993                                      Comedy|Fantasy|Romance     75
## 11931 1985                                                      Comedy     75
## 11932 1996                            Action|Adventure|Sci-Fi|Thriller     75
## 11933 1996                                                       Drama     75
## 11934 1986                                     Adventure|Comedy|Sci-Fi     75
## 11935 1993                                              Comedy|Romance     75
## 11936 1997                                     Action|Adventure|Comedy     75
## 11937 1997                                        Action|Comedy|Sci-Fi     75
## 11940 1997                                               Drama|Romance     75
## 11941 1998                              Action|Romance|Sci-Fi|Thriller     75
## 11942 1986                                   Adventure|Fantasy|Musical     75
## 11943 1982                                             Horror|Thriller     75
## 11944 1984                                               Comedy|Horror     75
## 11945 1985                    Action|Adventure|Children|Comedy|Fantasy     75
## 11947 1990                             Adventure|Comedy|Sci-Fi|Western     75
## 11948 1984                                    Action|Adventure|Fantasy     75
## 11949 1985                                       Comedy|Fantasy|Sci-Fi     75
## 11951 1998                                      Action|Horror|Thriller     75
## 11952 1988                                              Comedy|Fantasy     75
## 11954 1998                                                       Drama     75
## 11957 1984                                                      Sci-Fi     75
## 11958 1998                         Adventure|Animation|Children|Comedy     75
## 11959 1985                                        Comedy|Crime|Mystery     75
## 11961 1998                                              Comedy|Romance     75
## 11965 1999                                      Action|Sci-Fi|Thriller     75
## 11967 1999                                                    Thriller     75
## 11968 1999                                       Drama|Horror|Thriller     75
## 11969 1988                                Comedy|Drama|Fantasy|Romance     75
## 11971 1990                            Action|Adventure|Sci-Fi|Thriller     75
## 11972 1999                                 Action|Crime|Drama|Thriller     75
## 11973 1973                                   Action|Adventure|Thriller     75
## 11975 1993                                                Action|Drama     75
## 11977 1988                                      Comedy|Fantasy|Romance     75
## 11978 1999                                                 Crime|Drama     75
## 11979 1992                                                       Drama     75
## 11981 2000                                              Drama|Thriller     75
## 11983 2000                                     Action|Adventure|Sci-Fi     75
## 11984 2000                                                      Comedy     75
## 11986 2001                                                   Drama|War     75
## 11988 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     75
## 11989 1989                                     Adventure|Comedy|Sci-Fi     75
## 11994 1991                             Adventure|Comedy|Fantasy|Sci-Fi     75
## 11996 1983                                             Sci-Fi|Thriller     75
## 11997 2002                                     Action|Adventure|Sci-Fi     75
## 12001 2003                               Crime|Horror|Mystery|Thriller     75
## 12002 2003                                     Action|Adventure|Sci-Fi     75
## 12007 1985                                   Adventure|Children|Sci-Fi     75
## 12011 2004                              Action|Fantasy|Horror|Thriller     75
## 12012 2005                               Drama|Mystery|Sci-Fi|Thriller     75
## 12018 2006                                       Drama|Horror|Thriller     75
## 12020 1995                                     Action|Thriller|Western     76
## 12021 1993                                              Children|Drama     76
## 12025 1989                                                       Drama     76
## 12026 1944                                     Comedy|Mystery|Thriller     76
## 12029 1953                          Animation|Children|Fantasy|Musical     76
## 12032 1974                                              Comedy|Western     76
## 12034 2000                                     Children|Comedy|Fantasy     76
## 12037 2006                   Action|Adventure|Crime|Drama|Thriller|War     76
## 12038 2007                            Adventure|Comedy|Fantasy|Romance     76
## 12040 1995                                       Action|Crime|Thriller     77
## 12041 1995                                   Action|Adventure|Thriller     77
## 12043 1995                                              Children|Drama     77
## 12044 1995                                              Comedy|Romance     77
## 12046 1995                                                       Drama     77
## 12047 1996                               Action|Comedy|Horror|Thriller     77
## 12048 1995                                      Action|Sci-Fi|Thriller     77
## 12049 1996                                   Action|Adventure|Thriller     77
## 12050 1995                                            Action|Drama|War     77
## 12052 1996                                                      Comedy     77
## 12053 1995                                          Drama|Thriller|War     77
## 12054 1995                                      Action|Romance|Western     77
## 12055 1995                                       Action|Crime|Thriller     77
## 12056 1995                                         Action|Crime|Sci-Fi     77
## 12057 1995                                       Action|Crime|Thriller     77
## 12058 1995                                     Action|Adventure|Sci-Fi     77
## 12060 1994                                            Adventure|Comedy     77
## 12061 1994                                                Drama|Horror     77
## 12063 1994                                       Action|Crime|Thriller     77
## 12064 1995                                Action|Drama|Sci-Fi|Thriller     77
## 12066 1994                                 Comedy|Crime|Drama|Thriller     77
## 12069 1994                                      Adventure|Drama|Sci-Fi     77
## 12070 1995                                              Comedy|Romance     77
## 12071 1994                                                      Comedy     77
## 12072 1994                                 Action|Crime|Drama|Thriller     77
## 12074 1994                                    Comedy|Drama|Romance|War     77
## 12075 1994             Adventure|Animation|Children|Drama|Musical|IMAX     77
## 12076 1994                                 Action|Comedy|Crime|Fantasy     77
## 12077 1994                                     Action|Romance|Thriller     77
## 12078 1994                    Action|Adventure|Comedy|Romance|Thriller     77
## 12079 1994                                                      Comedy     77
## 12080 1993                                     Action|Adventure|Sci-Fi     77
## 12081 1993                                                    Thriller     77
## 12082 1993                            Action|Adventure|Sci-Fi|Thriller     77
## 12083 1993                                                Comedy|Drama     77
## 12084 1982                                      Action|Sci-Fi|Thriller     77
## 12086 1990                                             Children|Comedy     77
## 12087 1990                       Comedy|Drama|Fantasy|Romance|Thriller     77
## 12088 1992                 Adventure|Animation|Children|Comedy|Musical     77
## 12090 1990                                     Adventure|Drama|Western     77
## 12091 1989                                       Action|Crime|Thriller     77
## 12092 1991                                       Crime|Horror|Thriller     77
## 12093 1991             Animation|Children|Fantasy|Musical|Romance|IMAX     77
## 12094 1990                                              Comedy|Romance     77
## 12095 1996                                 Comedy|Crime|Drama|Thriller     77
## 12096 1996                           Action|Adventure|Mystery|Thriller     77
## 12097 1996                                  Adventure|Animation|Comedy     77
## 12098 1996                                   Action|Adventure|Thriller     77
## 12099 1996                           Action|Adventure|Romance|Thriller     77
## 12101 1995                                   Animation|Children|Comedy     77
## 12103 1996                            Action|Adventure|Sci-Fi|Thriller     77
## 12104 1996                                             Action|Thriller     77
## 12105 1996                            Action|Adventure|Sci-Fi|Thriller     77
## 12107 1968                                      Adventure|Drama|Sci-Fi     77
## 12108 1988                                       Action|Crime|Thriller     77
## 12110 1988                                                Comedy|Crime     77
## 12112 1982                                       Children|Drama|Sci-Fi     77
## 12115 1993                             Animation|Children|Comedy|Crime     77
## 12122 1979                                            Action|Drama|War     77
## 12124 1979                                               Horror|Sci-Fi     77
## 12126 1985                                                   Drama|War     77
## 12128 1987                                                   Drama|War     77
## 12129 1989                  Adventure|Animation|Children|Comedy|Sci-Fi     77
## 12131 1980                                                      Horror     77
## 12134 1985                                     Adventure|Comedy|Sci-Fi     77
## 12135 1988                           Action|Adventure|Animation|Sci-Fi     77
## 12136 1974                                              Comedy|Fantasy     77
## 12140 1978                                      Comedy|Musical|Romance     77
## 12141 1975                                               Action|Horror     77
## 12142 1996                                               Drama|Romance     77
## 12145 1997                                   Action|Adventure|Thriller     77
## 12146 1997                                        Action|Comedy|Sci-Fi     77
## 12147 1997                                                Drama|Sci-Fi     77
## 12148 1997                            Action|Adventure|Sci-Fi|Thriller     77
## 12150 1997                                       Drama|Sci-Fi|Thriller     77
## 12152 1998                                         Comedy|Drama|Sci-Fi     77
## 12153 1997                                               Drama|Romance     77
## 12154 1997                                               Drama|Romance     77
## 12155 1998                                                Comedy|Crime     77
## 12156 1998                                       Action|Comedy|Musical     77
## 12157 1998                                             Sci-Fi|Thriller     77
## 12158 1997                                        Comedy|Drama|Romance     77
## 12159 1998                              Action|Romance|Sci-Fi|Thriller     77
## 12160 1998                                              Comedy|Romance     77
## 12161 1988                                                       Drama     77
## 12163 1985                                                Comedy|Drama     77
## 12164 1987                                   Action|Comedy|Crime|Drama     77
## 12165 1989                                   Action|Comedy|Crime|Drama     77
## 12168 1990                             Adventure|Comedy|Sci-Fi|Western     77
## 12169 1984                                            Adventure|Sci-Fi     77
## 12170 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     77
## 12171 1989                   Animation|Children|Comedy|Musical|Romance     77
## 12179 1990                                       Drama|Fantasy|Romance     77
## 12181 1998                         Adventure|Animation|Children|Comedy     77
## 12182 1998                                                Comedy|Drama     77
## 12183 1986                                     Adventure|Comedy|Sci-Fi     77
## 12185 1976                                     Action|Adventure|Sci-Fi     77
## 12186 1968                                         Action|Drama|Sci-Fi     77
## 12187 1999                                                       Drama     77
## 12190 1999                                                      Comedy     77
## 12192 1999                                     Action|Adventure|Sci-Fi     77
## 12193 1978                                     Action|Adventure|Sci-Fi     77
## 12194 1980                                               Action|Sci-Fi     77
## 12195 1999                                              Comedy|Romance     77
## 12198 1999                                              Comedy|Romance     77
## 12199 1999                                             Children|Comedy     77
## 12200 1999                                       Drama|Horror|Thriller     77
## 12204 1988                                Comedy|Drama|Fantasy|Romance     77
## 12205 1992                                               Action|Sci-Fi     77
## 12206 1999                                               Drama|Romance     77
## 12207 1990                            Action|Adventure|Sci-Fi|Thriller     77
## 12211 1987                          Action|Crime|Drama|Sci-Fi|Thriller     77
## 12212 1990                                Action|Crime|Sci-Fi|Thriller     77
## 12213 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery     77
## 12218 1999                              Fantasy|Horror|Mystery|Romance     77
## 12219 1999                 Adventure|Animation|Children|Comedy|Fantasy     77
## 12221 1999                                                       Drama     77
## 12222 1999                                     Adventure|Comedy|Sci-Fi     77
## 12225 1992                                        Action|Comedy|Horror     77
## 12228 1981                                             Children|Comedy     77
## 12229 1984                                     Children|Comedy|Musical     77
## 12230 2000                                                       Drama     77
## 12231 1991                                       Adventure|Crime|Drama     77
## 12233 1989                                            Animation|Comedy     77
## 12234 1990                       Action|Children|Comedy|Fantasy|Sci-Fi     77
## 12235 1991                                     Action|Children|Fantasy     77
## 12238 2000                                      Action|Adventure|Drama     77
## 12239 2000                                   Action|Adventure|Thriller     77
## 12243 1985                                     Action|Adventure|Sci-Fi     77
## 12244 2000                                   Animation|Children|Comedy     77
## 12245 2000                                            Action|Drama|War     77
## 12247 2000                                                      Comedy     77
## 12248 2000                                                       Drama     77
## 12249 2000                                               Action|Comedy     77
## 12251 2000                                        Action|Drama|Romance     77
## 12253 2000                                      Adventure|Comedy|Crime     77
## 12254 1991                                                      Comedy     77
## 12255 1987                                              Romance|Sci-Fi     77
## 12256 2001                                        Comedy|Drama|Romance     77
## 12257 2001                            Action|Adventure|Comedy|Thriller     77
## 12258 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     77
## 12259 2001                          Adventure|Animation|Fantasy|Sci-Fi     77
## 12260 2001                                              Comedy|Romance     77
## 12263 1985                                        Comedy|Horror|Sci-Fi     77
## 12265 2001                                  Adventure|Children|Fantasy     77
## 12266 2001                                              Crime|Thriller     77
## 12267 2001                                                Comedy|Drama     77
## 12268 2001                                           Adventure|Fantasy     77
## 12269 2002                                     Action|Adventure|Sci-Fi     77
## 12271 2002                                      Action|Horror|Thriller     77
## 12273 2002                                Action|Adventure|Sci-Fi|IMAX     77
## 12274 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     77
## 12275 2002                                      Horror|Sci-Fi|Thriller     77
## 12278 1983                                                      Comedy     77
## 12279 2002                                                 Documentary     77
## 12281 2002                                           Adventure|Fantasy     77
## 12283 1982                                  Animation|Children|Fantasy     77
## 12284 2003                                                Action|Crime     77
## 12285 2002                                              Drama|Thriller     77
## 12286 1971                                              Mystery|Sci-Fi     77
## 12287 1966                                                Drama|Sci-Fi     77
## 12288 1978                   Adventure|Children|Comedy|Fantasy|Musical     77
## 12291 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     77
## 12292 2003                         Adventure|Animation|Children|Comedy     77
## 12293 2003                                     Action|Adventure|Sci-Fi     77
## 12296 1971                               Action|Adventure|Drama|Sci-Fi     77
## 12297 1963                                                Comedy|Crime     77
## 12301 2003                                       Action|Crime|Thriller     77
## 12302 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     77
## 12304 2003                                  Action|Adventure|Drama|War     77
## 12306 2003                                      Action|Sci-Fi|Thriller     77
## 12311 2004                                       Action|Drama|Thriller     77
## 12313 1967                                              Comedy|Fantasy     77
## 12320 2004                                      Adventure|Fantasy|IMAX     77
## 12322 2004                                                 Documentary     77
## 12324 2004                            Action|Adventure|Sci-Fi|Thriller     77
## 12327 2004                                                       Drama     77
## 12329 1983                              Fantasy|Horror|Sci-Fi|Thriller     77
## 12330 1990                                                Comedy|Crime     77
## 12331 2004                                                      Comedy     77
## 12333 1977                                Animation|Fantasy|Sci-Fi|War     77
## 12334 2005                                Action|Adventure|Crime|Drama     77
## 12336 2004                                               Action|Comedy     77
## 12338 2005                                     Action|Adventure|Sci-Fi     77
## 12340 2005                                      Action|Sci-Fi|Thriller     77
## 12342 2005                                  Adventure|Animation|Comedy     77
## 12345 2005                         Adventure|Animation|Children|Comedy     77
## 12346 2005                             Adventure|Drama|Horror|Thriller     77
## 12349 2006                                      Action|Sci-Fi|Thriller     77
## 12351 2006                                                       Drama     77
## 12353 2007                                           Documentary|Drama     77
## 12354 1995                                  Adventure|Children|Fantasy     78
## 12358 1995                                              Children|Drama     78
## 12362 1995                                            Action|Drama|War     78
## 12363 1976                                        Crime|Drama|Thriller     78
## 12365 1995                                        Adventure|Drama|IMAX     78
## 12379 1994             Adventure|Animation|Children|Drama|Musical|IMAX     78
## 12381 1993                            Action|Adventure|Sci-Fi|Thriller     78
## 12385 1992                 Adventure|Animation|Children|Comedy|Musical     78
## 12392 1996                               Comedy|Fantasy|Romance|Sci-Fi     78
## 12394 1939                          Adventure|Children|Fantasy|Musical     78
## 12395 1968                                      Adventure|Drama|Sci-Fi     78
## 12397 1992                                      Crime|Mystery|Thriller     78
## 12399 1982                                       Children|Drama|Sci-Fi     78
## 12400 1975                                    Adventure|Comedy|Fantasy     78
## 12403 1971                                 Crime|Drama|Sci-Fi|Thriller     78
## 12407 1979                                               Horror|Sci-Fi     78
## 12410 1993                                      Comedy|Fantasy|Romance     78
## 12413 1992                               Action|Horror|Sci-Fi|Thriller     78
## 12419 1986                                     Adventure|Comedy|Sci-Fi     78
## 12422 1997                                     Action|Adventure|Comedy     78
## 12425 1997                                        Action|Comedy|Sci-Fi     78
## 12427 1997                                                Action|Drama     78
## 12433 1998                                         Comedy|Drama|Sci-Fi     78
## 12444 1998                                              Comedy|Romance     78
## 12449 1998                                            Action|Drama|War     78
## 12450 1998                                             Horror|Thriller     78
## 12465 1975                                Comedy|Horror|Musical|Sci-Fi     78
## 12466 1999                                     Action|Adventure|Comedy     78
## 12476 1999                                             Horror|Thriller     78
## 12486 1976                                                Comedy|Drama     78
## 12487 1999                                               Drama|Romance     78
## 12492 2000                                              Drama|Thriller     78
## 12498 2000                                                       Drama     78
## 12499 2000                                               Action|Comedy     78
## 12502 2000                                                Drama|Sci-Fi     78
## 12506 2000                                               Comedy|Sci-Fi     78
## 12507 2000                                              Comedy|Romance     78
## 12508 2000                                                       Drama     78
## 12514 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     78
## 12524 2001                                                      Horror     78
## 12526 2001                                  Adventure|Children|Fantasy     78
## 12536 2002                                    Action|Adventure|Fantasy     78
## 12540 2002                                                      Horror     78
## 12548 2003                         Adventure|Animation|Children|Comedy     78
## 12550 2003                                     Action|Adventure|Sci-Fi     78
## 12551 2003                             Action|Adventure|Comedy|Fantasy     78
## 12567 2004                                      Adventure|Fantasy|IMAX     78
## 12568 2004                                    Comedy|Documentary|Drama     78
## 12575 2004                                     Horror|Mystery|Thriller     78
## 12576 2004                     Action|Adventure|Drama|Mystery|Thriller     78
## 12583 2005                            Action|Adventure|Sci-Fi|Thriller     78
## 12587 2005                             Adventure|Fantasy|Thriller|IMAX     78
## 12589 2006                                 Action|Sci-Fi|Thriller|IMAX     78
## 12594 2006                                   Action|Adventure|Thriller     78
## 12617 1995                 Adventure|Animation|Children|Comedy|Fantasy     79
## 12618 1995                                  Adventure|Children|Fantasy     79
## 12619 1995                                              Comedy|Romance     79
## 12620 1995                                        Adventure|Drama|IMAX     79
## 12621 1977                                     Action|Adventure|Sci-Fi     79
## 12622 1994                                                      Comedy     79
## 12624 1994                                 Action|Comedy|Crime|Fantasy     79
## 12625 1995                                              Comedy|Romance     79
## 12626 1993                            Action|Adventure|Sci-Fi|Thriller     79
## 12627 1993                          Action|Crime|Drama|Sci-Fi|Thriller     79
## 12628 1990                       Comedy|Drama|Fantasy|Romance|Thriller     79
## 12629 1992                 Adventure|Animation|Children|Comedy|Musical     79
## 12630 1989                                       Action|Crime|Thriller     79
## 12631 1996                           Action|Adventure|Mystery|Thriller     79
## 12632 1996                           Action|Adventure|Romance|Thriller     79
## 12633 1996                                          Comedy|Crime|Drama     79
## 12634 1996                            Action|Adventure|Sci-Fi|Thriller     79
## 12635 1968                                      Adventure|Drama|Sci-Fi     79
## 12636 1982                                       Children|Drama|Sci-Fi     79
## 12637 1986                                              Action|Romance     79
## 12638 1980                                     Action|Adventure|Sci-Fi     79
## 12639 1983                                     Action|Adventure|Sci-Fi     79
## 12640 1989                                            Action|Adventure     79
## 12641 1997                                     Action|Adventure|Comedy     79
## 12642 1997                                        Action|Comedy|Sci-Fi     79
## 12643 1997                                               Drama|Romance     79
## 12644 1998                              Action|Romance|Sci-Fi|Thriller     79
## 12645 1972                                      Action|Adventure|Drama     79
## 12646 1980                                            Adventure|Comedy     79
## 12647 1989                             Action|Adventure|Children|Drama     79
## 12648 1999                                      Action|Sci-Fi|Thriller     79
## 12649 1999                                     Action|Adventure|Sci-Fi     79
## 12650 1978                                     Action|Adventure|Sci-Fi     79
## 12651 1980                                               Action|Sci-Fi     79
## 12652 1999                                     Action|Adventure|Comedy     79
## 12653 1986                                                      Comedy     79
## 12654 1987                                                       Drama     79
## 12655 2000                                      Action|Adventure|Drama     79
## 12656 1990                                      Action|Sci-Fi|Thriller     79
## 12657 1979                                     Action|Adventure|Sci-Fi     79
## 12658 2000                                     Action|Adventure|Sci-Fi     79
## 12659 1999                                     Action|Adventure|Sci-Fi     79
## 12660 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     79
## 12661 2001                 Adventure|Animation|Children|Comedy|Fantasy     79
## 12662 2001                                           Adventure|Fantasy     79
## 12663 2002                            Action|Adventure|Sci-Fi|Thriller     79
## 12664 2002                                           Adventure|Fantasy     79
## 12665 2003                             Action|Adventure|Comedy|Fantasy     79
## 12666 2003                              Action|Adventure|Drama|Fantasy     79
## 12667 2005     Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX     79
## 12668 2005                                                 Crime|Drama     79
## 12669 2006                                       Action|Fantasy|Horror     79
## 12670 2006                                     Fantasy|Horror|Thriller     79
## 12671 2006                   Action|Adventure|Crime|Drama|Thriller|War     79
## 12672 1995                                  Adventure|Children|Fantasy     80
## 12675 1995                                   Action|Adventure|Thriller     80
## 12677 1995                          Action|Comedy|Crime|Drama|Thriller     80
## 12682 1995                                               Drama|Romance     80
## 12683 1995                                      Crime|Mystery|Thriller     80
## 12685 1995                                             Action|Thriller     80
## 12686 1995                                       Comedy|Horror|Romance     80
## 12687 1996                                   Action|Adventure|Thriller     80
## 12688 1996                                              Drama|Thriller     80
## 12689 1995                                               Drama|Romance     80
## 12691 1996                                                      Comedy     80
## 12693 1995                                               Drama|Romance     80
## 12695 1981                    Action|Adventure|Animation|Horror|Sci-Fi     80
## 12700 1996                                                Comedy|Crime     80
## 12705 1996                                               Drama|Romance     80
## 12711 1995                                                    Thriller     81
## 12713 1994                                                Comedy|Drama     81
## 12714 1994                                                 Crime|Drama     81
## 12715 1976                                                       Drama     81
## 12716 1993                                               Drama|Romance     81
## 12721 1952                                      Comedy|Musical|Romance     81
## 12727 1986                                                       Drama     81
## 12728 1975                                    Adventure|Comedy|Fantasy     81
## 12732 1966                                    Action|Adventure|Western     81
## 12734 1990                                                 Crime|Drama     81
## 12741 1988                                                       Drama     81
## 12743 1992                             Fantasy|Horror|Romance|Thriller     81
## 12745 1975                                               Drama|Mystery     81
## 12750 1998                                              Comedy|Romance     81
## 12761 2000                                      Action|Adventure|Drama     81
## 12768 2000                                                       Drama     81
## 12780 2001                               Drama|Mystery|Sci-Fi|Thriller     81
## 12781 1977                                                       Drama     81
## 12783 1973                                       Drama|Horror|Thriller     81
## 12786 2002                                 Comedy|Drama|Fantasy|Sci-Fi     81
## 12788 2002                                                       Drama     81
## 12792 2002                                Crime|Drama|Mystery|Thriller     81
## 12793 1971                                              Drama|Thriller     81
## 12803 2003                                                       Drama     81
## 12810 1999                                                 Documentary     81
## 12814 2003                                                       Drama     81
## 12821 2004                                               Drama|Romance     81
## 12835 2005                                                 Crime|Drama     81
## 12837 2004                                                       Drama     81
## 12838 2006                                                Comedy|Drama     81
## 12841 2006                               Drama|Fantasy|Mystery|Romance     81
## 12842 2006                                       Drama|Fantasy|Romance     81
## 12847 2007                                                 Crime|Drama     81
## 12850 2008                                        Comedy|Drama|Romance     81
## 12854 2005                                                       Drama     81
## 12857 2009                                        Comedy|Drama|Romance     81
## 12859 2008                                                       Drama     81
## 12860 2009                                Action|Adventure|Sci-Fi|IMAX     81
## 12863 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     81
## 12864 2010                                                       Drama     81
## 12866 2010                                              Drama|Thriller     81
## 12868 2010                                                     Western     81
## 12869 1995                                   Action|Adventure|Thriller     82
## 12870 1995                                       Comedy|Crime|Thriller     82
## 12877 1995                               Action|Adventure|Comedy|Crime     82
## 12878 1995                             Action|Adventure|Mystery|Sci-Fi     82
## 12879 1995                                       Action|Crime|Thriller     82
## 12880 1995                                     Action|Adventure|Sci-Fi     82
## 12884 1994                                       Action|Crime|Thriller     82
## 12885 1995                                Action|Drama|Sci-Fi|Thriller     82
## 12888 1994                                     Action|Adventure|Sci-Fi     82
## 12890 1994                                      Adventure|Drama|Sci-Fi     82
## 12892 1994                                                      Comedy     82
## 12895 1994                                 Action|Comedy|Crime|Fantasy     82
## 12896 1994                    Action|Adventure|Comedy|Romance|Thriller     82
## 12897 1993                                     Children|Comedy|Fantasy     82
## 12898 1994                                Action|Comedy|Crime|Thriller     82
## 12899 1993                                   Action|Adventure|Thriller     82
## 12900 1993                                               Comedy|Sci-Fi     82
## 12901 1993                                              Drama|Thriller     82
## 12902 1993                                                    Thriller     82
## 12905 1989                                       Action|Crime|Thriller     82
## 12909 1995                                       Comedy|Crime|Thriller     83
## 12912 1995                                                      Comedy     83
## 12913 1996                              Adventure|Comedy|Crime|Romance     83
## 12916 1995                                    Action|Drama|Romance|War     83
## 12922 1994                                        Comedy|Drama|Romance     83
## 12925 1994                                     Action|Romance|Thriller     83
## 12927 1993                            Action|Adventure|Sci-Fi|Thriller     83
## 12929 1994                                         Comedy|Crime|Horror     83
## 12934 1996                                      Comedy|Horror|Thriller     83
## 12946 1984                                      Action|Sci-Fi|Thriller     83
## 12956 1996                                                       Drama     83
## 12967 1998                              Action|Romance|Sci-Fi|Thriller     83
## 12968 1998                              Animation|Children|Fantasy|War     83
## 12969 1998                                              Comedy|Romance     83
## 12971 1987                                   Action|Comedy|Crime|Drama     83
## 12972 1979                                                      Comedy     83
## 12979 1985                                        Comedy|Crime|Mystery     83
## 12983 1999                                      Action|Sci-Fi|Thriller     83
## 12998 1988                                      Comedy|Fantasy|Romance     83
## 13000 1999                                                       Drama     83
## 13003 1982                                        Comedy|Drama|Romance     83
## 13005 1992                                                      Comedy     83
## 13021 2000                                            Action|Drama|War     83
## 13025 1991                                                      Comedy     83
## 13027 2000                                                      Comedy     83
## 13028 2000                                                       Drama     83
## 13029 2000                                                Comedy|Crime     83
## 13034 2001                                                      Comedy     83
## 13039 1988                                                      Comedy     83
## 13040 1989                                     Adventure|Comedy|Sci-Fi     83
## 13043 2001                               Comedy|Crime|Mystery|Thriller     83
## 13045 2001                             Mystery|Romance|Sci-Fi|Thriller     83
## 13051 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     83
## 13052 1955                                                Comedy|Crime     83
## 13053 1983                                                      Comedy     83
## 13055 2002                                        Comedy|Drama|Romance     83
## 13056 2002                                        Comedy|Drama|Romance     83
## 13057 2003                                Comedy|Drama|Fantasy|Romance     83
## 13058 1990                                        Comedy|Horror|Sci-Fi     83
## 13064 2004                                                      Comedy     83
## 13068 2005                                              Comedy|Romance     83
## 13069 1995                 Adventure|Animation|Children|Comedy|Fantasy     84
## 13073 1994                                    Comedy|Drama|Romance|War     84
## 13074 1991                                               Action|Sci-Fi     84
## 13077 1981                                            Action|Adventure     84
## 13079 1990                                   Action|Adventure|Thriller     84
## 13080 1998                                            Action|Drama|War     84
## 13081 1992                                        Crime|Drama|Thriller     84
## 13082 1998                                                 Crime|Drama     84
## 13084 1999                                               Drama|Romance     84
## 13087 1999                 Adventure|Animation|Children|Comedy|Fantasy     84
## 13090 2000                                   Action|Adventure|Thriller     84
## 13093 2000                                            Adventure|Comedy     84
## 13096 2000                                                Drama|Sci-Fi     84
## 13097 2000                                        Comedy|Drama|Romance     84
## 13099 2001                            Action|Adventure|Comedy|Thriller     84
## 13101 2001                                    Action|Drama|Romance|War     84
## 13102 2001                                               Action|Comedy     84
## 13106 2001                                  Adventure|Children|Fantasy     84
## 13111 2002                                     Action|Mystery|Thriller     84
## 13112 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     84
## 13113 2002                                        Action|Comedy|Sci-Fi     84
## 13114 2002                                                      Comedy     84
## 13115 2002                                      Crime|Mystery|Thriller     84
## 13117 2002                                                 Crime|Drama     84
## 13119 2003                                                      Comedy     84
## 13120 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     84
## 13121 2003                                Comedy|Drama|Fantasy|Romance     84
## 13122 2003                         Adventure|Animation|Children|Comedy     84
## 13123 2003                                                Action|Crime     84
## 13124 2003                             Action|Adventure|Comedy|Fantasy     84
## 13127 2004                                       Drama|Sci-Fi|Thriller     84
## 13128 2004                                              Comedy|Romance     84
## 13131 2004                      Action|Adventure|Drama|Sci-Fi|Thriller     84
## 13133 2004                                         Action|Comedy|Crime     84
## 13134 2004                            Action|Adventure|Sci-Fi|Thriller     84
## 13135 2004                                       Action|Crime|Thriller     84
## 13137 2004                     Action|Adventure|Drama|Mystery|Thriller     84
## 13138 2004                                                      Comedy     84
## 13140 2005                     Action|Crime|Film-Noir|Mystery|Thriller     84
## 13143 2005                                              Comedy|Romance     84
## 13145 2005                             Action|Crime|Drama|Thriller|War     84
## 13146 2005                             Adventure|Fantasy|Thriller|IMAX     84
## 13147 2006                                        Crime|Drama|Thriller     84
## 13148 2006                                      Drama|Mystery|Thriller     84
## 13150 2006                                    Action|Adventure|Fantasy     84
## 13151 2007                             Action|Adventure|Comedy|Fantasy     84
## 13152 2007                                Adventure|Drama|Fantasy|IMAX     84
## 13153 2007                                            Animation|Comedy     84
## 13155 2007                          Action|Horror|Sci-Fi|Thriller|IMAX     84
## 13158 2008                                     Action|Adventure|Sci-Fi     84
## 13160 2008                                            Action|Drama|War     84
## 13161 2009                                            Action|Drama|War     84
## 13162 2009                                Action|Adventure|Sci-Fi|IMAX     84
## 13164 2009                      Adventure|Fantasy|Mystery|Romance|IMAX     84
## 13169 2010                                               Action|Comedy     84
## 13170 2010                                          Action|Crime|Drama     84
## 13172 2012                      Action|Adventure|Drama|Sci-Fi|Thriller     84
## 13174 2011                                              Drama|Thriller     84
## 13177 2012                              Action|Adventure|Thriller|IMAX     84
## 13178 2012                                        Action|Drama|Western     84
## 13179 2013                                 Action|Sci-Fi|Thriller|IMAX     84
## 13180 2013                                Action|Adventure|Sci-Fi|IMAX     84
## 13186 1995                                              Comedy|Romance     85
## 13187 1995                                                      Comedy     85
## 13189 1995                                                      Comedy     85
## 13191 1995                                       Action|Crime|Thriller     85
## 13192 1995                                    Action|Adventure|Fantasy     85
## 13193 1994                                        Comedy|Drama|Romance     85
## 13196 1995                                          Adventure|Children     85
## 13197 1995                             Action|Adventure|Mystery|Sci-Fi     85
## 13200 1995                             Action|Adventure|Crime|Thriller     85
## 13201 1995                                      Action|Sci-Fi|Thriller     85
## 13203 1995                                                      Horror     85
## 13204 1995                                             Action|Children     85
## 13205 1995                                       Action|Crime|Thriller     85
## 13206 1995                                              Comedy|Romance     85
## 13207 1995                                      Fantasy|Horror|Mystery     85
## 13208 1995                                               Horror|Sci-Fi     85
## 13209 1995                                                      Comedy     85
## 13210 1995                                     Action|Adventure|Sci-Fi     85
## 13211 1995                                                      Comedy     85
## 13213 1995                                              Drama|Thriller     85
## 13216 1994                                                 Crime|Drama     85
## 13217 1994                                                Drama|Horror     85
## 13220 1994                                                       Drama     85
## 13221 1994                                                      Comedy     85
## 13222 1994                                                       Drama     85
## 13223 1994                                                       Drama     85
## 13225 1996                                              Drama|Thriller     85
## 13233 1995                                        Action|Comedy|Sci-Fi     85
## 13236 1995                                              Comedy|Romance     85
## 13239 1994                                      Drama|Mystery|Thriller     85
## 13240 1994                                     Children|Comedy|Fantasy     85
## 13242 1994                                              Comedy|Romance     85
## 13243 1994             Adventure|Animation|Children|Drama|Musical|IMAX     85
## 13244 1994                               Drama|Horror|Mystery|Thriller     85
## 13247 1994                                               Action|Comedy     85
## 13248 1994                                             Children|Comedy     85
## 13251 1994                                              Action|Fantasy     85
## 13253 1993                                             Comedy|Thriller     85
## 13254 1994                                Action|Comedy|Crime|Thriller     85
## 13256 1993                                   Action|Adventure|Thriller     85
## 13257 1994                                                      Comedy     85
## 13259 1993                                              Drama|Thriller     85
## 13261 1993                                           Action|Comedy|War     85
## 13262 1994                                                      Comedy     85
## 13264 1993                             Action|Adventure|Comedy|Fantasy     85
## 13266 1993                                                       Drama     85
## 13267 1993                          Action|Crime|Drama|Sci-Fi|Thriller     85
## 13268 1993                                                      Comedy     85
## 13269 1993                                                   Drama|War     85
## 13271 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi     85
## 13273 1993                          Animation|Children|Fantasy|Musical     85
## 13275 1993                                              Crime|Thriller     85
## 13276 1990                                             Children|Comedy     85
## 13277 1990                       Comedy|Drama|Fantasy|Romance|Thriller     85
## 13278 1992                 Adventure|Animation|Children|Comedy|Musical     85
## 13280 1990                                     Adventure|Drama|Western     85
## 13283 1937                    Animation|Children|Drama|Fantasy|Musical     85
## 13284 1991             Animation|Children|Fantasy|Musical|Romance|IMAX     85
## 13286 1981                    Action|Adventure|Animation|Horror|Sci-Fi     85
## 13289 1995                                 Action|Adventure|Comedy|War     85
## 13290 1988                 Adventure|Animation|Children|Comedy|Musical     85
## 13292 1995                 Adventure|Animation|Children|Comedy|Fantasy     86
## 13293 1995                                        Comedy|Drama|Romance     86
## 13297 1995                                                      Comedy     86
## 13298 1995                                       Comedy|Crime|Thriller     86
## 13299 1995                                               Drama|Romance     86
## 13305 1995                                              Children|Drama     86
## 13310 1995                                               Drama|Romance     86
## 13313 1995                                                       Drama     86
## 13316 1995                                                   Drama|War     86
## 13318 1995                                                Comedy|Drama     86
## 13321 1995                                               Drama|Romance     86
## 13322 1995                                            Action|Drama|War     86
## 13324 1992                                                       Drama     86
## 13325 1995                                                       Drama     86
## 13326 1994                                  Adventure|Children|Fantasy     86
## 13328 1995                                                      Comedy     86
## 13333 1995                                         Crime|Drama|Mystery     86
## 13334 1995                             Action|Adventure|Mystery|Sci-Fi     86
## 13335 1994                                                 Documentary     86
## 13337 1995                                      Action|Sci-Fi|Thriller     86
## 13339 1995                                              Comedy|Romance     86
## 13340 1995                                              Comedy|Romance     86
## 13342 1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller     86
## 13344 1995                                     Action|Adventure|Sci-Fi     86
## 13348 1995                                        Comedy|Drama|Romance     86
## 13350 1994                                            Adventure|Comedy     86
## 13354 1994                                                 Documentary     86
## 13357 1994                                              Comedy|Romance     86
## 13361 1994                                                       Drama     86
## 13362 1994                                                       Drama     86
## 13364 1994                                   Drama|Romance|War|Western     86
## 13367 1994                                         Drama|Horror|Sci-Fi     86
## 13368 1994                                                       Drama     86
## 13369 1994                                              Comedy|Romance     86
## 13370 1994                                       Action|Crime|Thriller     86
## 13372 1995                                Action|Drama|Sci-Fi|Thriller     86
## 13376 1994                                               Drama|Romance     86
## 13377 1994                                                      Comedy     86
## 13381 1994                              Children|Drama|Fantasy|Mystery     86
## 13382 1994                                     Action|Adventure|Sci-Fi     86
## 13385 1993                                                       Drama     86
## 13386 1994                                                Comedy|Drama     86
## 13388 1994                                                       Drama     86
## 13389 1995                                               Horror|Sci-Fi     86
## 13393 1994                                                      Comedy     86
## 13395 1994                                  Adventure|Children|Romance     86
## 13399 1994                                        Comedy|Drama|Romance     86
## 13400 1994                                              Action|Fantasy     86
## 13401 1993                                                      Comedy     86
## 13402 1993                              Drama|Mystery|Romance|Thriller     86
## 13405 1993                                               Drama|Romance     86
## 13406 1993                                              Drama|Thriller     86
## 13408 1995                                              Comedy|Romance     86
## 13409 1993                                               Drama|Romance     86
## 13412 1993                                               Drama|Musical     86
## 13413 1993                            Action|Adventure|Sci-Fi|Thriller     86
## 13414 1993                                              Drama|Thriller     86
## 13417 1993                                                Comedy|Drama     86
## 13419 1993                                                       Drama     86
## 13423 1993                                              Children|Drama     86
## 13427 1993                                        Comedy|Drama|Romance     86
## 13432 1993                                                Comedy|Drama     86
## 13434 1990                                             Children|Comedy     86
## 13435 1990                       Comedy|Drama|Fantasy|Romance|Thriller     86
## 13436 1992                 Adventure|Animation|Children|Comedy|Musical     86
## 13437 1991                                               Action|Sci-Fi     86
## 13438 1990                                     Adventure|Drama|Western     86
## 13439 1989                                       Action|Crime|Thriller     86
## 13442 1991             Animation|Children|Fantasy|Musical|Romance|IMAX     86
## 13444 1990                                              Comedy|Romance     86
## 13446 1996                                               Drama|Romance     86
## 13447 1970                                          Animation|Children     86
## 13449 1996                                              Drama|Thriller     86
## 13450 1996                                                       Drama     86
## 13451 1996                Adventure|Animation|Children|Fantasy|Musical     86
## 13454 1996                                              Comedy|Romance     86
## 13456 1996                               Drama|Fantasy|Horror|Thriller     86
## 13458 1995                                        Comedy|Drama|Romance     86
## 13459 1994                                                 Documentary     86
## 13462 1996                            Action|Adventure|Sci-Fi|Thriller     86
## 13463 1996                    Animation|Children|Drama|Musical|Romance     86
## 13464 1996                                             Comedy|Thriller     86
## 13465 1996                                          Adventure|Children     86
## 13466 1996                                                      Comedy     86
## 13467 1994                                                       Drama     86
## 13468 1996                                        Comedy|Drama|Romance     86
## 13470 1988                                       Action|Crime|Thriller     86
## 13473 1996                                               Drama|Romance     86
## 13476 1967                                                 Crime|Drama     86
## 13479 1994                                                       Drama     86
## 13482 1995                 Adventure|Animation|Children|Comedy|Fantasy     87
## 13483 1995                                              Comedy|Romance     87
## 13485 1995                                     Mystery|Sci-Fi|Thriller     87
## 13487 1995                                                       Drama     87
## 13488 1996                                                      Comedy     87
## 13489 1996                                   Action|Adventure|Thriller     87
## 13491 1995                               Action|Adventure|Comedy|Crime     87
## 13497 1996                           Action|Adventure|Mystery|Thriller     87
## 13498 1996                                                      Comedy     87
## 13500 1996                                   Action|Adventure|Thriller     87
## 13501 1996                           Action|Adventure|Romance|Thriller     87
## 13502 1996                                                Comedy|Crime     87
## 13503 1996                                          Comedy|Crime|Drama     87
## 13504 1996                            Action|Adventure|Sci-Fi|Thriller     87
## 13506 1996                                       Action|Drama|Thriller     87
## 13507 1996                                               Drama|Romance     87
## 13508 1996                                        Comedy|Drama|Romance     87
## 13509 1971                             Children|Comedy|Fantasy|Musical     87
## 13510 1983                                     Action|Adventure|Sci-Fi     87
## 13512 1996                            Adventure|Animation|Comedy|Crime     87
## 13513 1995                                  Adventure|Children|Fantasy     88
## 13515 1995                                        Comedy|Drama|Romance     88
## 13516 1995                                       Comedy|Crime|Thriller     88
## 13517 1995                                                       Drama     88
## 13519 1995                                              Comedy|Romance     88
## 13521 1995                                                       Drama     88
## 13522 1996                                   Action|Adventure|Thriller     88
## 13523 1996                                                      Comedy     88
## 13526 1995                               Action|Adventure|Comedy|Crime     88
## 13527 1995                             Action|Adventure|Mystery|Sci-Fi     88
## 13528 1995                                      Action|Romance|Western     88
## 13529 1995                                       Action|Crime|Thriller     88
## 13530 1995                                       Action|Crime|Thriller     88
## 13532 1994                                            Adventure|Comedy     88
## 13533 1994                                                Drama|Horror     88
## 13534 1994                                               Comedy|Sci-Fi     88
## 13536 1994                                                       Drama     88
## 13537 1994                                       Action|Crime|Thriller     88
## 13538 1994                                 Comedy|Crime|Drama|Thriller     88
## 13539 1994                                     Action|Adventure|Sci-Fi     88
## 13541 1993                                                       Drama     88
## 13543 1994                                                      Comedy     88
## 13544 1994                                                Comedy|Drama     88
## 13545 1994                                      Drama|Mystery|Thriller     88
## 13550 1994                                     Action|Romance|Thriller     88
## 13551 1994                    Action|Adventure|Comedy|Romance|Thriller     88
## 13552 1993                                               Comedy|Sci-Fi     88
## 13553 1993                                              Comedy|Romance     88
## 13554 1993                                              Drama|Thriller     88
## 13555 1993                                                    Thriller     88
## 13556 1993                            Action|Adventure|Sci-Fi|Thriller     88
## 13558 1993                                                Comedy|Drama     88
## 13561 1993                                                      Comedy     88
## 13563 1993                                        Comedy|Drama|Romance     88
## 13566 1993                             Action|Adventure|Comedy|Romance     88
## 13567 1993                                        Action|Drama|Western     88
## 13568 1990                                             Children|Comedy     88
## 13569 1992                 Adventure|Animation|Children|Comedy|Musical     88
## 13570 1989                                       Action|Crime|Thriller     88
## 13571 1991                                       Crime|Horror|Thriller     88
## 13573 1991             Animation|Children|Fantasy|Musical|Romance|IMAX     88
## 13575 1996                                 Comedy|Crime|Drama|Thriller     88
## 13576 1996                           Action|Adventure|Mystery|Thriller     88
## 13577 1996                                              Comedy|Romance     88
## 13578 1996                                   Action|Adventure|Thriller     88
## 13579 1996                           Action|Adventure|Romance|Thriller     88
## 13580 1995                                   Animation|Children|Comedy     88
## 13582 1996                            Action|Adventure|Sci-Fi|Thriller     88
## 13583 1996                                               Drama|Romance     88
## 13588 1964                             Children|Comedy|Fantasy|Musical     88
## 13589 1971                             Children|Comedy|Fantasy|Musical     88
## 13591 1979                                                      Comedy     88
## 13592 1982                                       Children|Drama|Sci-Fi     88
## 13594 1975                                    Adventure|Comedy|Fantasy     88
## 13595 1996                                           Drama|Romance|War     88
## 13597 1980                                     Action|Adventure|Sci-Fi     88
## 13602 1980                                                      Horror     88
## 13604 1993                                      Comedy|Fantasy|Romance     88
## 13605 1985                                     Adventure|Comedy|Sci-Fi     88
## 13608 1989                                            Action|Adventure     88
## 13610 1989                                      Children|Drama|Fantasy     88
## 13612 1978                                      Comedy|Musical|Romance     88
## 13613 1996                                        Action|Comedy|Sci-Fi     88
## 13614 1996                                               Drama|Romance     88
## 13615 1987                                                      Comedy     88
## 13616 1996                              Comedy|Horror|Mystery|Thriller     88
## 13617 1997                                                      Comedy     88
## 13619 1997                                     Action|Adventure|Comedy     88
## 13621 1997                                 Action|Crime|Drama|Thriller     88
## 13622 1997                                        Action|Comedy|Sci-Fi     88
## 13625 1985                                      Drama|Romance|Thriller     88
## 13628 1998                                              Comedy|Romance     88
## 13629 1997                                        Comedy|Drama|Romance     88
## 13630 1998                        Action|Crime|Mystery|Sci-Fi|Thriller     88
## 13631 1998                              Action|Romance|Sci-Fi|Thriller     88
## 13632 1988                                                       Drama     88
## 13633 1985                                                Comedy|Drama     88
## 13634 1989                                     Adventure|Comedy|Sci-Fi     88
## 13635 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi     88
## 13636 1984                                      Comedy|Fantasy|Romance     88
## 13637 1984                                    Action|Adventure|Fantasy     88
## 13639 1992                                        Crime|Drama|Thriller     88
## 13641 1992                                                      Comedy     88
## 13642 1998                                        Comedy|Drama|Fantasy     88
## 13643 1998                                                 Crime|Drama     88
## 13644 1998                                             Action|Thriller     88
## 13645 1998                         Adventure|Animation|Children|Comedy     88
## 13650 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller     88
## 13651 1999                                     Action|Adventure|Sci-Fi     88
## 13652 1978                                     Action|Adventure|Sci-Fi     88
## 13655 1999                                       Drama|Horror|Thriller     88
## 13656 1999                                      Drama|Mystery|Thriller     88
## 13657 1984                                        Action|Comedy|Sci-Fi     88
## 13659 1999                                              Action|Mystery     88
## 13660 1980                                                      Comedy     88
## 13666 1999                                    Adventure|Comedy|Fantasy     88
## 13667 1999                              Fantasy|Horror|Mystery|Romance     88
## 13670 1992                                                Comedy|Drama     88
## 13672 1991                                       Adventure|Crime|Drama     88
## 13673 1944                                       Crime|Drama|Film-Noir     88
## 13676 2000                                      Action|Adventure|Drama     88
## 13677 2000                                   Animation|Children|Comedy     88
## 13678 2000                                            Action|Drama|War     88
## 13679 2000                                              Drama|Thriller     88
## 13680 2000                                     Action|Adventure|Sci-Fi     88
## 13682 2000                                        Action|Drama|Romance     88
## 13687 2000                                            Mystery|Thriller     88
## 13689 2001                                       Drama|Musical|Romance     88
## 13690 2001                               Drama|Horror|Mystery|Thriller     88
## 13692 2001                                  Adventure|Children|Fantasy     88
## 13697 2001                                               Drama|Romance     88
## 13698 2002                         Adventure|Animation|Children|Comedy     88
## 13699 2002                                              Comedy|Romance     88
## 13700 2002                            Action|Adventure|Sci-Fi|Thriller     88
## 13702 2002                                Action|Adventure|Sci-Fi|IMAX     88
## 13704 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     88
## 13705 2002                                        Action|Comedy|Sci-Fi     88
## 13707 2002                                     Horror|Mystery|Thriller     88
## 13708 2002                                           Adventure|Fantasy     88
## 13709 2002                                  Comedy|Crime|Drama|Musical     88
## 13712 2003                                Comedy|Drama|Fantasy|Romance     88
## 13717 2003                                              Comedy|Musical     88
## 13723 2003                              Action|Adventure|Drama|Fantasy     88
## 13728 2004                                      Adventure|Fantasy|IMAX     88
## 13729 2004                                Action|Adventure|Sci-Fi|IMAX     88
## 13733 2004                                               Comedy|Horror     88
## 13734 2004                                                       Drama     88
## 13735 2005                      Adventure|Children|Comedy|Fantasy|IMAX     88
## 13736 2005                     Action|Crime|Film-Noir|Mystery|Thriller     88
## 13737 2005                                              Comedy|Romance     88
## 13738 2005                                           Action|Crime|IMAX     88
## 13739 2005                                     Action|Adventure|Sci-Fi     88
## 13740 2005                                              Comedy|Romance     88
## 13742 2005                             Adventure|Fantasy|Thriller|IMAX     88
## 13745 2006                                      Drama|Mystery|Thriller     88
## 13750 2007                                        Comedy|Drama|Romance     88
## 13752 2007                                      Adventure|Comedy|Drama     88
## 13755 2008                              Action|Adventure|Comedy|Sci-Fi     88
## 13756 2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX     88
## 13758 2006                                               Drama|Mystery     88
## 13762 2009                                              Drama|Thriller     88
## 13763 2009                                      Crime|Romance|Thriller     88
## 13764 2009                               Drama|Fantasy|Sci-Fi|Thriller     88
## 13778 1995                                        Action|Comedy|Sci-Fi     89
## 13789 1954                                      Adventure|Drama|Sci-Fi     89
## 13791 1979                                               Horror|Sci-Fi     89
## 13794 1992                                       Action|Drama|Thriller     89
## 13836 1995                                               Drama|Romance     90
## 13840 1996                                              Drama|Thriller     90
## 13842 1996                                                      Comedy     90
## 13846 1996                Adventure|Animation|Children|Fantasy|Musical     90
## 13848 1996                           Action|Adventure|Romance|Thriller     90
## 13849 1996                                                       Drama     90
## 13851 1996                            Action|Adventure|Sci-Fi|Thriller     90
## 13852 1996                    Animation|Children|Drama|Musical|Romance     90
## 13855 1996                                                      Comedy     90
## 13862 1971                             Children|Comedy|Fantasy|Musical     90
## 13869 1997                                             Action|Thriller     90
## 13871 1997                              Action|Romance|Sci-Fi|Thriller     90
## 13873 1997                                                      Comedy     90
## 13874 1997                                       Action|Drama|Thriller     90
## 13883 1997                                             Action|Thriller     90
## 13885 1995                                               Comedy|Horror     91
## 13887 1995                                       Action|Crime|Thriller     91
## 13888 1995                                              Children|Drama     91
## 13894 1995                                                      Comedy     91
## 13903 1996                                                      Comedy     91
## 13919 1998                                                      Comedy     91
## 13920 1985                                                Comedy|Crime     91
## 13921 1986                                                Comedy|Crime     91
## 13922 1987                                                Comedy|Crime     91
## 13923 1988                                                Comedy|Crime     91
## 13929 1999                                                      Comedy     91
## 13930 1989                                              Comedy|Mystery     91
## 13933 2000                                                      Comedy     91
## 13935 2000                                                      Comedy     91
## 13937 2000                                               Comedy|Sci-Fi     91
## 13938 1987                                Action|Comedy|Crime|Thriller     91
## 13940 2001                                                      Comedy     91
## 13948 2003                                                      Comedy     91
## 13949 2003                                      Action|Comedy|Thriller     91
## 13950 2003                                                Comedy|Crime     91
## 13955 2004                                         Action|Comedy|Crime     91
## 13961 2006                                      Adventure|Comedy|Crime     91
## 13964 2006                                               Comedy|Horror     91
## 13966 2006                                                      Comedy     91
## 13967 2007                                              Comedy|Romance     91
## 13968 2007                                                      Comedy     91
## 13972 2007                                                      Comedy     91
## 13973 2008                                                      Comedy     91
## 13975 2008                                        Action|Comedy|Sci-Fi     91
## 13978 2008                                                      Comedy     91
## 13987 2010                                               Action|Comedy     91
## 13992 2010                                                      Comedy     91
## 13993 2010                                              Comedy|Romance     91
## 13996 2010                                                      Comedy     91
## 14000 2012                      Action|Adventure|Drama|Sci-Fi|Thriller     91
## 14009 2012                                                      Comedy     91
## 14013 2013                                        Action|Comedy|Sci-Fi     91
## 14016 2013                                                      Comedy     91
## 14018 2013                                Action|Adventure|Sci-Fi|IMAX     91
## 14029 2014                                                      Comedy     91
## 14030 2015                                         Action|Comedy|Crime     91
## 14035 1995                                  Adventure|Children|Fantasy     92
## 14036 1995                                       Action|Crime|Thriller     92
## 14037 1995                                   Action|Adventure|Thriller     92
## 14039 1995                                                      Comedy     92
## 14043 1995                                              Comedy|Romance     92
## 14044 1995                                    Action|Adventure|Fantasy     92
## 14048 1995                                                       Drama     92
## 14049 1995                                      Action|Sci-Fi|Thriller     92
## 14050 1996                                   Action|Adventure|Thriller     92
## 14054 1995                          Action|Comedy|Crime|Drama|Thriller     92
## 14055 1995                                        Adventure|Drama|IMAX     92
## 14056 1995                                    Action|Drama|Romance|War     92
## 14057 1995                               Action|Adventure|Comedy|Crime     92
## 14058 1995                             Action|Adventure|Mystery|Sci-Fi     92
## 14061 1995                                       Action|Crime|Thriller     92
## 14062 1995                                      Action|Sci-Fi|Thriller     92
## 14063 1995                                         Action|Crime|Sci-Fi     92
## 14064 1995                                                      Horror     92
## 14065 1995                                             Action|Children     92
## 14066 1995                                              Comedy|Romance     92
## 14067 1995                                      Fantasy|Horror|Mystery     92
## 14068 1995                                                       Drama     92
## 14069 1995                                               Horror|Sci-Fi     92
## 14071 1995                                     Action|Adventure|Sci-Fi     92
## 14073 1995                                        Comedy|Drama|Romance     92
## 14074 1994                                            Adventure|Comedy     92
## 14076 1995                                              Comedy|Romance     92
## 14078 1994                                              Comedy|Romance     92
## 14079 1994                                                Drama|Horror     92
## 14080 1994                                   Drama|Romance|War|Western     92
## 14081 1994                                         Drama|Horror|Sci-Fi     92
## 14082 1994                                       Action|Crime|Thriller     92
## 14083 1995                                Action|Drama|Sci-Fi|Thriller     92
## 14087 1994                                       Action|Drama|Thriller     92
## 14088 1994                                     Action|Adventure|Sci-Fi     92
## 14089 1994                                        Comedy|Drama|Fantasy     92
## 14092 1995                                             Horror|Thriller     92
## 14093 1994                                      Adventure|Drama|Sci-Fi     92
## 14094 1995                                         Action|Crime|Horror     92
## 14095 1995                                               Horror|Sci-Fi     92
## 14096 1995                                                      Comedy     92
## 14097 1995                                              Comedy|Romance     92
## 14098 1994                                                      Comedy     92
## 14099 1994                                 Action|Crime|Drama|Thriller     92
## 14100 1994                                      Drama|Mystery|Thriller     92
## 14101 1994                               Action|Crime|Fantasy|Thriller     92
## 14102 1994                                     Children|Comedy|Fantasy     92
## 14104 1994                                              Comedy|Romance     92
## 14105 1994                                  Adventure|Children|Romance     92
## 14106 1994             Adventure|Animation|Children|Drama|Musical|IMAX     92
## 14107 1994                               Drama|Horror|Mystery|Thriller     92
## 14108 1994                                 Action|Comedy|Crime|Fantasy     92
## 14110 1994                                               Action|Comedy     92
## 14111 1994                                     Action|Romance|Thriller     92
## 14113 1994                                                      Comedy     92
## 14114 1994                                Action|Comedy|Crime|Thriller     92
## 14115 1993                                      Horror|Sci-Fi|Thriller     92
## 14116 1994                                    Adventure|Comedy|Western     92
## 14117 1993                                   Action|Adventure|Thriller     92
## 14118 1993                                               Comedy|Sci-Fi     92
## 14119 1993                                              Comedy|Romance     92
## 14120 1993                                     Action|Adventure|Sci-Fi     92
## 14121 1993                                              Drama|Thriller     92
## 14122 1993                                    Adventure|Children|Drama     92
## 14124 1993                                           Action|Comedy|War     92
## 14128 1993                             Action|Adventure|Comedy|Fantasy     92
## 14130 1993                                                Comedy|Drama     92
## 14131 1993                                                       Drama     92
## 14132 1993                                               Drama|Romance     92
## 14133 1993                                                      Comedy     92
## 14135 1993                                                       Drama     92
## 14136 1994                                         Comedy|Crime|Horror     92
## 14137 1993                                        Comedy|Drama|Romance     92
## 14138 1993                                     Comedy|Romance|Thriller     92
## 14139 1993                          Animation|Children|Fantasy|Musical     92
## 14140 1993                             Action|Adventure|Comedy|Romance     92
## 14143 1990                       Comedy|Drama|Fantasy|Romance|Thriller     92
## 14144 1992                 Adventure|Animation|Children|Comedy|Musical     92
## 14147 1989                                       Action|Crime|Thriller     92
## 14149 1990                                              Comedy|Romance     92
## 14150 1995                                              Fantasy|Horror     92
## 14152 1981                    Action|Adventure|Animation|Horror|Sci-Fi     92
## 14154 1996                           Action|Adventure|Romance|Thriller     92
## 14156 1996                            Action|Adventure|Sci-Fi|Thriller     92
## 14158 1995                                        Comedy|Drama|Romance     93
## 14161 1995                                               Drama|Romance     93
## 14164 1995                                                       Drama     93
## 14166 1995                                     Action|Adventure|Sci-Fi     93
## 14168 1992                                       Drama|Fantasy|Romance     93
## 14169 1994                                   Drama|Romance|War|Western     93
## 14172 1994                                                      Comedy     93
## 14173 1994                                              Comedy|Romance     93
## 14174 1994             Adventure|Animation|Children|Drama|Musical|IMAX     93
## 14175 1994                                    Adventure|Comedy|Western     93
## 14179 1993                                               Drama|Romance     93
## 14182 1990                                             Children|Comedy     93
## 14183 1990                       Comedy|Drama|Fantasy|Romance|Thriller     93
## 14184 1992                 Adventure|Animation|Children|Comedy|Musical     93
## 14186 1989                                       Action|Crime|Thriller     93
## 14188 1990                                              Comedy|Romance     93
## 14189 1996                           Action|Adventure|Mystery|Thriller     93
## 14190 1996                                   Action|Adventure|Thriller     93
## 14193 1961                                               Drama|Romance     93
## 14196 1959                                                Comedy|Crime     93
## 14198 1964                                Comedy|Drama|Musical|Romance     93
## 14202 1971                             Children|Comedy|Fantasy|Musical     93
## 14210 1984                                      Action|Sci-Fi|Thriller     93
## 14211 1989                                                   Drama|War     93
## 14212 1989                                                       Drama     93
## 14213 1967                                        Comedy|Drama|Romance     93
## 14216 1985                                     Adventure|Comedy|Sci-Fi     93
## 14218 1989                                            Action|Adventure     93
## 14221 1978                                      Comedy|Musical|Romance     93
## 14222 1975                                               Action|Horror     93
## 14223 1996                                               Drama|Romance     93
## 14225 1997                                        Action|Comedy|Sci-Fi     93
## 14228 1998                                         Comedy|Drama|Sci-Fi     93
## 14232 1997                                        Comedy|Drama|Romance     93
## 14234 1998                                              Comedy|Romance     93
## 14236 1985                                                Comedy|Drama     93
## 14237 1989                                     Adventure|Comedy|Sci-Fi     93
## 14238 1989                   Animation|Children|Comedy|Musical|Romance     93
## 14239 1984                                      Comedy|Fantasy|Romance     93
## 14240 1984                                    Action|Adventure|Fantasy     93
## 14243 1990                                       Drama|Fantasy|Romance     93
## 14246 1998                         Adventure|Animation|Children|Comedy     93
## 14248 1984                             Action|Adventure|Comedy|Romance     93
## 14249 1986                                            Adventure|Comedy     93
## 14251 1975                                Comedy|Horror|Musical|Sci-Fi     93
## 14252 1984                                        Action|Comedy|Sci-Fi     93
## 14255 1987                                              Comedy|Romance     93
## 14258 1999                                      Drama|Mystery|Thriller     93
## 14259 1992                                                Comedy|Drama     93
## 14260 1992                                 Action|Crime|Drama|Thriller     93
## 14262 2000                                                       Drama     93
## 14263 1977                                      Adventure|Drama|Sci-Fi     93
## 14266 2000                                               Drama|Romance     93
## 14267 2000                                                       Drama     93
## 14268 2000                                      Adventure|Comedy|Crime     93
## 14270 1984                                   Action|Comedy|Crime|Drama     93
## 14272 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance     93
## 14274 2001                 Adventure|Animation|Children|Comedy|Fantasy     93
## 14279 2002                                              Comedy|Romance     93
## 14280 2002                                        Comedy|Drama|Romance     93
## 14283 2003                         Adventure|Animation|Children|Comedy     93
## 14285 2003                                              Comedy|Musical     93
## 14286 2003                                        Comedy|Drama|Romance     93
## 14287 2003                                       Drama|Fantasy|Romance     93
## 14289 2004         Adventure|Animation|Children|Comedy|Musical|Romance     93
## 14290 2004                                Action|Adventure|Sci-Fi|IMAX     93
## 14295 2005                     Action|Adventure|Drama|Fantasy|Thriller     93
## 14297 2006                                    Action|Adventure|Fantasy     93
## 14299 2006                                   Action|Adventure|Thriller     93
## 14300 2007                                    Animation|Children|Drama     93
## 14304 2008                              Action|Adventure|Comedy|Sci-Fi     93
## 14305 2008                 Adventure|Animation|Children|Romance|Sci-Fi     93
## 14309 2010                                      Adventure|Fantasy|IMAX     93
## 14315 2011                                              Comedy|Romance     93
## 14317 1995                                                 Crime|Drama     94
## 14319 1995                                                      Comedy     94
## 14320 1996                                                      Comedy     94
## 14322 1976                                        Crime|Drama|Thriller     94
## 14324 1995                                          Drama|Thriller|War     94
## 14325 1995                                     Action|Adventure|Sci-Fi     94
## 14327 1977                                     Action|Adventure|Sci-Fi     94
## 14328 1995                                Action|Drama|Sci-Fi|Thriller     94
## 14330 1994                                     Action|Adventure|Sci-Fi     94
## 14332 1994                                                      Comedy     94
## 14333 1994                               Action|Crime|Fantasy|Thriller     94
## 14335 1994                                 Action|Comedy|Crime|Fantasy     94
## 14336 1993                                     Action|Adventure|Sci-Fi     94
## 14337 1993                            Action|Adventure|Sci-Fi|Thriller     94
## 14339 1993                          Animation|Children|Fantasy|Musical     94
## 14342 1996                                   Action|Adventure|Thriller     94
## 14343 1996                            Action|Adventure|Sci-Fi|Thriller     94
## 14345 1941                                               Drama|Mystery     94
## 14346 1996                                            Action|Adventure     94
## 14347 1992                                      Crime|Mystery|Thriller     94
## 14349 1989                                                       Drama     94
## 14350 1975                                                       Drama     94
## 14351 1981                                            Action|Adventure     94
## 14354 1981                                            Action|Drama|War     94
## 14355 1989                                                       Drama     94
## 14356 1974                            Crime|Film-Noir|Mystery|Thriller     94
## 14357 1993                                      Comedy|Fantasy|Romance     94
## 14359 1996                                               Drama|Romance     94
## 14360 1997                                   Action|Adventure|Thriller     94
## 14361 1997                                        Action|Comedy|Sci-Fi     94
## 14363 1997                            Crime|Film-Noir|Mystery|Thriller     94
## 14369 1997                               Action|Adventure|Drama|Sci-Fi     94
## 14370 1998                                              Comedy|Romance     94
## 14371 1997                                        Comedy|Drama|Romance     94
## 14374 1990                             Adventure|Comedy|Sci-Fi|Western     94
## 14376 1984                                    Action|Adventure|Fantasy     94
## 14382 1999                                     Action|Adventure|Sci-Fi     94
## 14383 1998                                                Action|Crime     94
## 14384 1999                                              Comedy|Romance     94
## 14385 1999                                       Drama|Horror|Thriller     94
## 14386 1999                                        Drama|Horror|Mystery     94
## 14387 1983                                                      Comedy     94
## 14390 1990                            Action|Adventure|Sci-Fi|Thriller     94
## 14394 1999                                     Adventure|Comedy|Sci-Fi     94
## 14396 1992                                                      Comedy     94
## 14397 2000                                              Drama|Thriller     94
## 14398 1984                                            Action|Drama|War     94
## 14399 1993                                                      Comedy     94
## 14400 1977                                      Adventure|Drama|Sci-Fi     94
## 14402 2000                                               Action|Sci-Fi     94
## 14404 2000                                                      Comedy     94
## 14406 2000                                       Comedy|Crime|Thriller     94
## 14407 2000                                               Drama|Romance     94
## 14416 2002                         Adventure|Animation|Children|Comedy     94
## 14419 2002                        Action|Crime|Mystery|Sci-Fi|Thriller     94
## 14420 2002                                                 Crime|Drama     94
## 14421 2002                                      Horror|Sci-Fi|Thriller     94
## 14422 2002                                     Horror|Mystery|Thriller     94
## 14426 2002                       Action|Adventure|Crime|Drama|Thriller     94
## 14427 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     94
## 14428 2003                                Comedy|Drama|Fantasy|Romance     94
## 14430 2003                                                Action|Crime     94
## 14431 2003                             Action|Adventure|Comedy|Fantasy     94
## 14432 2002                                        Crime|Drama|Thriller     94
## 14433 2003                                        Comedy|Drama|Romance     94
## 14435 2003                                         Crime|Drama|Mystery     94
## 14436 2003                                       Action|Crime|Thriller     94
## 14437 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX     94
## 14439 2004                                       Drama|Sci-Fi|Thriller     94
## 14440 2004                                        Drama|Romance|Sci-Fi     94
## 14441 2004                                       Action|Drama|Thriller     94
## 14443 2004         Adventure|Animation|Children|Comedy|Musical|Romance     94
## 14444 2004                                    Comedy|Documentary|Drama     94
## 14445 2004                                Action|Adventure|Sci-Fi|IMAX     94
## 14446 2004                            Action|Adventure|Sci-Fi|Thriller     94
## 14447 2004                                                 Crime|Drama     94
## 14448 2004                                                    Thriller     94
## 14449 2004                                        Comedy|Drama|Romance     94
## 14450 2004                                 Action|Crime|Drama|Thriller     94
## 14451 2004                                             Adventure|Drama     94
## 14452 2004                                               Comedy|Horror     94
## 14453 2004                                        Comedy|Drama|Romance     94
## 14454 2004                  Action|Adventure|Animation|Children|Comedy     94
## 14457 2005                      Adventure|Children|Comedy|Fantasy|IMAX     94
## 14461 2005                                           Action|Crime|IMAX     94
## 14462 2005                                              Comedy|Romance     94
## 14463 2005                                     Action|Adventure|Sci-Fi     94
## 14465 2005                                                 Crime|Drama     94
## 14469 2006                                                Comedy|Drama     94
## 14470 2005                                                 Crime|Drama     94
## 14471 2006                                    Action|Adventure|Fantasy     94
## 14474 2006                                                       Drama     94
## 14475 2006                                      Drama|Fantasy|Thriller     94
## 14478 2006                               Drama|Mystery|Sci-Fi|Thriller     94
## 14479 2006                                                   Drama|War     94
## 14480 2007                                    Animation|Children|Drama     94
## 14482 2007                                 Action|Sci-Fi|Thriller|IMAX     94
## 14483 2007                                            Animation|Comedy     94
## 14484 2007                                                      Comedy     94
## 14486 2007                                                 Crime|Drama     94
## 14487 2007                          Action|Horror|Sci-Fi|Thriller|IMAX     94
## 14488 2007                                        Comedy|Drama|Romance     94
## 14491 2008                                     Action|Adventure|Sci-Fi     94
## 14495 2008                                         Crime|Drama|Romance     94
## 14497 2008                                                       Drama     94
## 14498 2008                                               Drama|Romance     94
## 14500 2009                                Action|Adventure|Sci-Fi|IMAX     94
## 14503 2008                                   Action|Drama|Thriller|War     94
## 14508 2010                                      Drama|Mystery|Thriller     94
## 14509 2010                                               Action|Comedy     94
## 14513 1995                                                      Action     95
## 14522 1995                                                      Comedy     95
## 14523 1995                                               Horror|Sci-Fi     95
## 14533 1995                                             Horror|Thriller     95
## 14534 1994                                      Adventure|Drama|Sci-Fi     95
## 14535 1995                                               Horror|Sci-Fi     95
## 14538 1994                                               Action|Comedy     95
## 14544 1993                          Action|Crime|Drama|Sci-Fi|Thriller     95
## 14548 1996                               Drama|Fantasy|Horror|Thriller     95
## 14553 1997                                             Horror|Thriller     95
## 14557 1992                               Action|Horror|Sci-Fi|Thriller     95
## 14574 1992                                                      Horror     95
## 14590 1997                                     Horror|Mystery|Thriller     95
## 14592 1998                                       Drama|Horror|Thriller     95
## 14593 1997                                        Action|Horror|Sci-Fi     95
## 14595 1998                                        Action|Horror|Sci-Fi     95
## 14597 1998                              Action|Romance|Sci-Fi|Thriller     95
## 14601 1989                                                      Horror     95
## 14602 1991                                                      Horror     95
## 14604 1981                                                      Horror     95
## 14606 1981                                                      Horror     95
## 14607 1982                                                      Horror     95
## 14608 1988                                                      Horror     95
## 14609 1987                                             Horror|Thriller     95
## 14611 1986                                             Horror|Thriller     95
## 14615 1972                                      Action|Adventure|Drama     95
## 14616 1998                                             Horror|Thriller     95
## 14618 1985                                                       Drama     95
## 14620 1982                                     Action|Adventure|Sci-Fi     95
## 14623 1990                                             Horror|Thriller     95
## 14626 1993                                                Drama|Horror     95
## 14627 1983                                             Horror|Thriller     95
## 14630 1987                                       Comedy|Fantasy|Horror     95
## 14631 1968                                       Drama|Horror|Thriller     95
## 14632 1978                                               Comedy|Horror     95
## 14634 1998                                                       Drama     95
## 14641 1985                                        Comedy|Drama|Romance     95
## 14646 1986                                      Action|Adventure|Drama     95
## 14649 1999                                                       Drama     95
## 14654 1994                                                      Horror     95
## 14655 1986                                                      Horror     95
## 14667 1980                                               Action|Sci-Fi     95
## 14669 1999                                       Drama|Sci-Fi|Thriller     95
## 14673 1999                                Action|Comedy|Sci-Fi|Western     95
## 14674 1999                                                       Drama     95
## 14677 1999                                             Horror|Thriller     95
## 14680 1999                               Action|Horror|Sci-Fi|Thriller     95
## 14684 1978                                                      Horror     95
## 14691 1999                                              Comedy|Romance     95
## 14697 1999                                                       Drama     95
## 14702 1987                                                      Horror     95
## 14703 1985                                        Comedy|Horror|Sci-Fi     95
## 14704 1978                                               Horror|Sci-Fi     95
## 14706 1999                                                Comedy|Drama     95
## 14718 1992                                        Drama|Romance|Sci-Fi     95
## 14719 2000                              Comedy|Horror|Mystery|Thriller     95
## 14723 1987                                                      Comedy     95
## 14726 1984                                            Action|Drama|War     95
## 14727 1987                                            Comedy|Drama|War     95
## 14732 2000                               Crime|Horror|Mystery|Thriller     95
## 14735 2000                                   Action|Adventure|Thriller     95
## 14737 1985                                               Comedy|Horror     95
## 14739 1992                                                      Horror     95
## 14741 1991                                       Action|Crime|Thriller     95
## 14743 2000                                      Horror|Sci-Fi|Thriller     95
## 14744 1988                                                      Horror     95
## 14745 1983                                                      Horror     95
## 14747 1984                                    Action|Adventure|Fantasy     95
## 14751 1985                                                      Horror     95
## 14753 2000                                                Drama|Sci-Fi     95
## 14756 2000                                              Comedy|Romance     95
## 14762 1987                                             Horror|Thriller     95
## 14769 1984                                                      Horror     95
## 14770 2001                                                      Horror     95
## 14778 1988                                                      Comedy     95
## 14780 1988                                               Horror|Sci-Fi     95
## 14783 1989                                                      Action     95
## 14784 2001                                              Comedy|Romance     95
## 14788 1982                                               Comedy|Horror     95
## 14793 1985                                             Action|Thriller     95
## 14796 1982                                   Action|Comedy|Crime|Drama     95
## 14797 2002                                                      Comedy     95
## 14798 1993                                       Children|Comedy|Drama     95
## 14802 1990                                              Comedy|Romance     95
## 14804 1990                                              Comedy|Romance     95
## 14805 1986                                     Horror|Mystery|Thriller     95
## 14806 1993                                              Drama|Thriller     95
## 14810 2002                                              Comedy|Romance     95
## 14811 1995                                                       Drama     96
## 14813 1994                                                 Crime|Drama     96
## 14814 1993                                                   Drama|War     96
## 14816 1996                                Crime|Drama|Mystery|Thriller     96
## 14817 1996                               Drama|Fantasy|Horror|Thriller     96
## 14832 1967                                                 Crime|Drama     96
## 14837 1989                                                   Drama|War     96
## 14844 1997                                                      Comedy     96
## 14846 1951                              Crime|Drama|Film-Noir|Thriller     96
## 14848 1989                                        Comedy|Drama|Romance     96
## 14849 1998                                                       Drama     96
## 14850 1998                                                Action|Crime     96
## 14851 1999                                               Drama|Romance     96
## 14854 1974                                               Drama|Mystery     96
## 14860 2002                                               Drama|Romance     96
## 14861 1991                                               Drama|Romance     96
## 14873 1998                                              Comedy|Fantasy     96
## 14880 2006                                      Drama|Romance|Thriller     96
## 14882 2006                                      Drama|Fantasy|Thriller     96
## 14886 2007                                        Comedy|Drama|Romance     96
## 14887 1995                 Adventure|Animation|Children|Comedy|Fantasy     97
## 14890 1995                                            Action|Drama|War     97
## 14891 1994                                                      Comedy     97
## 14892 1994                                 Action|Crime|Drama|Thriller     97
## 14895 1994                                    Comedy|Drama|Romance|War     97
## 14896 1994             Adventure|Animation|Children|Drama|Musical|IMAX     97
## 14897 1993                            Action|Adventure|Sci-Fi|Thriller     97
## 14898 1993                                                   Drama|War     97
## 14900 1992                 Adventure|Animation|Children|Comedy|Musical     97
## 14901 1991                                               Action|Sci-Fi     97
## 14902 1991                                       Crime|Horror|Thriller     97
## 14903 1991             Animation|Children|Fantasy|Musical|Romance|IMAX     97
## 14904 1990                                              Comedy|Romance     97
## 14907 1972                                                 Crime|Drama     97
## 14909 1954                                            Mystery|Thriller     97
## 14910 1959                   Action|Adventure|Mystery|Romance|Thriller     97
## 14911 1942                                               Drama|Romance     97
## 14914 1988                                       Action|Crime|Thriller     97
## 14915 1967                                                 Crime|Drama     97
## 14916 1987                                       Drama|Musical|Romance     97
## 14917 1992                                      Crime|Mystery|Thriller     97
## 14919 1975                                                       Drama     97
## 14922 1981                                            Action|Adventure     97
## 14923 1986                              Action|Adventure|Horror|Sci-Fi     97
## 14926 1962                                         Adventure|Drama|War     97
## 14927 1962                                                       Drama     97
## 14928 1979                                            Action|Drama|War     97
## 14931 1990                                                 Crime|Drama     97
## 14932 1960                                                Crime|Horror     97
## 14933 1974                                                 Crime|Drama     97
## 14934 1980                                                       Drama     97
## 14935 1984                                      Action|Sci-Fi|Thriller     97
## 14937 1993                                      Comedy|Fantasy|Romance     97
## 14939 1985                                     Adventure|Comedy|Sci-Fi     97
## 14941 1989                                            Action|Adventure     97
## 14942 1975                                               Action|Horror     97
## 14943 1997                              Action|Adventure|Comedy|Sci-Fi     97
## 14944 1997                                        Action|Comedy|Sci-Fi     97
## 14945 1997                                               Drama|Romance     97
## 14947 1998                                      Adventure|Comedy|Drama     97
## 14948 1973                                              Horror|Mystery     97
## 14949 1987                                   Action|Comedy|Crime|Drama     97
## 14951 1998                                            Action|Drama|War     97
## 14955 1998                                       Comedy|Crime|Thriller     97
## 14956 1999                                      Action|Sci-Fi|Thriller     97
## 14957 1984                                        Action|Comedy|Sci-Fi     97
## 14958 1988                                Comedy|Drama|Fantasy|Romance     97
## 14959 1986                                                      Comedy     97
## 14960 1999                                 Action|Crime|Drama|Thriller     97
## 14961 1999                                        Comedy|Drama|Fantasy     97
## 14962 1987                                               Comedy|Sci-Fi     97
## 14963 1992                                                      Comedy     97
## 14964 1978                                                      Comedy     97
## 14965 1977                                      Adventure|Drama|Sci-Fi     97
## 14966 1987                                      Action|Sci-Fi|Thriller     97
## 14967 1980                                                      Comedy     97
## 14968 2000                                      Action|Adventure|Drama     97
## 14969 1988                                 Action|Comedy|Crime|Romance     97
## 14971 2000                                            Mystery|Thriller     97
## 14975 2001                                                Comedy|Drama     97
## 14977 2002                                        Comedy|Drama|Romance     97
## 14978 2002                                      Action|Sci-Fi|Thriller     97
## 14979 2002                                           Adventure|Fantasy     97
## 14983 2003                              Action|Adventure|Drama|Fantasy     97
## 14984 2004                                        Drama|Romance|Sci-Fi     97
## 14985 2004                                                      Comedy     97
## 14987 2004                                        Comedy|Drama|Romance     97
## 14988 2004                                        Comedy|Drama|Romance     97
## 14989 2004                                      Drama|Mystery|Thriller     97
## 14991 2004                         Adventure|Animation|Fantasy|Romance     97
## 14992 2005                                     Adventure|Comedy|Sci-Fi     97
## 14993 2005                             Action|Adventure|Comedy|Romance     97
## 14994 2005                                                Comedy|Drama     97
## 14995 2005                                              Comedy|Romance     97
## 14999 2006                                               Action|Comedy     97
## 15001 2006                                      Drama|Fantasy|Thriller     97
## 15002 2006                                        Crime|Drama|Thriller     97
## 15008 2008                                     Action|Crime|Drama|IMAX     97
## 15009 2008                                              Comedy|Romance     97
## 15012 2012                                 Action|Adventure|Crime|IMAX     97
## 15013 2012                                        Comedy|Drama|Romance     97
## 15014 2014                                                  Action|War     97
## 15015 1995                                                      Comedy     98
## 15016 1995                                              Comedy|Romance     98
## 15018 1995                                              Comedy|Romance     98
## 15020 1994                                              Comedy|Romance     98
## 15024 1939                                           Drama|Romance|War     98
## 15036 1988                                    Action|Adventure|Fantasy     98
## 15039 1999                                                      Comedy     98
## 15043 1999                                               Drama|Romance     98
## 15044 1999                              Fantasy|Horror|Mystery|Romance     98
## 15050 2002                                              Comedy|Romance     98
## 15051 2003                                              Comedy|Romance     98
## 15052 2003                    Action|Adventure|Comedy|Romance|Thriller     98
## 15059 2004                                  Action|Adventure|Drama|War     98
## 15068 2007                                                Comedy|Drama     98
## 15071 2009                          Adventure|Animation|Children|Drama     98
## 15073 2009                       Adventure|Children|Drama|Fantasy|IMAX     98
## 15074 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX     98
## 15079 2013                                Action|Adventure|Sci-Fi|IMAX     98
## 15083 2016                                                      Comedy     98
## 15084 2016                              Comedy|Horror|Romance|Thriller     98
## 15087 1995                                  Adventure|Children|Fantasy     99
## 15088 1995                                               Drama|Romance     99
## 15089 1995                                               Drama|Romance     99
## 15091 1995                                            Mystery|Thriller     99
## 15093 1995                                               Drama|Romance     99
## 15094 1995                                            Action|Drama|War     99
## 15095 1967                                                       Drama     99
## 15096 1995                             Action|Adventure|Mystery|Sci-Fi     99
## 15097 1995                             Action|Adventure|Crime|Thriller     99
## 15098 1995                                     Action|Adventure|Sci-Fi     99
## 15099 1994                                 Comedy|Crime|Drama|Thriller     99
## 15100 1994                                     Action|Adventure|Sci-Fi     99
## 15104 1994                                 Action|Comedy|Crime|Fantasy     99
## 15106 1994                    Action|Adventure|Comedy|Romance|Thriller     99
## 15107 1993                                    Adventure|Children|Drama     99
## 15109 1995                                              Comedy|Romance     99
## 15111 1993                                              Comedy|Romance     99
## 15114 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi     99
## 15115 1992                 Adventure|Animation|Children|Comedy|Musical     99
## 15122 1996                                   Action|Adventure|Thriller     99
## 15123 1996                           Action|Adventure|Romance|Thriller     99
## 15128 1951                                             Musical|Romance     99
## 15129 1961                                               Drama|Romance     99
## 15133 1960                                        Comedy|Drama|Romance     99
## 15139 1968                                      Adventure|Drama|Sci-Fi     99
## 15146 1960                                       Children|Comedy|Drama     99
## 15147 1959                                             Children|Comedy     99
## 15148 1960                                          Adventure|Children     99
## 15149 1954                                      Adventure|Drama|Sci-Fi     99
## 15150 1950                  Animation|Children|Fantasy|Musical|Romance     99
## 15151 1963                          Animation|Children|Fantasy|Musical     99
## 15153 1941                            Animation|Children|Drama|Musical     99
## 15154 1951                Adventure|Animation|Children|Fantasy|Musical     99
## 15155 1965                                             Musical|Romance     99
## 15156 1965                                              Comedy|Musical     99
## 15159 1996                                           Drama|Romance|War     99
## 15163 1960                                                Crime|Horror     99
## 15165 1967                                        Comedy|Drama|Romance     99
## 15168 1940                          Animation|Children|Fantasy|Musical     99
## 15169 1946                                     Crime|Film-Noir|Mystery     99
## 15172 1958                                               Horror|Sci-Fi     99
## 15173 1996                                                       Drama     99
## 15174 1996                                               Drama|Romance     99
## 15175 1997                                        Action|Comedy|Sci-Fi     99
## 15176 1997                                                Action|Drama     99
## 15177 1997                                 Action|Crime|Drama|Thriller     99
## 15178 1997                            Action|Adventure|Sci-Fi|Thriller     99
## 15182 1997                                               Action|Sci-Fi     99
## 15184 1998                                                Comedy|Crime     99
## 15187 1998                                              Comedy|Romance     99
## 15189 1998                              Animation|Children|Fantasy|War     99
## 15190 1944                                        Comedy|Drama|Musical     99
## 15194 1966                                                       Drama     99
## 15196 1968                                               Drama|Musical     99
## 15198 1998                                       Action|Comedy|Romance     99
## 15199 1961                                     Children|Comedy|Fantasy     99
## 15204 1961                                Adventure|Animation|Children     99
## 15205 1991                                     Action|Adventure|Sci-Fi     99
## 15208 1993                                                   Drama|War     99
## 15209 1998                               Action|Crime|Mystery|Thriller     99
## 15210 1966                                                       Drama     99
## 15211 1967                                  Adventure|Children|Musical     99
## 15212 1963                                               Comedy|Sci-Fi     99
## 15213 1968                                       Drama|Horror|Thriller     99
## 15217 1998                                 Action|Drama|Romance|Sci-Fi     99
## 15218 1998                                        Comedy|Drama|Romance     99
## 15219 1998                                              Comedy|Romance     99
## 15221 1999                                            Comedy|Drama|War     99
## 15223 1968                                         Action|Drama|Sci-Fi     99
## 15224 1999                                                      Comedy     99
## 15225 1956                                       Drama|Musical|Romance     99
## 15228 1999                          Adventure|Animation|Children|Drama     99
## 15230 1999                   Adventure|Animation|Children|Drama|Sci-Fi     99
## 15231 1997                                               Drama|Romance     99
## 15232 1999                                                      Comedy     99
## 15236 1999                                 Action|Crime|Drama|Thriller     99
## 15237 1999                                             Adventure|Drama     99
## 15239 1999                                                       Drama     99
## 15243 1999                                                Comedy|Drama     99
## 15244 1999                                                       Drama     99
## 15245 2000                                        Crime|Drama|Thriller     99
## 15247 2000                                      Action|Adventure|Drama     99
## 15249 1998                                                 Crime|Drama     99
## 15250 2000                                                       Drama     99
## 15252 2000                                                      Comedy     99
## 15253 2000                                                      Comedy     99
## 15257 2000                                                       Drama     99
## 15258 2000                                                       Drama     99
## 15259 2000                                      Adventure|Comedy|Crime     99
## 15260 2000                                          Drama|Thriller|War     99
## 15276 1995                                       Action|Crime|Thriller    100
## 15277 1995                                              Comedy|Romance    100
## 15280 1995                                        Comedy|Drama|Romance    100
## 15281 1995                                                       Drama    100
## 15282 1996                                      Action|Adventure|Drama    100
## 15283 1996                                                      Comedy    100
## 15284 1996                                   Action|Adventure|Thriller    100
## 15285 1996                                                      Comedy    100
## 15286 1996                                                      Comedy    100
## 15288 1996                           Action|Adventure|Mystery|Thriller    100
## 15289 1996                Adventure|Animation|Children|Fantasy|Musical    100
## 15290 1996                                              Comedy|Romance    100
## 15291 1996                                   Action|Adventure|Thriller    100
## 15292 1996                           Action|Adventure|Romance|Thriller    100
## 15294 1996                            Action|Adventure|Sci-Fi|Thriller    100
## 15295 1996                                       Action|Drama|Thriller    100
## 15299 1995                          Action|Comedy|Crime|Drama|Thriller    101
## 15300 1995                                      Action|Romance|Western    101
## 15301 1995                                      Action|Sci-Fi|Thriller    101
## 15302 1995                                               Horror|Sci-Fi    101
## 15304 1994                                       Action|Drama|Thriller    101
## 15306 1994                                               Action|Comedy    101
## 15307 1993                                                    Thriller    101
## 15308 1993                                                      Comedy    101
## 15312 1996                                                Comedy|Crime    101
## 15313 1988                                       Action|Crime|Thriller    101
## 15318 1979                                               Horror|Sci-Fi    101
## 15319 1984                                      Action|Sci-Fi|Thriller    101
## 15325 1998                        Action|Crime|Mystery|Sci-Fi|Thriller    101
## 15326 1987                                   Action|Comedy|Crime|Drama    101
## 15330 1992                                        Crime|Drama|Thriller    101
## 15331 1992                                                      Comedy    101
## 15334 1990                                               Comedy|Horror    101
## 15335 1984                                        Action|Comedy|Sci-Fi    101
## 15336 1999                                                      Comedy    101
## 15339 1987                                      Action|Sci-Fi|Thriller    101
## 15360 1995                                            Documentary|IMAX    102
## 15366 1996                               Action|Comedy|Horror|Thriller    102
## 15368 1996                                        Comedy|Drama|Romance    102
## 15382 1994                                                Drama|Horror    102
## 15384 1994                                                       Drama    102
## 15390 1994                              Children|Drama|Fantasy|Mystery    102
## 15391 1994                                                 Crime|Drama    102
## 15396 1993                                               Drama|Musical    102
## 15399 1994                               Drama|Horror|Romance|Thriller    102
## 15400 1993                                     Children|Comedy|Fantasy    102
## 15404 1993                                                    Thriller    102
## 15406 1993                                             Action|Thriller    102
## 15409 1992                                       Drama|Fantasy|Romance    102
## 15410 1993                                        Crime|Drama|Thriller    102
## 15411 1993                                                       Drama    102
## 15420 1993                                              Crime|Thriller    102
## 15425 1990                                     Adventure|Drama|Western    102
## 15438 1996                            Action|Adventure|Sci-Fi|Thriller    102
## 15439 1996                                      Comedy|Horror|Thriller    102
## 15441 1996                                               Drama|Romance    102
## 15481 1975                                  Adventure|Children|Fantasy    102
## 15491 1996                                                    Thriller    102
## 15502 1986                                                   Drama|War    102
## 15503 1991                                                       Drama    102
## 15527 1992                                              Comedy|Romance    102
## 15541 1983                                     Action|Adventure|Sci-Fi    102
## 15568 1989                                                       Drama    102
## 15586 1990                                                Comedy|Drama    102
## 15587 1985                                     Adventure|Comedy|Sci-Fi    102
## 15606 1989                                      Children|Drama|Fantasy    102
## 15608 1989                                              Comedy|Romance    102
## 15609 1992                               Action|Horror|Sci-Fi|Thriller    102
## 15611 1983                                                      Horror    102
## 15614 1992                             Fantasy|Horror|Romance|Thriller    102
## 15617 1992                                             Horror|Thriller    102
## 15619 1982                                        Drama|Fantasy|Horror    102
## 15624 1996                                                       Drama    102
## 15628 1992                                                Action|Crime    102
## 15632 1983                                               Action|Horror    102
## 15633 1996                                               Drama|Romance    102
## 15645 1997                                                Drama|Sci-Fi    102
## 15646 1997                                                Comedy|Drama    102
## 15647 1990                                   Action|Adventure|Thriller    102
## 15650 1997                                     Horror|Mystery|Thriller    102
## 15656 1997                                               Drama|Romance    102
## 15666 1998                                                 Documentary    102
## 15668 1998                                      Adventure|Comedy|Drama    102
## 15669 1998                                        Comedy|Drama|Romance    102
## 15670 1998                                        Comedy|Drama|Romance    102
## 15671 1998                                              Comedy|Romance    102
## 15692 1989                                                       Drama    102
## 15702 1990                                                      Horror    102
## 15703 1987                                   Action|Comedy|Crime|Drama    102
## 15704 1989                                   Action|Comedy|Crime|Drama    102
## 15705 1984                                               Comedy|Horror    102
## 15712 1990                                Crime|Drama|Mystery|Thriller    102
## 15713 1959                                  Adventure|Children|Fantasy    102
## 15731 1982                                     Action|Adventure|Sci-Fi    102
## 15732 1998                                             Horror|Thriller    102
## 15734 1982                                       Comedy|Crime|Thriller    102
## 15735 1991                                                 Crime|Drama    102
## 15737 1983                                             Horror|Thriller    102
## 15744 1982                                           Adventure|Fantasy    102
## 15745 1984                                              Comedy|Romance    102
## 15746 1986                                        Comedy|Drama|Romance    102
## 15747 1985                                               Drama|Romance    102
## 15752 1988                                    Action|Adventure|Fantasy    102
## 15759 1980                                                       Drama    102
## 15760 1987                                        Comedy|Drama|Romance    102
## 15770 1986                                                       Drama    102
## 15773 1998                                        Comedy|Drama|Fantasy    102
## 15777 1986                                                       Drama    102
## 15779 1983                                                Comedy|Drama    102
## 15784 1976                   Adventure|Fantasy|Romance|Sci-Fi|Thriller    102
## 15788 1984                                                       Drama    102
## 15789 1984                             Action|Adventure|Comedy|Romance    102
## 15790 1985                                               Comedy|Sci-Fi    102
## 15791 1984                                                       Drama    102
## 15792 1989                                                      Comedy    102
## 15794 1986                                               Drama|Fantasy    102
## 15796 1986                                Drama|Horror|Sci-Fi|Thriller    102
## 15798 1983                                                      Horror    102
## 15802 1999                                                       Drama    102
## 15803 1999                                                      Horror    102
## 15805 1990                                                Action|Crime    102
## 15812 1999                                       Drama|Sci-Fi|Thriller    102
## 15815 1999                                                       Drama    102
## 15816 1999                                       Drama|Horror|Thriller    102
## 15819 1989                                       Comedy|Fantasy|Sci-Fi    102
## 15840 1988                                Comedy|Drama|Fantasy|Romance    102
## 15847 1984                                         Documentary|Musical    102
## 15848 1964                                    Adventure|Comedy|Musical    102
## 15851 1981                                           Adventure|Fantasy    102
## 15854 1983                                     Horror|Mystery|Thriller    102
## 15875 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    102
## 15885 1983                                                      Comedy    102
## 15886 1991                                        Comedy|Drama|Musical    102
## 15892 1988                                                Comedy|Drama    102
## 15901 1990                                          Comedy|Crime|Drama    102
## 15904 1999                                                 Crime|Drama    102
## 15908 1985                                        Crime|Drama|Thriller    102
## 15909 1999                                      Drama|Mystery|Thriller    102
## 15910 1999                                                       Drama    102
## 15921 1985                                               Drama|Mystery    102
## 15922 1992                                                      Comedy    102
## 15924 1992                                Crime|Drama|Mystery|Thriller    102
## 15928 2000                              Comedy|Horror|Mystery|Thriller    102
## 15929 2000                                             Adventure|Drama    102
## 15930 2000                                                Comedy|Crime    102
## 15932 1984                                                Comedy|Drama    102
## 15933 2000                                                Comedy|Drama    102
## 15934 2000                                                      Comedy    102
## 15935 1999                                                 Documentary    102
## 15937 1984                                                   Drama|War    102
## 15939 2000                                                      Sci-Fi    102
## 15942 1988                                        Comedy|Drama|Romance    102
## 15946 1991                                      Drama|Mystery|Thriller    102
## 15948 2000                                                       Drama    102
## 15951 1978                                                      Comedy    102
## 15957 1984                                            Action|Drama|War    102
## 15958 1987                                            Comedy|Drama|War    102
## 15965 1987                                                       Drama    102
## 15968 2000                                                    Thriller    102
## 15973 2000                                                      Comedy    102
## 15976 1989                                                Comedy|Drama    102
## 15977 1991                                               Drama|Romance    102
## 15979 1999                                                      Comedy    102
## 15990 2000                                             Children|Comedy    102
## 15991 2000                                                Comedy|Drama    102
## 15995 1983                                                Comedy|Drama    102
## 16015 1987                                               Action|Sci-Fi    102
## 16019 1985                                     Action|Adventure|Sci-Fi    102
## 16020 1987                           Film-Noir|Horror|Mystery|Thriller    102
## 16021 1984                                             Horror|Thriller    102
## 16028 1986                             Action|Adventure|Comedy|Fantasy    102
## 16035 1995                                                      Action    103
## 16036 1995                                               Horror|Sci-Fi    103
## 16038 1994                                    Action|Adventure|Fantasy    103
## 16039 1993                          Action|Crime|Drama|Sci-Fi|Thriller    103
## 16041 1991                                               Action|Sci-Fi    103
## 16042 1989                                       Action|Crime|Thriller    103
## 16046 1996                           Action|Adventure|Romance|Thriller    103
## 16049 1996                            Action|Adventure|Sci-Fi|Thriller    103
## 16051 1992                               Action|Horror|Sci-Fi|Thriller    103
## 16052 1986                                              Action|Romance    103
## 16053 1981                            Action|Adventure|Sci-Fi|Thriller    103
## 16057 1993                      Action|Adventure|Comedy|Fantasy|Horror    103
## 16059 1992                                       Comedy|Fantasy|Horror    103
## 16060 1987                                        Comedy|Horror|Sci-Fi    103
## 16062 1988                           Action|Adventure|Animation|Sci-Fi    103
## 16063 1992                               Action|Horror|Sci-Fi|Thriller    103
## 16064 1992                             Fantasy|Horror|Romance|Thriller    103
## 16065 1992                                       Action|Drama|Thriller    103
## 16066 1983                                               Action|Horror    103
## 16068 1997                                   Action|Adventure|Thriller    103
## 16069 1997                           Action|Adventure|Fantasy|Thriller    103
## 16070 1997                                        Action|Comedy|Sci-Fi    103
## 16071 1997                                                Drama|Sci-Fi    103
## 16072 1997                                                      Action    103
## 16073 1997                                      Drama|Mystery|Thriller    103
## 16074 1997                                       Drama|Sci-Fi|Thriller    103
## 16076 1997                                        Action|Horror|Sci-Fi    103
## 16077 1997                                               Drama|Romance    103
## 16078 1998                                Crime|Drama|Mystery|Thriller    103
## 16079 1984                                            Adventure|Sci-Fi    103
## 16082 1985                             Action|Adventure|Comedy|Romance    103
## 16083 1999                                               Action|Sci-Fi    103
## 16085 1999                                              Crime|Thriller    103
## 16086 1999                                Action|Comedy|Sci-Fi|Western    103
## 16088 1990                            Action|Adventure|Sci-Fi|Thriller    103
## 16090 1987                          Action|Crime|Drama|Sci-Fi|Thriller    103
## 16093 1987                                      Action|Sci-Fi|Thriller    103
## 16095 1990                                      Action|Sci-Fi|Thriller    103
## 16097 2000                                       Drama|Horror|Thriller    103
## 16098 1981                                     Fantasy|Horror|Thriller    103
## 16107 2002                                              Drama|Thriller    103
## 16108 1980                             Action|Adventure|Fantasy|Sci-Fi    103
## 16114 1995                          Action|Adventure|Animation|Fantasy    103
## 16116 1991                                               Action|Sci-Fi    103
## 16121 1985                                      Adventure|Drama|Sci-Fi    103
## 16123 1999                               Action|Drama|Romance|Thriller    103
## 16125 2004                                Action|Adventure|Sci-Fi|IMAX    103
## 16135 1980                                     Action|Adventure|Sci-Fi    104
## 16136 1997                                 Action|Crime|Drama|Thriller    104
## 16137 1999                                      Action|Sci-Fi|Thriller    104
## 16141 2001                          Action|Comedy|Crime|Drama|Thriller    104
## 16144 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    104
## 16148 2004                                  Action|Adventure|Drama|War    104
## 16149 2004                                      Action|Sci-Fi|Thriller    104
## 16152 2004                     Action|Adventure|Drama|Mystery|Thriller    104
## 16153 2003                                            Drama|Sci-Fi|War    104
## 16155 2006                                       Action|Fantasy|Horror    104
## 16160 2007                             Action|Adventure|Comedy|Fantasy    104
## 16162 2008                             Action|Adventure|Fantasy|Sci-Fi    104
## 16168 2009                              Action|Fantasy|Horror|Thriller    104
## 16171 2009                                      Horror|Sci-Fi|Thriller    104
## 16180 2010                                Action|Adventure|Sci-Fi|IMAX    104
## 16184 2011                        Action|Adventure|Sci-Fi|Thriller|War    104
## 16189 2012                                   Action|Comedy|Sci-Fi|IMAX    104
## 16191 2013                               Action|Adventure|Fantasy|IMAX    104
## 16195 2014                                       Action|Crime|Thriller    104
## 16201 2015                                  Comedy|Crime|Drama|Romance    104
## 16202 1995                                       Action|Crime|Thriller    105
## 16203 1995                                   Action|Adventure|Thriller    105
## 16204 1995                                        Comedy|Drama|Romance    105
## 16206 1995                                                      Comedy    105
## 16207 1995                                       Comedy|Crime|Thriller    105
## 16208 1995                         Crime|Drama|Horror|Mystery|Thriller    105
## 16211 1995                                                 Crime|Drama    105
## 16215 1996                                   Action|Adventure|Thriller    105
## 16216 1996                                                      Comedy    105
## 16217 1995                                               Drama|Romance    105
## 16218 1995                                            Action|Drama|War    105
## 16220 1995                                        Adventure|Drama|IMAX    105
## 16221 1995                                    Action|Drama|Romance|War    105
## 16222 1995                               Action|Adventure|Comedy|Crime    105
## 16224 1995                                       Action|Crime|Thriller    105
## 16225 1995                                        Action|Drama|Romance    105
## 16226 1995                                         Action|Crime|Sci-Fi    105
## 16227 1995                                               Horror|Sci-Fi    105
## 16229 1995                                     Action|Adventure|Sci-Fi    105
## 16230 1994                                                Drama|Horror    105
## 16231 1977                                     Action|Adventure|Sci-Fi    105
## 16232 1994                                                Comedy|Drama    105
## 16233 1994                                       Action|Crime|Thriller    105
## 16234 1994                                                 Crime|Drama    105
## 16235 1995                                Action|Drama|Sci-Fi|Thriller    105
## 16238 1994                                                       Drama    105
## 16239 1994                                                      Comedy    105
## 16240 1994                                     Action|Adventure|Sci-Fi    105
## 16241 1994                                                 Crime|Drama    105
## 16242 1995                                              Comedy|Romance    105
## 16243 1994                                                      Comedy    105
## 16244 1994                                                      Comedy    105
## 16245 1994                                 Action|Crime|Drama|Thriller    105
## 16246 1994                                    Comedy|Drama|Romance|War    105
## 16248 1994             Adventure|Animation|Children|Drama|Musical|IMAX    105
## 16249 1994                                 Action|Comedy|Crime|Fantasy    105
## 16250 1994                                    Adventure|Comedy|Western    105
## 16251 1994                                               Action|Comedy    105
## 16252 1994                                     Action|Romance|Thriller    105
## 16253 1994                    Action|Adventure|Comedy|Romance|Thriller    105
## 16254 1994                                               Drama|Romance    105
## 16256 1994                                                     Western    105
## 16257 1993                                     Children|Comedy|Fantasy    105
## 16258 1994                                Action|Comedy|Crime|Thriller    105
## 16259 1993                              Drama|Mystery|Romance|Thriller    105
## 16261 1994                                    Adventure|Comedy|Western    105
## 16262 1993                                   Action|Adventure|Thriller    105
## 16263 1993                                               Comedy|Sci-Fi    105
## 16264 1993                                              Comedy|Romance    105
## 16265 1993                                     Action|Adventure|Sci-Fi    105
## 16266 1993                                              Drama|Thriller    105
## 16267 1993                                                    Thriller    105
## 16268 1993                                               Drama|Western    105
## 16269 1994               Action|Adventure|Crime|Drama|Romance|Thriller    105
## 16270 1995                                              Comedy|Romance    105
## 16272 1993                                             Action|Thriller    105
## 16273 1993                            Action|Adventure|Sci-Fi|Thriller    105
## 16274 1993                                              Drama|Thriller    105
## 16275 1993                                              Comedy|Romance    105
## 16276 1993                                                Comedy|Drama    105
## 16277 1993                                                       Drama    105
## 16279 1992                                                Action|Drama    105
## 16281 1993                                        Comedy|Drama|Romance    105
## 16283 1993                                              Crime|Thriller    105
## 16284 1990                                             Children|Comedy    105
## 16285 1990                       Comedy|Drama|Fantasy|Romance|Thriller    105
## 16286 1991                                               Action|Sci-Fi    105
## 16287 1990                                     Adventure|Drama|Western    105
## 16290 1990                                              Comedy|Romance    105
## 16292 1996                           Action|Adventure|Mystery|Thriller    105
## 16294 1995                                 Action|Adventure|Comedy|War    105
## 16295 1996                                   Action|Adventure|Thriller    105
## 16296 1996                           Action|Adventure|Romance|Thriller    105
## 16297 1996                                                Comedy|Crime    105
## 16299 1996                            Action|Adventure|Sci-Fi|Thriller    105
## 16300 1996                                             Comedy|Thriller    105
## 16302 1996                               Comedy|Fantasy|Romance|Sci-Fi    105
## 16303 1996                                              Crime|Thriller    105
## 16304 1996                                        Comedy|Drama|Romance    105
## 16306 1996                                Crime|Drama|Romance|Thriller    105
## 16307 1942                                               Drama|Romance    105
## 16309 1996                                 Action|Crime|Drama|Thriller    105
## 16310 1993                                                      Comedy    105
## 16311 1991                                             Adventure|Drama    105
## 16314 1996                                      Comedy|Musical|Romance    105
## 16316 1988                                                Comedy|Crime    105
## 16317 1979                                                      Comedy    105
## 16318 1987                                       Drama|Musical|Romance    105
## 16322 1986                                              Action|Romance    105
## 16324 1989                            Action|Adventure|Sci-Fi|Thriller    105
## 16325 1981                            Action|Adventure|Sci-Fi|Thriller    105
## 16326 1975                                    Adventure|Comedy|Fantasy    105
## 16328 1989                                                Comedy|Drama    105
## 16330 1990                                       Crime|Drama|Film-Noir    105
## 16332 1989                                                       Drama    105
## 16334 1992                                                       Drama    105
## 16336 1980                                     Action|Adventure|Sci-Fi    105
## 16339 1986                              Action|Adventure|Horror|Sci-Fi    105
## 16342 1979                                            Action|Drama|War    105
## 16343 1983                                     Action|Adventure|Sci-Fi    105
## 16346 1988                                     Adventure|Drama|Romance    105
## 16347 1980                                       Action|Comedy|Musical    105
## 16350 1984                                                       Drama    105
## 16351 1984                                                 Crime|Drama    105
## 16353 1973                                                Comedy|Crime    105
## 16356 1989                                                       Drama    105
## 16361 1986                                             Adventure|Drama    105
## 16364 1985                                     Adventure|Comedy|Sci-Fi    105
## 16365 1986                                    Action|Adventure|Fantasy    105
## 16366 1990                                        Comedy|Drama|Romance    105
## 16368 1989                                            Action|Adventure    105
## 16369 1982                                               Drama|Musical    105
## 16371 1985                                                Comedy|Drama    105
## 16374 1992                               Action|Horror|Sci-Fi|Thriller    105
## 16375 1981                                      Comedy|Horror|Thriller    105
## 16376 1963                                             Horror|Thriller    105
## 16377 1982                                        Drama|Fantasy|Horror    105
## 16378 1996                                   Adventure|Children|Comedy    105
## 16379 1990                                   Action|Adventure|Thriller    105
## 16381 1988                                       Action|Comedy|Western    105
## 16382 1978                                      Comedy|Musical|Romance    105
## 16384 1996                                        Action|Comedy|Sci-Fi    105
## 16385 1996                                                Comedy|Drama    105
## 16386 1996                                               Drama|Romance    105
## 16387 1987                                                      Comedy    105
## 16388 1987                                                Comedy|Drama    105
## 16389 1996                              Comedy|Horror|Mystery|Thriller    105
## 16390 1997                                             Action|Thriller    105
## 16392 1997                                              Drama|Thriller    105
## 16393 1997                                   Action|Adventure|Thriller    105
## 16395 1997                                                      Comedy    105
## 16396 1997                              Action|Adventure|Comedy|Sci-Fi    105
## 16397 1997                            Action|Adventure|Sci-Fi|Thriller    105
## 16398 1997                                   Action|Adventure|Thriller    105
## 16399 1997                                 Action|Crime|Drama|Thriller    105
## 16401 1997                                                Action|Drama    105
## 16403 1997                                             Action|Thriller    105
## 16404 1990                                   Action|Adventure|Thriller    105
## 16408 1997                                                Comedy|Drama    105
## 16410 1998                                         Comedy|Drama|Sci-Fi    105
## 16411 1997                                               Drama|Romance    105
## 16412 1998                                               Drama|Romance    105
## 16416 1998                                      Action|Adventure|Drama    105
## 16417 1998                                                Comedy|Drama    105
## 16419 1998                                      Action|Sci-Fi|Thriller    105
## 16420 1998                                      Adventure|Comedy|Drama    105
## 16423 1998                              Action|Romance|Sci-Fi|Thriller    105
## 16425 1971                                       Action|Crime|Thriller    105
## 16427 1989                                                       Drama    105
## 16429 1985                                                Comedy|Drama    105
## 16431 1987                                   Action|Comedy|Crime|Drama    105
## 16432 1989                                   Action|Comedy|Crime|Drama    105
## 16433 1992                                   Action|Comedy|Crime|Drama    105
## 16434 1998                                       Action|Comedy|Romance    105
## 16435 1989                                     Adventure|Comedy|Sci-Fi    105
## 16437 1990                                Crime|Drama|Mystery|Thriller    105
## 16438 1998                                            Action|Drama|War    105
## 16439 1998                         Action|Crime|Drama|Mystery|Thriller    105
## 16440 1984                                    Action|Adventure|Fantasy    105
## 16441 1978                        Adventure|Animation|Children|Fantasy    105
## 16442 1991                                     Children|Comedy|Fantasy    105
## 16443 1998                               Action|Crime|Mystery|Thriller    105
## 16445 1998                                      Action|Horror|Thriller    105
## 16447 1987                                          Action|Crime|Drama    105
## 16450 1988                                                      Comedy    105
## 16451 1992                                        Crime|Drama|Thriller    105
## 16454 1998                 Adventure|Animation|Children|Comedy|Fantasy    105
## 16456 1983                                                Comedy|Drama    105
## 16457 1998                                             Action|Thriller    105
## 16458 1998                                           Animation|Musical    105
## 16459 1998                                                Comedy|Drama    105
## 16460 1998                                        Comedy|Drama|Romance    105
## 16461 1985                             Action|Adventure|Comedy|Romance    105
## 16462 1984                             Action|Adventure|Comedy|Romance    105
## 16463 1989                                                      Comedy    105
## 16464 1998                                            Action|Drama|War    105
## 16465 1986                                Drama|Horror|Sci-Fi|Thriller    105
## 16466 1986                                Crime|Drama|Mystery|Thriller    105
## 16467 1986                                              Comedy|Western    105
## 16469 1989                                                      Horror    105
## 16470 1968                                         Action|Drama|Sci-Fi    105
## 16471 1999                                                      Comedy    105
## 16474 1999                                      Action|Sci-Fi|Thriller    105
## 16476 1990                                                Action|Crime    105
## 16477 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    105
## 16478 1978                                     Action|Adventure|Sci-Fi    105
## 16479 1999                                              Comedy|Romance    105
## 16480 1999                                     Action|Adventure|Comedy    105
## 16481 1998                                                Action|Crime    105
## 16482 1990                                               Comedy|Horror    105
## 16483 1999                                Action|Comedy|Sci-Fi|Western    105
## 16484 1999                                       Drama|Horror|Thriller    105
## 16485 1999                                      Drama|Mystery|Thriller    105
## 16487 1989                                       Comedy|Fantasy|Sci-Fi    105
## 16488 1986                                       Comedy|Horror|Musical    105
## 16489 1999                                        Drama|Horror|Mystery    105
## 16490 1999                                              Action|Mystery    105
## 16491 1981                                             Horror|Thriller    105
## 16492 1997                              Comedy|Horror|Romance|Thriller    105
## 16493 1988                                Comedy|Drama|Fantasy|Romance    105
## 16494 1992                                           Adventure|Romance    105
## 16496 1979                                                       Drama    105
## 16497 1999                           Action|Adventure|Comedy|Drama|War    105
## 16501 1983                                               Drama|Romance    105
## 16502 1999                                 Action|Crime|Drama|Thriller    105
## 16504 1987                          Action|Crime|Drama|Sci-Fi|Thriller    105
## 16505 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    105
## 16508 1989                                                 Crime|Drama    105
## 16511 1987                                              Comedy|Romance    105
## 16512 1999                              Fantasy|Horror|Mystery|Romance    105
## 16513 1999                                   Action|Adventure|Thriller    105
## 16515 1999                                                Comedy|Drama    105
## 16516 1990                                          Comedy|Crime|Drama    105
## 16517 1990                                                       Drama    105
## 16518 1999                                                 Crime|Drama    105
## 16519 1999                                     Children|Comedy|Fantasy    105
## 16520 1969                                             Adventure|Drama    105
## 16521 1999                                      Drama|Mystery|Thriller    105
## 16522 1999                                                       Drama    105
## 16523 1973                                                 Crime|Drama    105
## 16525 1982                                        Comedy|Drama|Romance    105
## 16526 1992                                                       Drama    105
## 16527 1992                                                      Comedy    105
## 16528 1992                                                Comedy|Drama    105
## 16529 1992                                      Drama|Romance|Thriller    105
## 16530 1992                                                Comedy|Drama    105
## 16531 1992                                                       Drama    105
## 16532 2000                                             Adventure|Drama    105
## 16533 2000                                                      Comedy    105
## 16534 1999                                                 Crime|Drama    105
## 16535 1991                                      Drama|Mystery|Thriller    105
## 16536 2000                                                       Drama    105
## 16537 1991                                       Adventure|Crime|Drama    105
## 16540 1991                                               Drama|Romance    105
## 16541 1987                                            Comedy|Drama|War    105
## 16542 1993                                                      Comedy    105
## 16546 1991                                    Adventure|Comedy|Fantasy    105
## 16549 1972                                        Drama|Mystery|Sci-Fi    105
## 16550 1987                                      Action|Sci-Fi|Thriller    105
## 16551 1981                                              Crime|Thriller    105
## 16552 1980                                                      Comedy    105
## 16553 1992                                            Mystery|Thriller    105
## 16555 1983                               Action|Drama|Romance|Thriller    105
## 16557 1977                                                Drama|Horror    105
## 16561 1990                                      Horror|Sci-Fi|Thriller    105
## 16562 1990                                      Action|Sci-Fi|Thriller    105
## 16564 1981                            Action|Adventure|Sci-Fi|Thriller    105
## 16565 2000                                                Action|Crime    105
## 16567 1986                             Action|Adventure|Comedy|Fantasy    105
## 16568 2000                                       Action|Crime|Thriller    105
## 16569 2000                                            Adventure|Comedy    105
## 16570 2000                                            Action|Drama|War    105
## 16571 2000                                              Drama|Thriller    105
## 16572 1998                                                 Crime|Drama    105
## 16573 2000                                     Action|Adventure|Sci-Fi    105
## 16575 2000                                        Comedy|Drama|Romance    105
## 16576 2000                                      Horror|Sci-Fi|Thriller    105
## 16577 2000                                                      Comedy    105
## 16578 1970                                           Action|Comedy|War    105
## 16580 1988                                                      Horror    105
## 16581 2000                                       Action|Drama|Thriller    105
## 16582 2000                                                       Drama    105
## 16583 2000                                                       Drama    105
## 16584 2000                                        Action|Drama|Romance    105
## 16585 1987                                                      Comedy    105
## 16586 1987                                                       Drama    105
## 16588 2000                                      Adventure|Comedy|Crime    105
## 16590 1982                                               Drama|Romance    105
## 16592 1987                                Action|Comedy|Crime|Thriller    105
## 16593 2001                                             Horror|Thriller    105
## 16594 2001                                               Action|Comedy    105
## 16595 1991                                          Action|Crime|Drama    105
## 16598 2001                                                   Drama|War    105
## 16600 2001                                              Drama|Thriller    105
## 16603 2001                                        Comedy|Drama|Romance    105
## 16605 1983                                          Action|Crime|Drama    105
## 16606 1982                                        Comedy|Drama|Romance    105
## 16607 1991                                              Comedy|Western    105
## 16609 1982                                              Comedy|Romance    105
## 16610 2001                                            Action|Adventure    105
## 16612 2001                                                Action|Drama    105
## 16613 1988                                    Adventure|Comedy|Fantasy    105
## 16615 1988                                                       Drama    105
## 16616 1988                                               Drama|Romance    105
## 16617 1988                                                       Drama    105
## 16618 1988                                                      Comedy    105
## 16619 1989                                          Action|Crime|Drama    105
## 16620 2001                               Action|Adventure|Drama|Sci-Fi    105
## 16621 1989                                                Action|Drama    105
## 16622 1989                                Action|Comedy|Crime|Thriller    105
## 16624 1989                                                Comedy|Drama    105
## 16625 2001        Action|Animation|Comedy|Crime|Drama|Romance|Thriller    105
## 16627 2001                                        Crime|Drama|Thriller    105
## 16628 1980                                        Crime|Drama|Thriller    105
## 16629 1971                                       Action|Crime|Thriller    105
## 16630 2001                               Drama|Mystery|Sci-Fi|Thriller    105
## 16631 2001                                  Adventure|Children|Fantasy    105
## 16632 2001                                 Action|Crime|Drama|Thriller    105
## 16633 2001                                            Action|Drama|War    105
## 16634 2001                                              Crime|Thriller    105
## 16635 2001                                                Comedy|Drama    105
## 16637 2001                                               Drama|Romance    105
## 16638 1974                                                   Animation    105
## 16639 2001                                        Comedy|Drama|Mystery    105
## 16643 1980                                                 Documentary    105
## 16645 2002                                              Comedy|Romance    105
## 16646 1975                                            Action|Adventure    105
## 16647 1987                                                      Comedy    105
## 16648 1990                                              Comedy|Romance    105
## 16649 1990                                                Comedy|Crime    105
## 16650 2002                            Action|Adventure|Sci-Fi|Thriller    105
## 16653 2002                                              Drama|Thriller    105
## 16655 2002                   Adventure|Children|Comedy|Fantasy|Mystery    105
## 16656 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    105
## 16659 2002                                      Crime|Mystery|Thriller    105
## 16660 2002                                                 Documentary    105
## 16662 1981                                                   Drama|War    105
## 16663 2002                                           Adventure|Fantasy    105
## 16664 1981                                        Crime|Drama|Thriller    105
## 16665 2002                                               Drama|Romance    105
## 16666 2002                                                Comedy|Crime    105
## 16667 2002                                        Comedy|Drama|Romance    105
## 16669 2002                                                Comedy|Drama    105
## 16671 2002                                                 Crime|Drama    105
## 16673 2002                                                 Crime|Drama    105
## 16675 1982                                                      Comedy    105
## 16677 2003                                                      Comedy    105
## 16678 2002                                        Comedy|Drama|Romance    105
## 16679 1990                                        Comedy|Drama|Romance    105
## 16680 2002                                                 Crime|Drama    105
## 16681 2000                                        Comedy|Drama|Romance    105
## 16682 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    105
## 16683 2003                         Adventure|Animation|Children|Comedy    105
## 16684 2003                                                Action|Crime    105
## 16685 2002                                        Action|Horror|Sci-Fi    105
## 16686 2003                             Action|Adventure|Comedy|Fantasy    105
## 16687 2003                                             Action|Thriller    105
## 16690 1983                              Fantasy|Horror|Sci-Fi|Thriller    105
## 16691 1976                                              Drama|Thriller    105
## 16692 1991                                                 Crime|Drama    105
## 16694 2003                                         Crime|Drama|Mystery    105
## 16698 1992                                                 Crime|Drama    105
## 16699 1991                                                      Comedy    105
## 16700 1992                                             Action|Thriller    105
## 16702 1973                                               Drama|Musical    105
## 16703 1979                                                  Comedy|War    105
## 16705 2003                                        Comedy|Drama|Romance    105
## 16707 1990                                               Action|Comedy    105
## 16708 1972                                          Action|Crime|Drama    105
## 16710 1979                             Action|Adventure|Crime|Thriller    105
## 16711 1970                                         Documentary|Musical    105
## 16712 1973                                                 Crime|Drama    105
## 16713 1931                                                     Mystery    105
## 16715 2004                                               Comedy|Horror    105
## 16719 2005                                              Comedy|Romance    105
## 16721 2005                     Action|Adventure|Drama|Fantasy|Thriller    105
## 16724 2006                                                      Comedy    105
## 16725 2006                                        Crime|Drama|Thriller    105
## 16726 2007                                 Action|Comedy|Crime|Mystery    105
## 16728 1993                          Animation|Children|Fantasy|Musical    106
## 16734 1993                              Children|Comedy|Fantasy|Horror    106
## 16735 1986                                        Comedy|Drama|Romance    106
## 16737 1998                                             Horror|Thriller    106
## 16739 1999                                       Drama|Sci-Fi|Thriller    106
## 16740 1999                                        Drama|Horror|Mystery    106
## 16744 1991                                                      Comedy    106
## 16747 2002                                              Comedy|Romance    106
## 16750 2003                                             Children|Comedy    106
## 16752 2004         Adventure|Animation|Children|Comedy|Musical|Romance    106
## 16755 2004                  Action|Adventure|Animation|Children|Comedy    106
## 16756 2005                                                       Drama    106
## 16758 2006                                              Comedy|Romance    106
## 16760 2006                         Adventure|Animation|Children|Comedy    106
## 16761 2006                                Comedy|Drama|Fantasy|Romance    106
## 16766 2007                                        Comedy|Drama|Romance    106
## 16772 1994                                 Action|Crime|Drama|Thriller    107
## 16775 1999                                              Crime|Thriller    107
## 16776 1999                                Action|Comedy|Sci-Fi|Western    107
## 16777 1999                                              Comedy|Romance    107
## 16779 1999                                                    Thriller    107
## 16780 1999                                   Action|Adventure|Thriller    107
## 16781 1999                                                       Drama    107
## 16782 1999                                      Drama|Mystery|Thriller    107
## 16783 2000                                      Horror|Sci-Fi|Thriller    107
## 16784 2000                                              Drama|Thriller    107
## 16785 2000                                              Drama|Thriller    107
## 16786 2000                                               Comedy|Horror    107
## 16787 2001                                                 Crime|Drama    107
## 16788 2001                                          Action|Crime|Drama    107
## 16789 2001                                      Adventure|Drama|Sci-Fi    107
## 16790 2001                                              Comedy|Romance    107
## 16791 2001                                                      Comedy    107
## 16792 2001                                                      Comedy    107
## 16794 2002                                      Horror|Sci-Fi|Thriller    107
## 16799 2002                                        Action|Horror|Sci-Fi    107
## 16803 2015                                       Drama|Sci-Fi|Thriller    107
## 16805 1995                                              Children|Drama    108
## 16806 1995                                            Mystery|Thriller    108
## 16807 1995                                            Action|Drama|War    108
## 16808 1995                               Action|Adventure|Comedy|Crime    108
## 16809 1995                                          Drama|Thriller|War    108
## 16810 1995                                       Action|Crime|Thriller    108
## 16812 1994                                              Drama|Thriller    108
## 16813 1994                                            Adventure|Comedy    108
## 16814 1994                                                Drama|Horror    108
## 16815 1994                                       Action|Crime|Thriller    108
## 16816 1994                                 Comedy|Crime|Drama|Thriller    108
## 16818 1995                                              Comedy|Romance    108
## 16819 1994                                                      Comedy    108
## 16822 1994                                 Action|Comedy|Crime|Fantasy    108
## 16824 1994                    Action|Adventure|Comedy|Romance|Thriller    108
## 16825 1993                                   Action|Adventure|Thriller    108
## 16826 1993                                              Drama|Thriller    108
## 16831 1991                                               Action|Sci-Fi    108
## 16832 1990                                     Adventure|Drama|Western    108
## 16835 1995                                                 Crime|Drama    109
## 16839 1993                                     Action|Adventure|Sci-Fi    109
## 16852 1999                                     Action|Adventure|Comedy    109
## 16854 2000                                     Action|Adventure|Sci-Fi    109
## 16869 1995                                     Mystery|Sci-Fi|Thriller    110
## 16870 1995                                              Children|Drama    110
## 16873 1995                                            Mystery|Thriller    110
## 16874 1996                                              Drama|Thriller    110
## 16880 1995                               Action|Adventure|Comedy|Crime    110
## 16881 1995                             Action|Adventure|Mystery|Sci-Fi    110
## 16886 1995                                         Action|Crime|Sci-Fi    110
## 16900 1994                                               Drama|Romance    110
## 16902 1994                                                Drama|Horror    110
## 16906 1994                                   Drama|Romance|War|Western    110
## 16912 1995                                     Action|Thriller|Western    110
## 16915 1994                                                 Crime|Drama    110
## 16916 1995                                        Action|Comedy|Sci-Fi    110
## 16920 1994                                                Comedy|Drama    110
## 16925 1994             Adventure|Animation|Children|Drama|Musical|IMAX    110
## 16935 1993                                             Comedy|Thriller    110
## 16950 1993                          Action|Crime|Drama|Sci-Fi|Thriller    110
## 16953 1994                                         Comedy|Crime|Horror    110
## 16967 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    110
## 16972 1996                           Action|Adventure|Romance|Thriller    110
## 16978 1995                                                      Comedy    111
## 16979 1995                                              Comedy|Romance    111
## 16980 1995                                   Action|Adventure|Thriller    111
## 16982 1995                                                      Comedy    111
## 16984 1995                                                       Drama    111
## 16985 1995                                     Mystery|Sci-Fi|Thriller    111
## 16987 1995                                       Comedy|Drama|Thriller    111
## 16990 1995                                         Crime|Drama|Romance    111
## 16991 1996                                   Action|Adventure|Thriller    111
## 16992 1995                                               Drama|Romance    111
## 16994 1992                                              Comedy|Romance    111
## 16995 1996                                                      Comedy    111
## 16998 1995                                       Action|Crime|Thriller    111
## 16999 1995                                                      Comedy    111
## 17002 1994                                            Adventure|Comedy    111
## 17003 1994                                                Drama|Horror    111
## 17005 1995                                Action|Drama|Sci-Fi|Thriller    111
## 17007 1994                                                       Drama    111
## 17009 1995                                        Action|Comedy|Sci-Fi    111
## 17011 1994                                                      Comedy    111
## 17012 1994                                                Comedy|Drama    111
## 17013 1994                               Action|Crime|Fantasy|Thriller    111
## 17014 1994                                    Comedy|Drama|Romance|War    111
## 17015 1994             Adventure|Animation|Children|Drama|Musical|IMAX    111
## 17016 1994                                 Action|Comedy|Crime|Fantasy    111
## 17018 1994                                        Comedy|Drama|Romance    111
## 17019 1994                                     Action|Romance|Thriller    111
## 17022 1993                                              Drama|Thriller    111
## 17024 1993                            Action|Adventure|Sci-Fi|Thriller    111
## 17026 1993                                                       Drama    111
## 17028 1993                                        Comedy|Drama|Romance    111
## 17029 1982                                      Action|Sci-Fi|Thriller    111
## 17030 1993                                        Comedy|Drama|Romance    111
## 17031 1993                          Animation|Children|Fantasy|Musical    111
## 17032 1993                             Action|Adventure|Comedy|Romance    111
## 17033 1990                                             Children|Comedy    111
## 17034 1990                       Comedy|Drama|Fantasy|Romance|Thriller    111
## 17035 1992                 Adventure|Animation|Children|Comedy|Musical    111
## 17039 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    111
## 17040 1990                                              Comedy|Romance    111
## 17042 1996                                      Action|Crime|Drama|War    111
## 17043 1996                           Action|Adventure|Mystery|Thriller    111
## 17045 1996                                   Action|Adventure|Thriller    111
## 17047 1996                    Animation|Children|Drama|Musical|Romance    111
## 17049 1996                                               Drama|Romance    111
## 17051 1996                                                       Drama    111
## 17052 1996                                        Comedy|Drama|Romance    111
## 17058 1996                                       Action|Drama|Thriller    111
## 17060 1979                                                      Comedy    111
## 17061 1987                                       Drama|Musical|Romance    111
## 17064 1951                                                       Drama    111
## 17067 1996                                           Drama|Romance|War    111
## 17074 1973                                                Comedy|Crime    111
## 17076 1993                                      Comedy|Fantasy|Romance    111
## 17080 1989                                              Comedy|Romance    111
## 17081 1963                                             Horror|Thriller    111
## 17082 1996                                        Action|Comedy|Sci-Fi    111
## 17083 1996                                               Drama|Romance    111
## 17087 1997                              Action|Adventure|Comedy|Sci-Fi    111
## 17088 1997                                              Comedy|Romance    111
## 17089 1997                            Action|Adventure|Sci-Fi|Thriller    111
## 17091 1997                                                Drama|Sci-Fi    111
## 17092 1997                                              Comedy|Romance    111
## 17093 1997                                             Action|Thriller    111
## 17097 1997                                                Comedy|Drama    111
## 17098 1997                                       Drama|Sci-Fi|Thriller    111
## 17100 1998                                         Comedy|Drama|Sci-Fi    111
## 17103 1997                                               Drama|Romance    111
## 17104 1997                                                      Comedy    111
## 17105 1997                                                      Comedy    111
## 17107 1997                                        Comedy|Drama|Romance    111
## 17109 1997                         Comedy|Crime|Drama|Mystery|Thriller    111
## 17110 1998                                                 Crime|Drama    111
## 17111 1998                                                      Comedy    111
## 17112 1998                                        Comedy|Drama|Romance    111
## 17113 1998                         Comedy|Crime|Drama|Romance|Thriller    111
## 17114 1998                              Action|Romance|Sci-Fi|Thriller    111
## 17115 1998                                       Drama|Sci-Fi|Thriller    111
## 17116 1998                                              Comedy|Romance    111
## 17117 1952                                                       Drama    111
## 17118 1988                                                       Drama    111
## 17121 1977                                     Children|Comedy|Fantasy    111
## 17123 1986                                   Adventure|Children|Sci-Fi    111
## 17124 1998                                     Children|Comedy|Romance    111
## 17125 1989                   Animation|Children|Comedy|Musical|Romance    111
## 17127 1993                                                   Drama|War    111
## 17128 1984                                    Action|Adventure|Fantasy    111
## 17129 1998                                        Comedy|Drama|Romance    111
## 17131 1985                                       Comedy|Fantasy|Sci-Fi    111
## 17132 1998                                            Action|Adventure    111
## 17135 1992                                                Comedy|Drama    111
## 17136 1998                                        Comedy|Drama|Fantasy    111
## 17139 1986                                                Comedy|Crime    111
## 17140 1998                                                Comedy|Drama    111
## 17142 1998                                                       Drama    111
## 17143 1999                                                Comedy|Drama    111
## 17144 1986                                            Adventure|Comedy    111
## 17148 1999                                              Comedy|Romance    111
## 17152 1997                               Drama|Romance|Sci-Fi|Thriller    111
## 17155 1999                                              Crime|Thriller    111
## 17156 1990                                                Action|Crime    111
## 17157 1999                                     Action|Adventure|Sci-Fi    111
## 17159 1999                                              Comedy|Romance    111
## 17160 1999                                     Action|Adventure|Comedy    111
## 17162 1999                                              Comedy|Romance    111
## 17163 1999                                      Drama|Mystery|Thriller    111
## 17165 1999                                       Action|Comedy|Fantasy    111
## 17166 1999                                                      Comedy    111
## 17171 1975                                                     Musical    111
## 17172 1999                           Action|Adventure|Comedy|Drama|War    111
## 17175 1992                                             Children|Comedy    111
## 17177 1999                                        Comedy|Drama|Fantasy    111
## 17178 1999                                              Comedy|Romance    111
## 17184 1999                 Adventure|Animation|Children|Comedy|Fantasy    111
## 17185 1999                                                       Drama    111
## 17186 1999                                                       Drama    111
## 17187 1982                                        Comedy|Drama|Romance    111
## 17188 1992                                                Comedy|Crime    111
## 17189 1992                                                       Drama    111
## 17193 1992                                      Drama|Romance|Thriller    111
## 17194 1992                                        Comedy|Drama|Romance    111
## 17196 2000                              Comedy|Horror|Mystery|Thriller    111
## 17197 2000                                        Crime|Drama|Thriller    111
## 17198 2000                                                Comedy|Drama    111
## 17201 1991                                       Adventure|Crime|Drama    111
## 17203 1987                                            Comedy|Drama|War    111
## 17205 2000                                        Comedy|Drama|Romance    111
## 17206 1989                                                Comedy|Drama    111
## 17207 2000                                                       Drama    111
## 17208 2000                                      Action|Adventure|Drama    111
## 17209 1985                                            Adventure|Comedy    111
## 17210 1987                                               Action|Sci-Fi    111
## 17211 1991                                                      Comedy    111
## 17212 2000                                            Action|Drama|War    111
## 17215 2000                                        Comedy|Drama|Romance    111
## 17216 1993                                                    Thriller    111
## 17217 2000                                                      Comedy    111
## 17219 2000                         Comedy|Crime|Drama|Romance|Thriller    111
## 17220 2000                                                       Drama    111
## 17221 2000                                                      Comedy    111
## 17224 2000                                                       Drama    111
## 17225 2000                                                      Comedy    111
## 17226 2000                                                Drama|Sci-Fi    111
## 17229 2000                                                       Drama    111
## 17232 2001                                        Crime|Drama|Thriller    111
## 17233 1987                              Action|Adventure|Comedy|Sci-Fi    111
## 17234 1987                                              Comedy|Fantasy    111
## 17235 1987                                              Comedy|Romance    111
## 17240 2001                                        Comedy|Crime|Romance    111
## 17243 2001                                       Action|Comedy|Romance    111
## 17244 2001                                                 Documentary    111
## 17246 2001                                    Action|Drama|Romance|War    111
## 17247 1991                                              Comedy|Western    111
## 17249 2001                                          Action|Crime|Drama    111
## 17250 1991                                       Action|Crime|Thriller    111
## 17252 2001                                            Action|Adventure    111
## 17254 1986                                               Comedy|Sci-Fi    111
## 17258 2001                                     Children|Comedy|Romance    111
## 17259 2001                                            Adventure|Comedy    111
## 17260 2001                                        Comedy|Drama|Musical    111
## 17261 2001                                        Crime|Drama|Thriller    111
## 17263 2001                                              Comedy|Romance    111
## 17264 2001                                        Comedy|Crime|Romance    111
## 17266 1960                                                Comedy|Crime    111
## 17269 2001                             Mystery|Romance|Sci-Fi|Thriller    111
## 17271 1991                             Adventure|Comedy|Fantasy|Sci-Fi    111
## 17272 2001                                              Comedy|Romance    111
## 17276 2002                                                      Comedy    111
## 17277 2002                                                      Comedy    111
## 17278 1987                                                      Comedy    111
## 17281 2002                                     Action|Mystery|Thriller    111
## 17282 1990                                               Action|Comedy    111
## 17283 2002                                                      Comedy    111
## 17289 2002                                           Adventure|Fantasy    111
## 17290 2002                                        Comedy|Drama|Romance    111
## 17291 2002                                        Comedy|Drama|Romance    111
## 17293 2002                                              Comedy|Romance    111
## 17294 1990                                             Action|Thriller    111
## 17295 2002                                  Comedy|Crime|Drama|Musical    111
## 17299 2003                         Adventure|Animation|Children|Comedy    111
## 17303 2003                                     Action|Adventure|Sci-Fi    111
## 17304 1983                                              Comedy|Romance    111
## 17305 1985                                               Comedy|Horror    111
## 17307 1992                                                Comedy|Drama    111
## 17310 1991                                              Comedy|Romance    111
## 17312 2004                                              Comedy|Romance    111
## 17318 1989                                              Comedy|Romance    111
## 17321 1995                                       Action|Crime|Thriller    112
## 17322 1995                                                      Comedy    112
## 17323 1995                                     Mystery|Sci-Fi|Thriller    112
## 17326 1996                                   Action|Adventure|Thriller    112
## 17330 1996                           Action|Adventure|Mystery|Thriller    112
## 17333 1996                           Action|Adventure|Romance|Thriller    112
## 17341 1995                                        Comedy|Drama|Romance    113
## 17346 1995                                   Action|Adventure|Thriller    113
## 17369 1995                               Action|Adventure|Comedy|Crime    114
## 17371 1995                                       Action|Crime|Thriller    114
## 17374 1994                                                Drama|Horror    114
## 17375 1995                                                      Comedy    114
## 17376 1994                                       Action|Crime|Thriller    114
## 17389 1989                                       Action|Crime|Thriller    114
## 17390 1991                                       Crime|Horror|Thriller    114
## 17395 1995                                       Comedy|Drama|Thriller    115
## 17396 1995                             Action|Adventure|Mystery|Sci-Fi    115
## 17399 1994                                                      Comedy    115
## 17400 1993                                           Action|Comedy|War    115
## 17403 1993                                     Comedy|Romance|Thriller    115
## 17405 1996                                             Comedy|Thriller    115
## 17407 1992                                      Crime|Mystery|Thriller    115
## 17415 1997                                        Comedy|Crime|Romance    115
## 17416 1997                                        Comedy|Drama|Romance    115
## 17419 1998                                              Comedy|Romance    115
## 17420 1989                                   Action|Comedy|Crime|Drama    115
## 17429 2000                                   Animation|Children|Comedy    115
## 17430 2000                                                       Drama    115
## 17434 1995                               Action|Adventure|Comedy|Crime    116
## 17441 1994                                 Action|Comedy|Crime|Fantasy    116
## 17442 1993                                   Action|Adventure|Thriller    116
## 17443 1993                            Action|Adventure|Sci-Fi|Thriller    116
## 17444 1991                                       Crime|Horror|Thriller    116
## 17449 1999                                               Drama|Romance    116
## 17450 1999                           Action|Adventure|Comedy|Drama|War    116
## 17451 1999                                 Action|Crime|Drama|Thriller    116
## 17458 1995                                               Drama|Romance    117
## 17462 1993                                                   Drama|War    117
## 17465 1989                                                       Drama    117
## 17466 1992                                              Comedy|Romance    117
## 17467 1971                                        Comedy|Drama|Romance    117
## 17470 1984                                             Horror|Thriller    117
## 17473 1998                                     Action|Adventure|Sci-Fi    117
## 17475 1981                                                       Drama    117
## 17477 1988                                                       Drama    117
## 17480 1998                                               Drama|Mystery    117
## 17481 1999                                             Horror|Thriller    117
## 17483 1999                                              Drama|Thriller    117
## 17484 1991                                                Action|Drama    117
## 17486 1973                                                Comedy|Drama    117
## 17487 1976                                                Comedy|Drama    117
## 17496 2005                                                       Drama    117
## 17503 2008                                                 Crime|Drama    117
## 17504 2008                                                       Drama    117
## 17519 1994                                                 Crime|Drama    118
## 17531 1990                                              Comedy|Romance    118
## 17533 1968                                     Adventure|Comedy|Sci-Fi    118
## 17547 1935                                      Drama|Mystery|Thriller    118
## 17550 1954                                      Crime|Mystery|Thriller    118
## 17553 1981                            Action|Adventure|Sci-Fi|Thriller    118
## 17558 1983                                     Action|Adventure|Sci-Fi    118
## 17573 1944                                     Comedy|Mystery|Thriller    118
## 17579 1979                                            Adventure|Sci-Fi    118
## 17582 1986                                     Adventure|Comedy|Sci-Fi    118
## 17584 1996                              Comedy|Horror|Mystery|Thriller    118
## 17585 1997                              Action|Adventure|Comedy|Sci-Fi    118
## 17592 1997                                       Drama|Sci-Fi|Thriller    118
## 17594 1997                                               Drama|Romance    118
## 17595 1997                                        Action|Horror|Sci-Fi    118
## 17597 1998                         Adventure|Film-Noir|Sci-Fi|Thriller    118
## 17607 1990                             Adventure|Comedy|Sci-Fi|Western    118
## 17608 1984                                            Adventure|Sci-Fi    118
## 17610 1979                                             Children|Sci-Fi    118
## 17615 1984                                                Drama|Sci-Fi    118
## 17616 1983                                                    Thriller    118
## 17617 1982                          Adventure|Animation|Children|Drama    118
## 17618 1968                                       Drama|Horror|Thriller    118
## 17629 1975                                     Mystery|Sci-Fi|Thriller    118
## 17633 1998                                 Action|Drama|Romance|Sci-Fi    118
## 17635 1998                                                       Drama    118
## 17636 1986                                     Adventure|Comedy|Sci-Fi    118
## 17638 1976                                     Action|Adventure|Sci-Fi    118
## 17640 1971                                               Action|Sci-Fi    118
## 17641 1999                                      Action|Sci-Fi|Thriller    118
## 17642 1984                                        Comedy|Horror|Sci-Fi    118
## 17643 1999                                     Action|Adventure|Sci-Fi    118
## 17645 1980                                               Action|Sci-Fi    118
## 17646 1982                                               Horror|Sci-Fi    118
## 17648 1999                               Action|Horror|Sci-Fi|Thriller    118
## 17658 1987                                               Comedy|Sci-Fi    118
## 17678 2000                                                Action|Crime    118
## 17680 1981                                           Animation|Musical    118
## 17683 1978                                                      Horror    118
## 17684 1981                                                       Drama    118
## 17686 1974                                                       Drama    118
## 17687 1986                             Action|Adventure|Comedy|Fantasy    118
## 17690 1977                                                      Comedy    118
## 17695 1969                                                     Western    118
## 17696 1992                                              Drama|Thriller    118
## 17699 1975                                                      Comedy    118
## 17701 1976                                                Drama|Sci-Fi    118
## 17702 1995                 Adventure|Animation|Children|Comedy|Fantasy    119
## 17703 1995                                  Adventure|Children|Fantasy    119
## 17705 1995                                                 Crime|Drama    119
## 17707 1995                                                Drama|Sci-Fi    119
## 17709 1995                      Adventure|Drama|Fantasy|Mystery|Sci-Fi    119
## 17711 1995                                                 Crime|Drama    119
## 17715 1995                                  Adventure|Children|Fantasy    119
## 17718 1995                                 Action|Crime|Drama|Thriller    119
## 17719 1996                                   Action|Adventure|Thriller    119
## 17720 1996                              Adventure|Comedy|Crime|Romance    119
## 17723 1995                               Action|Adventure|Comedy|Crime    119
## 17726 1995                                    Action|Drama|Romance|War    119
## 17727 1995                               Action|Adventure|Comedy|Crime    119
## 17728 1995                             Action|Adventure|Mystery|Sci-Fi    119
## 17731 1995                                        Action|Drama|Romance    119
## 17732 1995                                         Action|Crime|Sci-Fi    119
## 17733 1995                                              Comedy|Romance    119
## 17734 1995                                               Horror|Sci-Fi    119
## 17735 1995                                                      Comedy    119
## 17736 1995                                     Action|Adventure|Sci-Fi    119
## 17738 1994                                             Action|Thriller    119
## 17740 1994                                                Drama|Horror    119
## 17746 1995                                Action|Drama|Sci-Fi|Thriller    119
## 17748 1994                                     Action|Adventure|Sci-Fi    119
## 17750 1994                                      Adventure|Drama|Sci-Fi    119
## 17752 1994                               Action|Crime|Fantasy|Thriller    119
## 17753 1994                                    Comedy|Drama|Romance|War    119
## 17754 1994             Adventure|Animation|Children|Drama|Musical|IMAX    119
## 17755 1994                                    Adventure|Comedy|Western    119
## 17756 1994                                               Action|Comedy    119
## 17758 1994                                     Action|Romance|Thriller    119
## 17761 1993                                               Comedy|Sci-Fi    119
## 17762 1994                                       Adventure|Documentary    119
## 17763 1993                                              Drama|Thriller    119
## 17764 1993                                                    Thriller    119
## 17767 1994                                        Crime|Drama|Thriller    119
## 17770 1993                                              Children|Drama    119
## 17775 1993                                        Action|Drama|Western    119
## 17776 1995                                                      Comedy    119
## 17788 1996                                        Action|Horror|Sci-Fi    119
## 17789 1996                           Action|Adventure|Mystery|Thriller    119
## 17790 1996                                    Action|Adventure|Fantasy    119
## 17791 1996                Adventure|Animation|Children|Fantasy|Musical    119
## 17793 1995                                 Action|Adventure|Comedy|War    119
## 17794 1996                                        Crime|Drama|Thriller    119
## 17798 1996                           Action|Adventure|Romance|Thriller    119
## 17802 1996                            Action|Adventure|Sci-Fi|Thriller    119
## 17807 1996                            Action|Adventure|Sci-Fi|Thriller    119
## 17809 1997                                                      Comedy    119
## 17810 1996                                             Sci-Fi|Thriller    119
## 17811 1996                                             Children|Comedy    119
## 17827 1968                                      Horror|Sci-Fi|Thriller    119
## 17830 1996                                 Action|Crime|Drama|Thriller    119
## 17831 1975                                  Adventure|Children|Fantasy    119
## 17832 1991                                             Adventure|Drama    119
## 17833 1964                             Children|Comedy|Fantasy|Musical    119
## 17834 1996                                 Comedy|Crime|Drama|Thriller    119
## 17837 1992                               Action|Horror|Sci-Fi|Thriller    119
## 17838 1996                                                Comedy|Drama    119
## 17839 1996                                            Action|Adventure    119
## 17840 1996                                               Drama|Romance    119
## 17843 1971                             Children|Comedy|Fantasy|Musical    119
## 17854 1996                                         Action|Comedy|Drama    119
## 17855 1989                            Action|Adventure|Sci-Fi|Thriller    119
## 17860 1990                                       Crime|Drama|Film-Noir    119
## 17861 1996                                           Drama|Romance|War    119
## 17862 1990                                                 Documentary    119
## 17877 1979                                               Horror|Sci-Fi    119
## 17887 1957                                                       Drama    119
## 17899 1993                                      Comedy|Fantasy|Romance    119
## 17913 1989                                            Action|Adventure    119
## 17921 1992                               Action|Horror|Sci-Fi|Thriller    119
## 17926 1992                                             Horror|Thriller    119
## 17928 1984                                             Horror|Thriller    119
## 17929 1976                                     Horror|Mystery|Thriller    119
## 17930 1996                            Action|Adventure|Sci-Fi|Thriller    119
## 17933 1991                                       Action|Mystery|Sci-Fi    119
## 17934 1982                            Action|Adventure|Sci-Fi|Thriller    119
## 17935 1984                                     Action|Adventure|Sci-Fi    119
## 17936 1986                                     Adventure|Comedy|Sci-Fi    119
## 17937 1992                                                Action|Crime    119
## 17938 1988                                       Action|Comedy|Western    119
## 17941 1978                                             Horror|Thriller    119
## 17943 1996                                        Action|Comedy|Sci-Fi    119
## 17948 1997                                                      Comedy    119
## 17949 1997                                   Action|Adventure|Thriller    119
## 17952 1997                                     Action|Adventure|Comedy    119
## 17953 1997                                             Action|Thriller    119
## 17955 1997                            Action|Adventure|Sci-Fi|Thriller    119
## 17956 1997                                   Action|Adventure|Thriller    119
## 17957 1996                                               Drama|Romance    119
## 17958 1997                                     Action|Romance|Thriller    119
## 17959 1997                           Action|Adventure|Fantasy|Thriller    119
## 17961 1997                                              Comedy|Romance    119
## 17962 1997                                 Action|Crime|Drama|Thriller    119
## 17964 1997                                                Drama|Sci-Fi    119
## 17965 1997                                                Action|Drama    119
## 17966 1982                                    Action|Adventure|Fantasy    119
## 17967 1997                                             Children|Comedy    119
## 17968 1997                                 Action|Crime|Drama|Thriller    119
## 17969 1997                            Action|Adventure|Sci-Fi|Thriller    119
## 17971 1997                                      Horror|Sci-Fi|Thriller    119
## 17972 1997                                            Action|Adventure    119
## 17973 1997                                             Action|Thriller    119
## 17976 1997                                                       Drama    119
## 17978 1997                                         Adventure|Drama|War    119
## 17982 1997                                                Comedy|Drama    119
## 17983 1997                              Children|Comedy|Romance|Sci-Fi    119
## 17985 1981                                                  Comedy|War    119
## 17986 1997                                                   Drama|War    119
## 17988 1997                                               Action|Sci-Fi    119
## 17989 1993                                               Drama|Romance    119
## 17990 1998                                         Comedy|Drama|Sci-Fi    119
## 17991 1997                                             Action|Thriller    119
## 17992 1997                                       Comedy|Crime|Thriller    119
## 17993 1997                                        Action|Horror|Sci-Fi    119
## 17994 1997                                                       Drama    119
## 17995 1997                                     Children|Comedy|Fantasy    119
## 17998 1997                                             Children|Comedy    119
## 17999 1997                                               Drama|Romance    119
## 18000 1998                                               Drama|Romance    119
## 18001 1997                                        Crime|Drama|Thriller    119
## 18005 1998                                Crime|Drama|Fantasy|Thriller    119
## 18006 1998                                        Action|Horror|Sci-Fi    119
## 18007 1998                                       Action|Crime|Thriller    119
## 18008 1998                                       Action|Comedy|Musical    119
## 18009 1998                                              Comedy|Romance    119
## 18010 1998                                             Sci-Fi|Thriller    119
## 18013 1998                                       Action|Crime|Thriller    119
## 18014 1997                         Comedy|Crime|Drama|Mystery|Thriller    119
## 18015 1998                                      Action|Adventure|Drama    119
## 18016 1998                                                 Crime|Drama    119
## 18019 1997                                          Comedy|Documentary    119
## 18020 1998                                     Action|Adventure|Sci-Fi    119
## 18021 1998                                       Action|Drama|Thriller    119
## 18022 1997                                Crime|Drama|Mystery|Thriller    119
## 18023 1997                           Adventure|Children|Comedy|Fantasy    119
## 18024 1998                                              Drama|Thriller    119
## 18025 1998                                               Horror|Sci-Fi    119
## 18026 1998                                         Action|Comedy|Crime    119
## 18027 1998                                       Drama|Sci-Fi|Thriller    119
## 18028 1998                                      Action|Sci-Fi|Thriller    119
## 18030 1998                                      Adventure|Comedy|Drama    119
## 18032 1998                                    Adventure|Comedy|Romance    119
## 18033 1998                                                      Comedy    119
## 18035 1998                              Action|Romance|Sci-Fi|Thriller    119
## 18037 1998                              Animation|Children|Fantasy|War    119
## 18040 1959                                               Horror|Sci-Fi    119
## 18046 1976                                                       Drama    119
## 18047 1979                                                       Drama    119
## 18055 1986                                   Adventure|Fantasy|Musical    119
## 18059 1990                                                      Horror    119
## 18061 1989                                   Action|Comedy|Crime|Drama    119
## 18062 1992                                   Action|Comedy|Crime|Drama    119
## 18063 1985                    Action|Adventure|Children|Comedy|Fantasy    119
## 18066 1989                                     Adventure|Comedy|Sci-Fi    119
## 18067 1990                             Adventure|Comedy|Sci-Fi|Western    119
## 18068 1972                                      Action|Adventure|Drama    119
## 18070 1984                                            Adventure|Sci-Fi    119
## 18072 1992                                      Children|Comedy|Sci-Fi    119
## 18073 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    119
## 18080 1955                           Animation|Children|Comedy|Romance    119
## 18083 1991                                     Action|Adventure|Sci-Fi    119
## 18085 1984                                      Comedy|Fantasy|Romance    119
## 18088 1982                                     Action|Adventure|Sci-Fi    119
## 18091 1983                                                      Comedy    119
## 18093 1984                                    Action|Adventure|Fantasy    119
## 18094 1983                                                    Thriller    119
## 18095 1993                                                Drama|Horror    119
## 18096 1991                                     Children|Comedy|Fantasy    119
## 18098 1963                                               Comedy|Sci-Fi    119
## 18099 1978                  Adventure|Animation|Children|Drama|Fantasy    119
## 18100 1982                                           Adventure|Fantasy    119
## 18101 1985                                   Adventure|Fantasy|Romance    119
## 18102 1998                                                Comedy|Drama    119
## 18104 1984                                  Adventure|Children|Fantasy    119
## 18105 1998                                      Action|Horror|Thriller    119
## 18110 1980                                                       Drama    119
## 18112 1992                                              Comedy|Fantasy    119
## 18113 1988                                      Drama|Fantasy|Thriller    119
## 18116 1998                                             Horror|Thriller    119
## 18120 1998                             Adventure|Drama|Fantasy|Romance    119
## 18121 1992                                                      Comedy    119
## 18123 1998                                                      Comedy    119
## 18124 1986                                                       Drama    119
## 18131 1998                                     Horror|Mystery|Thriller    119
## 18132 1998                                                     Romance    119
## 18133 1975                                     Mystery|Sci-Fi|Thriller    119
## 18135 1998                                             Action|Thriller    119
## 18136 1998                         Adventure|Animation|Children|Comedy    119
## 18139 1962                                               Action|Sci-Fi    119
## 18141 1985                                        Comedy|Drama|Romance    119
## 18142 1985                                        Comedy|Crime|Mystery    119
## 18143 1985                                    Action|Adventure|Fantasy    119
## 18145 1998                                        Crime|Drama|Thriller    119
## 18147 1988                               Action|Adventure|Thriller|War    119
## 18148 1984                             Action|Adventure|Comedy|Romance    119
## 18150 1985                                                Action|Drama    119
## 18151 1990                                                Action|Drama    119
## 18152 1985          Action|Adventure|Children|Fantasy|Mystery|Thriller    119
## 18153 1984                                                       Drama    119
## 18154 1986                                      Action|Adventure|Drama    119
## 18155 1989                             Action|Adventure|Children|Drama    119
## 18156 1998                                                       Crime    119
## 18158 1958                                       Horror|Mystery|Sci-Fi    119
## 18159 1986                                Drama|Horror|Sci-Fi|Thriller    119
## 18163 1986                                              Comedy|Western    119
## 18164 1999                                               Comedy|Sci-Fi    119
## 18166 1974                             Action|Adventure|Drama|Thriller    119
## 18167 1973                              Action|Sci-Fi|Thriller|Western    119
## 18169 1999                                                      Comedy    119
## 18170 1998                                       Comedy|Crime|Thriller    119
## 18172 1999                                                      Comedy    119
## 18173 1999                                          Comedy|Crime|Drama    119
## 18174 1998                                                       Drama    119
## 18175 1999                                      Action|Sci-Fi|Thriller    119
## 18176 1990                                                Action|Crime    119
## 18177 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    119
## 18178 1999                                              Comedy|Fantasy    119
## 18179 1999                                     Action|Adventure|Sci-Fi    119
## 18185 1999                                       Drama|Sci-Fi|Thriller    119
## 18187 1999                                Crime|Drama|Mystery|Thriller    119
## 18188 1999                                    Animation|Comedy|Musical    119
## 18189 1999                                Action|Comedy|Sci-Fi|Western    119
## 18190 1999                                                    Thriller    119
## 18191 1999                                       Drama|Horror|Thriller    119
## 18192 1999                                             Horror|Thriller    119
## 18194 1999                                             Horror|Thriller    119
## 18196 1986                                    Adventure|Drama|Thriller    119
## 18201 2000                                                 Crime|Drama    119
## 18202 1999                                                      Comedy    119
## 18203 1978                                                      Comedy    119
## 18205 1988                                Comedy|Drama|Fantasy|Romance    119
## 18207 1999                                    Action|Adventure|Fantasy    119
## 18208 1999                                             Children|Comedy    119
## 18211 1964                                    Adventure|Comedy|Musical    119
## 18213 1981                                           Adventure|Fantasy    119
## 18220 1973                                                     Western    119
## 18229 1987                          Action|Crime|Drama|Sci-Fi|Thriller    119
## 18234 1971                                Action|Drama|Sci-Fi|Thriller    119
## 18237 1983                                                      Comedy    119
## 18242 1975                                        Comedy|Drama|Romance    119
## 18243 1992                                                       Drama    119
## 18244 1991                                                Action|Drama    119
## 18246 1999                      Action|Fantasy|Horror|Mystery|Thriller    119
## 18248 1999                                                Comedy|Drama    119
## 18249 1999                                                Comedy|Drama    119
## 18252 1999                             Animation|Children|Musical|IMAX    119
## 18253 1999                                                       Drama    119
## 18256 1999                                     Adventure|Comedy|Sci-Fi    119
## 18263 1993                                                       Drama    119
## 18265 1992                                                      Comedy    119
## 18266 1992                                                Comedy|Drama    119
## 18267 1992                                                Comedy|Drama    119
## 18271 2000                                                      Comedy    119
## 18274 2000                                                      Sci-Fi    119
## 18275 1999                             Fantasy|Horror|Mystery|Thriller    119
## 18276 1986                                               Drama|Romance    119
## 18278 1959                                                       Drama    119
## 18279 1987                                             Children|Comedy    119
## 18282 2000                                              Drama|Thriller    119
## 18287 1990                       Action|Children|Comedy|Fantasy|Sci-Fi    119
## 18288 1984                                            Action|Drama|War    119
## 18290 1993                                                      Comedy    119
## 18291 2000                                              Drama|Thriller    119
## 18298 1991                                    Adventure|Comedy|Fantasy    119
## 18299 1972                                                      Horror    119
## 18303 2000                               Crime|Horror|Mystery|Thriller    119
## 18305 2000                                               Action|Horror    119
## 18308 1988                                 Crime|Drama|Sci-Fi|Thriller    119
## 18313 2000                              Action|Adventure|Comedy|Sci-Fi    119
## 18314 1990                                               Action|Comedy    119
## 18316 1991                                                      Comedy    119
## 18317 2000                                    Action|Adventure|Fantasy    119
## 18318 2000                         Comedy|Crime|Drama|Romance|Thriller    119
## 18319 2000                                              Crime|Thriller    119
## 18323 1948                                               Comedy|Horror    119
## 18326 2000                                       Action|Drama|Thriller    119
## 18329 2000                                               Action|Comedy    119
## 18331 2000                                      Action|Sci-Fi|Thriller    119
## 18332 2000                                              Comedy|Romance    119
## 18333 1987                         Action|Crime|Drama|Thriller|Western    119
## 18334 1987                                                 Crime|Drama    119
## 18343 1995                 Adventure|Animation|Children|Comedy|Fantasy    120
## 18344 1995                                     Mystery|Sci-Fi|Thriller    120
## 18345 1995                                                 Crime|Drama    120
## 18346 1995                                            Mystery|Thriller    120
## 18349 1995                                       Action|Crime|Thriller    120
## 18350 1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller    120
## 18351 1994                                            Adventure|Comedy    120
## 18352 1995                                Action|Drama|Sci-Fi|Thriller    120
## 18353 1994                                 Comedy|Crime|Drama|Thriller    120
## 18355 1994             Adventure|Animation|Children|Drama|Musical|IMAX    120
## 18356 1994                                     Action|Romance|Thriller    120
## 18357 1994                    Action|Adventure|Comedy|Romance|Thriller    120
## 18358 1993                                              Drama|Thriller    120
## 18359 1993                                                    Thriller    120
## 18360 1993                            Action|Adventure|Sci-Fi|Thriller    120
## 18361 1993                                                Comedy|Drama    120
## 18362 1993                                        Comedy|Drama|Romance    120
## 18363 1990                       Comedy|Drama|Fantasy|Romance|Thriller    120
## 18365 1989                                       Action|Crime|Thriller    120
## 18367 1990                                              Comedy|Romance    120
## 18368 1996                                 Comedy|Crime|Drama|Thriller    120
## 18369 1996                           Action|Adventure|Mystery|Thriller    120
## 18370 1996                                   Action|Adventure|Thriller    120
## 18371 1996                           Action|Adventure|Romance|Thriller    120
## 18372 1996                            Action|Adventure|Sci-Fi|Thriller    120
## 18373 1958                              Drama|Mystery|Romance|Thriller    120
## 18376 1982                                       Children|Drama|Sci-Fi    120
## 18377 1981                                            Action|Adventure    120
## 18378 1979                                               Horror|Sci-Fi    120
## 18382 1989                                      Children|Drama|Fantasy    120
## 18383 1989                                              Comedy|Romance    120
## 18384 1991                                                    Thriller    120
## 18387 1978                                             Horror|Thriller    120
## 18388 1983                                               Action|Horror    120
## 18389 1996                                        Action|Comedy|Sci-Fi    120
## 18390 1996                                               Drama|Romance    120
## 18391 1997                                                Comedy|Drama    120
## 18392 1997                                     Action|Adventure|Comedy    120
## 18393 1997                                   Action|Adventure|Thriller    120
## 18394 1997                                 Action|Crime|Drama|Thriller    120
## 18396 1997                              Drama|Mystery|Romance|Thriller    120
## 18397 1997                                             Action|Thriller    120
## 18400 1997                                               Drama|Romance    120
## 18401 1998                         Adventure|Film-Noir|Sci-Fi|Thriller    120
## 18402 1998                                              Comedy|Romance    120
## 18406 1982                                             Horror|Thriller    120
## 18407 1973                                              Horror|Mystery    120
## 18408 1987                                   Action|Comedy|Crime|Drama    120
## 18409 1984                                               Comedy|Horror    120
## 18410 1973                               Drama|Mystery|Sci-Fi|Thriller    120
## 18411 1972                                      Action|Adventure|Drama    120
## 18416 1998                                        Comedy|Drama|Fantasy    120
## 18417 1985                                        Comedy|Crime|Mystery    120
## 18420 1985                                               Comedy|Sci-Fi    120
## 18422 1986                                            Adventure|Comedy    120
## 18423 1986                                                       Drama    120
## 18426 1978                                     Action|Adventure|Sci-Fi    120
## 18427 1990                                               Comedy|Horror    120
## 18431 1983                                                      Comedy    120
## 18433 1999                                               Drama|Romance    120
## 18437 1999                                 Action|Crime|Drama|Thriller    120
## 18438 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    120
## 18439 1999                                        Comedy|Drama|Fantasy    120
## 18440 1983                                                      Comedy    120
## 18441 1984                                                       Drama    120
## 18443 1985                                      Crime|Romance|Thriller    120
## 18445 1992                                                      Comedy    120
## 18446 1986                                               Drama|Romance    120
## 18447 1973                                                Comedy|Drama    120
## 18449 1987                                            Comedy|Drama|War    120
## 18450 2000                                        Comedy|Drama|Romance    120
## 18453 1977                                   Action|Adventure|Thriller    120
## 18454 1974                                              Comedy|Western    120
## 18455 2000                                     Action|Adventure|Sci-Fi    120
## 18456 1987                                                      Comedy    120
## 18457 1987                                                       Drama    120
## 18458 2000                                                       Drama    120
## 18460 1987                                          Comedy|Documentary    120
## 18461 1974                                                      Comedy    120
## 18463 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    120
## 18466 2001                                              Comedy|Romance    120
## 18467 1982                                   Action|Comedy|Crime|Drama    120
## 18468 1980                                                      Comedy    120
## 18472 1977                                        Comedy|Drama|Romance    120
## 18473 2003                                                      Comedy    120
## 18475 1976                                              Drama|Thriller    120
## 18476 2003                                       Action|Crime|Thriller    120
## 18479 2005                     Action|Crime|Film-Noir|Mystery|Thriller    120
## 18480 2006                                                      Comedy    120
## 18483 1995                                   Action|Adventure|Thriller    121
## 18491 1995                                               Drama|Romance    121
## 18493 1995                               Action|Adventure|Comedy|Crime    121
## 18494 1996                                                      Comedy    121
## 18496 1995                               Action|Adventure|Comedy|Crime    121
## 18499 1995                                       Action|Crime|Thriller    121
## 18501 1995                                              Comedy|Romance    121
## 18509 1994                                                Drama|Horror    121
## 18510 1994                                               Comedy|Sci-Fi    121
## 18521 1994                                     Action|Adventure|Sci-Fi    121
## 18524 1995                                              Comedy|Romance    121
## 18526 1994                                                      Comedy    121
## 18533 1993                                               Comedy|Sci-Fi    121
## 18536 1993                                              Drama|Thriller    121
## 18546 1993                                        Comedy|Drama|Romance    121
## 18548 1993                                        Action|Drama|Western    121
## 18549 1995                                                      Comedy    121
## 18550 1990                       Comedy|Drama|Fantasy|Romance|Thriller    121
## 18557 1990                                              Comedy|Romance    121
## 18558 1981                    Action|Adventure|Animation|Horror|Sci-Fi    121
## 18561 1995                 Adventure|Animation|Children|Comedy|Fantasy    122
## 18562 1995                                   Action|Adventure|Thriller    122
## 18563 1995                                               Drama|Romance    122
## 18564 1995                                               Drama|Romance    122
## 18566 1995                                        Adventure|Drama|IMAX    122
## 18567 1995                               Action|Adventure|Comedy|Crime    122
## 18568 1995                                          Drama|Thriller|War    122
## 18569 1995                                       Action|Crime|Thriller    122
## 18570 1995                                       Action|Crime|Thriller    122
## 18571 1995                                     Action|Adventure|Sci-Fi    122
## 18572 1994                                            Adventure|Comedy    122
## 18573 1994                                                Drama|Horror    122
## 18574 1994                                                       Drama    122
## 18575 1992                                       Drama|Fantasy|Romance    122
## 18577 1995                                Action|Drama|Sci-Fi|Thriller    122
## 18578 1994                                 Comedy|Crime|Drama|Thriller    122
## 18579 1994                                                       Drama    122
## 18582 1994                                      Adventure|Drama|Sci-Fi    122
## 18583 1995                                              Comedy|Romance    122
## 18584 1994                                                      Comedy    122
## 18585 1994                                                      Comedy    122
## 18586 1994                                 Action|Crime|Drama|Thriller    122
## 18587 1994                                    Comedy|Drama|Romance|War    122
## 18588 1994                    Action|Adventure|Comedy|Romance|Thriller    122
## 18589 1993                                   Action|Adventure|Thriller    122
## 18590 1995                                              Comedy|Romance    122
## 18592 1993                                                   Drama|War    122
## 18595 1992                 Adventure|Animation|Children|Comedy|Musical    122
## 18596 1990                                     Adventure|Drama|Western    122
## 18597 1989                                       Action|Crime|Thriller    122
## 18598 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    122
## 18599 1996                                               Drama|Romance    122
## 18600 1955                                                       Drama    122
## 18605 1968                                      Horror|Sci-Fi|Thriller    123
## 18609 1985                                        Comedy|Drama|Romance    123
## 18610 1984                                                Comedy|Crime    123
## 18613 1999                                       Drama|Sci-Fi|Thriller    123
## 18614 1990                                               Comedy|Horror    123
## 18615 1999                                                       Drama    123
## 18616 1999                                                    Thriller    123
## 18617 1999                                       Drama|Horror|Thriller    123
## 18621 1999                                             Horror|Thriller    123
## 18626 2000                              Comedy|Horror|Mystery|Thriller    123
## 18628 2000                                      Action|Adventure|Drama    123
## 18630 2000                                                    Thriller    123
## 18635 1995                                  Adventure|Children|Fantasy    124
## 18637 1995                                            Mystery|Thriller    124
## 18639 1994                                   Drama|Romance|War|Western    124
## 18641 1994                                 Comedy|Crime|Drama|Thriller    124
## 18642 1994                                                 Crime|Drama    124
## 18646 1982                                      Action|Sci-Fi|Thriller    124
## 18648 1991                                       Crime|Horror|Thriller    124
## 18649 1996                                       Action|Drama|Thriller    124
## 18655 1987                                                   Drama|War    124
## 18661 1988                                                       Drama    124
## 18662 1987                                   Action|Comedy|Crime|Drama    124
## 18667 1999                                     Action|Adventure|Comedy    124
## 18672 1970                                            Action|Drama|War    124
## 18676 2000                                     Action|Adventure|Sci-Fi    124
## 18677 2000                                        Action|Drama|Romance    124
## 18678 2000                                       Comedy|Crime|Thriller    124
## 18685 2001                                               Drama|Romance    124
## 18686 2002                         Adventure|Animation|Children|Comedy    124
## 18687 2002                                     Action|Mystery|Thriller    124
## 18688 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    124
## 18689 2002                                     Horror|Mystery|Thriller    124
## 18690 1981                                       Action|Drama|Thriller    124
## 18692 2002                                                 Crime|Drama    124
## 18693 2003                               Crime|Horror|Mystery|Thriller    124
## 18696 2003                                       Action|Crime|Thriller    124
## 18697 2003                                        Comedy|Drama|Romance    124
## 18698 2002                                      Action|Adventure|Drama    124
## 18701 2004                                Action|Drama|Horror|Thriller    124
## 18702 2004                                       Action|Drama|Thriller    124
## 18706 2004                                       Action|Crime|Thriller    124
## 18707 2004                                 Action|Crime|Drama|Thriller    124
## 18708 2004                                               Comedy|Horror    124
## 18709 2004                                     Horror|Mystery|Thriller    124
## 18711 2004                                                       Drama    124
## 18713 2004                                                 Crime|Drama    124
## 18714 2005                                     Action|Adventure|Sci-Fi    124
## 18715 2005                                     Action|Adventure|Sci-Fi    124
## 18716 2005                                                       Drama    124
## 18726 1995                                     Action|Adventure|Sci-Fi    125
## 18736 1994                                 Action|Comedy|Crime|Fantasy    125
## 18738 1993                                                    Thriller    125
## 18747 1990                                              Comedy|Romance    125
## 18751 1996                            Action|Adventure|Sci-Fi|Thriller    125
## 18759 1939                                           Drama|Romance|War    125
## 18762 1965                                             Musical|Romance    125
## 18777 1980                                       Action|Comedy|Musical    125
## 18782 1989                                                   Drama|War    125
## 18796 1997                                       Drama|Sci-Fi|Thriller    125
## 18801 1997                                        Crime|Drama|Thriller    125
## 18803 1998                                              Comedy|Romance    125
## 18807 1998                              Action|Romance|Sci-Fi|Thriller    125
## 18810 1989                                     Adventure|Comedy|Sci-Fi    125
## 18811 1990                             Adventure|Comedy|Sci-Fi|Western    125
## 18814 1998                         Adventure|Animation|Children|Comedy    125
## 18820 1999                                     Action|Adventure|Sci-Fi    125
## 18822 1999                                              Comedy|Romance    125
## 18832 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    125
## 18833 1987                                               Comedy|Sci-Fi    125
## 18836 1992                                                       Drama    125
## 18842 2000                                                Action|Crime    125
## 18843 2000                                   Animation|Children|Comedy    125
## 18844 2000                                              Drama|Thriller    125
## 18846 2000                                                      Comedy    125
## 18847 2000                                                Drama|Sci-Fi    125
## 18848 1987                                                      Comedy    125
## 18849 2000                                              Comedy|Romance    125
## 18850 2000                                                       Drama    125
## 18852 2000                                                Comedy|Crime    125
## 18857 2001                                            Action|Adventure    125
## 18861 2002                                                    Thriller    125
## 18864 2002                                Action|Adventure|Sci-Fi|IMAX    125
## 18865 2002                                        Action|Comedy|Sci-Fi    125
## 18866 2002                                                      Comedy    125
## 18868 2002                                           Adventure|Fantasy    125
## 18872 2003                             Action|Adventure|Comedy|Fantasy    125
## 18873 2003                                          Comedy|Crime|Drama    125
## 18875 2003                                              Comedy|Musical    125
## 18878 2003                                         Adventure|Drama|War    125
## 18880 1983                                       Drama|Sci-Fi|Thriller    125
## 18884 2004         Adventure|Animation|Children|Comedy|Musical|Romance    125
## 18887 2004                                 Action|Crime|Drama|Thriller    125
## 18892 2005                      Adventure|Children|Comedy|Fantasy|IMAX    125
## 18895 2005                                     Action|Adventure|Sci-Fi    125
## 18896 2005                             Action|Adventure|Comedy|Romance    125
## 18903 2006                                      Drama|Mystery|Thriller    125
## 18904 2006                                    Action|Adventure|Fantasy    125
## 18907 2006                               Drama|Fantasy|Mystery|Romance    125
## 18917 2008                                 Comedy|Crime|Drama|Thriller    125
## 18924 2009                                          Comedy|Crime|Drama    125
## 18926 2009                                      Action|Sci-Fi|Thriller    125
## 18930 1995                                  Adventure|Children|Fantasy    126
## 18931 1995                                   Action|Adventure|Thriller    126
## 18932 1995                                              Children|Drama    126
## 18933 1995                                              Comedy|Romance    126
## 18934 1995                    Animation|Children|Drama|Musical|Romance    126
## 18936 1996                                   Action|Adventure|Thriller    126
## 18939 1995                             Action|Adventure|Mystery|Sci-Fi    126
## 18941 1995                                       Action|Crime|Thriller    126
## 18942 1995                                              Comedy|Romance    126
## 18943 1995                                               Drama|Romance    126
## 18944 1995                                     Action|Adventure|Sci-Fi    126
## 18947 1994                                              Comedy|Romance    126
## 18948 1994                                               Comedy|Sci-Fi    126
## 18950 1994                                     Action|Adventure|Sci-Fi    126
## 18951 1994                                        Comedy|Drama|Fantasy    126
## 18953 1994                                      Adventure|Drama|Sci-Fi    126
## 18956 1994                                      Drama|Mystery|Thriller    126
## 18958 1994                                              Comedy|Romance    126
## 18959 1994                                  Adventure|Children|Romance    126
## 18966 1994                                    Adventure|Children|Drama    126
## 18967 1993                                               Comedy|Sci-Fi    126
## 18969 1993                                              Drama|Thriller    126
## 18970 1993                                    Adventure|Children|Drama    126
## 18973 1995                                              Comedy|Romance    126
## 18980 1993                                              Children|Drama    126
## 18985 1990                                     Adventure|Drama|Western    126
## 18988 1937                    Animation|Children|Drama|Fantasy|Musical    126
## 18991 1970                                          Animation|Children    126
## 18992 1996                           Action|Adventure|Romance|Thriller    126
## 18999 1994                                      Drama|Mystery|Thriller    127
## 19004 1994                                               Drama|Romance    127
## 19005 1994                                Action|Comedy|Crime|Thriller    127
## 19007 1993                            Action|Adventure|Sci-Fi|Thriller    127
## 19016 1995                                              Comedy|Romance    128
## 19017 1995                                        Comedy|Drama|Romance    128
## 19020 1995                                               Drama|Romance    128
## 19025 1995                                  Adventure|Children|Fantasy    128
## 19029 1995                                       Comedy|Horror|Romance    128
## 19031 1976                                        Crime|Drama|Thriller    128
## 19034 1995                               Action|Adventure|Comedy|Crime    128
## 19039 1995                                              Drama|Thriller    128
## 19040 1994                                              Drama|Thriller    128
## 19041 1995                           Animation|Children|Comedy|Romance    128
## 19042 1994                                                Drama|Horror    128
## 19044 1995                   Adventure|Children|Comedy|Fantasy|Romance    128
## 19046 1994                                         Drama|Horror|Sci-Fi    128
## 19047 1994                                              Comedy|Romance    128
## 19057 1994                                 Action|Comedy|Crime|Fantasy    128
## 19066 1993                                        Action|Drama|Mystery    128
## 19069 1993                             Action|Adventure|Comedy|Romance    128
## 19070 1994                 Action|Adventure|Animation|Children|Fantasy    128
## 19080 1996                               Drama|Fantasy|Horror|Thriller    128
## 19084 1996                                              Drama|Thriller    128
## 19088 1995                                             Horror|Thriller    128
## 19099 1996           Animation|Children|Comedy|Fantasy|Musical|Romance    128
## 19102 1990                                        Action|Drama|Romance    128
## 19103 1996                                           Drama|Romance|War    128
## 19104 1987                     Action|Adventure|Comedy|Fantasy|Romance    128
## 19106 1993                      Action|Adventure|Comedy|Fantasy|Horror    128
## 19107 1993                                      Comedy|Fantasy|Romance    128
## 19108 1940                          Animation|Children|Fantasy|Musical    128
## 19109 1992                               Action|Horror|Sci-Fi|Thriller    128
## 19112 1996                                        Action|Comedy|Sci-Fi    128
## 19116 1997                                        Comedy|Drama|Romance    128
## 19120 1997                                   Action|Adventure|Thriller    128
## 19123 1997                                              Comedy|Romance    128
## 19124 1997                            Action|Adventure|Sci-Fi|Thriller    128
## 19131 1997                                             Action|Thriller    128
## 19134 1997                            Crime|Film-Noir|Mystery|Thriller    128
## 19135 1997                                     Horror|Mystery|Thriller    128
## 19136 1997                                      Drama|Mystery|Thriller    128
## 19137 1997                                                Action|Drama    128
## 19139 1997                                             Action|Thriller    128
## 19141 1997                              Comedy|Horror|Mystery|Thriller    128
## 19143 1997                                                      Comedy    128
## 19145 1998                                         Action|Comedy|Crime    128
## 19146 1998                                       Drama|Sci-Fi|Thriller    128
## 19147 1997                                      Drama|Mystery|Thriller    128
## 19152 1998                                       Action|Comedy|Romance    128
## 19154 1998                                            Action|Drama|War    128
## 19166 1991                Adventure|Animation|Children|Musical|Western    128
## 19169 1998                                             Horror|Thriller    128
## 19175 1998                                              Comedy|Romance    128
## 19176 1998                                       Crime|Horror|Thriller    128
## 19179 1999                                             Action|Thriller    128
## 19181 1999                                                      Horror    128
## 19184 1999                                              Comedy|Romance    128
## 19192 1999                                Crime|Drama|Mystery|Thriller    128
## 19194 1999                                       Drama|Horror|Thriller    128
## 19195 1999                                             Horror|Thriller    128
## 19196 1999                               Action|Horror|Sci-Fi|Thriller    128
## 19204 1999                                               Drama|Romance    128
## 19205 1999                                              Comedy|Romance    128
## 19206 1999                                                    Thriller    128
## 19211 1999                             Animation|Children|Musical|IMAX    128
## 19212 1999                                      Drama|Mystery|Thriller    128
## 19214 1999                                                       Drama    128
## 19215 2000                                             Adventure|Drama    128
## 19216 2000                                        Crime|Drama|Thriller    128
## 19217 2000                                                Comedy|Drama    128
## 19218 1993                        Adventure|Animation|Children|Fantasy    128
## 19223 2000                               Crime|Horror|Mystery|Thriller    128
## 19226 2000                                         Action|Thriller|War    128
## 19227 1999                                               Drama|Romance    128
## 19230 2000                                Adventure|Animation|Children    128
## 19231 1954                                      Comedy|Musical|Romance    128
## 19232 1992                                                      Horror    128
## 19238 2000                                               Drama|Romance    128
## 19240 2000                                                       Drama    128
## 19241 2000                                                      Horror    128
## 19242 2000                                              Comedy|Romance    128
## 19243 2000                                               Action|Comedy    128
## 19249 2000                 Adventure|Animation|Children|Comedy|Fantasy    128
## 19258 2001                                             Horror|Thriller    128
## 19262 2001                                        Comedy|Drama|Romance    128
## 19268 2001                                            Action|Adventure    128
## 19270 2001                                               Drama|Romance    128
## 19271 2001                                                      Comedy    128
## 19273 2001                                              Comedy|Romance    128
## 19276 2001                                           Drama|Romance|War    128
## 19277 2001                                                       Drama    128
## 19278 2001                              Action|Adventure|Drama|Romance    128
## 19282 2001                               Crime|Horror|Mystery|Thriller    128
## 19288 2001                                                       Drama    128
## 19292 2001                                                       Drama    128
## 19293 2001                                                Comedy|Drama    128
## 19296 2001                                            Action|Drama|War    128
## 19297 2001                                        Comedy|Drama|Mystery    128
## 19306 2002                                              Comedy|Romance    128
## 19309 2002                            Action|Adventure|Sci-Fi|Thriller    128
## 19311 2002                         Action|Crime|Drama|Mystery|Thriller    128
## 19321 2002                                              Drama|Thriller    128
## 19323 1977                                        Comedy|Drama|Romance    128
## 19325 2002                                           Adventure|Fantasy    128
## 19326 2002                                        Comedy|Drama|Romance    128
## 19327 2002                                   Action|Adventure|Thriller    128
## 19329 2002                                                 Crime|Drama    128
## 19336 1978                   Adventure|Children|Comedy|Fantasy|Musical    128
## 19337 1995                                              Comedy|Romance    129
## 19339 1996                           Action|Adventure|Romance|Thriller    129
## 19340 1991                                             Adventure|Drama    129
## 19341 1990                              Crime|Drama|Film-Noir|Thriller    129
## 19343 1978                                               Comedy|Horror    129
## 19345 2000                                               Action|Sci-Fi    129
## 19348 2000                                              Comedy|Romance    129
## 19349 2000                                                      Comedy    129
## 19350 2000                                                Comedy|Crime    129
## 19352 2000                             Action|Adventure|Comedy|Western    129
## 19353 1983                                                      Comedy    129
## 19354 2000                                                Action|Crime    129
## 19355 2000                                       Action|Crime|Thriller    129
## 19356 2000                  Action|Adventure|Animation|Children|Sci-Fi    129
## 19358 2000                                            Adventure|Comedy    129
## 19361 2000                                               Comedy|Horror    129
## 19362 2000                                     Action|Adventure|Sci-Fi    129
## 19363 1995                 Adventure|Animation|Children|Comedy|Fantasy    130
## 19364 1995                                   Action|Adventure|Thriller    130
## 19365 1995                                                      Comedy    130
## 19366 1995                                       Comedy|Crime|Thriller    130
## 19367 1995                                              Children|Drama    130
## 19369 1995                    Animation|Children|Drama|Musical|Romance    130
## 19370 1995                                      Crime|Mystery|Thriller    130
## 19371 1996                                                      Comedy    130
## 19372 1995                                            Action|Drama|War    130
## 19373 1996                                                      Comedy    130
## 19375 1995                               Action|Adventure|Comedy|Crime    130
## 19376 1995                                       Action|Crime|Thriller    130
## 19377 1995                                         Action|Crime|Sci-Fi    130
## 19378 1995                                                       Drama    130
## 19379 1995                                                      Comedy    130
## 19380 1994                                                      Comedy    130
## 19381 1994                                            Adventure|Comedy    130
## 19382 1994                                                Comedy|Drama    130
## 19385 1994                                   Drama|Romance|War|Western    130
## 19386 1994                                                Comedy|Drama    130
## 19387 1994                                       Action|Crime|Thriller    130
## 19389 1994                                                       Drama    130
## 19390 1995                                     Action|Thriller|Western    130
## 19391 1994                                       Action|Drama|Thriller    130
## 19392 1994                                     Action|Adventure|Sci-Fi    130
## 19393 1994                                                 Crime|Drama    130
## 19394 1995                                                      Comedy    130
## 19396 1995                                              Comedy|Romance    130
## 19397 1994                                 Action|Crime|Drama|Thriller    130
## 19398 1994                               Action|Crime|Fantasy|Thriller    130
## 19399 1994                                    Comedy|Drama|Romance|War    130
## 19400 1994             Adventure|Animation|Children|Drama|Musical|IMAX    130
## 19401 1994                                 Action|Comedy|Crime|Fantasy    130
## 19402 1994                                    Adventure|Comedy|Western    130
## 19403 1994                                     Action|Romance|Thriller    130
## 19404 1994                    Action|Adventure|Comedy|Romance|Thriller    130
## 19405 1993                                     Children|Comedy|Fantasy    130
## 19406 1994                                             Action|Thriller    130
## 19407 1993                                     Action|Adventure|Sci-Fi    130
## 19408 1993                                              Drama|Thriller    130
## 19410 1993                                                       Drama    130
## 19411 1993                            Action|Adventure|Sci-Fi|Thriller    130
## 19413 1993                                                Comedy|Drama    130
## 19414 1993                                                       Drama    130
## 19417 1993                                     Comedy|Romance|Thriller    130
## 19418 1993                          Animation|Children|Fantasy|Musical    130
## 19420 1991                                               Action|Sci-Fi    130
## 19422 1989                                       Action|Crime|Thriller    130
## 19423 1991                                       Crime|Horror|Thriller    130
## 19425 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    130
## 19427 1990                                              Comedy|Romance    130
## 19428 1996                                 Comedy|Crime|Drama|Thriller    130
## 19429 1981                    Action|Adventure|Animation|Horror|Sci-Fi    130
## 19430 1996                           Action|Adventure|Mystery|Thriller    130
## 19431 1996                Adventure|Animation|Children|Fantasy|Musical    130
## 19432 1968                                     Adventure|Comedy|Sci-Fi    130
## 19434 1996                           Action|Adventure|Romance|Thriller    130
## 19436 1964                                                  Comedy|War    130
## 19437 1996                            Action|Adventure|Sci-Fi|Thriller    130
## 19438 1996                                                      Comedy    130
## 19441 1959                   Action|Adventure|Mystery|Romance|Thriller    130
## 19442 1964                                Comedy|Drama|Musical|Romance    130
## 19443 1939                          Adventure|Children|Fantasy|Musical    130
## 19450 1996                                                Comedy|Drama    130
## 19452 1988                                                Comedy|Crime    130
## 19453 1979                                                      Comedy    130
## 19456 1992                                      Crime|Mystery|Thriller    130
## 19457 1982                                       Children|Drama|Sci-Fi    130
## 19458 1986                                              Action|Romance    130
## 19459 1989                            Action|Adventure|Sci-Fi|Thriller    130
## 19463 1975                                                       Drama    130
## 19467 1985                                              Fantasy|Sci-Fi    130
## 19471 1971                                 Crime|Drama|Sci-Fi|Thriller    130
## 19474 1990                                                 Crime|Drama    130
## 19476 1993                      Action|Adventure|Comedy|Fantasy|Horror    130
## 19478 1987                                                   Drama|War    130
## 19481 1984                                                       Drama    130
## 19483 1990                                                Comedy|Drama    130
## 19485 1967                                        Comedy|Drama|Romance    130
## 19488 1986                                             Adventure|Drama    130
## 19494 1986                                    Action|Adventure|Fantasy    130
## 19495 1967                                                       Drama    130
## 19502 1989                                      Children|Drama|Fantasy    130
## 19504 1989                                              Comedy|Romance    130
## 19505 1963                                             Horror|Thriller    130
## 19506 1992                             Fantasy|Horror|Romance|Thriller    130
## 19507 1996                                               Drama|Romance    130
## 19508 1990                                   Action|Adventure|Thriller    130
## 19509 1979                                            Adventure|Sci-Fi    130
## 19510 1991                                       Action|Mystery|Sci-Fi    130
## 19512 1984                                     Action|Adventure|Sci-Fi    130
## 19513 1992                                                Action|Crime    130
## 19514 1988                                       Action|Comedy|Western    130
## 19515 1978                                      Comedy|Musical|Romance    130
## 19516 1975                                               Action|Horror    130
## 19517 1996                                        Action|Comedy|Sci-Fi    130
## 19518 1996                                               Drama|Romance    130
## 19519 1992                            Action|Comedy|Crime|Drama|Sci-Fi    130
## 19522 1997                                                 Crime|Drama    130
## 19523 1997                                                      Comedy    130
## 19526 1997                            Action|Adventure|Sci-Fi|Thriller    130
## 19527 1997                           Action|Adventure|Fantasy|Thriller    130
## 19528 1997                 Adventure|Animation|Children|Comedy|Musical    130
## 19530 1990                                   Action|Adventure|Thriller    130
## 19531 1997                            Crime|Film-Noir|Mystery|Thriller    130
## 19532 1997                                      Drama|Mystery|Thriller    130
## 19533 1997                                                Comedy|Drama    130
## 19534 1985                                      Drama|Romance|Thriller    130
## 19535 1997                                               Action|Sci-Fi    130
## 19536 1998                                         Comedy|Drama|Sci-Fi    130
## 19537 1997                                               Drama|Romance    130
## 19538 1997                                               Drama|Romance    130
## 19539 1997                                   Action|Adventure|Thriller    130
## 19540 1997                                        Crime|Drama|Thriller    130
## 19542 1997                                                      Comedy    130
## 19544 1998                                              Comedy|Romance    130
## 19545 1998                                      Adventure|Comedy|Drama    130
## 19546 1998                        Action|Crime|Mystery|Sci-Fi|Thriller    130
## 19549 1988                                                       Drama    130
## 19551 1973                                              Horror|Mystery    130
## 19552 1987                                   Action|Comedy|Crime|Drama    130
## 19553 1989                                   Action|Comedy|Crime|Drama    130
## 19554 1984                                               Comedy|Horror    130
## 19556 1998                                       Action|Comedy|Romance    130
## 19557 1989                                     Adventure|Comedy|Sci-Fi    130
## 19558 1990                             Adventure|Comedy|Sci-Fi|Western    130
## 19559 1984                                            Adventure|Sci-Fi    130
## 19560 1990                                Crime|Drama|Mystery|Thriller    130
## 19562 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    130
## 19563 1967                           Animation|Children|Comedy|Musical    130
## 19564 1989                   Animation|Children|Comedy|Musical|Romance    130
## 19567 1984                                      Comedy|Fantasy|Romance    130
## 19570 1984                                    Action|Adventure|Fantasy    130
## 19571 1984                                                Drama|Sci-Fi    130
## 19572 1991                                     Children|Comedy|Fantasy    130
## 19574 1982                                           Adventure|Fantasy    130
## 19576 1989                                                      Comedy    130
## 19577 1984                                  Adventure|Children|Fantasy    130
## 19578 1988                                              Comedy|Fantasy    130
## 19580 1992                                        Crime|Drama|Thriller    130
## 19581 1990                                       Drama|Fantasy|Romance    130
## 19582 1998                 Adventure|Animation|Children|Comedy|Fantasy    130
## 19583 1992                                                      Comedy    130
## 19585 1998                         Adventure|Animation|Children|Comedy    130
## 19587 1998                                        Comedy|Drama|Romance    130
## 19589 1985                                               Comedy|Sci-Fi    130
## 19590 1979                                                Action|Drama    130
## 19591 1985                                                Action|Drama    130
## 19592 1986                                      Action|Adventure|Drama    130
## 19593 1986                                Drama|Horror|Sci-Fi|Thriller    130
## 19595 1986                                            Adventure|Comedy    130
## 19597 1989                                                      Horror    130
## 19600 1999                                     Action|Adventure|Sci-Fi    130
## 19601 1978                                     Action|Adventure|Sci-Fi    130
## 19602 1983                                     Action|Adventure|Sci-Fi    130
## 19603 1975                                Comedy|Horror|Musical|Sci-Fi    130
## 19604 1990                                               Comedy|Horror    130
## 19608 1999                   Adventure|Animation|Children|Drama|Sci-Fi    130
## 19609 1999                                              Action|Mystery    130
## 19610 1971                                                      Comedy    130
## 19611 1980                                                      Comedy    130
## 19612 1982                                                      Comedy    130
## 19613 1983                                                      Comedy    130
## 19614 1988                                Comedy|Drama|Fantasy|Romance    130
## 19615 1983                                             Children|Comedy    130
## 19616 1999                                               Drama|Romance    130
## 19618 1983                                                      Comedy    130
## 19619 1990                            Action|Adventure|Sci-Fi|Thriller    130
## 19621 1983                                               Drama|Romance    130
## 19622 1964                                   Action|Adventure|Thriller    130
## 19624 1962                                   Action|Adventure|Thriller    130
## 19625 1980                                     Adventure|Drama|Romance    130
## 19630 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    130
## 19631 1973                                   Action|Adventure|Thriller    130
## 19632 1965                                   Action|Adventure|Thriller    130
## 19633 1999                                        Comedy|Drama|Fantasy    130
## 19634 1987                                               Comedy|Sci-Fi    130
## 19636 1983                                                      Comedy    130
## 19638 1988                                      Comedy|Fantasy|Romance    130
## 19639 1950                                              Comedy|Fantasy    130
## 19640 1984                                                       Drama    130
## 19641 1992                                                       Drama    130
## 19642 1987                                              Drama|Thriller    130
## 19643 1991                                                Action|Drama    130
## 19644 1991                                Comedy|Drama|Fantasy|Romance    130
## 19646 1999                                                       Drama    130
## 19647 1999                                     Adventure|Comedy|Sci-Fi    130
## 19648 1992                                                Comedy|Crime    130
## 19649 1992                                                      Comedy    130
## 19650 1992                                 Action|Crime|Drama|Thriller    130
## 19651 1986                                               Drama|Romance    130
## 19653 1984                                            Action|Drama|War    130
## 19654 1987                                            Comedy|Drama|War    130
## 19655 2000                                        Comedy|Drama|Romance    130
## 19657 2000                                      Action|Adventure|Drama    130
## 19659 2000                                   Action|Adventure|Thriller    130
## 19660 1974                                              Comedy|Western    130
## 19663 1986                             Action|Adventure|Comedy|Fantasy    130
## 19664 2000                                              Drama|Thriller    130
## 19666 2000                                                       Drama    130
## 19667 2000                                                      Comedy    130
## 19668 2000                                                       Drama    130
## 19671 2000                                                       Drama    130
## 19676 1983                                          Action|Crime|Drama    130
## 19677 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    130
## 19678 2001                                       Action|Crime|Thriller    130
## 19680 1986                                               Comedy|Sci-Fi    130
## 19682 1989                                                      Comedy    130
## 19683 2001                               Action|Adventure|Drama|Sci-Fi    130
## 19686 2001                 Adventure|Animation|Children|Comedy|Fantasy    130
## 19688 2001                                              Crime|Thriller    130
## 19689 1984                                                Comedy|Drama    130
## 19690 1991                             Adventure|Comedy|Fantasy|Sci-Fi    130
## 19692 2001                                               Drama|Romance    130
## 19693 2001                                                       Drama    130
## 19694 2001                                                       Drama    130
## 19695 1982                                   Action|Comedy|Crime|Drama    130
## 19696 2002                                              Comedy|Romance    130
## 19699 2002                                     Action|Mystery|Thriller    130
## 19700 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    130
## 19702 1981                                       Action|Drama|Thriller    130
## 19708 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    130
## 19709 2003                         Adventure|Animation|Children|Comedy    130
## 19710 2003                                                Action|Crime    130
## 19711 1991                                              Drama|Thriller    130
## 19713 1985                                            Action|Adventure    130
## 19717 1983                                                      Comedy    130
## 19718 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    130
## 19719 2003                                         Adventure|Drama|War    130
## 19722 1968                   Adventure|Children|Comedy|Fantasy|Musical    130
## 19723 2004                             Action|Adventure|Fantasy|Horror    130
## 19727 1991                            Adventure|Comedy|Fantasy|Musical    130
## 19728 2004                                Action|Adventure|Sci-Fi|IMAX    130
## 19729 2004                            Action|Adventure|Sci-Fi|Thriller    130
## 19730 2004                                       Action|Crime|Thriller    130
## 19731 1974                                      Crime|Mystery|Thriller    130
## 19735 2005                                           Action|Crime|IMAX    130
## 19736 2005                                Action|Comedy|Crime|Thriller    130
## 19740 1994                                     Children|Comedy|Fantasy    131
## 19745 1981                                            Action|Drama|War    131
## 19753 1984                                                       Drama    131
## 19755 1999                                     Action|Adventure|Comedy    131
## 19756 1999                                Crime|Drama|Mystery|Thriller    131
## 19757 1998                                                Action|Crime    131
## 19758 1999                                    Animation|Comedy|Musical    131
## 19759 1999                                              Comedy|Romance    131
## 19762 1999                                              Action|Mystery    131
## 19765 1992                                                      Comedy    131
## 19768 2000                                               Drama|Romance    131
## 19769 2000                                                      Comedy    131
## 19772 2000                                               Action|Comedy    131
## 19773 2000                                                      Comedy    131
## 19774 2000                                     Children|Comedy|Fantasy    131
## 19775 2000                                             Children|Comedy    131
## 19777 2000                                                Comedy|Crime    131
## 19778 2000                                       Drama|Romance|Western    131
## 19781 2001                                    Action|Drama|Romance|War    131
## 19783 1995                               Action|Adventure|Comedy|Crime    132
## 19786 1994             Adventure|Animation|Children|Drama|Musical|IMAX    132
## 19787 1994                                     Action|Romance|Thriller    132
## 19788 1990                                     Adventure|Drama|Western    132
## 19789 1991                                       Crime|Horror|Thriller    132
## 19790 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    132
## 19792 1985                                     Adventure|Comedy|Sci-Fi    132
## 19794 1998                                            Action|Drama|War    132
## 19799 1999                                      Action|Sci-Fi|Thriller    132
## 19807 2000                                       Action|Crime|Thriller    132
## 19809 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    132
## 19811 2001                                     Animation|Drama|Fantasy    132
## 19834 1999                                                       Drama    132
## 19836 2006                     Animation|Drama|Mystery|Sci-Fi|Thriller    132
## 19847 2006                                        Comedy|Drama|Romance    132
## 19857 2007                                                      Comedy    132
## 19858 2008                 Adventure|Animation|Children|Romance|Sci-Fi    132
## 19864 2008                                                Comedy|Drama    132
## 19874 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX    132
## 19876 1995                                            Mystery|Thriller    133
## 19877 1995                                            Action|Drama|War    133
## 19878 1976                                        Crime|Drama|Thriller    133
## 19879 1995                                               Drama|Romance    133
## 19880 1994                                                 Crime|Drama    133
## 19882 1994                                                 Crime|Drama    133
## 19883 1994                                    Comedy|Drama|Romance|War    133
## 19884 1993                          Animation|Children|Fantasy|Musical    133
## 19885 1991                                       Crime|Horror|Thriller    133
## 19886 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    133
## 19887 1995                                   Animation|Children|Comedy    133
## 19888 1942                                               Drama|Romance    133
## 19889 1939                          Adventure|Children|Fantasy|Musical    133
## 19890 1964                             Children|Comedy|Fantasy|Musical    133
## 19891 1979                                                      Comedy    133
## 19892 1987                                       Drama|Musical|Romance    133
## 19893 1993                             Animation|Children|Comedy|Crime    133
## 19895 1975                                                       Drama    133
## 19896 1981                                            Action|Adventure    133
## 19898 1987                                                   Drama|War    133
## 19899 1971                                        Comedy|Drama|Romance    133
## 19900 1967                                        Comedy|Drama|Romance    133
## 19902 1993                                      Comedy|Fantasy|Romance    133
## 19903 1985                                     Adventure|Comedy|Sci-Fi    133
## 19904 1991                                          Comedy|Crime|Drama    133
## 19905 1989                                      Children|Drama|Fantasy    133
## 19906 1996                                               Drama|Mystery    133
## 19907 1996                                               Drama|Romance    133
## 19908 1997                              Action|Adventure|Comedy|Sci-Fi    133
## 19909 1997                                       Drama|Sci-Fi|Thriller    133
## 19911 1998                                                Comedy|Crime    133
## 19912 1997                                        Comedy|Drama|Romance    133
## 19913 1998                                      Adventure|Comedy|Drama    133
## 19914 1985                                                Comedy|Drama    133
## 19915 1985                    Action|Adventure|Children|Comedy|Fantasy    133
## 19917 1953                          Animation|Children|Fantasy|Musical    133
## 19918 1977                    Adventure|Animation|Children|Crime|Drama    133
## 19919 1959                                  Animation|Children|Musical    133
## 19920 1998                             Adventure|Drama|Fantasy|Romance    133
## 19922 1998                                                 Crime|Drama    133
## 19923 1998                                                Action|Crime    133
## 19924 1985                                                       Drama    133
## 19925 1999                                        Drama|Horror|Mystery    133
## 19926 1986                                                      Comedy    133
## 19927 1945                                               Drama|Romance    133
## 19928 1999                                 Action|Crime|Drama|Thriller    133
## 19929 2000                                                Comedy|Drama    133
## 19930 2000                                                       Drama    133
## 19931 2000                                                       Drama    133
## 19932 2000                                               Action|Comedy    133
## 19934 2001                                              Comedy|Romance    133
## 19936 2001                                           Adventure|Fantasy    133
## 19937 2002                         Adventure|Animation|Children|Comedy    133
## 19938 2002                                                 Crime|Drama    133
## 19939 2001                                              Drama|Thriller    133
## 19941 2002                                               Drama|Romance    133
## 19942 2002                                        Comedy|Drama|Romance    133
## 19943 1973                                          Comedy|Crime|Drama    133
## 19944 2003                                       Action|Crime|Thriller    133
## 19945 2003                        Crime|Drama|Mystery|Romance|Thriller    133
## 19946 1998                                               Drama|Romance    133
## 19947 1986                                               Drama|Romance    133
## 19948 2003                                       Drama|Fantasy|Romance    133
## 19949 2004                                       Drama|Sci-Fi|Thriller    133
## 19950 2003                                                Comedy|Drama    133
## 19953 2004                                    Comedy|Documentary|Drama    133
## 19954 2004                                               Drama|Romance    133
## 19955 2004                                               Drama|Romance    133
## 19957 2000                                              Comedy|Romance    133
## 19958 2004                                   Drama|Mystery|Romance|War    133
## 19959 2004                                                       Drama    133
## 19960 2004                                    Adventure|Comedy|Fantasy    133
## 19962 2005                                                Comedy|Drama    133
## 19963 2005                                               Drama|Romance    133
## 19964 2005                                               Drama|Romance    133
## 19966 2005                                       Drama|Musical|Romance    133
## 19967 2005                                                       Drama    133
## 19968 2005                                  Adventure|Children|Fantasy    133
## 19969 2005                                                   Drama|War    133
## 19970 2006                                    Action|Adventure|Fantasy    133
## 19971 2006                                      Adventure|Comedy|Drama    133
## 19972 2006                                              Drama|Thriller    133
## 19973 2006                                                       Drama    133
## 19974 2006                                                       Drama    133
## 19975 2006                                Comedy|Drama|Fantasy|Romance    133
## 19976 2006                                      Drama|Fantasy|Thriller    133
## 19977 2006                                       Drama|Musical|Romance    133
## 19979 2007                                      Action|Adventure|Drama    133
## 19981 2007                                             Animation|Drama    133
## 19982 2007                                                       Drama    133
## 19984 2007                                                Comedy|Drama    133
## 19987 2008                 Adventure|Animation|Children|Romance|Sci-Fi    133
## 19988 2008                                        Comedy|Drama|Romance    133
## 19990 2008                                                       Drama    133
## 19991 2008                                                 Crime|Drama    133
## 19992 2008                                               Drama|Mystery    133
## 19994 2008                               Drama|Fantasy|Mystery|Romance    133
## 19999 2009                                      Animation|Comedy|Drama    133
## 20000 2009                                               Drama|Romance    133
## 20001 2009                                                       Drama    133
## 20004 2010                                      Action|Adventure|Drama    133
## 20005 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX    133
## 20008 2010                                              Drama|Thriller    133
## 20010 2010                                                     Western    133
## 20011 2011                                               Drama|Romance    133
## 20012 2006                                               Drama|Romance    133
## 20013 2011                               Action|Adventure|Fantasy|IMAX    133
## 20014 2011                                      Comedy|Fantasy|Romance    133
## 20016 2011                                                       Drama    133
## 20017 2011                                                       Drama    133
## 20018 2011                                                Comedy|Drama    133
## 20019 2011                                      Children|Drama|Mystery    133
## 20020 2012                      Action|Adventure|Drama|Sci-Fi|Thriller    133
## 20021 2011                                                Comedy|Drama    133
## 20022 2011                                                Comedy|Drama    133
## 20024 2012                                Action|Adventure|Sci-Fi|IMAX    133
## 20025 2012                                               Drama|Romance    133
## 20026 2012                                              Drama|Thriller    133
## 20027 2012                                                Comedy|Drama    133
## 20029 2012                                               Drama|Romance    133
## 20031 2012                                        Action|Drama|Western    133
## 20032 2013                                Crime|Drama|Mystery|Thriller    133
## 20034 2012                                                       Drama    133
## 20037 2012                                                       Drama    133
## 20038 2013                                         Action|Comedy|Crime    133
## 20039 2013                                       Drama|Fantasy|Romance    133
## 20040 2013                                          Action|Sci-Fi|IMAX    133
## 20041 2013                                      Drama|Mystery|Thriller    133
## 20045 2013                                          Comedy|Crime|Drama    133
## 20046 2013                                                 Crime|Drama    133
## 20048 2013                                                Comedy|Drama    133
## 20050 2014                                                Comedy|Drama    133
## 20051 2014                                           Drama|Sci-Fi|IMAX    133
## 20052 2014                                                       Drama    133
## 20053 1990                                     Action|Animation|Comedy    133
## 20054 1995                 Adventure|Animation|Children|Comedy|Fantasy    134
## 20056 1995                                                      Comedy    134
## 20059 1995                                                      Comedy    134
## 20063 1995                                              Comedy|Romance    134
## 20065 1995                                            Action|Drama|War    134
## 20067 1995                          Action|Comedy|Crime|Drama|Thriller    134
## 20068 1995                               Action|Adventure|Comedy|Crime    134
## 20070 1995                                               Horror|Sci-Fi    134
## 20071 1994                                                      Comedy    134
## 20072 1994                                            Adventure|Comedy    134
## 20074 1977                                     Action|Adventure|Sci-Fi    134
## 20080 1994                                        Comedy|Drama|Fantasy    134
## 20085 1994                                                      Comedy    134
## 20088 1994             Adventure|Animation|Children|Drama|Musical|IMAX    134
## 20089 1994                                 Action|Comedy|Crime|Fantasy    134
## 20090 1994                                     Action|Romance|Thriller    134
## 20094 1993                             Action|Adventure|Comedy|Fantasy    134
## 20095 1996                                   Action|Adventure|Thriller    134
## 20097 1993                                        Comedy|Drama|Romance    134
## 20100 1993                             Action|Adventure|Comedy|Romance    134
## 20101 1990                                             Children|Comedy    134
## 20102 1990                       Comedy|Drama|Fantasy|Romance|Thriller    134
## 20103 1992                 Adventure|Animation|Children|Comedy|Musical    134
## 20107 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    134
## 20108 1990                                              Comedy|Romance    134
## 20115 1959                                                Comedy|Crime    134
## 20117 1934                                                Comedy|Crime    134
## 20118 1988                                       Action|Crime|Thriller    134
## 20123 1992                                      Drama|Romance|Thriller    134
## 20125 1986                                              Action|Romance    134
## 20136 1979                                            Action|Drama|War    134
## 20142 1987                                                   Drama|War    134
## 20143 1981                                            Action|Drama|War    134
## 20145 1989                                                   Drama|War    134
## 20146 1989                                                       Drama    134
## 20152 1987                                Action|Comedy|Fantasy|Horror    134
## 20153 1993                                      Comedy|Fantasy|Romance    134
## 20155 1986                                    Action|Adventure|Fantasy    134
## 20159 1989                                              Comedy|Romance    134
## 20166 1978                                      Comedy|Musical|Romance    134
## 20173 1997                                 Action|Crime|Drama|Thriller    134
## 20175 1997                                                Drama|Sci-Fi    134
## 20181 1997                                               Drama|Romance    134
## 20183 1998                              Action|Romance|Sci-Fi|Thriller    134
## 20191 1989                                   Action|Comedy|Crime|Drama    134
## 20194 1989                                     Adventure|Comedy|Sci-Fi    134
## 20195 1990                             Adventure|Comedy|Sci-Fi|Western    134
## 20196 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    134
## 20197 1989                                                      Comedy    134
## 20198 1984                                      Comedy|Fantasy|Romance    134
## 20205 1982                               Action|Horror|Sci-Fi|Thriller    134
## 20210 1998                         Adventure|Animation|Children|Comedy    134
## 20211 1998                                              Comedy|Romance    134
## 20216 1999                                              Comedy|Romance    134
## 20219 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    134
## 20229 1988                                Comedy|Drama|Fantasy|Romance    134
## 20242 1940                                                       Drama    134
## 20244 1999                 Adventure|Animation|Children|Comedy|Fantasy    134
## 20254 2000                                      Action|Adventure|Drama    134
## 20260 2000                                   Animation|Children|Comedy    134
## 20263 2000                                                      Comedy    134
## 20264 2000                                               Action|Comedy    134
## 20277 2001                 Adventure|Animation|Children|Comedy|Fantasy    134
## 20282 2001                                           Adventure|Fantasy    134
## 20291 2002                                           Adventure|Fantasy    134
## 20296 2003                         Adventure|Animation|Children|Comedy    134
## 20298 2003                                       Action|Crime|Thriller    134
## 20300 2003                             Action|Adventure|Comedy|Fantasy    134
## 20305 1979                                                  Comedy|War    134
## 20306 2003                              Action|Adventure|Drama|Fantasy    134
## 20308 2004                                      Comedy|Fantasy|Romance    134
## 20309 1987                              Children|Comedy|Fantasy|Sci-Fi    134
## 20315 2004                  Action|Adventure|Animation|Children|Comedy    134
## 20316 2004                               Drama|Horror|Mystery|Thriller    134
## 20318 2005                                           Action|Crime|IMAX    134
## 20331 2007                               Drama|Horror|Musical|Thriller    134
## 20333 2008                                     Action|Crime|Drama|IMAX    134
## 20337 2008                 Adventure|Animation|Children|Romance|Sci-Fi    134
## 20339 2008                                 Comedy|Drama|Musical|Sci-Fi    134
## 20340 2009                                                Comedy|Drama    134
## 20351 2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX    134
## 20356 2012                                 Action|Adventure|Crime|IMAX    134
## 20360 2012                                        Comedy|Drama|Romance    134
## 20362 2012                                         Action|Crime|Sci-Fi    134
## 20363 2004                 Action|Adventure|Comedy|Documentary|Fantasy    134
## 20365 1995                                   Action|Adventure|Thriller    135
## 20367 1995                          Action|Comedy|Crime|Drama|Thriller    135
## 20368 1995                                       Comedy|Crime|Thriller    135
## 20369 1995                                              Children|Drama    135
## 20370 1996                                                      Comedy    135
## 20371 1996                                                      Comedy    135
## 20372 1996                                                      Comedy    135
## 20374 1996                                                      Comedy    135
## 20375 1995                                                       Drama    135
## 20376 1996                                                      Comedy    135
## 20377 1996                                                    Thriller    135
## 20378 1996                           Action|Adventure|Romance|Thriller    135
## 20379 1996                                               Action|Sci-Fi    135
## 20380 1996                                                      Comedy    135
## 20381 1995                                          Adventure|Children    135
## 20382 1996                                                Comedy|Crime    135
## 20384 1996                                                      Comedy    135
## 20385 1996                            Action|Adventure|Sci-Fi|Thriller    135
## 20386 1955                                                       Drama    135
## 20392 1993                                                Comedy|Drama    136
## 20393 1990                                             Children|Comedy    136
## 20397 1942                                               Drama|Romance    136
## 20401 1983                                     Action|Adventure|Sci-Fi    136
## 20402 1993                                      Comedy|Fantasy|Romance    136
## 20404 1985                                                Comedy|Drama    136
## 20405 1977                                     Children|Comedy|Fantasy    136
## 20406 1967                                  Adventure|Children|Musical    136
## 20409 1989                             Action|Adventure|Children|Drama    136
## 20411 1988                                Comedy|Drama|Fantasy|Romance    136
## 20412 1988                                                Comedy|Drama    136
## 20414 1963                                    Adventure|Drama|Thriller    136
## 20415 1980                                                      Comedy    136
## 20418 2000                                             Children|Comedy    136
## 20421 2001                 Adventure|Animation|Children|Comedy|Fantasy    136
## 20428 2003                                                      Comedy    136
## 20430 1976                                                Comedy|Crime    136
## 20431 1993                                             Children|Comedy    136
## 20433 2004                                Action|Adventure|Sci-Fi|IMAX    136
## 20435 2005                            Action|Adventure|Children|Comedy    136
## 20440 1995                                  Adventure|Children|Fantasy    137
## 20447 1993                                              Children|Drama    137
## 20452 1937                    Animation|Children|Drama|Fantasy|Musical    137
## 20458 1939                          Adventure|Children|Fantasy|Musical    137
## 20460 1996                                          Adventure|Children    137
## 20463 1971                             Children|Comedy|Fantasy|Musical    137
## 20464 1973                                               Comedy|Sci-Fi    137
## 20468 1986                              Action|Adventure|Horror|Sci-Fi    137
## 20470 1979                                               Horror|Sci-Fi    137
## 20472 1979                                        Comedy|Drama|Romance    137
## 20476 1940                          Animation|Children|Fantasy|Musical    137
## 20479 1979                                                Comedy|Drama    137
## 20481 1996                                        Comedy|Drama|Romance    137
## 20485 1997                                        Comedy|Drama|Romance    137
## 20486 1997                           Adventure|Children|Comedy|Fantasy    137
## 20487 1982                                                      Horror    137
## 20492 1984                                            Adventure|Sci-Fi    137
## 20493 1959                                  Adventure|Children|Fantasy    137
## 20494 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    137
## 20496 1991                                     Action|Adventure|Sci-Fi    137
## 20498 1967                                  Adventure|Children|Musical    137
## 20499 1984                                  Adventure|Children|Fantasy    137
## 20500 1988                                              Comedy|Fantasy    137
## 20501 1998                                             Horror|Thriller    137
## 20503 1977                                                       Drama    137
## 20508 1980                                                      Comedy    137
## 20510 1999                                               Drama|Romance    137
## 20512 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    137
## 20514 1999                                        Drama|Romance|Sci-Fi    137
## 20517 1995                 Adventure|Animation|Children|Comedy|Fantasy    138
## 20523 1993                            Action|Adventure|Sci-Fi|Thriller    138
## 20525 1996                            Action|Adventure|Sci-Fi|Thriller    138
## 20533 1974                                                 Crime|Drama    138
## 20536 1997                                                Drama|Sci-Fi    138
## 20537 1998                                            Action|Drama|War    138
## 20538 1998                                                 Crime|Drama    138
## 20539 1999                                      Action|Sci-Fi|Thriller    138
## 20541 2000                                      Action|Adventure|Drama    138
## 20542 2000                                     Action|Adventure|Sci-Fi    138
## 20544 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    138
## 20545 2001                 Adventure|Animation|Children|Comedy|Fantasy    138
## 20546 2001                                           Adventure|Fantasy    138
## 20548 2002                            Action|Adventure|Sci-Fi|Thriller    138
## 20549 2002                         Action|Crime|Drama|Mystery|Thriller    138
## 20550 2002                                           Adventure|Fantasy    138
## 20551 2002                                           Adventure|Fantasy    138
## 20553 2002                       Action|Adventure|Crime|Drama|Thriller    138
## 20554 2003                            Action|Adventure|Sci-Fi|Thriller    138
## 20555 2003                         Adventure|Animation|Children|Comedy    138
## 20556 2003                             Action|Adventure|Comedy|Fantasy    138
## 20557 2003                              Action|Adventure|Drama|Fantasy    138
## 20559 2004         Adventure|Animation|Children|Comedy|Musical|Romance    138
## 20560 2004                                      Adventure|Fantasy|IMAX    138
## 20561 2004                                Action|Adventure|Sci-Fi|IMAX    138
## 20562 2004                  Action|Adventure|Animation|Children|Comedy    138
## 20564 2006                                      Drama|Romance|Thriller    138
## 20567 2007                                      Action|Adventure|Drama    138
## 20569 2008                                     Action|Adventure|Sci-Fi    138
## 20573 2010                                                       Drama    138
## 20575 2010                                                       Drama    138
## 20576 2011                               Action|Adventure|Fantasy|IMAX    138
## 20577 2011                                                      Comedy    138
## 20578 2011                                                       Drama    138
## 20579 2011                                        Comedy|Drama|Romance    138
## 20580 2011                                      Children|Drama|Mystery    138
## 20582 2012                                Action|Adventure|Sci-Fi|IMAX    138
## 20583 2012                                        Adventure|Drama|IMAX    138
## 20585 2013                                    Action|Drama|Horror|IMAX    138
## 20586 2013                                          Action|Sci-Fi|IMAX    138
## 20587 2013                                                       Drama    138
## 20588 2013                                                       Drama    138
## 20590 2014                                                Comedy|Drama    138
## 20592 2014                                                       Drama    138
## 20595 2015                            Action|Adventure|Sci-Fi|Thriller    138
## 20596 2015                                     Action|Adventure|Sci-Fi    138
## 20597 2015                                Action|Comedy|Fantasy|Sci-Fi    138
## 20598 1995                                            Action|Drama|War    139
## 20599 1994                                                 Crime|Drama    139
## 20604 1991                                               Action|Sci-Fi    139
## 20605 1996                                                      Comedy    139
## 20606 1996                                        Comedy|Drama|Romance    139
## 20607 1974                             Children|Comedy|Fantasy|Romance    139
## 20610 1971                                 Crime|Drama|Sci-Fi|Thriller    139
## 20613 1989                                                   Drama|War    139
## 20617 1997                                                      Comedy    139
## 20619 1997                                        Action|Comedy|Sci-Fi    139
## 20621 1997                                       Drama|Sci-Fi|Thriller    139
## 20623 1998                              Action|Romance|Sci-Fi|Thriller    139
## 20624 1983                                                Comedy|Drama    139
## 20626 1985                                                Comedy|Drama    139
## 20628 1984                                      Comedy|Fantasy|Romance    139
## 20629 1988                                              Comedy|Fantasy    139
## 20631 1992                                                      Comedy    139
## 20633 1998                                                Comedy|Drama    139
## 20634 1968                                         Action|Drama|Sci-Fi    139
## 20636 1999                                      Drama|Mystery|Thriller    139
## 20637 1980                                                      Comedy    139
## 20640 1986                                                      Comedy    139
## 20647 1979                                     Action|Adventure|Sci-Fi    139
## 20648 2000                                                Drama|Sci-Fi    139
## 20649 2001                                              Comedy|Romance    139
## 20651 2001                            Adventure|Comedy|Mystery|Romance    139
## 20652 1991                                        Comedy|Drama|Musical    139
## 20653 1965                                              Comedy|Musical    139
## 20654 1988                                               Comedy|Horror    139
## 20655 1982                                                      Comedy    139
## 20657 1983                                             Sci-Fi|Thriller    139
## 20659 2002                            Action|Adventure|Sci-Fi|Thriller    139
## 20660 1983                                                      Comedy    139
## 20667 1995                                  Adventure|Children|Fantasy    140
## 20668 1995                                                      Comedy    140
## 20669 1994                                               Comedy|Sci-Fi    140
## 20670 1995                                                      Comedy    140
## 20672 1994                                                      Comedy    140
## 20675 1993                             Action|Adventure|Comedy|Romance    140
## 20678 1987                     Action|Adventure|Comedy|Fantasy|Romance    140
## 20680 1997                                                      Comedy    140
## 20682 1998                                                 Crime|Drama    140
## 20684 1956                                       Drama|Musical|Romance    140
## 20685 1992                                                Comedy|Crime    140
## 20686 2000                                             Children|Comedy    140
## 20692 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    140
## 20693 2001                                 Adventure|Animation|Fantasy    140
## 20694 2002                                           Adventure|Fantasy    140
## 20696 2002                                        Comedy|Drama|Romance    140
## 20698 2003                                        Comedy|Drama|Romance    140
## 20701 2006                       Animation|Comedy|Drama|Romance|Sci-Fi    140
## 20702 2009                                                       Drama    140
## 20703 2010                                      Drama|Mystery|Thriller    140
## 20704 2010                                                       Drama    140
## 20705 2010      Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX    140
## 20706 2011                 Action|Adventure|Drama|Fantasy|Mystery|IMAX    140
## 20707 2012                                                       Drama    140
## 20708 2013                                        Comedy|Drama|Romance    140
## 20714 1994                                    Comedy|Drama|Romance|War    141
## 20716 1996                           Action|Adventure|Mystery|Thriller    141
## 20717 1996                                                    Thriller    141
## 20718 1983                                     Action|Adventure|Sci-Fi    141
## 20719 1997                            Action|Adventure|Sci-Fi|Thriller    141
## 20721 1998                                       Drama|Sci-Fi|Thriller    141
## 20723 1998                                            Action|Drama|War    141
## 20725 1999                                     Action|Adventure|Sci-Fi    141
## 20726 1999                                              Comedy|Romance    141
## 20727 1999                                 Action|Crime|Drama|Thriller    141
## 20729 1999                                                       Drama    141
## 20731 2000                                                      Sci-Fi    141
## 20732 2000                                              Drama|Thriller    141
## 20733 2000                                   Action|Adventure|Thriller    141
## 20735 2000                                              Drama|Thriller    141
## 20736 2000                                     Action|Adventure|Sci-Fi    141
## 20738 2000                                                       Drama    141
## 20742 2001                            Action|Adventure|Sci-Fi|Thriller    141
## 20744 1995                                        Adventure|Drama|IMAX    142
## 20745 1977                                     Action|Adventure|Sci-Fi    142
## 20746 1994                                 Comedy|Crime|Drama|Thriller    142
## 20747 1994                                                      Comedy    142
## 20748 1994                                    Comedy|Drama|Romance|War    142
## 20750 1954                                            Mystery|Thriller    142
## 20751 1960                                        Comedy|Drama|Romance    142
## 20753 1982                                       Children|Drama|Sci-Fi    142
## 20754 1975                                    Adventure|Comedy|Fantasy    142
## 20755 1980                                     Action|Adventure|Sci-Fi    142
## 20758 1979                               Drama|Horror|Mystery|Thriller    142
## 20759 1990                                              Action|Western    142
## 20761 1997                                   Action|Adventure|Thriller    142
## 20762 1982                                                      Horror    142
## 20763 1989                                     Adventure|Comedy|Sci-Fi    142
## 20764 1990                             Adventure|Comedy|Sci-Fi|Western    142
## 20765 1998                                            Action|Drama|War    142
## 20766 1987                                            Adventure|Comedy    142
## 20767 1986                                        Comedy|Drama|Romance    142
## 20768 1984                                                Comedy|Crime    142
## 20769 1977                                                       Drama    142
## 20770 1990                                               Comedy|Horror    142
## 20771 1980                                                      Comedy    142
## 20772 1986                             Adventure|Children|Comedy|Drama    142
## 20773 1979                                       Drama|Fantasy|Musical    142
## 20777 1993                                                       Drama    142
## 20779 1973                                                Comedy|Drama    142
## 20780 1978                                                      Comedy    142
## 20781 1977                                      Adventure|Drama|Sci-Fi    142
## 20782 1981                                              Comedy|Romance    142
## 20783 2000                                                       Drama    142
## 20784 1982                                                Comedy|Drama    142
## 20785 2001                               Action|Crime|Mystery|Thriller    142
## 20786 1980                                                Comedy|Crime    142
## 20787 1988                                                       Drama    142
## 20788 1989                                       Drama|Fantasy|Romance    142
## 20789 1989                                Action|Comedy|Crime|Thriller    142
## 20790 1989                                                Comedy|Crime    142
## 20791 1989                                                      Comedy    142
## 20792 1993                                            Adventure|Comedy    142
## 20793 1969                                      Comedy|Musical|Western    142
## 20794 1980                                                      Comedy    142
## 20795 2001                               Drama|Horror|Mystery|Thriller    142
## 20796 2001                                                      Horror    142
## 20797 1981                                                       Drama    142
## 20799 1971                                              Drama|Thriller    142
## 20801 1980                                                 Crime|Drama    142
## 20802 1980                                                      Comedy    142
## 20803 1980                                                       Drama    142
## 20806 1995                             Action|Adventure|Mystery|Sci-Fi    143
## 20807 1995                                         Action|Crime|Sci-Fi    143
## 20808 1994                                              Drama|Thriller    143
## 20811 1994                               Action|Crime|Fantasy|Thriller    143
## 20813 1994                                               Action|Comedy    143
## 20814 1994                                    Adventure|Comedy|Western    143
## 20815 1993                            Action|Adventure|Sci-Fi|Thriller    143
## 20816 1992                                                Action|Drama    143
## 20817 1993                                                   Drama|War    143
## 20820 1996                                              Crime|Thriller    143
## 20826 1990                              Crime|Drama|Film-Noir|Thriller    143
## 20828 1974                            Crime|Film-Noir|Mystery|Thriller    143
## 20830 1984                                                      Comedy    143
## 20833 1978                                      Comedy|Musical|Romance    143
## 20834 1996                                                      Comedy    143
## 20835 1997                                       Drama|Sci-Fi|Thriller    143
## 20839 1989                                     Adventure|Comedy|Sci-Fi    143
## 20840 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    143
## 20844 1999                                                      Comedy    143
## 20846 1999                                                       Drama    143
## 20848 1989                                                 Crime|Drama    143
## 20849 2000                                                       Drama    143
## 20851 2000                                        Crime|Drama|Thriller    143
## 20853 1983                                          Action|Crime|Drama    143
## 20855 2001                      Crime|Drama|Film-Noir|Mystery|Thriller    143
## 20857 2001                 Adventure|Animation|Children|Comedy|Fantasy    143
## 20862 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    143
## 20876 2005                                           Action|Crime|IMAX    143
## 20877 2005                                                Comedy|Drama    143
## 20880 2006                                      Action|Sci-Fi|Thriller    143
## 20882 1995                                       Comedy|Crime|Thriller    144
## 20884 1995                                              Comedy|Romance    144
## 20886 1995                                        Adventure|Drama|IMAX    144
## 20887 1995                               Action|Adventure|Comedy|Crime    144
## 20889 1995                                       Action|Crime|Thriller    144
## 20891 1994                                                Drama|Horror    144
## 20893 1994                                                       Drama    144
## 20894 1994                                       Action|Crime|Thriller    144
## 20895 1995                                Action|Drama|Sci-Fi|Thriller    144
## 20897 1994                                       Action|Drama|Thriller    144
## 20898 1994                                     Action|Adventure|Sci-Fi    144
## 20899 1994                                      Adventure|Drama|Sci-Fi    144
## 20901 1994                                                      Comedy    144
## 20903 1994                                    Comedy|Drama|Romance|War    144
## 20906 1994                    Action|Adventure|Comedy|Romance|Thriller    144
## 20907 1993                                     Children|Comedy|Fantasy    144
## 20908 1994                                Action|Comedy|Crime|Thriller    144
## 20909 1994                                    Adventure|Comedy|Western    144
## 20910 1993                                   Action|Adventure|Thriller    144
## 20914 1993                                                Comedy|Drama    144
## 20916 1993                                        Action|Drama|Western    144
## 20917 1992                 Adventure|Animation|Children|Comedy|Musical    144
## 20920 1989                                       Action|Crime|Thriller    144
## 20927 1995                                        Adventure|Drama|IMAX    145
## 20932 1995                                     Action|Adventure|Sci-Fi    145
## 20935 1994                                                Drama|Horror    145
## 20937 1994                                 Comedy|Crime|Drama|Thriller    145
## 20938 1994                                                       Drama    145
## 20941 1994                                      Adventure|Drama|Sci-Fi    145
## 20962 1995                               Action|Adventure|Comedy|Crime    146
## 20963 1995                                       Action|Crime|Thriller    146
## 20966 1994                                                      Comedy    146
## 20969 1994                                     Action|Romance|Thriller    146
## 20970 1994                    Action|Adventure|Comedy|Romance|Thriller    146
## 20971 1993                                               Comedy|Sci-Fi    146
## 20974 1996                                   Action|Adventure|Thriller    146
## 20976 1993                                                       Drama    146
## 20977 1993                                     Comedy|Romance|Thriller    146
## 20982 1996                           Action|Adventure|Romance|Thriller    146
## 20983 1996                            Action|Adventure|Sci-Fi|Thriller    146
## 20984 1982                                       Children|Drama|Sci-Fi    146
## 20990 1997                                              Comedy|Romance    146
## 20991 1997                                        Action|Comedy|Sci-Fi    146
## 20992 1997                                               Drama|Romance    146
## 20993 1998                                     Action|Adventure|Sci-Fi    146
## 20994 1998                                       Action|Comedy|Romance    146
## 20996 1992                                                      Comedy    146
## 20997 1986                                              Comedy|Western    146
## 20998 1999                                     Action|Adventure|Sci-Fi    146
## 21001 1999                                        Drama|Horror|Mystery    146
## 21003 1999                                 Action|Crime|Drama|Thriller    146
## 21004 1999                                 Action|Crime|Drama|Thriller    146
## 21005 1990                                               Drama|Mystery    146
## 21006 1992                                                Comedy|Crime    146
## 21010 2001                 Adventure|Animation|Children|Comedy|Fantasy    146
## 21012 2002                                Action|Adventure|Sci-Fi|IMAX    146
## 21014 2003                                        Comedy|Drama|Romance    146
## 21015 2003                                       Action|Crime|Thriller    146
## 21016 2004                                       Action|Drama|Thriller    146
## 21017 2004         Adventure|Animation|Children|Comedy|Musical|Romance    146
## 21019 2005                                     Action|Adventure|Sci-Fi    146
## 21020 2005                                           Action|Crime|IMAX    146
## 21023 2006                                   Action|Adventure|Thriller    146
## 21024 2007                                     Action|Fantasy|War|IMAX    146
## 21025 2007                                        Comedy|Drama|Romance    146
## 21027 2008                                     Action|Adventure|Sci-Fi    146
## 21028 1920                                   Adventure|Romance|Western    146
## 21030 1991                        Adventure|Animation|Children|Musical    146
## 21032 2009                                              Action|Romance    146
## 21035 1995                                               Drama|Romance    147
## 21037 1994                                               Drama|Romance    147
## 21042 1985                                              Fantasy|Sci-Fi    147
## 21044 1997                                     Action|Romance|Thriller    147
## 21046 1997                                                      Comedy    147
## 21052 1998                                               Drama|Mystery    147
## 21058 1979                           Adventure|Children|Comedy|Musical    147
## 21059 2000                                        Comedy|Drama|Romance    147
## 21066 2005                                              Comedy|Romance    147
## 21071 1995                      Adventure|Drama|Fantasy|Mystery|Sci-Fi    148
## 21076 1995                          Action|Comedy|Crime|Drama|Thriller    148
## 21077 1995                                      Action|Sci-Fi|Thriller    148
## 21078 1995                                       Action|Crime|Thriller    148
## 21083 1993                                              Comedy|Mystery    148
## 21084 1995                                                      Comedy    148
## 21086 1991                                               Action|Sci-Fi    148
## 21087 1990                                     Adventure|Drama|Western    148
## 21090 1996                            Action|Adventure|Sci-Fi|Thriller    148
## 21096 1950                                                      Comedy    148
## 21097 1934                                                Comedy|Crime    148
## 21100 1992                               Action|Horror|Sci-Fi|Thriller    148
## 21108 1990                               Action|Crime|Romance|Thriller    148
## 21110 1980                                                      Horror    148
## 21111 1987                                Action|Comedy|Fantasy|Horror    148
## 21117 1996                                        Action|Comedy|Sci-Fi    148
## 21121 1997                            Action|Adventure|Sci-Fi|Thriller    148
## 21123 1997                                                Drama|Sci-Fi    148
## 21128 1997                                               Action|Sci-Fi    148
## 21129 1997                                        Action|Horror|Sci-Fi    148
## 21132 1998                                             Sci-Fi|Thriller    148
## 21133 1998                        Action|Crime|Mystery|Sci-Fi|Thriller    148
## 21137 1992                                      Children|Comedy|Sci-Fi    148
## 21147 1999                                     Action|Adventure|Sci-Fi    148
## 21148 1999                                              Comedy|Romance    148
## 21151 1990                                Action|Crime|Sci-Fi|Thriller    148
## 21154 1999                                      Drama|Mystery|Thriller    148
## 21156 1992                                Crime|Drama|Mystery|Thriller    148
## 21158 1991                                      Drama|Mystery|Thriller    148
## 21167 2000                                               Action|Comedy    148
## 21169 1981                                     Fantasy|Horror|Thriller    148
## 21172 2001                                            Adventure|Comedy    148
## 21174 2001                      Crime|Drama|Film-Noir|Mystery|Thriller    148
## 21179 2001                                        Comedy|Drama|Mystery    148
## 21188 2002                                        Comedy|Drama|Romance    148
## 21189 2002                                Action|Drama|Sci-Fi|Thriller    148
## 21192 2002                                                 Crime|Drama    148
## 21197 1971                                              Mystery|Sci-Fi    148
## 21198 2003                            Action|Adventure|Sci-Fi|Thriller    148
## 21203 1995                 Adventure|Animation|Children|Comedy|Fantasy    149
## 21204 1995                                              Comedy|Romance    149
## 21205 1995                                            Mystery|Thriller    149
## 21206 1995                                      Crime|Mystery|Thriller    149
## 21207 1996                                                      Comedy    149
## 21209 1994                                                Drama|Horror    149
## 21210 1977                                     Action|Adventure|Sci-Fi    149
## 21214 1993                                                       Drama    149
## 21215 1994                                    Comedy|Drama|Romance|War    149
## 21216 1993                            Action|Adventure|Sci-Fi|Thriller    149
## 21217 1982                                      Action|Sci-Fi|Thriller    149
## 21218 1990                                             Children|Comedy    149
## 21219 1991                                       Crime|Horror|Thriller    149
## 21220 1981                    Action|Adventure|Animation|Horror|Sci-Fi    149
## 21221 1996                            Action|Adventure|Sci-Fi|Thriller    149
## 21222 1959                   Action|Adventure|Mystery|Romance|Thriller    149
## 21224 1986                                                   Drama|War    149
## 21225 1955                                                       Drama    149
## 21226 1975                                                       Drama    149
## 21227 1987                     Action|Adventure|Comedy|Fantasy|Romance    149
## 21228 1987                                                   Drama|War    149
## 21229 1977                                              Comedy|Romance    149
## 21232 1985                                     Adventure|Comedy|Sci-Fi    149
## 21233 1988                           Action|Adventure|Animation|Sci-Fi    149
## 21234 1984                                             Horror|Thriller    149
## 21238 1997                                               Action|Sci-Fi    149
## 21239 1998                                         Comedy|Drama|Sci-Fi    149
## 21241 1998                                                Comedy|Crime    149
## 21243 1978                                                      Horror    149
## 21244 1982                                             Horror|Thriller    149
## 21248 1990                                       Drama|Fantasy|Romance    149
## 21250 1998                                                       Drama    149
## 21251 1999                                              Comedy|Romance    149
## 21252 1999                                                       Drama    149
## 21253 1999                                      Action|Sci-Fi|Thriller    149
## 21256 1999                                              Comedy|Romance    149
## 21258 1980                                                      Comedy    149
## 21259 1999                                               Drama|Romance    149
## 21263 1999                                        Comedy|Drama|Fantasy    149
## 21264 1997                    Action|Adventure|Animation|Drama|Fantasy    149
## 21265 1983                                                      Comedy    149
## 21266 1999                                                 Crime|Drama    149
## 21268 2000                                              Drama|Thriller    149
## 21269 2000                               Crime|Horror|Mystery|Thriller    149
## 21271 2000                                                      Comedy    149
## 21273 2000                                                       Drama    149
## 21274 2000                                                       Drama    149
## 21275 2000                                                      Comedy    149
## 21276 1987                                                      Comedy    149
## 21278 2000                                               Drama|Romance    149
## 21279 2000                 Adventure|Animation|Children|Comedy|Fantasy    149
## 21282 1983                                          Action|Crime|Drama    149
## 21283 2001                                       Action|Comedy|Romance    149
## 21285 1989                                    Animation|Comedy|Musical    149
## 21286 2001                                                Comedy|Drama    149
## 21290 2001                 Adventure|Animation|Children|Comedy|Fantasy    149
## 21291 2001                                  Adventure|Children|Fantasy    149
## 21292 2001                                              Comedy|Romance    149
## 21293 2001                                                      Comedy    149
## 21294 2002                                                      Comedy    149
## 21296 2002                                     Horror|Mystery|Thriller    149
## 21297 2002                                      Action|Sci-Fi|Thriller    149
## 21298 1988                            Animation|Children|Drama|Fantasy    149
## 21300 2003                                     Children|Comedy|Fantasy    149
## 21303 2003                              Action|Adventure|Drama|Fantasy    149
## 21304 2004                                                      Comedy    149
## 21305 2004                                        Drama|Romance|Sci-Fi    149
## 21307 2004                                       Action|Drama|Thriller    149
## 21309 2004                                                      Comedy    149
## 21310 2004                                        Comedy|Drama|Romance    149
## 21311 2004                            Action|Adventure|Sci-Fi|Thriller    149
## 21312 2004                                        Comedy|Drama|Romance    149
## 21313 2004                                               Comedy|Horror    149
## 21314 2004                           Action|Adventure|Animation|Comedy    149
## 21316 2003                                            Mystery|Thriller    149
## 21317 2004                                                       Drama    149
## 21320 2005                             Action|Adventure|Comedy|Romance    149
## 21321 2005                            Action|Adventure|Sci-Fi|Thriller    149
## 21322 2005                                              Comedy|Romance    149
## 21324 2005                                              Comedy|Romance    149
## 21331 2006                                    Action|Adventure|Fantasy    149
## 21332 2006                                      Adventure|Comedy|Drama    149
## 21333 2006                                Comedy|Drama|Fantasy|Romance    149
## 21335 2006                                      Drama|Fantasy|Thriller    149
## 21336 2006                                        Crime|Drama|Thriller    149
## 21337 2006                               Drama|Mystery|Sci-Fi|Thriller    149
## 21339 2007                                    Animation|Children|Drama    149
## 21340 2007                                     Action|Fantasy|War|IMAX    149
## 21341 2007                         Action|Crime|Horror|Sci-Fi|Thriller    149
## 21344 2007                                                      Comedy    149
## 21345 2007                                        Action|Horror|Sci-Fi    149
## 21349 2008                                              Comedy|Romance    149
## 21351 2008                                 Action|Crime|Drama|Thriller    149
## 21352 2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX    149
## 21354 2008                              Adventure|Comedy|Drama|Romance    149
## 21355 2008                                         Crime|Drama|Romance    149
## 21356 2008                              Drama|Fantasy|Romance|Thriller    149
## 21357 2008                                                 Crime|Drama    149
## 21359 2008                        Adventure|Animation|Children|Fantasy    149
## 21362 2009                                            Action|Drama|War    149
## 21363 2009                          Adventure|Animation|Children|Drama    149
## 21364 2009                                        Comedy|Drama|Romance    149
## 21365 2009                                     Mystery|Sci-Fi|Thriller    149
## 21366 2009                                        Action|Comedy|Horror    149
## 21367 2009                                      Animation|Comedy|Drama    149
## 21368 2009                                Action|Adventure|Sci-Fi|IMAX    149
## 21369 2010                                      Drama|Mystery|Thriller    149
## 21370 2010                   Adventure|Animation|Children|Fantasy|IMAX    149
## 21371 2010                                               Action|Comedy    149
## 21373 2010                             Animation|Children|Comedy|Crime    149
## 21377 2010                                              Comedy|Romance    149
## 21378 2010                                        Drama|Romance|Sci-Fi    149
## 21381 2010                                                       Drama    149
## 21388 2011                                                       Drama    149
## 21389 2012                                Action|Adventure|Sci-Fi|IMAX    149
## 21390 2011                                                Comedy|Drama    149
## 21393 2011                                      Children|Drama|Mystery    149
## 21396 2011              Action|Adventure|Comedy|Crime|Mystery|Thriller    149
## 21399 2012                                        Comedy|Drama|Romance    149
## 21403 2012                                      Adventure|Fantasy|IMAX    149
## 21404 2012                                        Action|Drama|Western    149
## 21406 2013                                    Action|Drama|Horror|IMAX    149
## 21410 2013                                                       Drama    149
## 21419 2014                                                       Drama    149
## 21420 2014                                     Action|Adventure|Sci-Fi    149
## 21421 2014                                       Action|Mystery|Sci-Fi    149
## 21422 2014                              Action|Mystery|Sci-Fi|Thriller    149
## 21428 2014                                  Animation|Children|Fantasy    149
## 21429 2014                                                 Documentary    149
## 21431 2015                            Action|Adventure|Sci-Fi|Thriller    149
## 21432 2015                                                 Documentary    149
## 21434 1995                 Adventure|Animation|Children|Comedy|Fantasy    150
## 21435 1995                                  Adventure|Children|Fantasy    150
## 21436 1995                                                      Comedy    150
## 21438 1995                                                      Comedy    150
## 21439 1995                                       Comedy|Crime|Thriller    150
## 21440 1995                                       Action|Crime|Thriller    150
## 21442 1995                                                       Drama    150
## 21443 1995                                              Comedy|Romance    150
## 21444 1995                                    Action|Adventure|Fantasy    150
## 21445 1995                                       Comedy|Drama|Thriller    150
## 21447 1995                                  Adventure|Children|Fantasy    150
## 21448 1995                                                      Comedy    150
## 21449 1996                               Action|Comedy|Horror|Thriller    150
## 21450 1995                                                      Action    150
## 21451 1996                                   Action|Adventure|Thriller    150
## 21455 1995                          Action|Comedy|Crime|Drama|Thriller    150
## 21456 1995                               Action|Adventure|Comedy|Crime    150
## 21457 1995                                       Action|Crime|Thriller    150
## 21458 1995                             Action|Adventure|Crime|Thriller    150
## 21459 1995                                      Action|Sci-Fi|Thriller    150
## 21460 1995                                                      Comedy    150
## 21461 1995                                              Comedy|Romance    150
## 21462 1995                                       Action|Crime|Thriller    150
## 21463 1995                                               Horror|Sci-Fi    150
## 21464 1995                                     Action|Adventure|Sci-Fi    150
## 21466 1994                                             Action|Thriller    150
## 21467 1994                                            Adventure|Comedy    150
## 21468 1994                                               Comedy|Sci-Fi    150
## 21470 1994                                       Action|Crime|Thriller    150
## 21471 1995                                Action|Drama|Sci-Fi|Thriller    150
## 21475 1995                                        Action|Comedy|Sci-Fi    150
## 21476 1995                                                      Comedy    150
## 21477 1995                                              Comedy|Romance    150
## 21478 1994                                                      Comedy    150
## 21479 1994                                                      Comedy    150
## 21482 1994             Adventure|Animation|Children|Drama|Musical|IMAX    150
## 21483 1994                                 Action|Comedy|Crime|Fantasy    150
## 21485 1994                                     Action|Romance|Thriller    150
## 21487 1994                                    Adventure|Comedy|Western    150
## 21488 1993                                               Comedy|Sci-Fi    150
## 21489 1993                                     Action|Adventure|Sci-Fi    150
## 21491 1993                            Action|Adventure|Sci-Fi|Thriller    150
## 21492 1993                                                Comedy|Drama    150
## 21493 1993                                                       Drama    150
## 21494 1993                                                      Comedy    150
## 21495 1993                                        Comedy|Drama|Romance    150
## 21496 1982                                      Action|Sci-Fi|Thriller    150
## 21497 1993                                                Action|Crime    150
## 21498 1994                                     Action|Mystery|Thriller    150
## 21499 1990                                             Children|Comedy    150
## 21500 1992                 Adventure|Animation|Children|Comedy|Musical    150
## 21501 1991                                               Action|Sci-Fi    150
## 21502 1990                                     Adventure|Drama|Western    150
## 21503 1989                                       Action|Crime|Thriller    150
## 21504 1996                           Action|Adventure|Mystery|Thriller    150
## 21505 1996                                   Action|Adventure|Thriller    150
## 21508 1996                                             Comedy|Thriller    150
## 21509 1996                                                      Comedy    150
## 21510 1996                                       Action|Drama|Thriller    150
## 21511 1996                               Comedy|Fantasy|Romance|Sci-Fi    150
## 21512 1996                                      Comedy|Horror|Thriller    150
## 21514 1996                                            Action|Adventure    150
## 21515 1996                                      Comedy|Fantasy|Musical    150
## 21516 1996                                              Crime|Thriller    150
## 21517 1996                                   Action|Adventure|Thriller    150
## 21518 1996                                        Comedy|Drama|Romance    150
## 21519 1972                                                 Crime|Drama    150
## 21521 1996                                             Children|Comedy    150
## 21522 1993                                                      Comedy    150
## 21525 1996                                       Action|Drama|Thriller    150
## 21526 1996                                                    Thriller    150
## 21527 1996           Animation|Children|Comedy|Fantasy|Musical|Romance    150
## 21528 1971                             Children|Comedy|Fantasy|Musical    150
## 21529 1982                                       Children|Drama|Sci-Fi    150
## 21530 1991                                              Comedy|Fantasy    150
## 21534 1984                                      Action|Sci-Fi|Thriller    150
## 21535 1989                                                       Drama    150
## 21537 1993                                      Comedy|Fantasy|Romance    150
## 21541 1990                                   Action|Adventure|Thriller    150
## 21542 1979                                            Adventure|Sci-Fi    150
## 21543 1989                                               Action|Sci-Fi    150
## 21544 1982                            Action|Adventure|Sci-Fi|Thriller    150
## 21545 1984                                     Action|Adventure|Sci-Fi    150
## 21546 1986                                     Adventure|Comedy|Sci-Fi    150
## 21547 1992                                                Action|Crime    150
## 21548 1996                                        Action|Comedy|Sci-Fi    150
## 21549 1996                                               Drama|Romance    150
## 21551 1996                            Adventure|Animation|Comedy|Crime    150
## 21552 1996                              Comedy|Horror|Mystery|Thriller    150
## 21553 1996                                Comedy|Drama|Fantasy|Romance    150
## 21554 1996                            Action|Adventure|Comedy|Thriller    150
## 21555 1997                                                      Comedy    150
## 21556 1997                                        Comedy|Crime|Romance    150
## 21557 1997                                       Action|Drama|Thriller    150
## 21558 1997                                     Action|Adventure|Comedy    150
## 21559 1997                                             Action|Thriller    150
## 21561 1997                            Action|Adventure|Sci-Fi|Thriller    150
## 21562 1997                                   Action|Adventure|Thriller    150
## 21564 1997                                        Action|Comedy|Sci-Fi    150
## 21566 1997                                             Children|Comedy    150
## 21568 1997                              Drama|Mystery|Romance|Thriller    150
## 21569 1997                                             Action|Thriller    150
## 21571 1997                                         Action|Thriller|War    150
## 21572 1997                            Crime|Film-Noir|Mystery|Thriller    150
## 21575 1997                                                Comedy|Drama    150
## 21576 1997                                     Horror|Mystery|Thriller    150
## 21578 1997                                       Drama|Sci-Fi|Thriller    150
## 21579 1997                                                       Drama    150
## 21580 1997                                                       Drama    150
## 21581 1997                                               Action|Sci-Fi    150
## 21582 1998                                         Comedy|Drama|Sci-Fi    150
## 21586 1998                                                Comedy|Crime    150
## 21587 1998                                                      Comedy    150
## 21589 1998                                       Action|Crime|Thriller    150
## 21591 1997                                        Comedy|Drama|Romance    150
## 21592 1998                                       Action|Crime|Thriller    150
## 21593 1998                                     Action|Adventure|Sci-Fi    150
## 21594 1998                                       Action|Drama|Thriller    150
## 21596 1998                                                    Thriller    150
## 21597 1998                                    Adventure|Comedy|Romance    150
## 21598 1998                                        Comedy|Drama|Romance    150
## 21599 1998                        Action|Crime|Mystery|Sci-Fi|Thriller    150
## 21601 1998                                Action|Comedy|Crime|Thriller    150
## 21602 1998                                              Comedy|Romance    150
## 21604 1988                                                       Drama    150
## 21605 1986                                   Adventure|Fantasy|Musical    150
## 21606 1987                                   Action|Comedy|Crime|Drama    150
## 21607 1989                                   Action|Comedy|Crime|Drama    150
## 21608 1992                                   Action|Comedy|Crime|Drama    150
## 21609 1990                                               Comedy|Horror    150
## 21610 1985                    Action|Adventure|Children|Comedy|Fantasy    150
## 21614 1994                                             Children|Comedy    150
## 21615 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    150
## 21616 1998                         Action|Crime|Drama|Mystery|Thriller    150
## 21617 1992                                             Children|Comedy    150
## 21618 1983                                                       Drama    150
## 21621 1992                                              Comedy|Fantasy    150
## 21622 1998                                Action|Comedy|Crime|Thriller    150
## 21623 1998                 Adventure|Animation|Children|Comedy|Fantasy    150
## 21624 1998                                        Comedy|Drama|Fantasy    150
## 21625 1998                                             Action|Thriller    150
## 21627 1998                                     Horror|Mystery|Thriller    150
## 21629 1998                         Adventure|Animation|Children|Comedy    150
## 21630 1985                                   Action|Adventure|Thriller    150
## 21631 1998                                        Comedy|Drama|Romance    150
## 21632 1984                                                       Drama    150
## 21633 1986                                      Action|Adventure|Drama    150
## 21634 1989                             Action|Adventure|Children|Drama    150
## 21635 1998                                              Comedy|Romance    150
## 21636 1999                                              Comedy|Romance    150
## 21637 1999                                             Action|Thriller    150
## 21638 1999                                              Comedy|Romance    150
## 21639 1999                                                Comedy|Crime    150
## 21640 1999                                      Drama|Mystery|Thriller    150
## 21641 1999                                                       Drama    150
## 21642 1999                                                      Comedy    150
## 21644 1999                                              Comedy|Romance    150
## 21645 1999                                                Comedy|Crime    150
## 21646 1999                                              Crime|Thriller    150
## 21648 1999                                     Action|Adventure|Sci-Fi    150
## 21649 1978                                     Action|Adventure|Sci-Fi    150
## 21650 1999                                     Action|Adventure|Comedy    150
## 21651 1999                                                      Comedy    150
## 21652 1999                                Action|Comedy|Sci-Fi|Western    150
## 21653 1999                                              Comedy|Romance    150
## 21654 1999                                                    Thriller    150
## 21655 1984                                        Action|Comedy|Sci-Fi    150
## 21656 1999                               Action|Horror|Sci-Fi|Thriller    150
## 21658 1999                                              Action|Mystery    150
## 21659 1999                                                      Comedy    150
## 21660 1988                                Comedy|Drama|Fantasy|Romance    150
## 21661 1999                                               Drama|Romance    150
## 21663 1990                            Action|Adventure|Sci-Fi|Thriller    150
## 21665 1964                                   Action|Adventure|Thriller    150
## 21666 1963                                   Action|Adventure|Thriller    150
## 21667 1962                                   Action|Adventure|Thriller    150
## 21668 1992                                             Children|Comedy    150
## 21669 1999                                 Action|Crime|Drama|Thriller    150
## 21670 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    150
## 21671 1981                                   Action|Adventure|Thriller    150
## 21672 1989                                   Action|Adventure|Thriller    150
## 21673 1973                                   Action|Adventure|Thriller    150
## 21674 1965                                   Action|Adventure|Thriller    150
## 21675 1999                                        Comedy|Drama|Fantasy    150
## 21676 1999                                                    Thriller    150
## 21677 1983                                                      Comedy    150
## 21678 1999                                    Adventure|Comedy|Fantasy    150
## 21680 1999                                                      Comedy    150
## 21683 1993                                               Action|Comedy    150
## 21684 1992                                                      Comedy    150
## 21685 1993                                                      Comedy    150
## 21687 1992                                        Comedy|Drama|Romance    150
## 21688 2000                                                Comedy|Crime    150
## 21689 2000                                             Action|Thriller    150
## 21690 2000                                                       Drama    150
## 21692 1993                                              Comedy|Fantasy    150
## 21693 1995                                                Comedy|Drama    150
## 21694 1999                                                       Drama    150
## 21695 2000                                              Drama|Thriller    150
## 21696 2000                                                       Drama    150
## 21697 2000                                        Comedy|Drama|Romance    150
## 21700 2000                                   Action|Adventure|Thriller    150
## 21701 1977                                   Action|Adventure|Thriller    150
## 21702 1979                            Action|Adventure|Sci-Fi|Thriller    150
## 21703 1974                                   Action|Adventure|Thriller    150
## 21704 1987                                               Action|Sci-Fi    150
## 21705 2000                                            Action|Drama|War    150
## 21707 2000                                        Drama|Horror|Mystery    150
## 21708 2000                                                      Comedy    150
## 21709 2000                                                      Comedy    150
## 21710 2000                                       Drama|Horror|Thriller    150
## 21714 1960                                     Action|Adventure|Sci-Fi    150
## 21715 2000                                                Comedy|Drama    150
## 21716 2000                                               Action|Comedy    150
## 21717 1971                                   Action|Adventure|Thriller    150
## 21718 2000                                                Drama|Sci-Fi    150
## 21719 2000                                                       Drama    150
## 21720 2000                                              Comedy|Romance    150
## 21721 2000                                                    Thriller    150
## 21722 2000                                        Comedy|Drama|Romance    150
## 21723 2000                                                Comedy|Crime    150
## 21724 2000                                      Adventure|Comedy|Crime    150
## 21725 1991                                                      Comedy    150
## 21726 2001                                              Comedy|Romance    150
## 21727 2001                                      Comedy|Fantasy|Romance    150
## 21728 1984                                                      Comedy    150
## 21729 2001                                                   Drama|War    150
## 21731 2000                                            Mystery|Thriller    150
## 21732 2001                                        Comedy|Crime|Romance    150
## 21733 2001                                              Comedy|Romance    150
## 21734 2001                               Action|Crime|Mystery|Thriller    150
## 21735 2001                                             Action|Thriller    150
## 21736 1991                                              Comedy|Western    150
## 21737 2001                                               Comedy|Sci-Fi    150
## 21739 1991                                       Action|Crime|Thriller    150
## 21740 2001                                       Action|Crime|Thriller    150
## 21741 2001                                                Action|Drama    150
## 21743 1986                                               Comedy|Sci-Fi    150
## 21744 1989                                     Adventure|Comedy|Sci-Fi    150
## 21745 1989                                                       Drama    150
## 21746 2001                            Action|Adventure|Sci-Fi|Thriller    150
## 21747 2001                                               Action|Comedy    150
## 21749 2001                                           Drama|Romance|War    150
## 21750 2001                                            Adventure|Comedy    150
## 21751 2001                                        Comedy|Drama|Musical    150
## 21752 2001                                                    Thriller    150
## 21754 2001                                                      Action    150
## 21756 2001                                  Adventure|Children|Fantasy    150
## 21757 2001                                 Action|Crime|Drama|Thriller    150
## 21758 1990                                    Adventure|Drama|Thriller    150
## 21760 1991                             Adventure|Comedy|Fantasy|Sci-Fi    150
## 21762 2001                                            Action|Drama|War    150
## 21763 2002                                                      Comedy    150
## 21764 2001                                               Drama|Romance    150
## 21765 2002                                             Action|Thriller    150
## 21766 2002                                     Action|Adventure|Sci-Fi    150
## 21767 2002                               Action|Horror|Sci-Fi|Thriller    150
## 21768 2002                                                    Thriller    150
## 21769 2002                                                      Comedy    150
## 21770 2002                                              Crime|Thriller    150
## 21771 2002                            Action|Adventure|Sci-Fi|Thriller    150
## 21772 2002                                        Comedy|Drama|Romance    150
## 21773 2002                                Action|Adventure|Sci-Fi|IMAX    150
## 21776 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    150
## 21777 2002                                              Comedy|Romance    150
## 21778 2002                                        Action|Comedy|Sci-Fi    150
## 21779 2002                                      Horror|Sci-Fi|Thriller    150
## 21780 2002                                                Action|Crime    150
## 21781 2002                                           Adventure|Fantasy    150
## 21784 2002                                                 Crime|Drama    150
## 21785 2003                                             Action|Thriller    150
## 21787 2003                                Drama|Horror|Sci-Fi|Thriller    150
## 21788 2003                                Action|Drama|Sci-Fi|Thriller    150
## 21789 2003                                                      Comedy    150
## 21791 2003                                     Action|Adventure|Sci-Fi    150
## 21792 2003                                              Crime|Thriller    150
## 21793 2003                               Crime|Horror|Mystery|Thriller    150
## 21794 2003                            Action|Adventure|Sci-Fi|Thriller    150
## 21796 2003                                Comedy|Drama|Fantasy|Romance    150
## 21798 2003                                       Action|Crime|Thriller    150
## 21800 2003                                     Action|Adventure|Sci-Fi    150
## 21802 2003                                       Action|Fantasy|Sci-Fi    150
## 21803 2003                                          Comedy|Crime|Drama    150
## 21805 2003                                     Action|Adventure|Comedy    150
## 21807 2003                                     Children|Comedy|Fantasy    150
## 21808 1991                                                      Comedy    150
## 21809 1991                                              Comedy|Romance    150
## 21811 2004                                              Comedy|Romance    150
## 21814 2004                                Action|Comedy|Crime|Thriller    150
## 21816 2004                                Action|Drama|Horror|Thriller    150
## 21817 2004                                         Action|Comedy|Crime    150
## 21819 1967                            Action|Adventure|Sci-Fi|Thriller    150
## 21820 1983                                   Action|Adventure|Thriller    150
## 21821 1983                                   Action|Adventure|Thriller    150
## 21823 2004                                      Adventure|Fantasy|IMAX    150
## 21825 1990                                            Action|Drama|War    150
## 21827 1987                                              Comedy|Romance    150
## 21830 2004                                               Comedy|Horror    150
## 21832 2004                      Action|Adventure|Comedy|Crime|Thriller    150
## 21834 2001                               Drama|Horror|Mystery|Thriller    150
## 21835 2004                                        Comedy|Drama|Romance    150
## 21836 2005                                              Drama|Thriller    150
## 21838 2005                            Action|Adventure|Sci-Fi|Thriller    150
## 21849 1995                                                      Comedy    151
## 21852 1995                                              Children|Drama    151
## 21853 1995                                              Comedy|Romance    151
## 21855 1995                                      Crime|Mystery|Thriller    151
## 21856 1996                                   Action|Adventure|Thriller    151
## 21859 1995                               Action|Adventure|Comedy|Crime    151
## 21860 1995                             Action|Adventure|Mystery|Sci-Fi    151
## 21863 1995                                         Action|Crime|Sci-Fi    151
## 21864 1995                                       Action|Crime|Thriller    151
## 21866 1994                                              Drama|Thriller    151
## 21868 1994                                                Drama|Horror    151
## 21869 1994                                   Drama|Romance|War|Western    151
## 21873 1994                                                       Drama    151
## 21874 1994                                       Action|Drama|Thriller    151
## 21876 1994                                        Comedy|Drama|Fantasy    151
## 21878 1995                                              Comedy|Romance    151
## 21879 1994                                                      Comedy    151
## 21885 1994                                 Action|Comedy|Crime|Fantasy    151
## 21888 1993                                     Children|Comedy|Fantasy    151
## 21889 1994                                Action|Comedy|Crime|Thriller    151
## 21890 1994                                    Adventure|Comedy|Western    151
## 21893 1993                                              Comedy|Romance    151
## 21900 1993                                               Drama|Romance    151
## 21902 1993                                        Comedy|Drama|Romance    151
## 21903 1993                                        Action|Drama|Western    151
## 21905 1992                 Adventure|Animation|Children|Comedy|Musical    151
## 21907 1990                                     Adventure|Drama|Western    151
## 21908 1989                                       Action|Crime|Thriller    151
## 21909 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    151
## 21910 1990                                              Comedy|Romance    151
## 21911 1995                 Adventure|Animation|Children|Comedy|Fantasy    152
## 21913 1995                                   Action|Adventure|Thriller    152
## 21914 1995                                       Comedy|Crime|Thriller    152
## 21915 1995                                               Drama|Romance    152
## 21919 1996                                   Action|Adventure|Thriller    152
## 21920 1995                                            Action|Drama|War    152
## 21921 1976                                        Crime|Drama|Thriller    152
## 21922 1996                                                      Comedy    152
## 21923 1995                                        Adventure|Drama|IMAX    152
## 21925 1995                                       Action|Crime|Thriller    152
## 21926 1995                                     Action|Adventure|Sci-Fi    152
## 21927 1994                                            Adventure|Comedy    152
## 21928 1994                                                Drama|Horror    152
## 21930 1994                                       Action|Crime|Thriller    152
## 21935 1994                                 Action|Crime|Drama|Thriller    152
## 21936 1994                                    Comedy|Drama|Romance|War    152
## 21937 1994                                              Comedy|Romance    152
## 21939 1994                                     Action|Romance|Thriller    152
## 21940 1994                    Action|Adventure|Comedy|Romance|Thriller    152
## 21941 1993                                   Action|Adventure|Thriller    152
## 21942 1993                                              Drama|Thriller    152
## 21944 1993                            Action|Adventure|Sci-Fi|Thriller    152
## 21945 1993                                                Comedy|Drama    152
## 21947 1990                                             Children|Comedy    152
## 21948 1990                       Comedy|Drama|Fantasy|Romance|Thriller    152
## 21949 1990                                     Adventure|Drama|Western    152
## 21951 1990                                              Comedy|Romance    152
## 21953 1996                                   Action|Adventure|Thriller    152
## 21954 1996                           Action|Adventure|Romance|Thriller    152
## 21955 1964                                                  Comedy|War    152
## 21956 1996                                          Comedy|Crime|Drama    152
## 21959 1954                                      Adventure|Drama|Sci-Fi    152
## 21960 1988                                       Action|Crime|Thriller    152
## 21961 1992                                      Crime|Mystery|Thriller    152
## 21962 1986                                                   Drama|War    152
## 21963 1982                                       Children|Drama|Sci-Fi    152
## 21966 1975                                                       Drama    152
## 21968 1981                                            Action|Adventure    152
## 21970 1971                                 Crime|Drama|Sci-Fi|Thriller    152
## 21973 1987                                                   Drama|War    152
## 21974 1984                                      Action|Sci-Fi|Thriller    152
## 21975 1978                                                   Drama|War    152
## 21977 1985                                     Adventure|Comedy|Sci-Fi    152
## 21978 1970                                                   Drama|War    152
## 21979 1986                                               Drama|Romance    152
## 21980 1997                                                Comedy|Drama    152
## 21981 1997                                        Comedy|Crime|Romance    152
## 21982 1997                                     Action|Adventure|Comedy    152
## 21983 1997                              Action|Adventure|Comedy|Sci-Fi    152
## 21986 1997                                                       Drama    152
## 21988 1998                                               Drama|Romance    152
## 21989 1998                                         Comedy|Drama|Sci-Fi    152
## 21990 1997                                               Drama|Romance    152
## 21991 1997                                               Drama|Romance    152
## 21994 1988                                                       Drama    152
## 21996 1997                                    Comedy|Drama|Romance|War    152
## 21997 1998                                        Comedy|Drama|Romance    152
## 21998 1998                                                Comedy|Drama    152
## 22001 1999                                     Action|Adventure|Comedy    152
## 22002 1999                                              Comedy|Romance    152
## 22003 1999                                        Drama|Horror|Mystery    152
## 22005 1967                                            Action|Drama|War    152
## 22008 1999                                                       Drama    152
## 22009 1992                                      Drama|Romance|Thriller    152
## 22011 2000                                        Comedy|Drama|Romance    152
## 22013 2000                                      Horror|Sci-Fi|Thriller    152
## 22014 2000                                                       Drama    152
## 22016 2000                                                       Drama    152
## 22018 1987                                                      Comedy    152
## 22019 2000                                       Comedy|Crime|Thriller    152
## 22021 2001                                                   Drama|War    152
## 22023 2001                                                 Crime|Drama    152
## 22024 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    152
## 22025 2001                               Drama|Horror|Mystery|Thriller    152
## 22026 2001                      Crime|Drama|Film-Noir|Mystery|Thriller    152
## 22028 2001                 Adventure|Animation|Children|Comedy|Fantasy    152
## 22030 2001                                              Crime|Thriller    152
## 22033 2001                                               Drama|Romance    152
## 22034 2001                                            Action|Drama|War    152
## 22035 2001                                        Comedy|Drama|Mystery    152
## 22036 1970                                            Comedy|Drama|War    152
## 22037 2002                            Action|Adventure|Sci-Fi|Thriller    152
## 22043 2002                                                 Crime|Drama    152
## 22044 2000                                         Action|Comedy|Crime    152
## 22047 2003                             Action|Adventure|Comedy|Fantasy    152
## 22050 2003                                        Comedy|Drama|Romance    152
## 22051 2003                        Crime|Drama|Mystery|Romance|Thriller    152
## 22052 2000                                Action|Drama|Horror|Thriller    152
## 22055 2004                                       Drama|Sci-Fi|Thriller    152
## 22059 1999                                               Action|Comedy    152
## 22061 2004                                               Drama|Romance    152
## 22062 2004                                Action|Adventure|Sci-Fi|IMAX    152
## 22065 2004                  Action|Adventure|Animation|Children|Comedy    152
## 22066 1988                     Action|Adventure|Drama|Mystery|Thriller    152
## 22068 2004                                                       Drama    152
## 22069 2004                                                   Drama|War    152
## 22072 2004                                                 Crime|Drama    152
## 22076 2005                                                 Documentary    152
## 22077 2005                                              Drama|Thriller    152
## 22078 2005                             Action|Crime|Drama|Thriller|War    152
## 22079 2005                               Comedy|Crime|Mystery|Thriller    152
## 22081 2005                                       Drama|Musical|Romance    152
## 22082 2005                                  Adventure|Children|Fantasy    152
## 22083 2005                                 Action|Crime|Drama|Thriller    152
## 22084 2006                                 Action|Sci-Fi|Thriller|IMAX    152
## 22085 2006                                                Comedy|Drama    152
## 22089 2006                                              Drama|Thriller    152
## 22090 2005                                                Comedy|Drama    152
## 22091 2006                      Action|Adventure|Drama|Sci-Fi|Thriller    152
## 22095 2007                                    Animation|Children|Drama    152
## 22102 2007                                               Drama|Western    152
## 22103 2008                                 Comedy|Crime|Drama|Thriller    152
## 22106 2008                                 Action|Crime|Drama|Thriller    152
## 22107 2008                       Action|Animation|Children|Comedy|IMAX    152
## 22110 2009                                Crime|Drama|Mystery|Thriller    152
## 22111 2009                                            Action|Drama|War    152
## 22116 2009                                     Mystery|Sci-Fi|Thriller    152
## 22119 2010                                      Drama|Mystery|Thriller    152
## 22120 2010                   Adventure|Animation|Children|Fantasy|IMAX    152
## 22121 2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX    152
## 22123 2010                                                       Drama    152
## 22125 2010                                                       Drama    152
## 22132 1995                                            Action|Drama|War    153
## 22135 1995                                        Comedy|Drama|Romance    153
## 22139 1993                                                      Comedy    153
## 22140 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    153
## 22153 1997                            Crime|Film-Noir|Mystery|Thriller    153
## 22165 1999                                             Horror|Thriller    153
## 22167 1992                                        Drama|Romance|Sci-Fi    153
## 22168 2000                                          Animation|Children    153
## 22169 2000                                        Comedy|Drama|Romance    153
## 22171 2001                            Action|Adventure|Comedy|Thriller    153
## 22177 1991                                           Adventure|Romance    153
## 22182 1995                                                      Comedy    154
## 22183 1995                                              Comedy|Romance    154
## 22186 1995                                                       Drama    154
## 22188 1996                                       Drama|Horror|Thriller    154
## 22191 1996                                                      Comedy    154
## 22196 1996                                              Comedy|Romance    154
## 22197 1996                                          Adventure|Children    154
## 22200 1996                    Animation|Children|Drama|Musical|Romance    154
## 22206 1995                                     Mystery|Sci-Fi|Thriller    155
## 22210 1993                            Action|Adventure|Sci-Fi|Thriller    155
## 22215 1964                                                  Comedy|War    155
## 22216 1996                            Action|Adventure|Sci-Fi|Thriller    155
## 22222 1989                            Action|Adventure|Sci-Fi|Thriller    155
## 22225 1991                                        Comedy|Drama|Romance    155
## 22230 1985                                              Fantasy|Sci-Fi    155
## 22235 1984                                      Action|Sci-Fi|Thriller    155
## 22236 1992                            Action|Comedy|Crime|Drama|Sci-Fi    155
## 22237 1997                              Action|Adventure|Comedy|Sci-Fi    155
## 22238 1997                                 Action|Crime|Drama|Thriller    155
## 22240 1997                                               Drama|Romance    155
## 22241 1981                                                       Drama    155
## 22242 1984                                               Comedy|Sci-Fi    155
## 22243 1989                                     Adventure|Comedy|Sci-Fi    155
## 22244 1990                             Adventure|Comedy|Sci-Fi|Western    155
## 22247 1985                                                     Western    155
## 22249 1976                                     Action|Adventure|Sci-Fi    155
## 22250 1968                                         Action|Drama|Sci-Fi    155
## 22253 1990                                               Comedy|Horror    155
## 22254 1985                                                       Drama    155
## 22256 1990                            Action|Adventure|Sci-Fi|Thriller    155
## 22259 1993                             Action|Adventure|Comedy|Fantasy    156
## 22261 1995                                                      Comedy    156
## 22269 1997                                   Action|Adventure|Thriller    156
## 22273 1999                                                      Comedy    156
## 22279 2000                                                Action|Crime    156
## 22301 2010                       Action|Adventure|Sci-Fi|Thriller|IMAX    156
## 22302 1995                 Adventure|Animation|Children|Comedy|Fantasy    157
## 22303 1995                                  Adventure|Children|Fantasy    157
## 22304 1995                                   Action|Adventure|Thriller    157
## 22305 1995                                               Comedy|Horror    157
## 22307 1995                                              Children|Drama    157
## 22308 1995                                            Mystery|Thriller    157
## 22310 1995                             Action|Adventure|Mystery|Sci-Fi    157
## 22311 1995                                       Action|Crime|Thriller    157
## 22312 1995                                     Action|Adventure|Sci-Fi    157
## 22314 1977                                     Action|Adventure|Sci-Fi    157
## 22315 1995                                                      Comedy    157
## 22318 1994                                     Action|Adventure|Sci-Fi    157
## 22319 1994                                                      Comedy    157
## 22320 1994                                 Action|Comedy|Crime|Fantasy    157
## 22321 1994                                               Action|Comedy    157
## 22322 1994                                     Action|Romance|Thriller    157
## 22323 1993                                           Action|Comedy|War    157
## 22324 1993                            Action|Adventure|Sci-Fi|Thriller    157
## 22325 1993                             Action|Adventure|Comedy|Fantasy    157
## 22326 1993                                                   Drama|War    157
## 22327 1982                                      Action|Sci-Fi|Thriller    157
## 22329 1990                                             Children|Comedy    157
## 22331 1996                           Action|Adventure|Mystery|Thriller    157
## 22332 1996                                   Action|Adventure|Thriller    157
## 22333 1996                           Action|Adventure|Romance|Thriller    157
## 22336 1996                            Action|Adventure|Sci-Fi|Thriller    157
## 22337 1968                                      Adventure|Drama|Sci-Fi    157
## 22338 1988                                       Action|Crime|Thriller    157
## 22339 1982                                       Children|Drama|Sci-Fi    157
## 22340 1989                            Action|Adventure|Sci-Fi|Thriller    157
## 22341 1980                                     Action|Adventure|Sci-Fi    157
## 22342 1981                                            Action|Adventure    157
## 22346 1983                                     Action|Adventure|Sci-Fi    157
## 22351 1987                                Action|Comedy|Fantasy|Horror    157
## 22352 1993                                      Comedy|Fantasy|Romance    157
## 22355 1989                                            Action|Adventure    157
## 22356 1992                               Action|Horror|Sci-Fi|Thriller    157
## 22357 1975                                               Action|Horror    157
## 22358 1996                                        Action|Comedy|Sci-Fi    157
## 22359 1997                                     Action|Adventure|Comedy    157
## 22360 1997                              Action|Adventure|Comedy|Sci-Fi    157
## 22361 1997                            Action|Adventure|Sci-Fi|Thriller    157
## 22362 1997                                 Action|Crime|Drama|Thriller    157
## 22363 1997                                        Action|Comedy|Sci-Fi    157
## 22364 1997                                      Horror|Sci-Fi|Thriller    157
## 22366 1997                                               Action|Sci-Fi    157
## 22368 1997                                        Action|Horror|Sci-Fi    157
## 22369 1997                                               Drama|Romance    157
## 22371 1998                                              Comedy|Romance    157
## 22372 1988                                                       Drama    157
## 22373 1988                                             Horror|Thriller    157
## 22374 1984                                               Comedy|Horror    157
## 22375 1990                             Adventure|Comedy|Sci-Fi|Western    157
## 22376 1997                                               Drama|Romance    157
## 22377 1998                                            Action|Drama|War    157
## 22378 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    157
## 22379 1984                                    Action|Adventure|Fantasy    157
## 22380 1990                                  Adventure|Children|Fantasy    157
## 22381 1998                                      Action|Horror|Thriller    157
## 22384 1998                         Adventure|Animation|Children|Comedy    157
## 22385 1954                                         Drama|Horror|Sci-Fi    157
## 22386 1988                                                Comedy|Crime    157
## 22387 1989                                                Comedy|Crime    157
## 22388 1986                                      Action|Adventure|Drama    157
## 22390 1986                                            Adventure|Comedy    157
## 22391 1999                                                Comedy|Crime    157
## 22393 1999                                     Action|Adventure|Sci-Fi    157
## 22394 1999                                     Action|Adventure|Comedy    157
## 22396 1999                                              Comedy|Romance    157
## 22397 1999                                       Drama|Horror|Thriller    157
## 22398 1984                                        Action|Comedy|Sci-Fi    157
## 22402 1999                           Action|Adventure|Comedy|Drama|War    157
## 22404 1987                          Action|Crime|Drama|Sci-Fi|Thriller    157
## 22406 1993                                                Action|Drama    157
## 22407 1999                      Action|Fantasy|Horror|Mystery|Thriller    157
## 22408 1992                                                       Drama    157
## 22409 1984                                            Action|Drama|War    157
## 22410 1987                                      Action|Sci-Fi|Thriller    157
## 22412 2000                                   Action|Adventure|Thriller    157
## 22413 2000                                     Action|Adventure|Sci-Fi    157
## 22414 1987                                                      Horror    157
## 22415 2000                                               Action|Comedy    157
## 22417 2000                                                       Drama    157
## 22418 2000                                                Drama|Horror    157
## 22419 1987                                Action|Comedy|Crime|Thriller    157
## 22421 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    157
## 22422 2001                                    Action|Drama|Romance|War    157
## 22423 2001                                            Action|Adventure    157
## 22424 2001                                      Adventure|Drama|Sci-Fi    157
## 22426 1986                                               Comedy|Sci-Fi    157
## 22427 2001                                                      Comedy    157
## 22429 2001                 Adventure|Animation|Children|Comedy|Fantasy    157
## 22430 2001                           Drama|Fantasy|Horror|Thriller|War    157
## 22433 2001                                           Adventure|Fantasy    157
## 22434 2001                                            Action|Drama|War    157
## 22436 2002                                      Action|Horror|Thriller    157
## 22437 2002                            Action|Adventure|Sci-Fi|Thriller    157
## 22438 2002                                Action|Adventure|Sci-Fi|IMAX    157
## 22439 2002                                     Action|Mystery|Thriller    157
## 22440 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    157
## 22442 2002                                     Horror|Mystery|Thriller    157
## 22443 1988                                         Animation|Drama|War    157
## 22444 2002                                      Action|Sci-Fi|Thriller    157
## 22445 2002                                           Adventure|Fantasy    157
## 22447 2002                                        Comedy|Drama|Romance    157
## 22449 2003                            Action|Adventure|Sci-Fi|Thriller    157
## 22450 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    157
## 22451 2003                                Comedy|Drama|Fantasy|Romance    157
## 22452 2003                         Adventure|Animation|Children|Comedy    157
## 22455 2003                                     Action|Adventure|Sci-Fi    157
## 22456 2003                             Action|Adventure|Comedy|Fantasy    157
## 22457 2003                                              Comedy|Musical    157
## 22458 2003                                       Action|Crime|Thriller    157
## 22459 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    157
## 22462 2003                              Action|Adventure|Drama|Fantasy    157
## 22466 2004                                       Action|Drama|Thriller    157
## 22467 2004                             Action|Adventure|Fantasy|Horror    157
## 22468 2002                                        Crime|Drama|Thriller    157
## 22472 2004         Adventure|Animation|Children|Comedy|Musical|Romance    157
## 22473 2004                      Action|Adventure|Drama|Sci-Fi|Thriller    157
## 22475 2004                                Action|Adventure|Sci-Fi|IMAX    157
## 22476 2004                            Action|Adventure|Sci-Fi|Thriller    157
## 22477 2004                                       Action|Crime|Thriller    157
## 22478 2004                               Action|Horror|Sci-Fi|Thriller    157
## 22479 2004                                               Comedy|Horror    157
## 22482 2004                  Action|Adventure|Animation|Children|Comedy    157
## 22483 2004                                Action|Comedy|Crime|Thriller    157
## 22484 2004                              Action|Fantasy|Horror|Thriller    157
## 22485 1985                                Action|Comedy|Crime|Thriller    157
## 22489 2004                                        Crime|Drama|Thriller    157
## 22490 2003                           Comedy|Crime|Drama|Horror|Mystery    157
## 22491 2005                      Adventure|Children|Comedy|Fantasy|IMAX    157
## 22494 2004                                               Action|Comedy    157
## 22495 1993                                         Action|Drama|Sci-Fi    157
## 22498 2005                                     Adventure|Comedy|Sci-Fi    157
## 22499 2005                                     Action|Adventure|Sci-Fi    157
## 22501 2005                            Action|Adventure|Sci-Fi|Thriller    157
## 22502 2005                                     Action|Adventure|Sci-Fi    157
## 22503 2005                                     Action|Adventure|Sci-Fi    157
## 22504 2005                                              Comedy|Romance    157
## 22509 2006                                      Action|Sci-Fi|Thriller    157
## 22510 2006                                    Action|Adventure|Fantasy    157
## 22513 2006                                      Comedy|Horror|Thriller    157
## 22514 2006                                Comedy|Drama|Fantasy|Romance    157
## 22515 2006                                                      Comedy    157
## 22519 2006                                   Action|Adventure|Thriller    157
## 22520 2007                                 Action|Comedy|Crime|Mystery    157
## 22521 2007                                     Action|Fantasy|War|IMAX    157
## 22522 2007                             Adventure|Drama|Sci-Fi|Thriller    157
## 22526 2007                                     Action|Adventure|Sci-Fi    157
## 22527 2006                                      Comedy|Horror|Thriller    157
## 22528 2007                      Action|Adventure|Crime|Horror|Thriller    157
## 22529 2007                                 Action|Sci-Fi|Thriller|IMAX    157
## 22530 2007                                       Action|Crime|Thriller    157
## 22531 2007                                                      Comedy    157
## 22532 2006                                          Action|Crime|Drama    157
## 22533 2007                                 Action|Crime|Drama|Thriller    157
## 22534 2007                                        Crime|Drama|Thriller    157
## 22536 2007                          Action|Horror|Sci-Fi|Thriller|IMAX    157
## 22539 2006                       Animation|Comedy|Drama|Romance|Sci-Fi    157
## 22541 2008                                       Action|Crime|Thriller    157
## 22542 2007                                             Documentary|War    157
## 22544 2008                                     Action|Adventure|Sci-Fi    157
## 22547 2008                 Adventure|Animation|Children|Romance|Sci-Fi    157
## 22548 2008                       Action|Adventure|Comedy|Crime|Fantasy    157
## 22550 2008                           Action|Adventure|Animation|Sci-Fi    157
## 22552 2008                                 Action|Crime|Drama|Thriller    157
## 22556 2009                                  Animation|Fantasy|Thriller    157
## 22557 2008                                                Action|Drama    157
## 22564 2008                                   Action|Drama|Thriller|War    157
## 22566 2009                                               Comedy|Sci-Fi    157
## 22568 2009                                                Drama|Horror    157
## 22569 2009                                        Action|Comedy|Horror    157
## 22571 2009                                Action|Drama|Sci-Fi|Thriller    157
## 22572 2009                                Action|Adventure|Sci-Fi|IMAX    157
## 22574 2010                                      Drama|Mystery|Thriller    157
## 22575 2010                                      Adventure|Fantasy|IMAX    157
## 22578 2010                       Action|Adventure|Sci-Fi|Thriller|IMAX    157
## 22582 2010                                                      Comedy    157
## 22585 2010                                                 Horror|IMAX    157
## 22586 2010                               Action|Adventure|Fantasy|IMAX    157
## 22589 2011                   Action|Comedy|Crime|Fantasy|Thriller|IMAX    157
## 22593 2011                        Action|Drama|Mystery|Sci-Fi|Thriller    157
## 22594 2011                                Action|Fantasy|Thriller|IMAX    157
## 22595 2011                           Action|Adventure|Mystery|Thriller    157
## 22596 2011                                                Drama|Sci-Fi    157
## 22599 2010                                       Action|Crime|Thriller    157
## 22601 2011                 Action|Adventure|Drama|Fantasy|Mystery|IMAX    157
## 22603 2011                        Action|Adventure|Sci-Fi|Thriller|War    157
## 22605 2011                                Action|Drama|Sci-Fi|Thriller    157
## 22606 2012                                Action|Adventure|Sci-Fi|IMAX    157
## 22610 2011                                                      Horror    157
## 22617 2012                                      Action|Adventure|Drama    157
## 22618 2012                                   Action|Horror|Sci-Fi|IMAX    157
## 22619 2012                                Action|Adventure|Sci-Fi|IMAX    157
## 22626 2013                                 Action|Sci-Fi|Thriller|IMAX    157
## 22629 1995                                        Action|Comedy|Sci-Fi    158
## 22630 1993                                              Drama|Thriller    158
## 22631 1978                                             Horror|Thriller    158
## 22634 1990                                               Comedy|Horror    158
## 22635 1985                                   Action|Adventure|Thriller    158
## 22637 1971                                               Action|Sci-Fi    158
## 22638 1987                                     Action|Adventure|Sci-Fi    158
## 22639 1992                                        Action|Comedy|Horror    158
## 22640 1991                                      Drama|Mystery|Thriller    158
## 22643 2007                                       Action|Crime|Thriller    158
## 22645 2008                 Adventure|Animation|Children|Romance|Sci-Fi    158
## 22646 2008                                        Comedy|Drama|Romance    158
## 22647 2008                                          Comedy|Crime|Drama    158
## 22649 1995                                   Action|Adventure|Thriller    159
## 22651 1995                                              Children|Drama    159
## 22652 1995                                            Mystery|Thriller    159
## 22654 1995                                                       Drama    159
## 22655 1995                                                Comedy|Drama    159
## 22656 1995                                      Action|Sci-Fi|Thriller    159
## 22659 1995                                        Adventure|Drama|IMAX    159
## 22660 1995                                       Action|Crime|Thriller    159
## 22661 1995                                              Comedy|Romance    159
## 22662 1994                                            Adventure|Comedy    159
## 22663 1994                                                Drama|Horror    159
## 22668 1994                                      Adventure|Drama|Sci-Fi    159
## 22669 1994                                                      Comedy    159
## 22670 1994                                 Action|Crime|Drama|Thriller    159
## 22672 1994             Adventure|Animation|Children|Drama|Musical|IMAX    159
## 22673 1994                                 Action|Comedy|Crime|Fantasy    159
## 22674 1994                                     Action|Romance|Thriller    159
## 22675 1994                    Action|Adventure|Comedy|Romance|Thriller    159
## 22676 1993                                   Action|Adventure|Thriller    159
## 22677 1993                                                    Thriller    159
## 22679 1993                                                       Drama    159
## 22680 1993                                              Comedy|Romance    159
## 22681 1993                                                Comedy|Drama    159
## 22683 1993                                        Comedy|Drama|Romance    159
## 22685 1990                       Comedy|Drama|Fantasy|Romance|Thriller    159
## 22686 1991                                               Action|Sci-Fi    159
## 22687 1989                                       Action|Crime|Thriller    159
## 22689 1990                                              Comedy|Romance    159
## 22691 1996                                   Action|Adventure|Thriller    159
## 22692 1995                                   Animation|Children|Comedy    159
## 22693 1996                            Action|Adventure|Sci-Fi|Thriller    159
## 22694 1996                                      Comedy|Horror|Thriller    159
## 22704 1979                                                      Comedy    159
## 22705 1982                                       Children|Drama|Sci-Fi    159
## 22726 1997                                        Action|Comedy|Sci-Fi    159
## 22727 1997                                                Action|Drama    159
## 22729 1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance    159
## 22730 1998                                                      Comedy    159
## 22731 1969                                                       Drama    159
## 22732 1979                                                       Drama    159
## 22734 1980                                     Horror|Mystery|Thriller    159
## 22738 1992                                                      Comedy    159
## 22742 1999                                Crime|Drama|Mystery|Thriller    159
## 22743 1999                                        Drama|Horror|Mystery    159
## 22745 1999                                 Action|Crime|Drama|Thriller    159
## 22746 1997                    Action|Adventure|Animation|Drama|Fantasy    159
## 22748 1926                                                  Comedy|War    159
## 22750 1984                                     Adventure|Comedy|Sci-Fi    159
## 22751 1948                                                       Drama    159
## 22753 1988                                Action|Comedy|Crime|Thriller    159
## 22754 1978                                                       Drama    159
## 22756 1987                                               Action|Sci-Fi    159
## 22758 1986                                       Action|Crime|Thriller    159
## 22760 2000                                            Mystery|Thriller    159
## 22761 2000                                              Drama|Thriller    159
## 22762 2001                                       Drama|Musical|Romance    159
## 22764 2001                      Crime|Drama|Film-Noir|Mystery|Thriller    159
## 22768 2001                                               Drama|Romance    159
## 22772 1988                            Animation|Children|Drama|Fantasy    159
## 22773 2002                       Action|Adventure|Crime|Drama|Thriller    159
## 22775 2003                                        Comedy|Drama|Romance    159
## 22776 1985                                                       Drama    159
## 22777 1983                                                      Comedy    159
## 22780 2003                                  Action|Adventure|Drama|War    159
## 22784 2004                                             Adventure|Drama    159
## 22785 2004                                                       Drama    159
## 22786 1973                                              Comedy|Western    159
## 22788 2004                                        Crime|Drama|Thriller    159
## 22790 2004                                    Adventure|Comedy|Fantasy    159
## 22791 2004                                               Action|Comedy    159
## 22792 2005                             Action|Crime|Drama|Thriller|War    159
## 22794 2006                                      Drama|Fantasy|Thriller    159
## 22795 2006                                        Crime|Drama|Thriller    159
## 22796 2007                                 Action|Comedy|Crime|Mystery    159
## 22797 1995                                              Children|Drama    160
## 22808 1993                                                   Drama|War    160
## 22810 1990                                             Children|Comedy    160
## 22812 1991                                       Crime|Horror|Thriller    160
## 22815 1972                                                 Crime|Drama    160
## 22816 1988                                                Comedy|Crime    160
## 22822 1990                                                 Crime|Drama    160
## 22826 1985                                     Adventure|Comedy|Sci-Fi    160
## 22832 1987                                                Comedy|Drama    160
## 22833 1996                                Comedy|Drama|Fantasy|Romance    160
## 22834 1997                                                      Comedy    160
## 22836 1997                                              Comedy|Romance    160
## 22837 1997                            Crime|Film-Noir|Mystery|Thriller    160
## 22842 1998                                               Drama|Romance    160
## 22853 1988                                                      Comedy    160
## 22857 1986                                                      Comedy    160
## 22860 1986                                                Comedy|Drama    160
## 22863 1984                                        Action|Comedy|Sci-Fi    160
## 22867 1980                                                      Comedy    160
## 22868 1999                                               Drama|Romance    160
## 22869 1993                                       Drama|Mystery|Romance    160
## 22873 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    160
## 22877 1999                                     Children|Comedy|Fantasy    160
## 22885 1978                                                      Comedy    160
## 22887 1987                                            Comedy|Drama|War    160
## 22888 1993                                                      Comedy    160
## 22889 1981                                              Comedy|Romance    160
## 22892 1982                                                      Comedy    160
## 22893 1985                                                      Comedy    160
## 22901 1995                                       Comedy|Crime|Thriller    161
## 22902 1995                                               Drama|Romance    161
## 22903 1995                                                       Drama    161
## 22904 1995                                     Mystery|Sci-Fi|Thriller    161
## 22906 1995                                              Comedy|Romance    161
## 22907 1995                                    Action|Adventure|Fantasy    161
## 22909 1995                    Animation|Children|Drama|Musical|Romance    161
## 22913 1995                          Action|Comedy|Crime|Drama|Thriller    161
## 22915 1995                               Action|Adventure|Comedy|Crime    161
## 22917 1995                             Action|Adventure|Mystery|Sci-Fi    161
## 22920 1995                                       Action|Crime|Thriller    161
## 22922 1995                                         Action|Crime|Sci-Fi    161
## 22923 1995                                             Action|Children    161
## 22925 1995                                                      Action    161
## 22926 1995                                        Comedy|Drama|Romance    161
## 22928 1994                                             Action|Thriller    161
## 22929 1994                                            Adventure|Comedy    161
## 22930 1995                                       Action|Comedy|Romance    161
## 22931 1995                                              Comedy|Romance    161
## 22933 1994                                               Comedy|Sci-Fi    161
## 22934 1994                                                       Drama    161
## 22936 1994                                                       Drama    161
## 22938 1994                                 Action|Crime|Drama|Thriller    161
## 22939 1994                                 Comedy|Crime|Drama|Thriller    161
## 22941 1994                                       Action|Drama|Thriller    161
## 22942 1994                                     Action|Adventure|Sci-Fi    161
## 22943 1994                                        Comedy|Drama|Fantasy    161
## 22945 1994                                      Adventure|Drama|Sci-Fi    161
## 22946 1993                                                       Drama    161
## 22947 1995                                              Comedy|Romance    161
## 22949 1994                                 Action|Crime|Drama|Thriller    161
## 22953 1994             Adventure|Animation|Children|Drama|Musical|IMAX    161
## 22954 1994                                 Action|Comedy|Crime|Fantasy    161
## 22956 1994                                               Action|Comedy    161
## 22960 1994                                Action|Comedy|Crime|Thriller    161
## 22961 1993                                   Action|Adventure|Thriller    161
## 22963 1993                                     Action|Adventure|Sci-Fi    161
## 22968 1993                             Action|Adventure|Comedy|Fantasy    161
## 22972 1993                                               Drama|Romance    161
## 22973 1993                                        Comedy|Drama|Romance    161
## 22975 1995                                                      Comedy    161
## 22976 1990                                             Children|Comedy    161
## 22978 1992                 Adventure|Animation|Children|Comedy|Musical    161
## 22980 1990                                     Adventure|Drama|Western    161
## 22981 1989                                       Action|Crime|Thriller    161
## 22983 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    161
## 22984 1990                                              Comedy|Romance    161
## 22985 1996                                 Comedy|Crime|Drama|Thriller    161
## 22986 1996                           Action|Adventure|Mystery|Thriller    161
## 22987 1995                                              Comedy|Romance    162
## 22989 1995                                       Action|Crime|Thriller    162
## 22990 1995                                              Comedy|Romance    162
## 22992 1995                                                 Crime|Drama    162
## 22995 1996                                              Comedy|Romance    162
## 22996 1996                                              Drama|Thriller    162
## 22997 1996                                              Comedy|Romance    162
## 23001 1996                                   Action|Adventure|Thriller    162
## 23002 1996                                               Drama|Romance    162
## 23004 1996                                                      Comedy    162
## 23005 1996                           Action|Adventure|Mystery|Thriller    162
## 23006 1996                                                       Drama    162
## 23007 1996                                        Crime|Drama|Thriller    162
## 23008 1996                                              Comedy|Romance    162
## 23009 1996                                                      Comedy    162
## 23010 1996                           Action|Adventure|Romance|Thriller    162
## 23011 1996                            Action|Adventure|Sci-Fi|Thriller    162
## 23012 1996                               Comedy|Fantasy|Romance|Sci-Fi    162
## 23013 1996                                              Drama|Thriller    162
## 23014 1996                                        Comedy|Drama|Romance    162
## 23015 1996                                        Comedy|Drama|Romance    162
## 23017 1995                 Adventure|Animation|Children|Comedy|Fantasy    163
## 23018 1995                                                      Comedy    163
## 23021 1995                               Action|Adventure|Comedy|Crime    163
## 23023 1994                                 Comedy|Crime|Drama|Thriller    163
## 23025 1994                                                      Comedy    163
## 23027 1994                                 Action|Comedy|Crime|Fantasy    163
## 23029 1993                            Action|Adventure|Sci-Fi|Thriller    163
## 23031 1990                                             Children|Comedy    163
## 23032 1992                 Adventure|Animation|Children|Comedy|Musical    163
## 23033 1991                                               Action|Sci-Fi    163
## 23034 1989                                       Action|Crime|Thriller    163
## 23036 1996                           Action|Adventure|Mystery|Thriller    163
## 23037 1996                                                      Comedy    163
## 23038 1996                            Action|Adventure|Sci-Fi|Thriller    163
## 23040 1992                                      Crime|Mystery|Thriller    163
## 23044 1990                                   Action|Adventure|Thriller    163
## 23046 1997                                               Drama|Romance    163
## 23048 1998                                       Drama|Fantasy|Romance    163
## 23049 1998                                      Action|Sci-Fi|Thriller    163
## 23050 1982                                             Horror|Thriller    163
## 23053 1997                                    Comedy|Drama|Romance|War    163
## 23054 1988                               Action|Adventure|Thriller|War    163
## 23055 1990                                                Action|Drama    163
## 23057 1999                                      Action|Sci-Fi|Thriller    163
## 23060 1990                       Action|Children|Comedy|Fantasy|Sci-Fi    163
## 23061 2000                                      Action|Adventure|Drama    163
## 23062 2000                                Adventure|Animation|Children    163
## 23063 2000                                                Action|Crime    163
## 23064 2000                                     Action|Adventure|Sci-Fi    163
## 23065 2001                                                      Comedy    163
## 23067 2001                                           Adventure|Fantasy    163
## 23068 2002                            Action|Adventure|Sci-Fi|Thriller    163
## 23069 2003                                             Action|Thriller    163
## 23071 2003                              Action|Adventure|Drama|Fantasy    163
## 23072 2004                                Action|Adventure|Sci-Fi|IMAX    163
## 23073 2005                                     Action|Adventure|Sci-Fi    163
## 23074 2007                                      Action|Adventure|Drama    163
## 23075 2007                          Action|Horror|Sci-Fi|Thriller|IMAX    163
## 23078 2000                                                   Drama|War    163
## 23079 2009                                Action|Drama|Sci-Fi|Thriller    163
## 23081 2010                                           Drama|Romance|War    163
## 23082 2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX    163
## 23083 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX    163
## 23084 2010                                              Drama|Thriller    163
## 23085 2011                                                      Comedy    163
## 23087 2011                                                Comedy|Drama    163
## 23091 2012                                      Adventure|Fantasy|IMAX    163
## 23092 2013                                    Action|Drama|Horror|IMAX    163
## 23094 2013                                         Action|Comedy|Crime    163
## 23098 1995                 Adventure|Animation|Children|Comedy|Fantasy    164
## 23101 1995                                            Action|Drama|War    164
## 23104 1994                                            Adventure|Comedy    164
## 23105 1977                                     Action|Adventure|Sci-Fi    164
## 23108 1994                                        Comedy|Drama|Fantasy    164
## 23112 1993                            Action|Adventure|Sci-Fi|Thriller    164
## 23114 1996                                          Adventure|Children    164
## 23115 1996                               Comedy|Fantasy|Romance|Sci-Fi    164
## 23116 1954                                            Mystery|Thriller    164
## 23123 1975                                    Adventure|Comedy|Fantasy    164
## 23128 1983                                     Action|Adventure|Sci-Fi    164
## 23129 1984                                      Action|Sci-Fi|Thriller    164
## 23133 1997                                        Action|Comedy|Sci-Fi    164
## 23134 1997                  Adventure|Animation|Children|Drama|Musical    164
## 23136 1997                                   Action|Adventure|Thriller    164
## 23137 1998                                                Comedy|Crime    164
## 23138 1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance    164
## 23139 1998                                              Comedy|Romance    164
## 23147 1999                 Adventure|Animation|Children|Comedy|Fantasy    164
## 23148 1992                                                      Comedy    164
## 23149 2000                                   Animation|Children|Comedy    164
## 23153 2001                                              Comedy|Romance    164
## 23157 2001                                           Adventure|Fantasy    164
## 23158 2002                            Action|Adventure|Sci-Fi|Thriller    164
## 23160 2002                                                       Drama    164
## 23161 2002                                           Adventure|Fantasy    164
## 23164 2003                                Comedy|Drama|Fantasy|Romance    164
## 23165 2003                         Adventure|Animation|Children|Comedy    164
## 23166 2002                                        Action|Horror|Sci-Fi    164
## 23167 2003                              Action|Adventure|Drama|Fantasy    164
## 23168 2004         Adventure|Animation|Children|Comedy|Musical|Romance    164
## 23171 2004                                Action|Adventure|Sci-Fi|IMAX    164
## 23172 2004                                       Action|Crime|Thriller    164
## 23174 2004                  Action|Adventure|Animation|Children|Comedy    164
## 23177 2005                            Action|Adventure|Sci-Fi|Thriller    164
## 23178 2005                                                       Drama    164
## 23180 1995                 Adventure|Animation|Children|Comedy|Fantasy    165
## 23181 1995                                  Adventure|Children|Fantasy    165
## 23182 1995                                              Comedy|Romance    165
## 23183 1995                                   Action|Adventure|Thriller    165
## 23184 1995                                                      Comedy    165
## 23185 1995                                       Comedy|Crime|Thriller    165
## 23186 1995                         Crime|Drama|Horror|Mystery|Thriller    165
## 23187 1995                                                       Drama    165
## 23189 1995                                            Mystery|Thriller    165
## 23190 1995                                      Crime|Mystery|Thriller    165
## 23191 1995                                                       Drama    165
## 23193 1995                                         Crime|Drama|Romance    165
## 23197 1995                               Action|Adventure|Comedy|Crime    165
## 23198 1995                          Action|Comedy|Crime|Drama|Thriller    165
## 23199 1995                                          Adventure|Children    165
## 23202 1995                                         Action|Crime|Sci-Fi    165
## 23203 1995                                             Action|Children    165
## 23204 1995                                       Action|Crime|Thriller    165
## 23205 1995                                               Horror|Sci-Fi    165
## 23206 1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller    165
## 23207 1995                                                      Comedy    165
## 23208 1994                                              Drama|Thriller    165
## 23210 1994                                                 Documentary    165
## 23211 1994                                              Comedy|Romance    165
## 23212 1995                                              Drama|Thriller    165
## 23213 1995                                Action|Drama|Sci-Fi|Thriller    165
## 23215 1994                                 Comedy|Crime|Drama|Thriller    165
## 23216 1994                                        Comedy|Drama|Fantasy    165
## 23219 1995                                      Action|Sci-Fi|Thriller    165
## 23220 1995                                              Comedy|Romance    165
## 23222 1994                                      Drama|Mystery|Thriller    165
## 23223 1994                                    Comedy|Drama|Romance|War    165
## 23224 1994             Adventure|Animation|Children|Drama|Musical|IMAX    165
## 23225 1994                                 Action|Comedy|Crime|Fantasy    165
## 23226 1994                                               Action|Comedy    165
## 23227 1994                                     Action|Romance|Thriller    165
## 23229 1994                                    Action|Adventure|Fantasy    165
## 23230 1994                                                      Comedy    165
## 23231 1994                                                       Drama    165
## 23232 1993                                                       Drama    165
## 23233 1994                                    Adventure|Comedy|Western    165
## 23234 1993                                   Action|Adventure|Thriller    165
## 23235 1993                                     Action|Adventure|Sci-Fi    165
## 23236 1993                                                    Thriller    165
## 23238 1994                                                      Comedy    165
## 23239 1993                            Action|Adventure|Sci-Fi|Thriller    165
## 23240 1993                             Action|Adventure|Comedy|Fantasy    165
## 23241 1993                                                Comedy|Drama    165
## 23242 1994                                     Action|Children|Romance    165
## 23244 1994                                                      Comedy    165
## 23246 1993                                                       Drama    165
## 23248 1993                                                       Drama    165
## 23249 1993                                                       Drama    165
## 23250 1993                                        Comedy|Drama|Romance    165
## 23252 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    165
## 23254 1990                       Comedy|Drama|Fantasy|Romance|Thriller    165
## 23258 1991                                       Crime|Horror|Thriller    165
## 23259 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    165
## 23260 1940                          Animation|Children|Fantasy|Musical    165
## 23261 1996                                 Comedy|Crime|Drama|Thriller    165
## 23262 1996                           Action|Adventure|Mystery|Thriller    165
## 23263 1996                                    Action|Adventure|Fantasy    165
## 23264 1996                                               Comedy|Sci-Fi    165
## 23265 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi    165
## 23266 1996                                   Action|Adventure|Thriller    165
## 23267 1996                           Action|Adventure|Romance|Thriller    165
## 23268 1995                                            Animation|Sci-Fi    165
## 23270 1996                                             Comedy|Thriller    165
## 23271 1996                                               Drama|Romance    165
## 23273 1996                                     Children|Comedy|Fantasy    165
## 23274 1996                                              Crime|Thriller    165
## 23275 1996                                                      Comedy    165
## 23276 1996                                Crime|Drama|Romance|Thriller    165
## 23277 1939                          Adventure|Children|Fantasy|Musical    165
## 23279 1950                  Animation|Children|Fantasy|Musical|Romance    165
## 23280 1991                                             Adventure|Drama    165
## 23281 1951                Adventure|Animation|Children|Fantasy|Musical    165
## 23282 1988                                       Action|Crime|Thriller    165
## 23283 1996                                       Action|Drama|Thriller    165
## 23285 1996                                                    Thriller    165
## 23287 1992                                      Crime|Mystery|Thriller    165
## 23290 1986                              Action|Adventure|Horror|Sci-Fi    165
## 23291 1979                                            Action|Drama|War    165
## 23292 1993                      Action|Adventure|Comedy|Fantasy|Horror    165
## 23293 1987                                                   Drama|War    165
## 23294 1984                                      Action|Sci-Fi|Thriller    165
## 23295 1985                                              Comedy|Romance    165
## 23296 1980                                                      Horror    165
## 23297 1986                                             Adventure|Drama    165
## 23299 1985                                     Adventure|Comedy|Sci-Fi    165
## 23300 1989                                            Action|Adventure    165
## 23301 1989                                              Comedy|Romance    165
## 23302 1992                               Action|Horror|Sci-Fi|Thriller    165
## 23303 1963                                             Horror|Thriller    165
## 23305 1990                                   Action|Adventure|Thriller    165
## 23307 1978                                      Comedy|Musical|Romance    165
## 23308 1996                                        Action|Comedy|Sci-Fi    165
## 23311 1996                                             Comedy|Thriller    165
## 23312 1997                                                       Crime    165
## 23314 1997                                                      Comedy    165
## 23316 1997                                     Action|Adventure|Comedy    165
## 23318 1997                                                      Comedy    165
## 23319 1997                            Action|Adventure|Sci-Fi|Thriller    165
## 23320 1997                                   Action|Adventure|Thriller    165
## 23321 1997                           Action|Adventure|Fantasy|Thriller    165
## 23322 1997                                 Action|Crime|Drama|Thriller    165
## 23323 1997                                        Action|Comedy|Sci-Fi    165
## 23324 1997                              Drama|Mystery|Romance|Thriller    165
## 23325 1997                                                      Action    165
## 23326 1997                                      Drama|Mystery|Thriller    165
## 23327 1997                                              Comedy|Romance    165
## 23329 1997                                      Drama|Mystery|Thriller    165
## 23330 1997                                      Crime|Mystery|Thriller    165
## 23331 1997                                    Action|Adventure|Fantasy    165
## 23332 1998                                         Comedy|Drama|Sci-Fi    165
## 23334 1997                                               Drama|Romance    165
## 23335 1997                                        Crime|Drama|Thriller    165
## 23336 1998                                      Action|Children|Comedy    165
## 23337 1997                                                      Comedy    165
## 23339 1998                                              Comedy|Romance    165
## 23340 1997                                        Comedy|Drama|Romance    165
## 23341 1998                                Crime|Drama|Mystery|Thriller    165
## 23342 1998                                                       Drama    165
## 23343 1998                                                      Comedy    165
## 23344 1998                                       Drama|Sci-Fi|Thriller    165
## 23345 1998                                      Action|Sci-Fi|Thriller    165
## 23346 1998                                                      Comedy    165
## 23348 1998                                       Drama|Sci-Fi|Thriller    165
## 23349 1998                                              Comedy|Romance    165
## 23350 1987                                             Horror|Thriller    165
## 23351 1989                                                      Horror    165
## 23352 1973                                              Horror|Mystery    165
## 23353 1984                                               Comedy|Horror    165
## 23354 1985                    Action|Adventure|Children|Comedy|Fantasy    165
## 23355 1990                             Adventure|Comedy|Sci-Fi|Western    165
## 23356 1942                                    Animation|Children|Drama    165
## 23357 1997                                               Drama|Romance    165
## 23359 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    165
## 23360 1967                           Animation|Children|Comedy|Musical    165
## 23361 1989                   Animation|Children|Comedy|Musical|Romance    165
## 23362 1953                          Animation|Children|Fantasy|Musical    165
## 23363 1984                                    Action|Adventure|Fantasy    165
## 23364 1985                                       Comedy|Fantasy|Sci-Fi    165
## 23365 1988                                              Comedy|Fantasy    165
## 23366 1998                                                       Drama    165
## 23368 1989                                        Comedy|Drama|Romance    165
## 23369 1992                                              Comedy|Fantasy    165
## 23370 1998                                       Action|Crime|Thriller    165
## 23371 1992                                                      Comedy    165
## 23372 1998                                        Comedy|Drama|Fantasy    165
## 23374 1998                                     Horror|Mystery|Thriller    165
## 23376 1998                                                Comedy|Drama    165
## 23379 1989                             Action|Adventure|Children|Drama    165
## 23380 1998                                              Comedy|Romance    165
## 23381 1987                                   Adventure|Children|Comedy    165
## 23382 1986                                Drama|Horror|Sci-Fi|Thriller    165
## 23383 1994                                                      Horror    165
## 23384 1999                                             Action|Thriller    165
## 23385 1999                                                Comedy|Crime    165
## 23389 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    165
## 23390 1999                                     Action|Adventure|Sci-Fi    165
## 23391 1953                                         Action|Drama|Sci-Fi    165
## 23392 1999                                     Action|Adventure|Comedy    165
## 23394 1998                                                Action|Crime    165
## 23395 1990                                               Comedy|Horror    165
## 23397 1999                                              Comedy|Romance    165
## 23398 1999                                       Drama|Horror|Thriller    165
## 23399 1984                                        Action|Comedy|Sci-Fi    165
## 23400 1986                                       Comedy|Horror|Musical    165
## 23402 1980                                                      Comedy    165
## 23404 1991                                                      Comedy    165
## 23405 1983                                             Children|Comedy    165
## 23406 1999                                     Horror|Mystery|Thriller    165
## 23407 1999                                                Comedy|Drama    165
## 23408 1999                                               Drama|Romance    165
## 23409 1999                                 Action|Crime|Drama|Thriller    165
## 23410 1999                           Action|Adventure|Comedy|Drama|War    165
## 23411 1990                            Action|Adventure|Sci-Fi|Thriller    165
## 23413 1992                                             Children|Comedy    165
## 23415 1999                                                       Drama    165
## 23417 1999                                        Comedy|Drama|Fantasy    165
## 23418 1997                    Action|Adventure|Animation|Drama|Fantasy    165
## 23421 1995                                              Comedy|Romance    165
## 23422 1999                                    Adventure|Comedy|Fantasy    165
## 23423 1999                              Fantasy|Horror|Mystery|Romance    165
## 23424 1987                                              Drama|Thriller    165
## 23426 1999                                                       Drama    165
## 23427 1999                                                       Drama    165
## 23428 1992                                                      Comedy    165
## 23429 1992                                                Comedy|Drama    165
## 23430 1992                                      Drama|Romance|Thriller    165
## 23431 1992                                                       Drama    165
## 23432 2000                                      Horror|Sci-Fi|Thriller    165
## 23433 1999                                                 Crime|Drama    165
## 23434 1961                                                       Drama    165
## 23435 2000                                                      Sci-Fi    165
## 23437 1990                       Action|Children|Comedy|Fantasy|Sci-Fi    165
## 23439 1993                    Action|Adventure|Children|Comedy|Fantasy    165
## 23440 1977                                      Adventure|Drama|Sci-Fi    165
## 23441 2000                                        Comedy|Drama|Romance    165
## 23442 2000                                              Drama|Thriller    165
## 23443 2000                               Crime|Horror|Mystery|Thriller    165
## 23445 2000                                         Action|Thriller|War    165
## 23446 2000                                      Action|Adventure|Drama    165
## 23447 2000                                               Action|Sci-Fi    165
## 23448 2000                                                      Comedy    165
## 23449 2000                                   Action|Adventure|Thriller    165
## 23451 2000                                   Animation|Children|Comedy    165
## 23452 2000                                            Adventure|Comedy    165
## 23453 1993                                 Action|Crime|Drama|Thriller    165
## 23454 1990                                                      Comedy    165
## 23455 1991                                        Comedy|Drama|Romance    165
## 23456 2000                                               Comedy|Horror    165
## 23458 1999                                                       Drama    165
## 23459 2000                                       Drama|Horror|Thriller    165
## 23460 1991                                                      Comedy    165
## 23461 2000                                                       Drama    165
## 23462 2000                                                       Drama    165
## 23463 2000                                                       Drama    165
## 23465 2000                                                      Comedy    165
## 23466 2000                                                       Drama    165
## 23467 2000                               Crime|Horror|Mystery|Thriller    165
## 23468 2000                                               Action|Comedy    165
## 23470 2000                                       Comedy|Crime|Thriller    165
## 23471 2000                                                       Drama    165
## 23472 2000                                                       Drama    165
## 23473 2000                                                Comedy|Crime    165
## 23474 2000                                        Crime|Drama|Thriller    165
## 23475 2001                                               Drama|Romance    165
## 23476 1988                                               Action|Comedy    165
## 23477 1981                                     Fantasy|Horror|Thriller    165
## 23479 1997                                                 Documentary    165
## 23480 2000                                            Mystery|Thriller    165
## 23482 2001                                                      Comedy    165
## 23483 1983                                          Action|Crime|Drama    165
## 23485 2001                                       Action|Crime|Thriller    165
## 23486 2001                                      Adventure|Drama|Sci-Fi    165
## 23487 2001                          Adventure|Animation|Fantasy|Sci-Fi    165
## 23488 1988                                               Comedy|Horror    165
## 23491 1989                                                       Drama    165
## 23492 1989                                                      Comedy    165
## 23494 2001                                                      Comedy    165
## 23495 2001                               Drama|Horror|Mystery|Thriller    165
## 23496 2001                                                      Comedy    165
## 23497 2001                                            Adventure|Comedy    165
## 23498 1994                                      Action|Children|Comedy    165
## 23499 1995                                             Action|Children    165
## 23500 2001                                                       Drama    165
## 23501 2001                                       Drama|Musical|Romance    165
## 23502 2001                                              Comedy|Romance    165
## 23503 2001                               Drama|Mystery|Sci-Fi|Thriller    165
## 23504 2001                 Adventure|Animation|Children|Comedy|Fantasy    165
## 23505 2001                                              Crime|Thriller    165
## 23506 2001                                                       Drama    165
## 23507 2001                                               Drama|Romance    165
## 23508 1994                                                      Comedy    165
## 23509 2002                                                      Comedy    165
## 23510 2002                                               Action|Sci-Fi    165
## 23511 2001                                                Comedy|Crime    165
## 23512 1993                                       Children|Comedy|Drama    165
## 23513 2002                                      Comedy|Musical|Romance    165
## 23514 2002                                            Action|Drama|War    165
## 23515 1979                                                      Horror    165
## 23516 2002                                         Action|Comedy|Crime    165
## 23517 2001                                        Crime|Drama|Thriller    165
## 23518 2002                                      Horror|Sci-Fi|Thriller    165
## 23519 2002                                        Crime|Drama|Thriller    165
## 23521 2002                                Action|Adventure|Sci-Fi|IMAX    165
## 23522 2002                                              Drama|Thriller    165
## 23523 2002                                     Action|Mystery|Thriller    165
## 23524 2002                                                      Comedy    165
## 23525 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    165
## 23526 2002                         Adventure|Animation|Children|Comedy    165
## 23527 2002                                                 Crime|Drama    165
## 23528 2002                                              Comedy|Mystery    165
## 23530 2002                                       Action|Crime|Thriller    165
## 23531 2002                                                       Drama    165
## 23532 2002                                       Crime|Horror|Thriller    165
## 23533 2001                                              Drama|Thriller    165
## 23534 1972                                       Crime|Horror|Thriller    165
## 23535 2002                                                Comedy|Drama    165
## 23537 2002                                             Action|Thriller    165
## 23538 2001                                                       Drama    165
## 23539 2002                                               Drama|Romance    165
## 23540 2001                          Action|Comedy|Crime|Drama|Thriller    165
## 23541 2002                                      Crime|Mystery|Thriller    165
## 23543 2002                                     Horror|Mystery|Thriller    165
## 23545 2002                             Action|Adventure|Crime|Thriller    165
## 23546 2002                                             Horror|Thriller    165
## 23547 2002                                                 Crime|Drama    165
## 23548 2002                                        Comedy|Drama|Romance    165
## 23549 2002                                      Action|Sci-Fi|Thriller    165
## 23550 2002                                                Comedy|Drama    165
## 23553 1993                                              Drama|Thriller    165
## 23554 2002                                                 Crime|Drama    165
## 23555 2002                       Action|Adventure|Crime|Drama|Thriller    165
## 23556 2003                                          Action|Crime|Drama    165
## 23558 2003                                                Action|Crime    165
## 23560 1993                                                      Comedy    165
## 23561 2002                                        Comedy|Drama|Romance    165
## 23562 1998                                     Horror|Mystery|Thriller    165
## 23563 2003                                          Comedy|Documentary    165
## 23565 2003                            Action|Adventure|Sci-Fi|Thriller    165
## 23566 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    165
## 23567 2003                                                Action|Crime    165
## 23568 1997                                             Children|Comedy    165
## 23569 2003                                                      Comedy    165
## 23570 2002                                        Action|Horror|Sci-Fi    165
## 23571 2003                                        Comedy|Crime|Romance    165
## 23572 2003                                                Comedy|Drama    165
## 23575 1994                                                      Comedy    165
## 23576 2003                                                Comedy|Drama    165
## 23577 2003                                         Crime|Drama|Mystery    165
## 23578 2003                                               Action|Horror    165
## 23580 2002                                                    Thriller    165
## 23581 2003                                     Children|Comedy|Fantasy    165
## 23583 2003                                         Adventure|Drama|War    165
## 23584 2003                        Crime|Drama|Mystery|Romance|Thriller    165
## 23585 2000                                Action|Drama|Horror|Thriller    165
## 23586 2002                                      Action|Adventure|Drama    165
## 23587 1993                                               Comedy|Horror    165
## 23588 2003                                        Comedy|Drama|Romance    165
## 23589 2002                                               Drama|Romance    165
## 23591 2003                                                 Crime|Drama    165
## 23592 1994                                                      Comedy    165
## 23593 2004                                       Drama|Sci-Fi|Thriller    165
## 23594 2004                                                       Drama    165
## 23595 2004                                                Comedy|Drama    165
## 23596 1999                                                 Documentary    165
## 23599 1978                                         Action|Drama|Horror    165
## 23602 2004                                  Action|Adventure|Drama|War    165
## 23604 1975                                                      Action    165
## 23605 1999                                                 Documentary    165
## 23606 1990                                                      Horror    165
## 23608 2004                                                      Comedy    165
## 23609 2004                                                Comedy|Drama    165
## 23610 2003                                                       Drama    165
## 23611 2004                                   Animation|Children|Comedy    165
## 23612 2004                                                      Comedy    165
## 23613 2004                                        Comedy|Drama|Romance    165
## 23614 2004                                               Drama|Romance    165
## 23615 2004                                    Adventure|Children|Drama    165
## 23617 2004                                                      Comedy    165
## 23619 2004                                       Action|Crime|Thriller    165
## 23620 2004                                               Drama|Romance    165
## 23621 1991                                                      Comedy    165
## 23622 2004                                                    Thriller    165
## 23623 2004                                      Drama|Mystery|Thriller    165
## 23626 2004                                            Adventure|Comedy    165
## 23627 2004                               Action|Horror|Sci-Fi|Thriller    165
## 23628 2003                                      Action|Adventure|Drama    165
## 23629 2004                                              Drama|Thriller    165
## 23630 2004                                      Drama|Romance|Thriller    165
## 23631 1995                                                      Horror    165
## 23632 2004                         Action|Crime|Drama|Mystery|Thriller    165
## 23633 2004                               Action|Horror|Sci-Fi|Thriller    165
## 23634 2004                                                Comedy|Drama    165
## 23635 2004                                     Action|Adventure|Sci-Fi    165
## 23638 2004                                   Animation|Children|Comedy    165
## 23639 2004                                       Action|Drama|Thriller    165
## 23640 2004                                                      Comedy    165
## 23641 2004                                                     Romance    165
## 23642 2004                                          Comedy|Crime|Drama    165
## 23644 2004                                     Horror|Mystery|Thriller    165
## 23646 2004                                                       Drama    165
## 23647 2004                  Action|Adventure|Animation|Children|Comedy    165
## 23648 2004                         Adventure|Animation|Children|Comedy    165
## 23649 2004                                Action|Comedy|Crime|Thriller    165
## 23651 2004                                             Documentary|War    165
## 23652 1999                       Drama|Horror|Mystery|Romance|Thriller    165
## 23653 2001                                     Horror|Mystery|Thriller    165
## 23655 2004                                        Comedy|Drama|Romance    165
## 23656 2003                                              Drama|Thriller    165
## 23657 2004                                              Drama|Thriller    165
## 23658 2004                                            Action|Drama|War    165
## 23659 2004                                                   Drama|War    165
## 23660 2004                                                       Drama    165
## 23661 2005                                Action|Adventure|Crime|Drama    165
## 23662 2004                                                Comedy|Drama    165
## 23663 2005                              Action|Fantasy|Horror|Thriller    165
## 23664 2003                                                      Comedy    165
## 23666 2005                                           Action|Crime|IMAX    165
## 23669 1995                                      Action|Romance|Western    166
## 23674 1993                                               Comedy|Sci-Fi    166
## 23675 1993                            Action|Adventure|Sci-Fi|Thriller    166
## 23678 1996                                 Comedy|Crime|Drama|Thriller    166
## 23679 1996                                    Action|Adventure|Fantasy    166
## 23680 1996                                                      Comedy    166
## 23681 1942                                               Drama|Romance    166
## 23686 1997                                               Action|Sci-Fi    166
## 23688 1998                                                Comedy|Crime    166
## 23689 1998                              Action|Romance|Sci-Fi|Thriller    166
## 23696 1953                                                Action|Drama    166
## 23700 2000                                   Animation|Children|Comedy    166
## 23704 2001                                            Action|Adventure    166
## 23706 2001                                              Crime|Thriller    166
## 23713 2003                                                Action|Crime    166
## 23714 2003                                                      Comedy    166
## 23716 2003                                       Action|Crime|Thriller    166
## 23719 2003                    Action|Adventure|Comedy|Romance|Thriller    166
## 23721 2003                                        Comedy|Drama|Romance    166
## 23722 2003                                 Action|Comedy|Crime|Fantasy    166
## 23727 1983                                     Action|Adventure|Sci-Fi    167
## 23735 1988                                              Comedy|Fantasy    167
## 23737 1962                                               Action|Sci-Fi    167
## 23741 1999                                      Action|Sci-Fi|Thriller    167
## 23742 1978                                     Action|Adventure|Sci-Fi    167
## 23743 1990                                               Comedy|Horror    167
## 23744 1987                          Action|Crime|Drama|Sci-Fi|Thriller    167
## 23748 1995                                        Comedy|Drama|Romance    168
## 23749 1995                          Action|Comedy|Crime|Drama|Thriller    168
## 23751 1995                                     Mystery|Sci-Fi|Thriller    168
## 23754 1995                                       Comedy|Horror|Romance    168
## 23755 1995                                            Action|Drama|War    168
## 23757 1992                                              Comedy|Romance    168
## 23758 1995                          Action|Comedy|Crime|Drama|Thriller    168
## 23760 1995                                    Action|Drama|Romance|War    168
## 23761 1995                               Action|Adventure|Comedy|Crime    168
## 23762 1995                                      Action|Romance|Western    168
## 23763 1995                            Crime|Film-Noir|Mystery|Thriller    168
## 23764 1995                                       Action|Crime|Thriller    168
## 23765 1995                                         Action|Crime|Sci-Fi    168
## 23766 1995                                                       Drama    168
## 23767 1995                                               Horror|Sci-Fi    168
## 23768 1995                  Action|Crime|Drama|Mystery|Sci-Fi|Thriller    168
## 23769 1995                                                      Action    168
## 23770 1995                                              Drama|Thriller    168
## 23771 1994                                              Drama|Thriller    168
## 23772 1994                                             Action|Thriller    168
## 23773 1994                                                      Comedy    168
## 23775 1995                                              Comedy|Romance    168
## 23776 1994                                              Comedy|Romance    168
## 23777 1995                                                      Comedy    168
## 23778 1995                                        Crime|Drama|Thriller    168
## 23781 1994                                              Comedy|Romance    168
## 23782 1994                                       Action|Crime|Thriller    168
## 23783 1995                                Action|Drama|Sci-Fi|Thriller    168
## 23788 1994                                      Adventure|Drama|Sci-Fi    168
## 23789 1995                                                      Comedy    168
## 23791 1994                                              Comedy|Romance    168
## 23792 1995                                                       Drama    168
## 23794 1994                                                Comedy|Drama    168
## 23796 1994                                              Comedy|Romance    168
## 23797 1994                    Action|Adventure|Comedy|Romance|Thriller    168
## 23798 1995                                          Action|Crime|Drama    168
## 23799 1994                                                 Crime|Drama    168
## 23800 1993                                     Children|Comedy|Fantasy    168
## 23802 1993                                                      Comedy    168
## 23803 1994                                Action|Comedy|Crime|Thriller    168
## 23804 1993                                      Horror|Sci-Fi|Thriller    168
## 23805 1993                              Drama|Mystery|Romance|Thriller    168
## 23806 1993                                                       Drama    168
## 23807 1994                                    Adventure|Comedy|Western    168
## 23808 1993                                   Action|Adventure|Thriller    168
## 23810 1993                                     Action|Adventure|Sci-Fi    168
## 23811 1993                                                      Comedy    168
## 23812 1994                                                Comedy|Drama    168
## 23813 1993                                              Drama|Thriller    168
## 23816 1993                             Action|Adventure|Comedy|Fantasy    168
## 23817 1993                                                      Comedy    168
## 23819 1993                                                Comedy|Drama    168
## 23820 1994                                                      Comedy    168
## 23821 1993                                                       Drama    168
## 23822 1993                                               Drama|Romance    168
## 23823 1993                                                       Drama    168
## 23824 1994                                                      Comedy    168
## 23826 1994                                                Comedy|Drama    168
## 23827 1993                          Action|Crime|Drama|Sci-Fi|Thriller    168
## 23828 1993                                                       Drama    168
## 23829 1993                                                       Drama    168
## 23830 1993                                                       Drama    168
## 23831 1993                                                    Thriller    168
## 23833 1993                                        Action|Drama|Western    168
## 23835 1994                                                Comedy|Drama    168
## 23836 1990                       Comedy|Drama|Fantasy|Romance|Thriller    168
## 23839 1989                                       Action|Crime|Thriller    168
## 23841 1990                                              Comedy|Romance    168
## 23843 1996                                                Comedy|Drama    168
## 23844 1996                           Action|Adventure|Mystery|Thriller    168
## 23849 1994                                             Children|Comedy    168
## 23851 1965                                             Musical|Romance    168
## 23856 1992                                      Crime|Mystery|Thriller    168
## 23858 1986                                              Action|Romance    168
## 23864 1995                                  Adventure|Children|Fantasy    169
## 23865 1995                                              Children|Drama    169
## 23866 1995                                                      Comedy    169
## 23867 1994                                     Action|Children|Romance    169
## 23870 1996                                        Comedy|Drama|Romance    169
## 23871 1964                                Comedy|Drama|Musical|Romance    169
## 23872 1994                                             Children|Comedy    169
## 23874 1985                                     Adventure|Comedy|Sci-Fi    169
## 23876 1975                                     Mystery|Sci-Fi|Thriller    169
## 23877 1989                             Action|Adventure|Children|Drama    169
## 23882 1997                                              Comedy|Romance    169
## 23883 1999                 Adventure|Animation|Children|Comedy|Fantasy    169
## 23884 2000                                               Drama|Musical    169
## 23885 1984                                                       Drama    169
## 23888 2001                                              Comedy|Romance    169
## 23891 2001                                  Adventure|Children|Fantasy    169
## 23894 2001                                               Drama|Romance    169
## 23897 2002                                           Adventure|Fantasy    169
## 23906 2003                                                Comedy|Drama    169
## 23907 2002                                               Drama|Romance    169
## 23911 2004                                      Comedy|Fantasy|Romance    169
## 23914 2004                                      Adventure|Fantasy|IMAX    169
## 23915 2004                                     Comedy|Fantasy|Thriller    169
## 23917 2004                                              Comedy|Romance    169
## 23920 2004                                              Comedy|Romance    169
## 23923 2003                                                       Drama    169
## 23924 1968                                             Children|Comedy    169
## 23925 2004                                        Comedy|Drama|Romance    169
## 23932 2005                                      Comedy|Fantasy|Romance    169
## 23934 2005                             Adventure|Fantasy|Thriller|IMAX    169
## 23936 2006                                                      Comedy    169
## 23941 2006                                      Adventure|Comedy|Drama    169
## 23948 2006                                      Action|Sci-Fi|Thriller    169
## 23952 2007                                              Drama|Thriller    169
## 23955 2006                                       Drama|Musical|Romance    169
## 23957 2007                                Adventure|Drama|Fantasy|IMAX    169
## 23969 2008                 Adventure|Animation|Children|Romance|Sci-Fi    169
## 23974 2007                          Adventure|Animation|Comedy|Fantasy    169
## 23975 2008                               Drama|Fantasy|Mystery|Romance    169
## 23976 1995                      Adventure|Drama|Fantasy|Mystery|Sci-Fi    170
## 23977 1993                                                       Drama    170
## 23978 1970                                          Animation|Children    170
## 23979 1996                            Action|Adventure|Sci-Fi|Thriller    170
## 23980 1991                                                       Drama    170
## 23981 1984                                      Action|Sci-Fi|Thriller    170
## 23982 1985                                     Adventure|Comedy|Sci-Fi    170
## 23983 1970                                                   Drama|War    170
## 23984 1984                                                   Drama|War    170
## 23986 1997                              Action|Adventure|Comedy|Sci-Fi    170
## 23987 1998                                         Comedy|Drama|Sci-Fi    170
## 23989 1989                                                       Drama    170
## 23990 1988                                               Drama|Romance    170
## 23991 1967                           Animation|Children|Comedy|Musical    170
## 23992 1984                                              Comedy|Romance    170
## 23993 1998                         Adventure|Animation|Children|Comedy    170
## 23994 1999                                       Action|Comedy|Fantasy    170
## 23995 1999                                 Action|Crime|Drama|Thriller    170
## 23996 1991                                                Action|Drama    170
## 23997 1999                                                Comedy|Drama    170
## 23998 2000                                              Drama|Thriller    170
## 23999 1979                                     Action|Adventure|Sci-Fi    170
## 24000 1981                            Action|Adventure|Sci-Fi|Thriller    170
## 24001 2002                                           Adventure|Fantasy    170
## 24013 1991                                                       Drama    171
## 24014 1990                                       Crime|Drama|Film-Noir    171
## 24022 1997                                                      Comedy    171
## 24023 1998                                Crime|Drama|Mystery|Thriller    171
## 24032 1999                                                      Comedy    171
## 24034 1999                                     Action|Adventure|Comedy    171
## 24036 1999                                Crime|Drama|Mystery|Thriller    171
## 24041 1999                                       Drama|Horror|Thriller    171
## 24042 1984                                        Action|Comedy|Sci-Fi    171
## 24047 1999                                 Action|Crime|Drama|Thriller    171
## 24048 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    171
## 24049 1983                                                      Comedy    171
## 24051 1995                                     Mystery|Sci-Fi|Thriller    172
## 24052 1995                                              Children|Drama    172
## 24055 1996                                                      Comedy    172
## 24060 1994                                    Comedy|Drama|Romance|War    172
## 24061 1994             Adventure|Animation|Children|Drama|Musical|IMAX    172
## 24062 1994                                     Action|Romance|Thriller    172
## 24064 1993                            Action|Adventure|Sci-Fi|Thriller    172
## 24067 1993                                        Comedy|Drama|Romance    172
## 24069 1992                 Adventure|Animation|Children|Comedy|Musical    172
## 24070 1990                                     Adventure|Drama|Western    172
## 24071 1989                                       Action|Crime|Thriller    172
## 24080 1996                           Adventure|Children|Comedy|Musical    173
## 24086 1996                                    Action|Adventure|Fantasy    173
## 24088 1996                                              Comedy|Romance    173
## 24092 1996                                                Comedy|Crime    173
## 24100 1996                                             Crime|Film-Noir    173
## 24101 1996                                              Drama|Thriller    173
## 24106 1997                                                      Comedy    173
## 24110 1997                           Action|Adventure|Fantasy|Thriller    173
## 24113 1997                            Action|Adventure|Sci-Fi|Thriller    173
## 24115 1995                                      Action|Romance|Western    174
## 24117 1995                                      Action|Sci-Fi|Thriller    174
## 24118 1995                                              Comedy|Romance    174
## 24119 1994                                                 Documentary    174
## 24120 1994                                                      Comedy    174
## 24121 1994                                               Action|Comedy    174
## 24122 1993                                     Comedy|Romance|Thriller    174
## 24124 1992                                      Drama|Romance|Thriller    174
## 24125 1974                            Crime|Film-Noir|Mystery|Thriller    174
## 24129 1992                                                      Comedy    174
## 24130 1990                                               Comedy|Horror    174
## 24131 2000                                   Animation|Children|Comedy    174
## 24133 1970                                            Comedy|Drama|War    174
## 24134 2003                                     Action|Adventure|Sci-Fi    174
## 24137 1995                    Animation|Children|Drama|Musical|Romance    175
## 24145 1994                                              Comedy|Romance    175
## 24147 1994                                                Comedy|Drama    175
## 24150 1992                 Adventure|Animation|Children|Comedy|Musical    175
## 24152 1996                                      Action|Crime|Drama|War    175
## 24153 1996                    Animation|Children|Drama|Musical|Romance    175
## 24166 1993                                      Comedy|Fantasy|Romance    175
## 24167 1985                                     Adventure|Comedy|Sci-Fi    175
## 24169 1922                                                      Horror    175
## 24171 1997                              Action|Romance|Sci-Fi|Thriller    175
## 24172 1997                                               Drama|Musical    175
## 24175 1997                           Action|Adventure|Fantasy|Thriller    175
## 24181 1997                                               Drama|Romance    175
## 24186 1998                                            Action|Drama|War    175
## 24192 1994        Adventure|Animation|Children|Fantasy|Musical|Romance    175
## 24196 1990                                       Drama|Fantasy|Romance    175
## 24199 1998                                              Comedy|Romance    175
## 24202 1999                                     Action|Adventure|Sci-Fi    175
## 24205 1999                                                      Comedy    175
## 24207 1992                                             Children|Comedy    175
## 24213 2000                                                Comedy|Drama    175
## 24214 1968                                               Drama|Romance    175
## 24217 2000                                                      Comedy    175
## 24218 2000                                               Action|Comedy    175
## 24219 2000                                        Action|Drama|Romance    175
## 24221 2000                                              Comedy|Romance    175
## 24222 2000                                                Comedy|Crime    175
## 24226 2001                                        Comedy|Drama|Romance    175
## 24240 2002                                Action|Adventure|Sci-Fi|IMAX    175
## 24245 2002                                     Horror|Mystery|Thriller    175
## 24254 2002                                              Comedy|Romance    175
## 24256 2002                                  Comedy|Crime|Drama|Musical    175
## 24257 2003                                              Comedy|Romance    175
## 24258 2003                                                Action|Crime    175
## 24260 1995                 Adventure|Animation|Children|Comedy|Fantasy    176
## 24261 1995                                  Adventure|Children|Fantasy    176
## 24262 1995                                                      Comedy    176
## 24263 1995                                              Children|Drama    176
## 24264 1995                                              Comedy|Romance    176
## 24265 1995                    Animation|Children|Drama|Musical|Romance    176
## 24266 1994                                                Drama|Horror    176
## 24269 1993                                                       Drama    176
## 24270 1994                                                      Comedy    176
## 24271 1994             Adventure|Animation|Children|Drama|Musical|IMAX    176
## 24272 1993                            Action|Adventure|Sci-Fi|Thriller    176
## 24273 1982                                      Action|Sci-Fi|Thriller    176
## 24274 1993                          Animation|Children|Fantasy|Musical    176
## 24275 1992                 Adventure|Animation|Children|Comedy|Musical    176
## 24278 1940                          Animation|Children|Fantasy|Musical    176
## 24279 1996                           Action|Adventure|Mystery|Thriller    176
## 24280 1988                 Adventure|Animation|Children|Comedy|Musical    176
## 24281 1996                    Animation|Children|Drama|Musical|Romance    176
## 24282 1950                  Animation|Children|Fantasy|Musical|Romance    176
## 24284 1965                                             Musical|Romance    176
## 24286 1981                                            Action|Adventure    176
## 24288 1979                                        Drama|Mystery|Sci-Fi    176
## 24289 1989                                                       Drama    176
## 24290 1986                                             Adventure|Drama    176
## 24291 1989                                            Action|Adventure    176
## 24292 1978                                      Comedy|Musical|Romance    176
## 24293 1982                                      Comedy|Musical|Romance    176
## 24294 1996                                        Action|Comedy|Sci-Fi    176
## 24295 1997                                                      Comedy    176
## 24296 1997                                     Action|Adventure|Comedy    176
## 24298 1997                 Adventure|Animation|Children|Comedy|Musical    176
## 24299 1997                                        Action|Comedy|Sci-Fi    176
## 24300 1998                                         Comedy|Drama|Sci-Fi    176
## 24301 1997                                               Drama|Romance    176
## 24302 1997                                                      Comedy    176
## 24303 1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance    176
## 24304 1998                                       Drama|Sci-Fi|Thriller    176
## 24305 1998                                              Comedy|Romance    176
## 24306 1961                                       Drama|Musical|Romance    176
## 24307 1942                                    Animation|Children|Drama    176
## 24308 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    176
## 24309 1967                           Animation|Children|Comedy|Musical    176
## 24310 1955                           Animation|Children|Comedy|Romance    176
## 24311 1989                   Animation|Children|Comedy|Musical|Romance    176
## 24312 1953                          Animation|Children|Fantasy|Musical    176
## 24313 1959                                  Animation|Children|Musical    176
## 24314 1984                                    Action|Adventure|Fantasy    176
## 24316 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    176
## 24318 1999                                              Comedy|Romance    176
## 24319 1999                                     Action|Adventure|Comedy    176
## 24320 1999                                    Animation|Comedy|Musical    176
## 24321 1999                                Action|Comedy|Sci-Fi|Western    176
## 24322 1999                                              Comedy|Romance    176
## 24323 1984                                        Action|Comedy|Sci-Fi    176
## 24324 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    176
## 24325 1999                                        Comedy|Drama|Fantasy    176
## 24327 1973                 Adventure|Animation|Children|Comedy|Musical    176
## 24328 1998                 Adventure|Animation|Children|Fantasy|Sci-Fi    176
## 24330 2000                                                       Drama    176
## 24331 2000                                            Adventure|Comedy    176
## 24332 2000                                               Comedy|Horror    176
## 24333 2000                                        Comedy|Drama|Romance    176
## 24334 2000                                                      Comedy    176
## 24335 2000                                     Children|Comedy|Fantasy    176
## 24337 2000                             Action|Adventure|Comedy|Fantasy    176
## 24338 2001                                        Comedy|Drama|Romance    176
## 24339 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    176
## 24341 2001                                    Action|Drama|Romance|War    176
## 24342 2001                                            Action|Adventure    176
## 24343 2000                                Crime|Drama|Mystery|Thriller    176
## 24344 2001                          Adventure|Animation|Fantasy|Sci-Fi    176
## 24345 2001                                              Comedy|Romance    176
## 24346 2001                                     Children|Comedy|Romance    176
## 24347 2001                               Drama|Horror|Mystery|Thriller    176
## 24348 2001                                                      Comedy    176
## 24349 2001                                  Adventure|Children|Fantasy    176
## 24351 2001                                              Comedy|Romance    176
## 24353 2002                             Action|Adventure|Drama|Thriller    176
## 24354 2001                                            Animation|Sci-Fi    176
## 24355 2002                                              Fantasy|Horror    176
## 24356 2002                         Adventure|Animation|Children|Comedy    176
## 24357 2002                            Action|Adventure|Sci-Fi|Thriller    176
## 24359 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    176
## 24360 2002                                      Horror|Sci-Fi|Thriller    176
## 24362 1988                                         Animation|Drama|War    176
## 24363 2002                                           Adventure|Fantasy    176
## 24364 2002                                      Action|Sci-Fi|Thriller    176
## 24367 2002                                                 Crime|Drama    176
## 24369 2001                            Action|Animation|Sci-Fi|Thriller    176
## 24370 2003                                                      Comedy    176
## 24372 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    176
## 24373 2003                                                Action|Crime    176
## 24375 2003                                       Action|Fantasy|Sci-Fi    176
## 24376 2003                                       Action|Fantasy|Horror    176
## 24377 1993                                             Children|Comedy    176
## 24378 2003                                       Action|Crime|Thriller    176
## 24379 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    176
## 24380 2000                                Action|Drama|Horror|Thriller    176
## 24386 2004                                       Action|Drama|Thriller    176
## 24387 2004                                  Action|Adventure|Drama|War    176
## 24388 1998                                            Adventure|Sci-Fi    176
## 24389 2004         Adventure|Animation|Children|Comedy|Musical|Romance    176
## 24390 2004                                      Adventure|Fantasy|IMAX    176
## 24391 2004                                                 Documentary    176
## 24392 2004                                     Horror|Mystery|Thriller    176
## 24393 2004                                        Comedy|Drama|Romance    176
## 24394 2004                                                       Drama    176
## 24395 2004                     Action|Adventure|Drama|Mystery|Thriller    176
## 24396 2004                                               Drama|Romance    176
## 24398 1989                  Adventure|Animation|Children|Drama|Fantasy    176
## 24400 2003                               Action|Animation|Drama|Sci-Fi    176
## 24401 2004                                       Action|Crime|Thriller    176
## 24403 2003                                                 Documentary    176
## 24404 2005                      Adventure|Children|Comedy|Fantasy|IMAX    176
## 24405 2004                                       Drama|Musical|Romance    176
## 24408 2005                                     Adventure|Comedy|Sci-Fi    176
## 24409 2005                                     Action|Adventure|Sci-Fi    176
## 24410 2005                                           Action|Crime|IMAX    176
## 24411 2005                              Comedy|Fantasy|Horror|Thriller    176
## 24412 2005                             Action|Crime|Drama|Thriller|War    176
## 24414 2005                               Comedy|Crime|Mystery|Thriller    176
## 24415 2002                                                Comedy|Drama    176
## 24416 2005                             Adventure|Fantasy|Thriller|IMAX    176
## 24417 2005                                  Adventure|Children|Fantasy    176
## 24418 2005                                               Drama|Romance    176
## 24419 2006                                 Action|Comedy|Crime|Western    176
## 24420 2006                                 Action|Sci-Fi|Thriller|IMAX    176
## 24423 2006                  Action|Animation|Film-Noir|Sci-Fi|Thriller    176
## 24424 2006                                      Drama|Mystery|Thriller    176
## 24425 2006                                                Comedy|Drama    176
## 24426 2006                                    Action|Adventure|Fantasy    176
## 24427 2006                                               Drama|Romance    176
## 24428 2006                                                 Documentary    176
## 24434 2006                                        Crime|Drama|Thriller    176
## 24435 2006                                    Action|Adventure|Fantasy    176
## 24437 2007                                     Action|Fantasy|War|IMAX    176
## 24438 2007                                               Drama|Musical    176
## 24439 2007                             Action|Adventure|Comedy|Fantasy    176
## 24440 2007                                           Documentary|Drama    176
## 24441 2007                            Adventure|Comedy|Fantasy|Romance    176
## 24442 2007                                         Action|Comedy|Crime    176
## 24443 2006                    Action|Adventure|Animation|Crime|Fantasy    176
## 24444 2007                                 Action|Crime|Drama|Thriller    176
## 24445 2007                                                 Crime|Drama    176
## 24446 2007 Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance    176
## 24447 2007                                  Adventure|Children|Fantasy    176
## 24448 2007                                        Comedy|Drama|Romance    176
## 24450 2008                                              Comedy|Romance    176
## 24451 2008                                     Action|Crime|Drama|IMAX    176
## 24452 2008                                              Comedy|Romance    176
## 24453 2008                              Action|Adventure|Comedy|Sci-Fi    176
## 24455 2008                                      Comedy|Musical|Romance    176
## 24456 2008                                                Action|Crime    176
## 24458 2007                                                      Action    176
## 24459 2008                                 Adventure|Drama|War|Western    176
## 24460 2008                              Drama|Fantasy|Romance|Thriller    176
## 24461 2009                                              Drama|Thriller    176
## 24462 2009                                        Comedy|Drama|Romance    176
## 24463 1992                                 Adventure|Animation|Fantasy    176
## 24464 2008                                      Action|Adventure|Drama    176
## 24465 2009                                                Comedy|Drama    176
## 24467 2009                              Action|Adventure|Comedy|Horror    176
## 24468 2009                                        Crime|Drama|Thriller    176
## 24469 2009                                        Comedy|Drama|Romance    176
## 24472 2009                  Animation|Children|Fantasy|Musical|Romance    176
## 24473 2009                               Action|Crime|Mystery|Thriller    176
## 24474 2010                                              Comedy|Romance    176
## 24476 2009                                            Action|Drama|War    176
## 24478 2010                                             Action|Thriller    176
## 24480 2010                                                       Drama    176
## 24481 2010                                              Comedy|Romance    176
## 24484 2010      Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX    176
## 24485 2010                                        Comedy|Drama|Romance    176
## 24486 2010                                              Drama|Thriller    176
## 24487 2010                                                       Drama    176
## 24488 2010                                                      Action    176
## 24489 2011                           Action|Adventure|Mystery|Thriller    176
## 24490 2011                               Action|Horror|Sci-Fi|Thriller    176
## 24493 2010                                                 Documentary    176
## 24494 2012                                Action|Adventure|Sci-Fi|IMAX    176
## 24495 2011                                              Drama|Thriller    176
## 24496 2011                                                       Drama    176
## 24497 2011                                       Crime|Sci-Fi|Thriller    176
## 24499 2012                      Action|Adventure|Drama|Sci-Fi|Thriller    176
## 24500 2012                                 Action|Adventure|Crime|IMAX    176
## 24502 2012                                        Action|Comedy|Sci-Fi    176
## 24503 2012                                          Comedy|Horror|IMAX    176
## 24504 2008                                    Action|Adventure|Fantasy    176
## 24505 2012                                   Action|Horror|Sci-Fi|IMAX    176
## 24506 2012                                      Action|Sci-Fi|Thriller    176
## 24507 2012                              Action|Adventure|Thriller|IMAX    176
## 24508 2012                                               Action|Sci-Fi    176
## 24509 2012                                              Drama|Thriller    176
## 24511 2012                                   Action|Adventure|Thriller    176
## 24512 2012                                                 Documentary    176
## 24513 2013                                Action|Adventure|Sci-Fi|IMAX    176
## 24514 2013                                    Action|Drama|Sci-Fi|IMAX    176
## 24515 2013                                          Action|Sci-Fi|IMAX    176
## 24522 1995                                       Action|Crime|Thriller    177
## 24526 1996                                      Action|Sci-Fi|Thriller    177
## 24528 1995                                      Action|Sci-Fi|Thriller    177
## 24531 1996                           Adventure|Children|Comedy|Musical    177
## 24534 1995                             Action|Adventure|Mystery|Sci-Fi    177
## 24541 1995                                         Action|Crime|Sci-Fi    177
## 24543 1995                                               Horror|Sci-Fi    177
## 24547 1994                                              Drama|Thriller    177
## 24549 1995                                                    Thriller    177
## 24550 1994                                               Comedy|Sci-Fi    177
## 24551 1995                   Adventure|Children|Comedy|Fantasy|Romance    177
## 24552 1994                                       Action|Crime|Thriller    177
## 24557 1995                                        Action|Comedy|Sci-Fi    177
## 24567 1994                                      Action|Sci-Fi|Thriller    177
## 24568 1994                                              Action|Fantasy    177
## 24569 1995                                             Horror|Thriller    177
## 24572 1993                                      Horror|Sci-Fi|Thriller    177
## 24574 1993                                     Action|Adventure|Sci-Fi    177
## 24581 1996                                   Action|Adventure|Thriller    177
## 24583 1994                                         Action|Drama|Sci-Fi    177
## 24585 1993                          Action|Crime|Drama|Sci-Fi|Thriller    177
## 24586 1993                                                    Thriller    177
## 24588 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    177
## 24589 1994                                   Action|Adventure|Thriller    177
## 24597 1996                                        Action|Horror|Sci-Fi    177
## 24604 1996                                      Action|Sci-Fi|Thriller    177
## 24610 1996                                             Action|Thriller    177
## 24611 1996                            Action|Adventure|Sci-Fi|Thriller    177
## 24613 1996                                             Sci-Fi|Thriller    177
## 24614 1996                                              Drama|Thriller    177
## 24615 1995                                             Horror|Thriller    177
## 24616 1996                                              Drama|Thriller    177
## 24618 1992                               Action|Horror|Sci-Fi|Thriller    177
## 24620 1997                                                    Thriller    177
## 24626 1981                            Action|Adventure|Sci-Fi|Thriller    177
## 24642 1991                                      Adventure|Drama|Sci-Fi    177
## 24643 1992                               Action|Horror|Sci-Fi|Thriller    177
## 24644 1991                                                    Thriller    177
## 24648 1989                                               Action|Sci-Fi    177
## 24655 1997                                Crime|Drama|Mystery|Thriller    177
## 24656 1997                                             Action|Thriller    177
## 24658 1997                                            Mystery|Thriller    177
## 24660 1997                                       Action|Drama|Thriller    177
## 24661 1997                                   Action|Adventure|Thriller    177
## 24663 1997                                             Action|Thriller    177
## 24670 1997                                      Horror|Sci-Fi|Thriller    177
## 24671 1997                            Action|Adventure|Sci-Fi|Thriller    177
## 24674 1997                                      Horror|Sci-Fi|Thriller    177
## 24684 1997                                        Crime|Drama|Thriller    177
## 24689 1997                                              Crime|Thriller    177
## 24690 1997                                             Action|Thriller    177
## 24691 1997                                        Action|Horror|Sci-Fi    177
## 24695 1998                         Adventure|Film-Noir|Sci-Fi|Thriller    177
## 24696 1997                           Adventure|Children|Fantasy|Sci-Fi    177
## 24700 1998                                             Sci-Fi|Thriller    177
## 24707 1998                                      Action|Sci-Fi|Thriller    177
## 24709 1998                              Action|Romance|Sci-Fi|Thriller    177
## 24717 1961                                     Children|Comedy|Fantasy    177
## 24722 1992                                      Children|Comedy|Sci-Fi    177
## 24723 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    177
## 24724 1985                                  Adventure|Children|Fantasy    177
## 24726 1998                                             Horror|Thriller    177
## 24728 1990                                             Horror|Thriller    177
## 24738 1984                                                      Sci-Fi    177
## 24741 1995                                            Action|Drama|War    178
## 24744 1994                                 Action|Crime|Drama|Thriller    178
## 24747 1994                                    Comedy|Drama|Romance|War    178
## 24749 1993                          Animation|Children|Fantasy|Musical    178
## 24750 1993                                              Crime|Thriller    178
## 24752 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    178
## 24754 1964                                                  Comedy|War    178
## 24757 1952                                      Comedy|Musical|Romance    178
## 24758 1939                          Adventure|Children|Fantasy|Musical    178
## 24760 1940                                              Comedy|Romance    178
## 24761 1964                             Children|Comedy|Fantasy|Musical    178
## 24762 1988                                       Action|Crime|Thriller    178
## 24765 1982                                       Children|Drama|Sci-Fi    178
## 24767 1975                                                       Drama    178
## 24769 1987                     Action|Adventure|Comedy|Fantasy|Romance    178
## 24773 1990                                                 Crime|Drama    178
## 24777 1989                                                       Drama    178
## 24778 1967                                        Comedy|Drama|Romance    178
## 24779 1980                                                      Horror    178
## 24783 1992                                               Drama|Western    178
## 24784 1944                                     Comedy|Mystery|Thriller    178
## 24788 1989                                      Children|Drama|Fantasy    178
## 24789 1922                                                      Horror    178
## 24790 1975                                               Action|Horror    178
## 24793 1997                                               Drama|Romance    178
## 24794 1998                                     Crime|Drama|Romance|War    178
## 24797 1987                                   Action|Comedy|Crime|Drama    178
## 24800 1959                                  Animation|Children|Musical    178
## 24801 1992                                        Crime|Drama|Thriller    178
## 24803 1999                                      Action|Sci-Fi|Thriller    178
## 24804 1984                                        Action|Comedy|Sci-Fi    178
## 24805 1983                                             Children|Comedy    178
## 24811 1942                                              Comedy|Musical    178
## 24812 1948                                                       Drama    178
## 24813 1969                                             Adventure|Drama    178
## 24814 1982                                        Comedy|Drama|Romance    178
## 24815 2000                                 Action|Crime|Drama|Thriller    178
## 24816 2000                                                       Drama    178
## 24817 1977                                      Adventure|Drama|Sci-Fi    178
## 24818 1980                                                      Comedy    178
## 24819 2000                                      Action|Adventure|Drama    178
## 24820 1925                                    Adventure|Comedy|Romance    178
## 24822 2000                                                       Drama    178
## 24823 2000                                        Crime|Drama|Thriller    178
## 24824 1983                                          Action|Crime|Drama    178
## 24825 2001                               Drama|Mystery|Sci-Fi|Thriller    178
## 24827 2002                                                Comedy|Drama    178
## 24828 2002                                                 Documentary    178
## 24829 1983                                       Drama|Sci-Fi|Thriller    178
## 24830 2000                                Action|Drama|Horror|Thriller    178
## 24832 1956                                             Adventure|Drama    178
## 24833 2004                                                      Comedy    178
## 24834 2004                                               Comedy|Horror    178
## 24835 2004                                                       Drama    178
## 24836 2003                                            Mystery|Thriller    178
## 24837 2004                                                       Drama    178
## 24839 2005                                     Action|Adventure|Sci-Fi    178
## 24841 2006                                                      Comedy    178
## 24842 2006                                      Adventure|Comedy|Drama    178
## 24845 2007                                     Action|Fantasy|War|IMAX    178
## 24846 1966                            Animation|Comedy|Fantasy|Musical    178
## 24848 2007                                             Animation|Drama    178
## 24849 2007                                        Comedy|Drama|Romance    178
## 24850 2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX    178
## 24851 2008                                         Action|Comedy|Crime    178
## 24853 2008                                                      Comedy    178
## 24854 2008                                                Comedy|Drama    178
## 24856 2010                                      Drama|Mystery|Thriller    178
## 24858 2010                                          Comedy|Documentary    178
## 24859 2010                                                Comedy|Drama    178
## 24860 2010                                              Drama|Thriller    178
## 24861 2010                                              Drama|Thriller    178
## 24862 2011                                              Drama|Thriller    178
## 24864 2012                                                Comedy|Drama    178
## 24865 2012                                        Action|Drama|Western    178
## 24866 2013                                Action|Adventure|Sci-Fi|IMAX    178
## 24867 2013                                          Comedy|Crime|Drama    178
## 24869 2014                                                      Sci-Fi    178
## 24872 1985                                     Adventure|Comedy|Sci-Fi    179
## 24873 1998                                         Comedy|Drama|Sci-Fi    179
## 24874 2000                                                      Comedy    179
## 24876 2001                                        Comedy|Drama|Romance    179
## 24877 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    179
## 24878 2001                                              Comedy|Romance    179
## 24883 2004                                        Drama|Romance|Sci-Fi    179
## 24886 2004                                                      Comedy    179
## 24887 2004                            Action|Adventure|Sci-Fi|Thriller    179
## 24888 2004                                       Action|Crime|Thriller    179
## 24893 2006                                Comedy|Drama|Fantasy|Romance    179
## 24894 2006                                   Action|Adventure|Thriller    179
## 24897 2007                                        Comedy|Drama|Romance    179
## 24899 2009                                                Comedy|Drama    179
## 24907 2012                                 Action|Adventure|Crime|IMAX    179
## 24909 1994                                                      Comedy    180
## 24912 1995                                                      Comedy    180
## 24920 1972                                      Action|Adventure|Drama    180
## 24921 1986                                        Comedy|Drama|Romance    180
## 24922 1986                                                       Drama    180
## 24924 1999                                                Comedy|Crime    180
## 24925 1999                                                       Drama    180
## 24927 1990                                               Comedy|Horror    180
## 24928 1999                                    Animation|Comedy|Musical    180
## 24929 1999                                       Drama|Horror|Thriller    180
## 24934 1993                                               Comedy|Sci-Fi    181
## 24940 1997                                   Action|Adventure|Thriller    181
## 24942 1997                                      Drama|Mystery|Thriller    181
## 24944 1984                                               Comedy|Horror    181
## 24961 1995                                        Comedy|Drama|Romance    182
## 24965 1995                                                      Action    182
## 24967 1995                                Adventure|Animation|Children    182
## 24968 1995                                               Drama|Romance    182
## 24969 1995                                       Comedy|Crime|Thriller    182
## 24970 1995                                               Drama|Romance    182
## 24972 1995                                                 Crime|Drama    182
## 24973 1995                    Animation|Children|Drama|Musical|Romance    182
## 24975 1996                                              Drama|Thriller    182
## 24977 1996                                              Drama|Thriller    182
## 24978 1996                                   Action|Adventure|Thriller    182
## 24981 1994                                  Adventure|Children|Fantasy    182
## 24983 1995                                                      Comedy    182
## 24986 1995                                       Action|Crime|Thriller    182
## 24988 1995                                    Adventure|Children|Drama    182
## 24989 1995                                                      Comedy    182
## 24991 1995                                              Comedy|Romance    182
## 24996 1995                                        Comedy|Drama|Romance    182
## 24998 1994                                            Adventure|Comedy    182
## 24999 1995                                       Action|Comedy|Romance    182
## 25000 1995                                              Comedy|Romance    182
## 25004 1995                                              Children|Drama    182
## 25005 1992                                       Drama|Fantasy|Romance    182
## 25006 1994                                   Drama|Romance|War|Western    182
## 25008 1995                                                       Drama    182
## 25011 1994                                                       Drama    182
## 25013 1994                                                       Drama    182
## 25015 1994                                     Action|Adventure|Sci-Fi    182
## 25017 1993                                                       Drama    182
## 25019 1994                                                      Comedy    182
## 25020 1995                                                    Children    182
## 25021 1994                                                      Comedy    182
## 25025 1994                                     Children|Comedy|Fantasy    182
## 25027 1994                                              Comedy|Romance    182
## 25028 1994                                               Action|Comedy    182
## 25033 1994                                               Action|Comedy    182
## 25036 1994                                               Drama|Romance    182
## 25038 1993                                     Children|Comedy|Fantasy    182
## 25042 1993                                    Adventure|Children|Drama    182
## 25045 1993                             Action|Adventure|Comedy|Fantasy    182
## 25046 1993                                                      Comedy    182
## 25049 1994                                     Action|Children|Romance    182
## 25050 1993                                                       Drama    182
## 25052 1993                                                       Drama    182
## 25055 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    182
## 25056 1993                                        Action|Drama|Western    182
## 25057 1994                                                Comedy|Drama    182
## 25061 1991                                       Crime|Horror|Thriller    182
## 25065 1996                                          Adventure|Children    182
## 25069 1994                                               Drama|Romance    182
## 25071 1996                                        Crime|Drama|Thriller    182
## 25078 1996                                             Children|Comedy    182
## 25080 1996                                                      Comedy    182
## 25082 1996                                                       Drama    182
## 25088 1971                             Children|Comedy|Fantasy|Musical    182
## 25089 1967                                                 Crime|Drama    182
## 25095 1977                                     Action|Adventure|Sci-Fi    183
## 25108 1980                                     Action|Adventure|Sci-Fi    183
## 25111 1967                                        Comedy|Drama|Romance    183
## 25113 1997                            Crime|Film-Noir|Mystery|Thriller    183
## 25116 1969                                                       Drama    183
## 25125 2000                                                      Comedy    183
## 25126 2000                                   Animation|Children|Comedy    183
## 25127 2000                                                      Comedy    183
## 25128 2000                                                Drama|Sci-Fi    183
## 25130 2000                                      Adventure|Comedy|Crime    183
## 25132 1995                                          Drama|Thriller|War    184
## 25134 1995                                              Comedy|Romance    184
## 25136 1994                                            Adventure|Comedy    184
## 25137 1994                                                 Documentary    184
## 25138 1994                                               Comedy|Sci-Fi    184
## 25145 1994                                                       Drama    184
## 25148 1994                                    Comedy|Drama|Romance|War    184
## 25151 1994                                                Comedy|Drama    184
## 25153 1994                    Action|Adventure|Comedy|Romance|Thriller    184
## 25154 1994                                                      Comedy    184
## 25155 1993                                             Comedy|Thriller    184
## 25157 1993                                   Action|Adventure|Thriller    184
## 25159 1993                                              Drama|Thriller    184
## 25163 1993                            Action|Adventure|Sci-Fi|Thriller    184
## 25164 1993                             Action|Adventure|Comedy|Fantasy    184
## 25166 1993                                                       Drama    184
## 25169 1990                                             Children|Comedy    184
## 25174 1990                                              Comedy|Romance    184
## 25180 1995                    Animation|Children|Drama|Musical|Romance    185
## 25183 1995                                        Adventure|Drama|IMAX    185
## 25184 1995                                      Action|Sci-Fi|Thriller    185
## 25186 1995                           Animation|Children|Comedy|Romance    185
## 25187 1994                                               Comedy|Sci-Fi    185
## 25188 1977                                     Action|Adventure|Sci-Fi    185
## 25189 1994                                 Comedy|Crime|Drama|Thriller    185
## 25196 1994             Adventure|Animation|Children|Drama|Musical|IMAX    185
## 25198 1993                                                       Drama    185
## 25199 1993                                              Comedy|Romance    185
## 25207 1937                    Animation|Children|Drama|Fantasy|Musical    185
## 25209 1940                          Animation|Children|Fantasy|Musical    185
## 25213 1988                 Adventure|Animation|Children|Comedy|Musical    185
## 25220 1996                    Animation|Children|Drama|Musical|Romance    185
## 25221 1996                               Comedy|Fantasy|Romance|Sci-Fi    185
## 25222 1959                                                Comedy|Crime    185
## 25224 1939                          Adventure|Children|Fantasy|Musical    185
## 25225 1968                                      Adventure|Drama|Sci-Fi    185
## 25227 1950                  Animation|Children|Fantasy|Musical|Romance    185
## 25228 1963                          Animation|Children|Fantasy|Musical    185
## 25229 1964                             Children|Comedy|Fantasy|Musical    185
## 25230 1941                            Animation|Children|Drama|Musical    185
## 25231 1951                Adventure|Animation|Children|Fantasy|Musical    185
## 25232 1981                                    Animation|Children|Drama    185
## 25234 1992                               Action|Horror|Sci-Fi|Thriller    185
## 25239 1951                                                       Drama    185
## 25245 1980                                     Action|Adventure|Sci-Fi    185
## 25249 1983                                     Action|Adventure|Sci-Fi    185
## 25252 1980                                       Action|Comedy|Musical    185
## 25257 1993                                      Comedy|Fantasy|Romance    185
## 25261 1940                          Animation|Children|Fantasy|Musical    185
## 25262 1984                                                      Comedy    185
## 25264 1989                                              Comedy|Romance    185
## 25265 1992                               Action|Horror|Sci-Fi|Thriller    185
## 25272 1997                            Action|Adventure|Sci-Fi|Thriller    185
## 25273 1997                 Adventure|Animation|Children|Comedy|Musical    185
## 25275 1997                                                Drama|Sci-Fi    185
## 25276 1997                                      Horror|Sci-Fi|Thriller    185
## 25278 1997                  Adventure|Animation|Children|Drama|Musical    185
## 25279 1997                                        Action|Horror|Sci-Fi    185
## 25280 1997                                     Children|Comedy|Fantasy    185
## 25282 1997                                                      Comedy    185
## 25283 1998                         Adventure|Film-Noir|Sci-Fi|Thriller    185
## 25284 1997                                        Comedy|Drama|Romance    185
## 25289 1998                                       Drama|Sci-Fi|Thriller    185
## 25291 1986                                   Adventure|Fantasy|Musical    185
## 25294 1942                                    Animation|Children|Drama    185
## 25295 1984                                            Adventure|Sci-Fi    185
## 25296 1998                                            Action|Drama|War    185
## 25297 1985                        Adventure|Animation|Children|Fantasy    185
## 25298 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    185
## 25299 1967                           Animation|Children|Comedy|Musical    185
## 25300 1955                           Animation|Children|Comedy|Romance    185
## 25301 1989                   Animation|Children|Comedy|Musical|Romance    185
## 25302 1961                                Adventure|Animation|Children    185
## 25303 1953                          Animation|Children|Fantasy|Musical    185
## 25306 1978                                             Children|Sci-Fi    185
## 25307 1991                                     Action|Adventure|Sci-Fi    185
## 25308 1959                                  Animation|Children|Musical    185
## 25309 1982                                     Action|Adventure|Sci-Fi    185
## 25310 1998                                                      Comedy    185
## 25311 1973                                          Animation|Children    185
## 25312 1982                          Adventure|Animation|Children|Drama    185
## 25313 1986                         Adventure|Animation|Children|Comedy    185
## 25314 1991                Adventure|Animation|Children|Musical|Western    185
## 25316 1988                                    Action|Adventure|Fantasy    185
## 25318 1998                 Adventure|Animation|Children|Comedy|Fantasy    185
## 25321 1998                                                      Comedy    185
## 25323 1986                                     Adventure|Comedy|Sci-Fi    185
## 25325 1956                                       Drama|Musical|Romance    185
## 25327 1999                                                      Comedy    185
## 25328 1999                                              Comedy|Fantasy    185
## 25329 1999                                     Action|Adventure|Sci-Fi    185
## 25334 1984                                        Action|Comedy|Sci-Fi    185
## 25335 1960                                               Comedy|Horror    185
## 25338 1983                                             Children|Comedy    185
## 25341 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    185
## 25346 1998                 Adventure|Animation|Children|Fantasy|Sci-Fi    185
## 25347 1940                                                       Drama    185
## 25350 1999                                     Adventure|Comedy|Sci-Fi    185
## 25351 1992                                                Comedy|Drama    185
## 25353 1990                       Action|Children|Comedy|Fantasy|Sci-Fi    185
## 25356 1985                                   Adventure|Fantasy|Romance    185
## 25357 1991                                    Adventure|Comedy|Fantasy    185
## 25358 1972                                               Drama|Musical    185
## 25359 1955                                      Comedy|Musical|Romance    185
## 25362 2000                                       Drama|Horror|Thriller    185
## 25363 2000                                               Drama|Musical    185
## 25365 2000                 Adventure|Animation|Children|Comedy|Fantasy    185
## 25366 1987                              Action|Adventure|Comedy|Sci-Fi    185
## 25367 1983                             Action|Adventure|Fantasy|Sci-Fi    185
## 25369 1991                                              Comedy|Western    185
## 25370 2001                        Adventure|Animation|Children|Fantasy    185
## 25373 1989                                                       Drama    185
## 25377 1980                                     Action|Adventure|Sci-Fi    185
## 25379 1992                           Animation|Children|Comedy|Musical    185
## 25380 1995                                                       Drama    186
## 25382 1996                                   Action|Adventure|Thriller    186
## 25384 1992                                       Action|Drama|Thriller    186
## 25387 1963                                               Comedy|Sci-Fi    186
## 25390 1999                                              Crime|Thriller    186
## 25391 1964                                    Adventure|Comedy|Musical    186
## 25395 2000                                                      Comedy    186
## 25397 2000                                        Action|Drama|Romance    186
## 25400 2001                               Action|Crime|Mystery|Thriller    186
## 25402 2001                                              Comedy|Romance    186
## 25408 2003                             Action|Adventure|Comedy|Fantasy    186
## 25412 2004                                        Drama|Romance|Sci-Fi    186
## 25416 2006                                Comedy|Drama|Fantasy|Romance    186
## 25417 2008                                     Action|Crime|Drama|IMAX    186
## 25418 2008                 Adventure|Animation|Children|Romance|Sci-Fi    186
## 25423 1995                                  Adventure|Children|Fantasy    187
## 25432 1995                                     Action|Adventure|Sci-Fi    187
## 25434 1994                                            Adventure|Comedy    187
## 25435 1995                           Animation|Children|Comedy|Romance    187
## 25436 1994                                                Comedy|Drama    187
## 25437 1994                                                 Crime|Drama    187
## 25441 1994                                      Adventure|Drama|Sci-Fi    187
## 25443 1994                                                      Comedy    187
## 25445 1994                                  Adventure|Children|Romance    187
## 25447 1994                                 Action|Comedy|Crime|Fantasy    187
## 25448 1994                                        Comedy|Drama|Romance    187
## 25450 1993                              Drama|Mystery|Romance|Thriller    187
## 25451 1993                                                      Comedy    187
## 25452 1993                                                       Drama    187
## 25454 1993                            Action|Adventure|Sci-Fi|Thriller    187
## 25455 1993                                                Comedy|Drama    187
## 25459 1994                                             Children|Comedy    187
## 25460 1990                                             Children|Comedy    187
## 25465 1940                          Animation|Children|Fantasy|Musical    187
## 25467 1996                                          Adventure|Children    187
## 25469 1996                Adventure|Animation|Children|Fantasy|Musical    187
## 25470 1996                                                      Comedy    187
## 25473 1996                    Animation|Children|Drama|Musical|Romance    187
## 25475 1996                                     Children|Comedy|Fantasy    187
## 25478 1946                              Children|Drama|Fantasy|Romance    187
## 25480 1996                                                       Drama    187
## 25481 1993                                    Adventure|Children|Drama    187
## 25485 1951                Adventure|Animation|Children|Fantasy|Musical    187
## 25486 1996                                       Action|Drama|Thriller    187
## 25487 1996                                               Drama|Romance    187
## 25492 1982                                       Children|Drama|Sci-Fi    187
## 25494 1987                     Action|Adventure|Comedy|Fantasy|Romance    187
## 25495 1957                                                       Drama    187
## 25496 1979                                            Action|Drama|War    187
## 25500 1996                            Action|Adventure|Sci-Fi|Thriller    187
## 25502 1991                                       Action|Mystery|Sci-Fi    187
## 25503 1978                                      Comedy|Musical|Romance    187
## 25504 1996                              Comedy|Horror|Mystery|Thriller    187
## 25505 1997                                                      Comedy    187
## 25506 1996                                               Drama|Romance    187
## 25508 1997                                     Action|Adventure|Comedy    187
## 25511 1997                                       Drama|Sci-Fi|Thriller    187
## 25512 1997                                                       Drama    187
## 25516 1997                              Comedy|Horror|Mystery|Thriller    187
## 25523 1998                                        Comedy|Drama|Romance    187
## 25525 1998                              Action|Romance|Sci-Fi|Thriller    187
## 25526 1998                                              Comedy|Romance    187
## 25527 1976                                                       Drama    187
## 25530 1987                                   Action|Comedy|Crime|Drama    187
## 25532 1942                                    Animation|Children|Drama    187
## 25534 1967                           Animation|Children|Comedy|Musical    187
## 25535 1955                           Animation|Children|Comedy|Romance    187
## 25538 1992                                            Children|Musical    187
## 25540 1959                                  Animation|Children|Musical    187
## 25543 1963                                               Comedy|Sci-Fi    187
## 25544 1985                                               Drama|Romance    187
## 25546 1998                                                       Drama    187
## 25547 1993                                               Drama|Romance    187
## 25556 1999                                      Action|Sci-Fi|Thriller    187
## 25561 1999                                     Action|Adventure|Sci-Fi    187
## 25562 1999                                     Action|Adventure|Comedy    187
## 25564 1999                                       Drama|Horror|Thriller    187
## 25568 1993                        Crime|Drama|Mystery|Romance|Thriller    187
## 25571 1999                                        Comedy|Drama|Fantasy    187
## 25572 1999                                                    Thriller    187
## 25573 1987                                              Drama|Thriller    187
## 25574 1991                                Comedy|Drama|Fantasy|Romance    187
## 25583 2000                              Comedy|Horror|Mystery|Thriller    187
## 25588 2000                               Crime|Horror|Mystery|Thriller    187
## 25589 1999                                               Drama|Romance    187
## 25590 1985                                            Adventure|Comedy    187
## 25591 1986                                               Drama|Romance    187
## 25592 2000                                     Action|Adventure|Sci-Fi    187
## 25596 2001                                       Drama|Musical|Romance    187
## 25598 1991                               Comedy|Drama|Mystery|Thriller    187
## 25601 2001                                                      Comedy    187
## 25602 2001                                     Children|Comedy|Romance    187
## 25607 2001                                           Adventure|Fantasy    187
## 25609 1970                                            Comedy|Drama|War    187
## 25613 2002                                     Action|Mystery|Thriller    187
## 25614 2002                   Adventure|Children|Comedy|Fantasy|Mystery    187
## 25616 2002                                        Action|Comedy|Sci-Fi    187
## 25617 2002                                                      Comedy    187
## 25623 2002                                           Adventure|Fantasy    187
## 25625 2002                                  Comedy|Crime|Drama|Musical    187
## 25626 2003                                             Horror|Thriller    187
## 25631 1998                                     Horror|Mystery|Thriller    187
## 25633 2003                            Action|Adventure|Sci-Fi|Thriller    187
## 25634 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    187
## 25637 2003                                        Comedy|Drama|Romance    187
## 25638 2002                                        Action|Horror|Sci-Fi    187
## 25639 1990                                        Comedy|Horror|Sci-Fi    187
## 25640 2003                                        Comedy|Drama|Romance    187
## 25641 1942                                           Adventure|Fantasy    187
## 25642 2003                                       Action|Crime|Thriller    187
## 25643 2003                                                       Drama    187
## 25644 2003                                                 Documentary    187
## 25645 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    187
## 25647 2003                                             Horror|Thriller    187
## 25648 1920                                        Crime|Fantasy|Horror    187
## 25649 2000                                               Drama|Romance    187
## 25650 1990                                            Children|Fantasy    187
## 25651 2003                                       Drama|Fantasy|Romance    187
## 25652 2003                              Action|Adventure|Drama|Fantasy    187
## 25656 2004                                            Adventure|Comedy    187
## 25658 2004                                       Action|Drama|Thriller    187
## 25661 2000                                              Comedy|Romance    187
## 25663 1999                                                 Documentary    187
## 25665 2004                                      Adventure|Fantasy|IMAX    187
## 25666 2004                                         Action|Comedy|Crime    187
## 25668 2004                                Action|Adventure|Sci-Fi|IMAX    187
## 25671 1964                                                       Drama    187
## 25673 2004                           Action|Adventure|Animation|Comedy    187
## 25674 2004                                     Horror|Mystery|Thriller    187
## 25675 2004                  Action|Adventure|Animation|Children|Comedy    187
## 25676 2004                                                       Drama    187
## 25678 1964                                             Horror|Thriller    187
## 25679 1965                                   Animation|Children|Comedy    187
## 25681 1988                     Action|Adventure|Drama|Mystery|Thriller    187
## 25682 1998                                               Drama|Romance    187
## 25683 2003                         Comedy|Crime|Drama|Mystery|Thriller    187
## 25684 2004                           Adventure|Children|Comedy|Fantasy    187
## 25685 2006                     Animation|Drama|Mystery|Sci-Fi|Thriller    187
## 25692 2005                               Drama|Horror|Mystery|Thriller    187
## 25694 2005                                             Horror|Thriller    187
## 25695 2005                                               Drama|Romance    187
## 25696 2005                             Adventure|Fantasy|Thriller|IMAX    187
## 25698 2005                                  Adventure|Children|Fantasy    187
## 25700 1979                                                 Crime|Drama    187
## 25701 2006                                              Comedy|Romance    187
## 25704 2005                               Crime|Drama|Film-Noir|Mystery    187
## 25706 2006                                                 Documentary    187
## 25708 2006                                                       Drama    187
## 25716 2007                                              Comedy|Romance    187
## 25717 2007                         Action|Crime|Horror|Sci-Fi|Thriller    187
## 25720 2007                      Action|Adventure|Crime|Horror|Thriller    187
## 25721 2007                                Adventure|Drama|Fantasy|IMAX    187
## 25722 2007                                              Comedy|Romance    187
## 25723 2007                                            Animation|Comedy    187
## 25725 2007                                                Comedy|Drama    187
## 25726 2007                                              Drama|Thriller    187
## 25731 2008                                            Adventure|Comedy    187
## 25734 2008                                       Drama|Sci-Fi|Thriller    187
## 25736 1966                                   Animation|Children|Comedy    187
## 25738 2008                                               Drama|Romance    187
## 25739 2008                              Action|Comedy|Fantasy|Thriller    187
## 25743 2008                                                      Comedy    187
## 25748 1995                         Crime|Drama|Horror|Mystery|Thriller    188
## 25752 1995                                              Comedy|Romance    188
## 25753 1995                                            Mystery|Thriller    188
## 25754 1995                    Animation|Children|Drama|Musical|Romance    188
## 25756 1995                                                       Drama    188
## 25757 1995                                       Comedy|Horror|Romance    188
## 25761 1995                               Action|Adventure|Comedy|Crime    188
## 25762 1995                                          Adventure|Children    188
## 25763 1995                             Action|Adventure|Mystery|Sci-Fi    188
## 25764 1995                                       Action|Crime|Thriller    188
## 25765 1995                                         Action|Crime|Sci-Fi    188
## 25766 1995                                               Horror|Sci-Fi    188
## 25767 1995                                     Action|Adventure|Sci-Fi    188
## 25769 1994                                            Adventure|Comedy    188
## 25770 1994                                                Drama|Horror    188
## 25771 1995                                              Children|Drama    188
## 25772 1994                                                       Drama    188
## 25775 1995                                Action|Drama|Sci-Fi|Thriller    188
## 25778 1994                                     Action|Adventure|Sci-Fi    188
## 25779 1994                                        Comedy|Drama|Fantasy    188
## 25781 1994                                      Adventure|Drama|Sci-Fi    188
## 25782 1995                                              Comedy|Romance    188
## 25785 1994                                      Drama|Mystery|Thriller    188
## 25788 1994                                  Adventure|Children|Romance    188
## 25790 1994                                 Action|Comedy|Crime|Fantasy    188
## 25792 1994                                             Children|Comedy    188
## 25793 1994                                     Action|Romance|Thriller    188
## 25795 1993                                     Children|Comedy|Fantasy    188
## 25796 1994                                Action|Comedy|Crime|Thriller    188
## 25797 1993                                               Comedy|Sci-Fi    188
## 25798 1993                                              Drama|Thriller    188
## 25799 1993                                                    Thriller    188
## 25805 1993                                               Drama|Romance    188
## 25806 1993                          Action|Crime|Drama|Sci-Fi|Thriller    188
## 25808 1993                                        Comedy|Drama|Romance    188
## 25810 1993                          Animation|Children|Fantasy|Musical    188
## 25811 1994                                             Children|Comedy    188
## 25817 1989                                       Action|Crime|Thriller    188
## 25823 1996                           Action|Adventure|Mystery|Thriller    188
## 25824 1996                                    Action|Adventure|Fantasy    188
## 25826 1996                                               Comedy|Sci-Fi    188
## 25829 1996                            Action|Adventure|Sci-Fi|Thriller    188
## 25830 1996                                             Children|Comedy    188
## 25832 1996                                                Comedy|Crime    188
## 25833 1975                                  Adventure|Children|Fantasy    188
## 25835 1961                                     Children|Comedy|Romance    188
## 25836 1960                                          Adventure|Children    188
## 25837 1954                                      Adventure|Drama|Sci-Fi    188
## 25839 1968                                  Animation|Children|Musical    188
## 25840 1945                                  Animation|Children|Musical    188
## 25841 1963                          Animation|Children|Fantasy|Musical    188
## 25844 1977                        Adventure|Animation|Children|Musical    188
## 25845 1981                                    Animation|Children|Drama    188
## 25846 1995                          Action|Comedy|Crime|Drama|Thriller    189
## 25847 1995                           Animation|Children|Comedy|Romance    189
## 25848 1994                                                Drama|Horror    189
## 25851 1994                                               Action|Comedy    189
## 25852 1993                                   Action|Adventure|Thriller    189
## 25856 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi    189
## 25857 1996                           Action|Adventure|Romance|Thriller    189
## 25858 1996                                               Action|Sci-Fi    189
## 25859 1996                            Action|Adventure|Sci-Fi|Thriller    189
## 25861 1996                                                       Drama    189
## 25862 1941                                           Film-Noir|Mystery    189
## 25863 1968                                      Horror|Sci-Fi|Thriller    189
## 25864 1964                             Children|Comedy|Fantasy|Musical    189
## 25870 1988                                     Adventure|Drama|Romance    189
## 25874 1986                                               Drama|Romance    189
## 25875 1996                                               Drama|Mystery    189
## 25876 1996                                                       Drama    189
## 25877 1982                            Action|Adventure|Sci-Fi|Thriller    189
## 25879 1997                                                      Comedy    189
## 25880 1997                                                      Horror    189
## 25883 1998                                                Comedy|Crime    189
## 25884 1998                                                      Comedy    189
## 25885 1985                                               Drama|Romance    189
## 25886 1987                                   Action|Comedy|Crime|Drama    189
## 25888 1986                                     Adventure|Drama|Fantasy    189
## 25890 1993                                               Drama|Romance    189
## 25891 1980                                                Comedy|Drama    189
## 25892 1992                                                      Comedy    189
## 25893 1998                               Drama|Fantasy|Mystery|Romance    189
## 25895 1998                                                       Drama    189
## 25896 1998                                                       Drama    189
## 25897 1998                                                     Romance    189
## 25898 1998                         Adventure|Animation|Children|Comedy    189
## 25899 1985                                        Comedy|Drama|Romance    189
## 25900 1998                                       Children|Comedy|Drama    189
## 25901 1998                                               Horror|Sci-Fi    189
## 25902 1998                                                       Drama    189
## 25903 1999                                             Action|Thriller    189
## 25905 1970                                               Action|Sci-Fi    189
## 25906 1973                                               Action|Sci-Fi    189
## 25907 1972                                               Action|Sci-Fi    189
## 25908 1971                                               Action|Sci-Fi    189
## 25909 1999                                                       Drama    189
## 25910 1999                                                Action|Crime    189
## 25912 1999                                                      Comedy    189
## 25914 1999                                              Comedy|Romance    189
## 25915 1999                                          Comedy|Crime|Drama    189
## 25916 1999                                                      Comedy    189
## 25917 1999                                              Crime|Thriller    189
## 25918 1982                                               Horror|Sci-Fi    189
## 25919 1999                                       Drama|Sci-Fi|Thriller    189
## 25920 1999                                              Drama|Thriller    189
## 25922 1998                                               Drama|Mystery    189
## 25923 1999                                Crime|Drama|Mystery|Thriller    189
## 25926 1999                                    Animation|Comedy|Musical    189
## 25927 1999                                Action|Comedy|Sci-Fi|Western    189
## 25928 1999                                                       Drama    189
## 25930 1999                                                    Thriller    189
## 25933 1999                                             Horror|Thriller    189
## 25934 1984                                        Action|Comedy|Sci-Fi    189
## 25935 1999                                             Horror|Thriller    189
## 25936 1999                            Action|Adventure|Children|Comedy    189
## 25937 1999                               Action|Horror|Sci-Fi|Thriller    189
## 25938 1999                                              Comedy|Romance    189
## 25940 1999                                                      Comedy    189
## 25942 1999                                              Action|Mystery    189
## 25943 1999                                                      Comedy    189
## 25944 1999                                                       Drama    189
## 25945 1999                                                      Comedy    189
## 25946 1999                                              Comedy|Romance    189
## 25947 1999                                             Comedy|Thriller    189
## 25948 1999                                    Action|Adventure|Fantasy    189
## 25949 1999                                      Horror|Sci-Fi|Thriller    189
## 25950 1999                                              Drama|Thriller    189
## 25953 1999                                                Comedy|Drama    189
## 25954 1999                                 Action|Crime|Drama|Thriller    189
## 25955 1999                                                       Drama    189
## 25956 1999                                              Comedy|Romance    189
## 25957 1999                                 Action|Crime|Drama|Thriller    189
## 25959 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    189
## 25960 1999                                             Horror|Thriller    189
## 25962 1999                                                       Drama    189
## 25963 1999                                              Comedy|Romance    189
## 25964 1999                                                    Thriller    189
## 25965 1982                                                      Horror    189
## 25967 1999                      Action|Fantasy|Horror|Mystery|Thriller    189
## 25968 1999                                                      Comedy    189
## 25969 1999                                                 Crime|Drama    189
## 25971 1999                                     Adventure|Comedy|Sci-Fi    189
## 25973 2000                                                      Comedy    189
## 25974 1999                                                       Drama    189
## 25976 1999                                                       Drama    189
## 25979 1999                                                    Thriller    189
## 25981 1992                                                Comedy|Drama    189
## 25982 2000                              Comedy|Horror|Mystery|Thriller    189
## 25983 2000                                             Adventure|Drama    189
## 25984 2000                                        Crime|Drama|Thriller    189
## 25985 2000                                                Comedy|Drama    189
## 25986 2000                                             Action|Thriller    189
## 25987 2000                                               Comedy|Sci-Fi    189
## 25988 1999                             Fantasy|Horror|Mystery|Thriller    189
## 25989 2000                                                       Drama    189
## 25990 2000                                              Drama|Thriller    189
## 25991 1978                                            Mystery|Thriller    189
## 25992 1987                                            Comedy|Drama|War    189
## 25993 2000                               Action|Crime|Romance|Thriller    189
## 25995 2000                                              Drama|Thriller    189
## 25996 2000                                             Children|Comedy    189
## 25998 2000                                   Action|Adventure|Thriller    189
## 26000 2000                                                Action|Crime    189
## 26001 2000                                   Animation|Children|Comedy    189
## 26004 1986                                       Action|Crime|Thriller    189
## 26005 1991                                       Action|Crime|Thriller    189
## 26006 1990                                         Crime|Drama|Romance    189
## 26007 1984                                                  Action|War    189
## 26008 1973                                    Action|Adventure|Fantasy    189
## 26009 2000                                     Action|Adventure|Sci-Fi    189
## 26011 1992                                               Action|Sci-Fi    189
## 26012 1977                                           Adventure|Fantasy    189
## 26013 1991                                                      Comedy    189
## 26014 1992                                              Drama|Thriller    189
## 26015 1970                                           Action|Comedy|War    189
## 26016 1990                                               Action|Comedy    189
## 26017 1989                                                       Drama    189
## 26019 2000                                          Comedy|Documentary    189
## 26021 1991                                                      Comedy    189
## 26031 1998                 Adventure|Animation|Children|Comedy|Fantasy    190
## 26034 1998                                                       Drama    190
## 26036 1998                                           Animation|Musical    190
## 26039 1998                                                       Drama    190
## 26045 1999                                                      Comedy    190
## 26047 1999                                      Action|Sci-Fi|Thriller    190
## 26050 1999                                              Comedy|Romance    190
## 26052 1999                                     Action|Adventure|Comedy    190
## 26059 1999                                              Comedy|Romance    190
## 26060 1986                                    Adventure|Drama|Thriller    190
## 26063 1999                                                      Comedy    190
## 26065 1999                                                Comedy|Drama    190
## 26066 1999                                 Action|Crime|Drama|Thriller    190
## 26072 1999                                                Comedy|Drama    190
## 26074 1999                                           Drama|Romance|War    190
## 26078 2000                                        Crime|Drama|Thriller    190
## 26081 2000                                                       Drama    190
## 26082 1995                                   Action|Adventure|Thriller    191
## 26083 1995                                              Children|Drama    191
## 26084 1995                                            Mystery|Thriller    191
## 26085 1995                                            Action|Drama|War    191
## 26087 1995                               Action|Adventure|Comedy|Crime    191
## 26089 1995                                       Action|Crime|Thriller    191
## 26090 1995                                       Action|Crime|Thriller    191
## 26091 1995                                     Action|Adventure|Sci-Fi    191
## 26092 1994                                            Adventure|Comedy    191
## 26093 1995                                Action|Drama|Sci-Fi|Thriller    191
## 26098 1994                                                      Comedy    191
## 26099 1994                                 Action|Crime|Drama|Thriller    191
## 26101 1994                    Action|Adventure|Comedy|Romance|Thriller    191
## 26102 1993                                   Action|Adventure|Thriller    191
## 26103 1993                                              Drama|Thriller    191
## 26105 1993                            Action|Adventure|Sci-Fi|Thriller    191
## 26106 1992                 Adventure|Animation|Children|Comedy|Musical    191
## 26108 1989                                       Action|Crime|Thriller    191
## 26110 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    191
## 26112 1995                                                      Comedy    192
## 26114 1995                                              Comedy|Romance    192
## 26115 1995                                    Action|Adventure|Fantasy    192
## 26116 1995                                            Mystery|Thriller    192
## 26117 1995                    Animation|Children|Drama|Musical|Romance    192
## 26119 1995                                          Adventure|Children    192
## 26120 1995                             Action|Adventure|Mystery|Sci-Fi    192
## 26121 1995                                             Action|Children    192
## 26122 1995                                       Action|Crime|Thriller    192
## 26123 1995                                     Action|Adventure|Sci-Fi    192
## 26126 1994                                                       Drama    192
## 26129 1994                                     Action|Adventure|Sci-Fi    192
## 26133 1994                                      Drama|Mystery|Thriller    192
## 26134 1994                                     Children|Comedy|Fantasy    192
## 26138 1994                                 Action|Comedy|Crime|Fantasy    192
## 26139 1994                                               Action|Comedy    192
## 26140 1994                                             Children|Comedy    192
## 26141 1994                                     Action|Romance|Thriller    192
## 26142 1994                    Action|Adventure|Comedy|Romance|Thriller    192
## 26144 1993                                   Action|Adventure|Thriller    192
## 26145 1993                                     Action|Adventure|Sci-Fi    192
## 26146 1993                                              Drama|Thriller    192
## 26147 1993                                    Adventure|Children|Drama    192
## 26149 1993                                             Action|Thriller    192
## 26154 1993                                        Comedy|Drama|Romance    192
## 26155 1993                          Animation|Children|Fantasy|Musical    192
## 26160 1989                                       Action|Crime|Thriller    192
## 26161 1991                                       Crime|Horror|Thriller    192
## 26164 1990                                              Comedy|Romance    192
## 26165 1996                           Action|Adventure|Romance|Thriller    192
## 26171 1994                                 Comedy|Crime|Drama|Thriller    193
## 26185 1980                                     Action|Adventure|Sci-Fi    193
## 26186 1987                     Action|Adventure|Comedy|Fantasy|Romance    193
## 26187 1957                                                       Drama    193
## 26194 1974                            Crime|Film-Noir|Mystery|Thriller    193
## 26197 1987                                                      Comedy    193
## 26206 1992                                          Comedy|Crime|Drama    193
## 26222 1999                 Adventure|Animation|Children|Comedy|Fantasy    193
## 26226 1982                                        Comedy|Drama|Romance    193
## 26228 1982                                                Comedy|Drama    193
## 26232 1995                                                      Comedy    194
## 26234 1995                                    Action|Adventure|Fantasy    194
## 26235 1996                                   Action|Adventure|Thriller    194
## 26238 1995                                    Action|Drama|Romance|War    194
## 26239 1995                                          Adventure|Children    194
## 26240 1995                             Action|Adventure|Mystery|Sci-Fi    194
## 26242 1995                                      Action|Sci-Fi|Thriller    194
## 26243 1995                                         Action|Crime|Sci-Fi    194
## 26244 1995                                               Horror|Sci-Fi    194
## 26246 1995                                     Action|Adventure|Sci-Fi    194
## 26248 1994                                            Adventure|Comedy    194
## 26249 1994                                                Drama|Horror    194
## 26250 1995                                Action|Drama|Sci-Fi|Thriller    194
## 26251 1994                                 Comedy|Crime|Drama|Thriller    194
## 26253 1994                                        Comedy|Drama|Fantasy    194
## 26256 1994                                                      Comedy    194
## 26258 1994                               Action|Crime|Fantasy|Thriller    194
## 26262 1994                                    Adventure|Comedy|Western    194
## 26263 1994                                     Action|Romance|Thriller    194
## 26265 1994                                Action|Comedy|Crime|Thriller    194
## 26266 1994                                    Adventure|Comedy|Western    194
## 26268 1993                                     Action|Adventure|Sci-Fi    194
## 26269 1993                                              Drama|Thriller    194
## 26270 1993                                                    Thriller    194
## 26271 1993                            Action|Adventure|Sci-Fi|Thriller    194
## 26272 1993                                                Comedy|Drama    194
## 26274 1993                          Animation|Children|Fantasy|Musical    194
## 26275 1990                       Comedy|Drama|Fantasy|Romance|Thriller    194
## 26279 1990                                              Comedy|Romance    194
## 26283 1995                                               Drama|Romance    195
## 26285 1995                                              Comedy|Romance    195
## 26286 1995                                          Action|Crime|Drama    195
## 26287 1995                                  Adventure|Children|Fantasy    195
## 26288 1996                                   Action|Adventure|Thriller    195
## 26289 1996                                                      Comedy    195
## 26290 1995                                            Action|Drama|War    195
## 26291 1976                                        Crime|Drama|Thriller    195
## 26292 1995                               Action|Adventure|Comedy|Crime    195
## 26293 1995                                        Adventure|Drama|IMAX    195
## 26295 1995                                       Action|Crime|Thriller    195
## 26296 1995                                               Horror|Sci-Fi    195
## 26297 1995                                     Action|Adventure|Sci-Fi    195
## 26299 1994                                                 Documentary    195
## 26300 1995                   Adventure|Children|Comedy|Fantasy|Romance    195
## 26302 1994                                        Comedy|Drama|Romance    195
## 26303 1994                                       Action|Crime|Thriller    195
## 26304 1994                                 Comedy|Crime|Drama|Thriller    195
## 26305 1995                                     Action|Thriller|Western    195
## 26306 1994                                                 Crime|Drama    195
## 26307 1995                                         Action|Crime|Horror    195
## 26308 1994                                 Action|Crime|Drama|Thriller    195
## 26309 1994                                    Comedy|Drama|Romance|War    195
## 26310 1994                                    Adventure|Comedy|Western    195
## 26311 1994                                     Action|Romance|Thriller    195
## 26312 1994                                      Action|Sci-Fi|Thriller    195
## 26313 1994                    Action|Adventure|Comedy|Romance|Thriller    195
## 26314 1994                                              Action|Fantasy    195
## 26315 1994                                Action|Comedy|Crime|Thriller    195
## 26316 1993                                      Horror|Sci-Fi|Thriller    195
## 26317 1994                                       Adventure|Documentary    195
## 26319 1994                                                      Comedy    195
## 26321 1993                             Action|Adventure|Comedy|Fantasy    195
## 26323 1993                                              Children|Drama    195
## 26324 1982                                      Action|Sci-Fi|Thriller    195
## 26325 1990                       Comedy|Drama|Fantasy|Romance|Thriller    195
## 26326 1991                                               Action|Sci-Fi    195
## 26329 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    195
## 26330 1990                                              Comedy|Romance    195
## 26334 1996                               Drama|Fantasy|Horror|Thriller    195
## 26335 1996                           Action|Adventure|Romance|Thriller    195
## 26336 1996                               Comedy|Fantasy|Romance|Sci-Fi    195
## 26338 1940                                        Comedy|Drama|Romance    195
## 26339 1952                                      Comedy|Musical|Romance    195
## 26340 1951                                             Musical|Romance    195
## 26342 1959                   Action|Adventure|Mystery|Romance|Thriller    195
## 26343 1960                                        Comedy|Drama|Romance    195
## 26347 1954                                              Comedy|Romance    195
## 26348 1953                                        Comedy|Drama|Romance    195
## 26351 1982                                                      Comedy    195
## 26357 1947                                       Drama|Fantasy|Romance    195
## 26358 1937                                                       Drama    195
## 26359 1935                                      Comedy|Musical|Romance    195
## 26360 1940                                              Comedy|Romance    195
## 26361 1956                                            Adventure|Comedy    195
## 26364 1946                                                 Crime|Drama    195
## 26366 1958                                                       Drama    195
## 26368 1957                                              Children|Drama    195
## 26370 1965                                             Musical|Romance    195
## 26371 1988                                       Action|Crime|Thriller    195
## 26372 1971                             Children|Comedy|Fantasy|Musical    195
## 26374 1979                                                      Comedy    195
## 26375 1982                                      Comedy|Musical|Romance    195
## 26378 1986                                                   Drama|War    195
## 26380 1982                                                       Drama    195
## 26381 1982                                       Children|Drama|Sci-Fi    195
## 26382 1986                                              Action|Romance    195
## 26383 1955                                                       Drama    195
## 26385 1975                                                Comedy|Crime    195
## 26386 1981                            Action|Adventure|Sci-Fi|Thriller    195
## 26387 1975                                    Adventure|Comedy|Fantasy    195
## 26389 1988                                                 Documentary    195
## 26392 1987                     Action|Adventure|Comedy|Fantasy|Romance    195
## 26393 1981                                            Action|Adventure    195
## 26395 1966                                    Action|Adventure|Western    195
## 26399 1990                                                 Crime|Drama    195
## 26406 1952                                               Drama|Romance    195
## 26407 1980                                                       Drama    195
## 26409 1983                                                       Drama    195
## 26412 1971                                        Comedy|Drama|Romance    195
## 26413 1984                                      Action|Sci-Fi|Thriller    195
## 26414 1989                                                   Drama|War    195
## 26421 1933                                          Comedy|Musical|War    195
## 26422 1986                                             Adventure|Drama    195
## 26423 1931                                    Crime|Film-Noir|Thriller    195
## 26425 1978                                                   Drama|War    195
## 26426 1993                                      Comedy|Fantasy|Romance    195
## 26427 1962                                          Crime|Thriller|War    195
## 26429 1985                                     Adventure|Comedy|Sci-Fi    195
## 26431 1986                                    Action|Adventure|Fantasy    195
## 26438 1989                                            Action|Adventure    195
## 26439 1979                                                Comedy|Drama    195
## 26441 1989                                      Children|Drama|Fantasy    195
## 26443 1989                                              Comedy|Romance    195
## 26444 1992                               Action|Horror|Sci-Fi|Thriller    195
## 26446 1990                                   Action|Adventure|Thriller    195
## 26447 1991                                       Action|Mystery|Sci-Fi    195
## 26448 1982                            Action|Adventure|Sci-Fi|Thriller    195
## 26449 1984                                     Action|Adventure|Sci-Fi    195
## 26451 1978                                      Comedy|Musical|Romance    195
## 26453 1996                                        Action|Comedy|Sci-Fi    195
## 26454 1996                                               Drama|Romance    195
## 26456 1987                                                Comedy|Drama    195
## 26458 1997                                   Action|Adventure|Thriller    195
## 26459 1997                                            Children|Fantasy    195
## 26460 1997                                                Action|Drama    195
## 26461 1997                                             Action|Thriller    195
## 26463 1997                                                Comedy|Drama    195
## 26464 1997                                        Action|Horror|Sci-Fi    195
## 26465 1997                                     Children|Comedy|Fantasy    195
## 26466 1997                                                      Comedy    195
## 26469 1998                                     Action|Adventure|Sci-Fi    195
## 26470 1998                                      Adventure|Comedy|Drama    195
## 26471 1998                                Action|Comedy|Crime|Thriller    195
## 26473 1932                                               Drama|Romance    195
## 26474 1941                                       Drama|Musical|Romance    195
## 26476 1953                                           Drama|Romance|War    195
## 26477 1955                                               Drama|Romance    195
## 26478 1961                                       Drama|Musical|Romance    195
## 26479 1967                                               Drama|Mystery    195
## 26481 1971                                       Action|Crime|Thriller    195
## 26482 1976                                                       Drama    195
## 26483 1979                                                       Drama    195
## 26484 1981                                                       Drama    195
## 26487 1989                                                       Drama    195
## 26488 1971                                               Drama|Mystery    195
## 26489 1984                                               Comedy|Sci-Fi    195
## 26490 1987                                   Action|Comedy|Crime|Drama    195
## 26491 1989                                   Action|Comedy|Crime|Drama    195
## 26492 1992                                   Action|Comedy|Crime|Drama    195
## 26493 1990                                               Comedy|Horror    195
## 26494 1972                                      Action|Adventure|Drama    195
## 26497 1984                                            Adventure|Sci-Fi    195
## 26498 1990                                Crime|Drama|Mystery|Thriller    195
## 26501 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    195
## 26503 1965                                           Drama|Romance|War    195
## 26504 1983                                       Drama|Romance|Western    195
## 26505 1981                                                   Drama|War    195
## 26506 1985                                          Adventure|Children    195
## 26507 1992                                            Children|Musical    195
## 26508 1980                                    Adventure|Comedy|Musical    195
## 26509 1991                                     Action|Adventure|Sci-Fi    195
## 26510 1984                                      Comedy|Fantasy|Romance    195
## 26512 1982                                     Action|Adventure|Sci-Fi    195
## 26513 1979                                                      Comedy    195
## 26514 1982                                       Comedy|Crime|Thriller    195
## 26515 1983                                                      Comedy    195
## 26516 1991                                                 Crime|Drama    195
## 26517 1984                                    Action|Adventure|Fantasy    195
## 26518 1991                                     Children|Comedy|Fantasy    195
## 26519 1966                                                       Drama    195
## 26520 1985                                       Comedy|Fantasy|Sci-Fi    195
## 26521 1967                                  Adventure|Children|Musical    195
## 26522 1982                          Adventure|Animation|Children|Drama    195
## 26523 1984                                              Comedy|Romance    195
## 26524 1980                                            Adventure|Comedy    195
## 26525 1988                                              Comedy|Fantasy    195
## 26528 1988                                    Action|Adventure|Fantasy    195
## 26529 1987                                          Action|Crime|Drama    195
## 26530 1944                                                   Drama|War    195
## 26532 1987                                        Comedy|Drama|Romance    195
## 26533 1992                                        Crime|Drama|Thriller    195
## 26534 1982                               Action|Horror|Sci-Fi|Thriller    195
## 26535 1990                                       Drama|Fantasy|Romance    195
## 26537 1992                                                      Comedy    195
## 26538 1986                                                       Drama    195
## 26539 1980                                                       Drama    195
## 26540 1998                                      Comedy|Horror|Thriller    195
## 26542 1998                                             Action|Thriller    195
## 26544 1998                                                      Comedy    195
## 26546 1976                   Adventure|Fantasy|Romance|Sci-Fi|Thriller    195
## 26547 1985                                   Action|Adventure|Thriller    195
## 26549 1985                                   Action|Adventure|Thriller    195
## 26550 1988                               Action|Adventure|Thriller|War    195
## 26551 1985                             Action|Adventure|Comedy|Romance    195
## 26552 1984                             Action|Adventure|Comedy|Romance    195
## 26553 1985                                               Comedy|Sci-Fi    195
## 26554 1982                                                Action|Drama    195
## 26555 1985                                                Action|Drama    195
## 26556 1990                                                Action|Drama    195
## 26557 1985          Action|Adventure|Children|Fantasy|Mystery|Thriller    195
## 26558 1989                                                      Comedy    195
## 26559 1986                                               Drama|Fantasy    195
## 26560 1986                              Action|Comedy|Romance|Thriller    195
## 26561 1986                                                  Action|War    195
## 26562 1999                                                Comedy|Crime    195
## 26563 1974                             Action|Adventure|Drama|Thriller    195
## 26564 1973                              Action|Sci-Fi|Thriller|Western    195
## 26565 1976                                     Action|Adventure|Sci-Fi    195
## 26567 1970                                               Action|Sci-Fi    195
## 26568 1972                                               Action|Sci-Fi    195
## 26569 1971                                               Action|Sci-Fi    195
## 26570 1999                                               Action|Sci-Fi    195
## 26571 1999                                                Action|Crime    195
## 26572 1999                                                      Comedy    195
## 26573 1990                                                Action|Crime    195
## 26574 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    195
## 26575 1999                                     Action|Adventure|Sci-Fi    195
## 26576 1978                                     Action|Adventure|Sci-Fi    195
## 26577 1980                                               Action|Sci-Fi    195
## 26578 1975                                Comedy|Horror|Musical|Sci-Fi    195
## 26580 1999                                    Animation|Comedy|Musical    195
## 26581 1999                                Action|Comedy|Sci-Fi|Western    195
## 26582 1999                                              Comedy|Romance    195
## 26583 1999                                       Drama|Horror|Thriller    195
## 26584 1999                                             Horror|Thriller    195
## 26585 1999                               Action|Horror|Sci-Fi|Thriller    195
## 26586 1960                                    Action|Drama|Romance|War    195
## 26587 1985                                                       Drama    195
## 26588 1986                                       Comedy|Horror|Musical    195
## 26589 1987                                                Comedy|Drama    195
## 26590 1999                                              Action|Mystery    195
## 26591 1978                                                      Comedy    195
## 26592 1971                                                      Comedy    195
## 26594 1988                                Comedy|Drama|Fantasy|Romance    195
## 26595 1983                                             Children|Comedy    195
## 26596 1999                                    Action|Adventure|Fantasy    195
## 26597 1968                  Adventure|Animation|Comedy|Fantasy|Musical    195
## 26599 1964                                    Adventure|Comedy|Musical    195
## 26600 1967                                                      Comedy    195
## 26603 1983                                                      Comedy    195
## 26604 1990                            Action|Adventure|Sci-Fi|Thriller    195
## 26606 1986                                                      Comedy    195
## 26607 1981                                               Drama|Romance    195
## 26608 1958                                         Musical|Romance|War    195
## 26610 1965                                              Comedy|Musical    195
## 26611 1964                                   Action|Adventure|Thriller    195
## 26612 1964                                              Action|Western    195
## 26613 1981                             Adventure|Comedy|Fantasy|Sci-Fi    195
## 26614 1979                                       Drama|Fantasy|Musical    195
## 26615 1987                          Action|Crime|Drama|Sci-Fi|Thriller    195
## 26616 1990                                Action|Crime|Sci-Fi|Thriller    195
## 26618 1980                                                       Drama    195
## 26619 1981                                   Action|Adventure|Thriller    195
## 26620 1999                                             Horror|Thriller    195
## 26621 1969                                                       Drama    195
## 26626 1983                                                      Comedy    195
## 26627 1999                                    Adventure|Comedy|Fantasy    195
## 26628 1942                                              Comedy|Musical    195
## 26631 1987                                              Comedy|Romance    195
## 26632 1963                                                      Comedy    195
## 26634 1999                              Fantasy|Horror|Mystery|Romance    195
## 26637 1984                                                       Drama    195
## 26638 1975                                        Comedy|Drama|Romance    195
## 26639 1992                                                       Drama    195
## 26641 1991                                                Action|Drama    195
## 26642 1940                                       Drama|Romance|Western    195
## 26643 1979                                                       Drama    195
## 26644 1999                                                 Crime|Drama    195
## 26645 1971                                                       Drama    195
## 26646 1985                                        Crime|Drama|Thriller    195
## 26648 1999                                                       Drama    195
## 26649 1973                                               Drama|Romance    195
## 26650 1953                                                   Drama|War    195
## 26651 1988                               Action|Crime|Romance|Thriller    195
## 26653 1970                                                       Drama    195
## 26654 1982                                        Comedy|Drama|Romance    195
## 26655 1977                                              Comedy|Romance    195
## 26656 1992                                                      Comedy    195
## 26657 1992                                                Comedy|Drama    195
## 26659 1992                                      Drama|Romance|Thriller    195
## 26660 1992                                                       Drama    195
## 26661 1931                                        Comedy|Drama|Romance    195
## 26664 1961                                                       Drama    195
## 26665 1979                                                Comedy|Drama    195
## 26666 1986                                               Drama|Romance    195
## 26667 1988                                        Comedy|Drama|Romance    195
## 26668 1975                                                 Crime|Drama    195
## 26669 1973                                                Comedy|Drama    195
## 26671 1984                                     Children|Comedy|Musical    195
## 26673 1951                                  Action|Adventure|Drama|War    195
## 26675 1989                                                       Drama    195
## 26676 1968                                                       Crime    195
## 26677 1985                                                Action|Drama    195
## 26679 1984                                            Action|Drama|War    195
## 26680 1987                                            Comedy|Drama|War    195
## 26681 1967                                                       Drama    195
## 26682 1963                                    Adventure|Drama|Thriller    195
## 26686 2000                                        Comedy|Drama|Romance    195
## 26687 1969                                     Adventure|Drama|Western    195
## 26688 1978                                                       Drama    195
## 26690 1968                                                      Comedy    195
## 26691 1958                                      Comedy|Fantasy|Romance    195
## 26692 1978                                            Action|Drama|War    195
## 26693 1989                                                Comedy|Drama    195
## 26694 1987                                      Action|Sci-Fi|Thriller    195
## 26695 1981                                              Crime|Thriller    195
## 26696 1982                                                Comedy|Drama    195
## 26697 1962                                       Drama|Horror|Thriller    195
## 26698 1955                                      Comedy|Musical|Romance    195
## 26699 1980                                                      Comedy    195
## 26700 2000                                         Action|Thriller|War    195
## 26702 1983                                                Comedy|Drama    195
## 26703 1985                                            Adventure|Comedy    195
## 26705 1979                            Action|Adventure|Sci-Fi|Thriller    195
## 26706 1974                                   Action|Adventure|Thriller    195
## 26707 1944                                            Action|Drama|War    195
## 26709 1968                                               Drama|Romance    195
## 26711 1990                                      Action|Sci-Fi|Thriller    195
## 26712 1987                                               Action|Sci-Fi    195
## 26713 1984                              Adventure|Drama|Romance|Sci-Fi    195
## 26714 1988                                 Crime|Drama|Sci-Fi|Thriller    195
## 26715 1979                                     Action|Adventure|Sci-Fi    195
## 26716 1990                                       Action|Comedy|Romance    195
## 26717 2000                                                Action|Crime    195
## 26718 1973                                                       Drama    195
## 26719 1973                                                 Crime|Drama    195
## 26720 1986                             Action|Adventure|Comedy|Fantasy    195
## 26721 1925                                                   Drama|War    195
## 26722 2000                                       Action|Crime|Thriller    195
## 26723 2000                                   Animation|Children|Comedy    195
## 26724 2000                 Adventure|Animation|Children|Comedy|Fantasy    195
## 26725 2000                                              Drama|Thriller    195
## 26726 1977                                                      Comedy    195
## 26727 1986                                       Action|Crime|Thriller    195
## 26728 1980                                                   Drama|War    195
## 26729 1970                                           Action|Comedy|War    195
## 26730 1990                                               Action|Comedy    195
## 26731 2000                                       Drama|Horror|Thriller    195
## 26734 1965                                              Comedy|Western    195
## 26735 2000                                    Action|Adventure|Fantasy    195
## 26736 2000                         Comedy|Crime|Drama|Romance|Thriller    195
## 26738 1940                                                      Comedy    195
## 26739 2000                                       Action|Drama|Thriller    195
## 26740 2000                                              Drama|Thriller    195
## 26742 2000                                                       Drama    195
## 26743 1994                                               Action|Comedy    195
## 26744 2000                                                Comedy|Drama    195
## 26745 2000                                               Action|Comedy    195
## 26746 2000                                               Drama|Romance    195
## 26747 2000                                                      Comedy    195
## 26749 1971                                   Action|Adventure|Thriller    195
## 26750 2000                                      Action|Sci-Fi|Thriller    195
## 26751 2000                                               Drama|Romance    195
## 26752 2000                                     Children|Comedy|Fantasy    195
## 26753 2000                                                Drama|Sci-Fi    195
## 26754 2000                                                       Drama    195
## 26755 2000                                            Action|Adventure    195
## 26757 2000                 Adventure|Animation|Children|Comedy|Fantasy    195
## 26758 2000                                              Comedy|Romance    195
## 26759 2000                                                       Drama    195
## 26760 2000                                                       Drama    195
## 26761 2000                                        Comedy|Drama|Romance    195
## 26762 2000                                                Comedy|Crime    195
## 26763 2000                                                      Horror    195
## 26765 1982                                               Drama|Romance    195
## 26766 1970                                            Comedy|Drama|War    195
## 26771 1996                                            Action|Adventure    196
## 26772 1953                                        Comedy|Drama|Romance    196
## 26776 1998                                                      Comedy    196
## 26779 1992                                             Children|Comedy    196
## 26780 1984                                  Adventure|Children|Fantasy    196
## 26784 1999                                      Drama|Mystery|Thriller    196
## 26785 1986                                       Comedy|Horror|Musical    196
## 26790 1999                                                       Drama    196
## 26791 1999                                              Comedy|Romance    196
## 26794 1999                                        Crime|Drama|Thriller    196
## 26800 1999                                    Adventure|Comedy|Fantasy    196
## 26801 1987                                              Comedy|Romance    196
## 26804 1999                      Action|Fantasy|Horror|Mystery|Thriller    196
## 26809 2000                                             Adventure|Drama    196
## 26812 2000                                                      Comedy    196
## 26813 2000                                                      Sci-Fi    196
## 26817 2000                                          Animation|Children    196
## 26818 2000                                                    Thriller    196
## 26826 2000                                                Comedy|Drama    196
## 26828 2000                                         Action|Thriller|War    196
## 26829 1992                                            Mystery|Thriller    196
## 26831 1993                                               Horror|Sci-Fi    196
## 26833 2000                                                       Drama    196
## 26835 2000                                               Action|Sci-Fi    196
## 26837 1992                                              Comedy|Romance    196
## 26838 2000                                                Comedy|Crime    196
## 26839 1997                                                Comedy|Drama    196
## 26848 1992                                                      Comedy    196
## 26850 1965                               Action|Drama|Thriller|Western    196
## 26855 1982                                                      Comedy    196
## 26856 1983                                                      Comedy    196
## 26857 1985                                                      Comedy    196
## 26858 1990                                      Action|Sci-Fi|Thriller    196
## 26864 1987                           Film-Noir|Horror|Mystery|Thriller    196
## 26866 1995                                     Mystery|Sci-Fi|Thriller    197
## 26868 1995                                              Comedy|Romance    197
## 26869 1994                                     Action|Adventure|Sci-Fi    197
## 26871 1994                                    Comedy|Drama|Romance|War    197
## 26872 1994                                 Action|Comedy|Crime|Fantasy    197
## 26880 1968                                     Adventure|Comedy|Sci-Fi    197
## 26885 1954                                      Adventure|Drama|Sci-Fi    197
## 26886 1992                               Action|Horror|Sci-Fi|Thriller    197
## 26889 1993                      Action|Adventure|Comedy|Fantasy|Horror    197
## 26901 1998                         Adventure|Film-Noir|Sci-Fi|Thriller    197
## 26911 1988                                              Comedy|Fantasy    197
## 26912 1984                                                      Sci-Fi    197
## 26913 1976                                     Action|Adventure|Sci-Fi    197
## 26917 1983                                     Action|Adventure|Sci-Fi    197
## 26921 1981                             Adventure|Comedy|Fantasy|Sci-Fi    197
## 26922 1993                                              Comedy|Fantasy    197
## 26926 1979                                     Action|Adventure|Sci-Fi    197
## 26927 1981                            Action|Adventure|Sci-Fi|Thriller    197
## 26930 1996                                 Comedy|Crime|Drama|Thriller    198
## 26934 1996                                                Comedy|Drama    198
## 26936 1992                                      Crime|Mystery|Thriller    198
## 26938 1989                                                       Drama    198
## 26939 1981                                            Action|Adventure    198
## 26951 1992                                               Drama|Western    198
## 26952 1986                                      Comedy|Drama|Film-Noir    198
## 26954 1996                            Adventure|Animation|Comedy|Crime    198
## 26955 1996                                                      Comedy    198
## 26957 1997                                                      Comedy    198
## 26958 1997                                                Comedy|Drama    198
## 26963 1999                                                      Comedy    198
## 26965 1999                                             Adventure|Drama    198
## 26966 1989                                          Comedy|Crime|Drama    198
## 26968 1999                                              Drama|Thriller    198
## 26969 1999                                                 Crime|Drama    198
## 26971 1999                                      Drama|Mystery|Thriller    198
## 26974 1992                                                       Drama    198
## 26975 1992                               Action|Crime|Thriller|Western    198
## 26981 2000                                                      Comedy    198
## 26982 1984                                                Comedy|Drama    198
## 26984 2000                                        Action|Drama|Romance    198
## 26985 2000                                                       Drama    198
## 26990 2001                                                Comedy|Drama    198
## 26991 2000                                                       Drama    198
## 26993 2001                                                   Drama|War    198
## 26997 2002                                                Comedy|Drama    198
## 26998 2002                                               Drama|Romance    198
## 27001 2002                                           Adventure|Fantasy    198
## 27002 2002                                                   Drama|War    198
## 27003 2003                                              Comedy|Musical    198
## 27005 1995                                   Action|Adventure|Thriller    199
## 27008 1995                                       Action|Crime|Thriller    199
## 27010 1995                                     Mystery|Sci-Fi|Thriller    199
## 27017 1995                                              Comedy|Romance    199
## 27018 1995                                     Action|Adventure|Sci-Fi    199
## 27025 1994                                       Comedy|Drama|Thriller    199
## 27027 1994                    Action|Adventure|Comedy|Romance|Thriller    199
## 27028 1994                                              Action|Fantasy    199
## 27030 1993                            Action|Adventure|Sci-Fi|Thriller    199
## 27033 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    199
## 27037 1996                                 Comedy|Crime|Drama|Thriller    199
## 27038 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi    199
## 27041 1996                            Action|Adventure|Sci-Fi|Thriller    199
## 27042 1972                                                 Crime|Drama    199
## 27043 1968                                      Adventure|Drama|Sci-Fi    199
## 27048 1996                                              Drama|Thriller    199
## 27050 1981                                            Action|Adventure    199
## 27053 1990                                                 Crime|Drama    199
## 27059 1987                                Action|Comedy|Fantasy|Horror    199
## 27062 1988                           Action|Adventure|Animation|Sci-Fi    199
## 27064 1996                            Action|Adventure|Sci-Fi|Thriller    199
## 27065 1996                                               Drama|Musical    199
## 27067 1997                            Action|Adventure|Sci-Fi|Thriller    199
## 27069 1997                                                Drama|Sci-Fi    199
## 27072 1997                                         Action|Thriller|War    199
## 27077 1997                                        Action|Horror|Sci-Fi    199
## 27079 1997                                   Action|Adventure|Thriller    199
## 27080 1998                                                Comedy|Crime    199
## 27082 1998                                      Action|Sci-Fi|Thriller    199
## 27083 1998                              Action|Romance|Sci-Fi|Thriller    199
## 27084 1978                                                      Horror    199
## 27091 1997                              Horror|Mystery|Sci-Fi|Thriller    199
## 27093 1998                                                 Crime|Drama    199
## 27096 1985                                                Action|Drama    199
## 27101 1998                                      Crime|Mystery|Thriller    199
## 27102 1999                                     Action|Adventure|Sci-Fi    199
## 27104 1999                                Action|Comedy|Sci-Fi|Western    199
## 27105 1984                                        Action|Comedy|Sci-Fi    199
## 27108 1999                                               Comedy|Sci-Fi    199
## 27118 1987                                        Action|Horror|Sci-Fi    199
## 27120 1999                                                      Comedy    199
## 27122 2000                                     Action|Adventure|Sci-Fi    199
## 27124 1971                                   Action|Adventure|Thriller    199
## 27125 2000                                      Action|Sci-Fi|Thriller    199
## 27127 1981                                     Fantasy|Horror|Thriller    199
## 27128 2001                                               Action|Comedy    199
## 27130 2001                                      Adventure|Drama|Sci-Fi    199
## 27132 1988                                      Action|Sci-Fi|Thriller    199
## 27133 2001                               Drama|Horror|Mystery|Thriller    199
## 27134 2001                                      Horror|Sci-Fi|Thriller    199
## 27135 2001                               Drama|Mystery|Sci-Fi|Thriller    199
## 27136 2001                                      Action|Sci-Fi|Thriller    199
## 27140 2002                                Action|Drama|Sci-Fi|Thriller    199
## 27142 2002                                     Action|Adventure|Sci-Fi    199
## 27143 2002                               Action|Horror|Sci-Fi|Thriller    199
## 27144 2002                            Action|Adventure|Sci-Fi|Thriller    199
## 27147 2002                        Action|Crime|Mystery|Sci-Fi|Thriller    199
## 27149 2002                                      Action|Sci-Fi|Thriller    199
## 27150 2002                                           Adventure|Fantasy    199
## 27151 2002                                                 Crime|Drama    199
## 27152 2002                                                   Drama|War    199
## 27157 2003                            Action|Adventure|Sci-Fi|Thriller    199
## 27158 1986          Action|Adventure|Animation|Children|Fantasy|Sci-Fi    199
## 27160 2003                                                Action|Crime    199
## 27161 2002                                        Action|Horror|Sci-Fi    199
## 27162 2003                                     Action|Adventure|Sci-Fi    199
## 27163 1985                                      Horror|Sci-Fi|Thriller    199
## 27165 1968                                              Comedy|Western    199
## 27166 2003                                         Crime|Drama|Mystery    199
## 27167 2003                                       Action|Crime|Thriller    199
## 27169 1991                                               Action|Sci-Fi    199
## 27172 1984                    Adventure|Animation|Drama|Fantasy|Sci-Fi    199
## 27173 2003                              Action|Adventure|Drama|Fantasy    199
## 27175 2000                                      Comedy|Horror|Thriller    199
## 27176 2004                                Action|Drama|Horror|Thriller    199
## 27177 1978                                         Action|Drama|Horror    199
## 27178 2004                                       Action|Drama|Thriller    199
## 27180 1998                                            Adventure|Sci-Fi    199
## 27181 1999                                            Adventure|Sci-Fi    199
## 27182 2003                                              Fantasy|Sci-Fi    199
## 27185 2004                                      Action|Sci-Fi|Thriller    199
## 27186 1956                          Action|Adventure|Drama|Romance|War    199
## 27187 1999                                           Documentary|Drama    199
## 27188 2004                                Action|Adventure|Sci-Fi|IMAX    199
## 27190 2004                            Action|Adventure|Sci-Fi|Thriller    199
## 27191 1954                                                   Adventure    199
## 27193 2002                                               Comedy|Horror    199
## 27194 2004                               Action|Horror|Sci-Fi|Thriller    199
## 27195 2004                               Action|Horror|Sci-Fi|Thriller    199
## 27197 2004                                      Drama|Mystery|Thriller    199
## 27202 1998                                Crime|Drama|Mystery|Thriller    199
## 27204 2003                               Action|Animation|Drama|Sci-Fi    199
## 27213 2003                                             Adventure|Drama    199
## 27216 2005                                              Comedy|Romance    199
## 27217 2005                                      Action|Sci-Fi|Thriller    199
## 27218 2005                                     Action|Adventure|Sci-Fi    199
## 27219 2004                   Action|Adventure|Animation|Fantasy|Sci-Fi    199
## 27221 2005                             Adventure|Drama|Horror|Thriller    199
## 27222 2005                                                Comedy|Crime    199
## 27223 2006                                              Crime|Thriller    199
## 27225 2006                                        Crime|Drama|Thriller    199
## 27227 2005                               Crime|Drama|Film-Noir|Mystery    199
## 27230 2006                                Comedy|Drama|Fantasy|Romance    199
## 27233 2006                      Action|Adventure|Drama|Sci-Fi|Thriller    199
## 27239 2007                                     Action|Fantasy|War|IMAX    199
## 27240 2007                         Action|Crime|Horror|Sci-Fi|Thriller    199
## 27241 2007                             Adventure|Drama|Sci-Fi|Thriller    199
## 27243 2007                                      Horror|Sci-Fi|Thriller    199
## 27245 2008                                Crime|Drama|Mystery|Thriller    199
## 27246 2007                      Action|Adventure|Crime|Horror|Thriller    199
## 27247 2007                                       Drama|Horror|Thriller    199
## 27248 2007                                                      Comedy    199
## 27249 2007                             Action|Adventure|Crime|Thriller    199
## 27252 2007                         Action|Drama|Horror|Sci-Fi|Thriller    199
## 27255 2007                                        Crime|Drama|Thriller    199
## 27256 2007                               Action|Horror|Sci-Fi|Thriller    199
## 27258 2007                                         Crime|Drama|Western    199
## 27259 2007                                       Crime|Horror|Thriller    199
## 27260 2007                                        Crime|Drama|Thriller    199
## 27265 2007                          Action|Horror|Sci-Fi|Thriller|IMAX    199
## 27266 2007                                                Comedy|Drama    199
## 27268 2007                                        Action|Horror|Sci-Fi    199
## 27269 2008                              Action|Mystery|Sci-Fi|Thriller    199
## 27272 2008                                                Comedy|Drama    199
## 27275 2007                                               Drama|Romance    199
## 27277 2008                                     Action|Adventure|Sci-Fi    199
## 27279 2007                                         Documentary|Musical    199
## 27280 2008                                                       Drama    199
## 27281 2008                                               Action|Sci-Fi    199
## 27282 2008                 Adventure|Animation|Children|Romance|Sci-Fi    199
## 27283 2009                   Action|Drama|Mystery|Sci-Fi|Thriller|IMAX    199
## 27284 2008                                                      Comedy    199
## 27285 2008                                                       Drama    199
## 27286 2008                                 Action|Adventure|Comedy|War    199
## 27287 2008                            Action|Adventure|Sci-Fi|Thriller    199
## 27288 2008                                          Comedy|Crime|Drama    199
## 27289 2008                                                 Crime|Drama    199
## 27292 2008                                       Crime|Horror|Thriller    199
## 27293 2008                                              Comedy|Musical    199
## 27294 2008                               Drama|Fantasy|Mystery|Romance    199
## 27296 2009                              Action|Fantasy|Horror|Thriller    199
## 27297 2008                                             Horror|Thriller    199
## 27298 2009                                                Comedy|Drama    199
## 27299 2008                                         Documentary|Musical    199
## 27300 2009                             Action|Adventure|Fantasy|Sci-Fi    199
## 27303 2009                                        Crime|Drama|Thriller    199
## 27304 2009                                                       Drama    199
## 27305 2009                                         Action|Comedy|Crime    199
## 27306 2009                               Drama|Mystery|Sci-Fi|Thriller    199
## 27307 2009                                      Action|Sci-Fi|Thriller    199
## 27309 2009                            Action|Adventure|Sci-Fi|Thriller    199
## 27310 2009                                               Drama|Musical    199
## 27311 2009                                                Comedy|Crime    199
## 27312 2009                              Action|Adventure|Comedy|Sci-Fi    199
## 27313 2009                                Action|Adventure|Sci-Fi|IMAX    199
## 27314 2009                      Adventure|Fantasy|Mystery|Romance|IMAX    199
## 27317 2009                                         Action|Comedy|Drama    199
## 27319 2009                               Crime|Horror|Mystery|Thriller    199
## 27320 2009                                Action|Adventure|Sci-Fi|IMAX    199
## 27322 2008                                             Horror|Thriller    199
## 27323 2010                                Action|Drama|Horror|Thriller    199
## 27324 2010                                      Action|Adventure|Drama    199
## 27325 2010                              Action|Fantasy|Horror|Thriller    199
## 27326 2010                                             Horror|Thriller    199
## 27328 2010                                         Action|Comedy|Crime    199
## 27329 2010                                      Drama|Mystery|Thriller    199
## 27330 2010                         Action|Drama|Horror|Sci-Fi|Thriller    199
## 27331 2009                                        Crime|Drama|Thriller    199
## 27332 2009                                 Comedy|Crime|Drama|Thriller    199
## 27334 2009                                          Comedy|Crime|Drama    199
## 27336 2010                                        Comedy|Drama|Romance    199
## 27338 2010                                                      Comedy    199
## 27339 2010                                              Drama|Thriller    199
## 27342 2010                                      Action|Sci-Fi|Thriller    199
## 27344 2010                                                      Comedy    199
## 27346 2010                                   Action|Adventure|Thriller    199
## 27347 2010                         Action|Adventure|Drama|Thriller|War    199
## 27348 2010                          Action|Horror|Sci-Fi|Thriller|IMAX    199
## 27350 2010                                        Crime|Drama|Thriller    199
## 27352 2010                                               Action|Comedy    199
## 27353 2010                                     Horror|Mystery|Thriller    199
## 27355 2010                                Crime|Drama|Romance|Thriller    199
## 27358 2010                                                     Western    199
## 27359 2010                                Action|Adventure|Sci-Fi|IMAX    199
## 27360 2010                                    Adventure|Comedy|Fantasy    199
## 27362 2011                   Action|Comedy|Crime|Fantasy|Thriller|IMAX    199
## 27366 2011                                              Comedy|Romance    199
## 27367 2011                                       Drama|Horror|Thriller    199
## 27368 2011                                      Drama|Mystery|Thriller    199
## 27369 2011                                                      Comedy    199
## 27370 2011                                     Romance|Sci-Fi|Thriller    199
## 27371 2011                                       Action|Drama|Thriller    199
## 27372 2011                                                      Comedy    199
## 27373 2011                                             Adventure|Drama    199
## 27374 2011                                           Action|Sci-Fi|War    199
## 27375 2010                                              Fantasy|Horror    199
## 27379 2009                                          Comedy|Documentary    199
## 27385 2011                                                      Comedy    199
## 27387 2011                                        Comedy|Drama|Romance    199
## 27388 2011                                              Comedy|Romance    199
## 27389 2011                                Action|Drama|Sci-Fi|Thriller    199
## 27390 2011                                                      Comedy    199
## 27391 2011                                         Action|Comedy|Crime    199
## 27394 2011                                    Drama|Film-Noir|Thriller    199
## 27395 2011                              Horror|Mystery|Sci-Fi|Thriller    199
## 27396 2011                                       Crime|Sci-Fi|Thriller    199
## 27399 2011              Action|Adventure|Comedy|Crime|Mystery|Thriller    199
## 27400 2011                              Action|Adventure|Thriller|IMAX    199
## 27401 2011                                                Comedy|Drama    199
## 27403 2012                                      Action|Sci-Fi|Thriller    199
## 27405 2012                                        Comedy|Drama|Romance    199
## 27416 2013                                      Drama|Mystery|Thriller    199
## 27419 2013                                          Children|Drama|War    199
## 27422 2013          Adventure|Animation|Comedy|Fantasy|Musical|Romance    199
## 27423 2013                                                 Crime|Drama    199
## 27424 2013                                                Comedy|Drama    199
## 27425 2014                                                      Comedy    199
## 27426 1995                 Adventure|Animation|Children|Comedy|Fantasy    200
## 27427 1995                                  Adventure|Children|Fantasy    200
## 27429 1995                                            Action|Drama|War    200
## 27432 1995                                       Action|Crime|Thriller    200
## 27436 1994                                  Adventure|Children|Romance    200
## 27437 1994             Adventure|Animation|Children|Drama|Musical|IMAX    200
## 27438 1994                                 Action|Comedy|Crime|Fantasy    200
## 27439 1994                                     Action|Romance|Thriller    200
## 27441 1993                                    Adventure|Children|Drama    200
## 27442 1993                            Action|Adventure|Sci-Fi|Thriller    200
## 27445 1990                                             Children|Comedy    200
## 27446 1992                 Adventure|Animation|Children|Comedy|Musical    200
## 27448 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    200
## 27450 1996                           Action|Adventure|Mystery|Thriller    200
## 27451 1996                            Action|Adventure|Sci-Fi|Thriller    200
## 27453 1979                                                      Comedy    200
## 27454 1987                                       Drama|Musical|Romance    200
## 27456 1982                                       Children|Drama|Sci-Fi    200
## 27457 1985                                              Fantasy|Sci-Fi    200
## 27463 1996                                   Adventure|Children|Comedy    200
## 27464 1978                                      Comedy|Musical|Romance    200
## 27465 1997                              Action|Adventure|Comedy|Sci-Fi    200
## 27466 1997                            Action|Adventure|Sci-Fi|Thriller    200
## 27468 1997                                                Drama|Sci-Fi    200
## 27469 1990                                   Action|Adventure|Thriller    200
## 27470 1997                                         Adventure|Drama|War    200
## 27474 1997                                     Children|Comedy|Fantasy    200
## 27475 1997                                               Drama|Romance    200
## 27476 1998                                      Action|Adventure|Drama    200
## 27477 1998                              Action|Romance|Sci-Fi|Thriller    200
## 27484 1984                                                Comedy|Crime    200
## 27485 1982                             Action|Adventure|Drama|Thriller    200
## 27486 1984                                                       Drama    200
## 27487 1998                                            Action|Drama|War    200
## 27493 1999                                              Comedy|Romance    200
## 27494 1999                          Adventure|Animation|Children|Drama    200
## 27495 1999                                              Comedy|Romance    200
## 27496 1999                                              Comedy|Romance    200
## 27497 1999                                        Drama|Horror|Mystery    200
## 27498 1992                                             Children|Comedy    200
## 27501 1999                                                 Crime|Drama    200
## 27503 2000                                              Drama|Thriller    200
## 27505 2000                                   Action|Adventure|Thriller    200
## 27506 1974                                   Action|Adventure|Thriller    200
## 27507 2000                                                Action|Crime    200
## 27508 2000                                               Comedy|Horror    200
## 27509 2000                                        Comedy|Drama|Romance    200
## 27510 2000                              Action|Adventure|Comedy|Sci-Fi    200
## 27511 2000                 Adventure|Animation|Children|Comedy|Fantasy    200
## 27512 2000                                              Comedy|Romance    200
## 27513 2000                                                       Drama    200
## 27514 2000                                                Comedy|Crime    200
## 27515 2001                                        Crime|Drama|Thriller    200
## 27519 2001                                       Action|Comedy|Romance    200
## 27521 2001                                       Drama|Musical|Romance    200
## 27522 2001                                    Action|Drama|Romance|War    200
## 27523 2001                                          Action|Crime|Drama    200
## 27524 2001                                       Action|Crime|Thriller    200
## 27525 2001                                      Adventure|Drama|Sci-Fi    200
## 27526 2001                                              Comedy|Romance    200
## 27527 1988                                              Comedy|Romance    200
## 27528 1988                        Adventure|Animation|Children|Fantasy    200
## 27529 2001                            Action|Adventure|Sci-Fi|Thriller    200
## 27530 1989                                        Crime|Drama|Thriller    200
## 27533 2001                                 Action|Crime|Drama|Thriller    200
## 27541 2002                                                Action|Crime    200
## 27543 2002                                     Horror|Mystery|Thriller    200
## 27544 2002                                              Crime|Thriller    200
## 27545 2002                                   Action|Adventure|Thriller    200
## 27546 2002                                                 Crime|Drama    200
## 27548 2003                                             Action|Thriller    200
## 27550 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    200
## 27556 2003                                      Action|Comedy|Thriller    200
## 27557 2003                                Adventure|Animation|Children    200
## 27558 2003                       Action|Adventure|Sci-Fi|Thriller|IMAX    200
## 27559 2003                                               Drama|Romance    200
## 27561 2003                                      Action|Sci-Fi|Thriller    200
## 27562 2004                                              Comedy|Romance    200
## 27563 2004                                        Drama|Romance|Sci-Fi    200
## 27565 2004                      Action|Adventure|Drama|Sci-Fi|Thriller    200
## 27567 2004                                                      Comedy    200
## 27568 2004                                        Comedy|Drama|Romance    200
## 27569 1998                                               Action|Comedy    200
## 27570 2004                                                 Documentary    200
## 27571 2004                            Action|Adventure|Sci-Fi|Thriller    200
## 27574 2004                                     Horror|Mystery|Thriller    200
## 27575 2004                                                       Drama    200
## 27576 2004                  Action|Adventure|Animation|Children|Comedy    200
## 27577 2004                                Action|Comedy|Crime|Thriller    200
## 27578 1990                                              Comedy|Fantasy    200
## 27579 1998                Adventure|Animation|Children|Musical|Romance    200
## 27580 2000                                               Action|Comedy    200
## 27581 2002                                       Horror|Mystery|Sci-Fi    200
## 27582 2005                                              Drama|Thriller    200
## 27583 2004                                                       Drama    200
## 27584 2005                                              Comedy|Romance    200
## 27585 2005                     Action|Crime|Film-Noir|Mystery|Thriller    200
## 27587 2005                                              Comedy|Romance    200
## 27588 2005                             Action|Adventure|Comedy|Romance    200
## 27589 2005                                      Comedy|Fantasy|Romance    200
## 27590 1999                           Adventure|Children|Comedy|Fantasy    200
## 27591 2005                                      Comedy|Fantasy|Romance    200
## 27593 2005                                            Action|Drama|War    200
## 27594 2005                       Action|Adventure|Comedy|Drama|Romance    200
## 27595 2006                         Adventure|Animation|Children|Comedy    200
## 27596 2006                                   Action|Adventure|Thriller    200
## 27598 2006                                      Drama|Mystery|Thriller    200
## 27599 2006                                   Animation|Children|Comedy    200
## 27600 2006                                                Comedy|Drama    200
## 27601 2006                                      Comedy|Fantasy|Romance    200
## 27604 2006                                        Crime|Drama|Thriller    200
## 27605 2006                      Action|Adventure|Drama|Sci-Fi|Thriller    200
## 27607 2006                                   Action|Adventure|Thriller    200
## 27610 2007                                              Comedy|Romance    200
## 27611 2007                         Action|Crime|Horror|Sci-Fi|Thriller    200
## 27613 2007                             Action|Adventure|Comedy|Fantasy    200
## 27615 2007                                 Action|Sci-Fi|Thriller|IMAX    200
## 27616 2007                                            Animation|Comedy    200
## 27624 2008                                   Action|Drama|Thriller|War    200
## 27625 2008                                 Comedy|Crime|Drama|Thriller    200
## 27626 2008                                        Comedy|Drama|Romance    200
## 27627 2008                                       Action|Drama|Thriller    200
## 27630 2008                                 Action|Crime|Drama|Thriller    200
## 27632 2008                       Action|Adventure|Comedy|Crime|Fantasy    200
## 27633 2008                                                Action|Crime    200
## 27634 2008                                         Crime|Drama|Romance    200
## 27635 2008                                   Action|Adventure|Thriller    200
## 27637 2008                                                      Comedy    200
## 27638 2009                                 Action|Crime|Drama|Thriller    200
## 27641 2009                                                Comedy|Crime    200
## 27644 2010                                                      Comedy    200
## 27645 2010                   Adventure|Animation|Children|Fantasy|IMAX    200
## 27646 2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX    200
## 27647 2010                             Animation|Children|Comedy|Crime    200
## 27648 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX    200
## 27649 2010                                             Action|Thriller    200
## 27651 2010                                               Action|Comedy    200
## 27653 2008                         Adventure|Animation|Children|Sci-Fi    200
## 27654 2011                         Adventure|Animation|Children|Comedy    200
## 27656 2011                                         Crime|Drama|Mystery    200
## 27658 2011                     Adventure|Animation|Comedy|Fantasy|IMAX    200
## 27664 2012                                   Animation|Children|Comedy    200
## 27665 2012                                        Adventure|Drama|IMAX    200
## 27666 2013                                  Adventure|Animation|Comedy    200
## 27667 2013                                      Crime|Mystery|Thriller    200
## 27669 2013                                Action|Comedy|Crime|Thriller    200
## 27670 2013                                       Drama|Fantasy|Romance    200
## 27671 2013          Adventure|Animation|Comedy|Fantasy|Musical|Romance    200
## 27672 2013                                          Comedy|Crime|Drama    200
## 27674 2013                                        Drama|Romance|Sci-Fi    200
## 27678 1995                                          (no genres listed)    200
## 27686 1996                                                      Comedy    201
## 27691 1995                                              Comedy|Romance    201
## 27692 1994                                                Comedy|Drama    201
## 27705 1996                                   Action|Adventure|Thriller    201
## 27730 1989                   Animation|Children|Comedy|Musical|Romance    201
## 27735 1984                             Action|Adventure|Comedy|Romance    201
## 27736 1984                                                       Drama    201
## 27739 1999                                              Comedy|Romance    201
## 27740 1990                                               Comedy|Horror    201
## 27742 1999                                        Drama|Horror|Mystery    201
## 27760 2001                                                    Thriller    201
## 27769 2003                                                      Comedy    201
## 27774 2004                                                      Comedy    201
## 27779 2004                                        Action|Crime|Fantasy    201
## 27786 2004                                      Drama|Romance|Thriller    201
## 27791 2004                                             Adventure|Drama    201
## 27800 2004                                                       Drama    201
## 27804 1993                                                      Comedy    202
## 27805 1993                                     Action|Adventure|Sci-Fi    202
## 27816 1979                               Drama|Horror|Mystery|Thriller    202
## 27822 1997                                        Action|Horror|Sci-Fi    202
## 27826 1977                                                      Horror    202
## 27830 1961                                     Children|Comedy|Fantasy    202
## 27831 1984                                             Horror|Thriller    202
## 27832 1991                                     Children|Comedy|Fantasy    202
## 27833 1998                                 Action|Drama|Romance|Sci-Fi    202
## 27840 1999                                     Action|Adventure|Sci-Fi    202
## 27841 1999                                     Action|Adventure|Comedy    202
## 27844 1987                                     Action|Adventure|Comedy    202
## 27848 1999                                              Comedy|Romance    202
## 27851 1985                                            Adventure|Sci-Fi    202
## 27852 1988                                    Adventure|Children|Drama    202
## 27856 1988                                                  Action|War    202
## 27857 1954                                     Adventure|Horror|Sci-Fi    202
## 27860 1992                                              Comedy|Romance    202
## 27862 1981                                               Action|Comedy    202
## 27864 1987                                            Action|Adventure    202
## 27866 1955                                               Comedy|Horror    202
## 27867 1982                                    Action|Adventure|Fantasy    202
## 27871 1977                                                      Comedy    202
## 27873 1984                                                      Comedy    202
## 27874 2002                                   Action|Adventure|Thriller    202
## 27875 1981                                                   Drama|War    202
## 27877 1995                                       Action|Crime|Thriller    203
## 27885 1950                                                      Comedy    203
## 27886 1996                                            Action|Adventure    203
## 27890 1958                                    Crime|Film-Noir|Thriller    203
## 27892 1946                                     Crime|Film-Noir|Mystery    203
## 27893 1997                                     Action|Romance|Thriller    203
## 27896 1961                                Adventure|Animation|Children    203
## 27898 1982                                                Action|Drama    203
## 27900 1999                                                    Thriller    203
## 27901 2000                                        Crime|Drama|Thriller    203
## 27907 2001                                               Drama|Romance    203
## 27910 2005                                                 Crime|Drama    203
## 27912 2005                                          Film-Noir|Thriller    203
## 27915 1994                                        Comedy|Drama|Romance    204
## 27916 1995                               Action|Adventure|Comedy|Crime    204
## 27917 1995                                    Action|Drama|Romance|War    204
## 27918 1994                                    Adventure|Comedy|Western    204
## 27920 1954                                      Crime|Mystery|Thriller    204
## 27921 1990                                                 Crime|Drama    204
## 27923 1973                                                Comedy|Crime    204
## 27924 1989                                                       Drama    204
## 27927 1990                                   Action|Adventure|Thriller    204
## 27928 1982                            Action|Adventure|Sci-Fi|Thriller    204
## 27929 1996                              Comedy|Horror|Mystery|Thriller    204
## 27933 1990                                       Drama|Fantasy|Romance    204
## 27936 2001         Adventure|Animation|Children|Comedy|Fantasy|Romance    204
## 27937 1988                                                      Action    204
## 27938 2001                                     Children|Comedy|Romance    204
## 27940 2004                                       Action|Drama|Thriller    204
## 27943 1974                                               Drama|Romance    204
## 27946 1995                                   Action|Adventure|Thriller    205
## 27949 1995                                            Action|Drama|War    205
## 27950 1977                                     Action|Adventure|Sci-Fi    205
## 27951 1994                                    Comedy|Drama|Romance|War    205
## 27953 1991                                               Action|Sci-Fi    205
## 27954 1991                                       Crime|Horror|Thriller    205
## 27955 1996                                  Adventure|Animation|Comedy    205
## 27957 1995                                   Animation|Children|Comedy    205
## 27959 1939                          Adventure|Children|Fantasy|Musical    205
## 27960 1988                                       Action|Crime|Thriller    205
## 27961 1993                             Animation|Children|Comedy|Crime    205
## 27962 1980                                     Action|Adventure|Sci-Fi    205
## 27964 1981                                            Action|Adventure    205
## 27965 1983                                     Action|Adventure|Sci-Fi    205
## 27966 1979                                               Horror|Sci-Fi    205
## 27967 1974                                                 Crime|Drama    205
## 27968 1989                  Adventure|Animation|Children|Comedy|Sci-Fi    205
## 27971 1989                                            Action|Adventure    205
## 27973 1999                                      Action|Sci-Fi|Thriller    205
## 27976 1964                                   Action|Adventure|Thriller    205
## 27977 1999                                 Action|Crime|Drama|Thriller    205
## 27981 2002                                     Action|Mystery|Thriller    205
## 27983 2002                                           Adventure|Fantasy    205
## 27985 2003                            Action|Adventure|Sci-Fi|Thriller    205
## 27988 2003                              Action|Adventure|Drama|Fantasy    205
## 27989 2004                                      Adventure|Fantasy|IMAX    205
## 27990 2004                                 Action|Crime|Drama|Thriller    205
## 27993 1992                  Adventure|Animation|Comedy|Fantasy|Romance    205
## 27995 2005                               Drama|Horror|Mystery|Thriller    205
## 27996 2005                      Adventure|Children|Comedy|Fantasy|IMAX    205
## 27997 2005                                Action|Adventure|Crime|Drama    205
## 27999 2005                                              Comedy|Romance    205
## 28001 2005     Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX    205
## 28002 2005                                      Adventure|Comedy|Crime    205
## 28004 2005                         Adventure|Animation|Children|Comedy    205
## 28007 2005                                              Comedy|Romance    205
## 28008 2005                            Action|Adventure|Children|Comedy    205
## 28009 2005                                              Comedy|Romance    205
## 28010 2005                                       Action|Crime|Thriller    205
## 28011 2005                                               Action|Sci-Fi    205
## 28015 2005                                             Horror|Thriller    205
## 28016 2005                                                      Comedy    205
## 28017 2005                                            Action|Drama|War    205
## 28018 2005           Action|Adventure|Animation|Children|Comedy|Sci-Fi    205
## 28022 2005                                                Comedy|Crime    205
## 28023 2005                                                      Horror    205
## 28024 2006                              Action|Fantasy|Sci-Fi|Thriller    205
## 28025 2006                         Adventure|Animation|Children|Comedy    205
## 28027 2006                                   Action|Adventure|Thriller    205
## 28029 2006                                        Comedy|Drama|Romance    205
## 28031 2006                                       Drama|Fantasy|Romance    205
## 28032 2006                      Adventure|Comedy|Drama|Fantasy|Romance    205
## 28033 2006                                                Comedy|Drama    205
## 28035 2006                                       Drama|Fantasy|Mystery    205
## 28037 2006                               Action|Comedy|Horror|Thriller    205
## 28038 2006                                               Action|Comedy    205
## 28039 2006                                          Comedy|Documentary    205
## 28040 2006                                                      Comedy    205
## 28041 2006                                      Drama|Fantasy|Thriller    205
## 28042 2006                                        Crime|Drama|Thriller    205
## 28044 2006                                       Crime|Horror|Thriller    205
## 28045 2006                                            Animation|Comedy    205
## 28046 2006                                   Action|Adventure|Thriller    205
## 28051 2007                                      Drama|Mystery|Thriller    205
## 28054 2007                                              Comedy|Romance    205
## 28056 2007                       Action|Adventure|Sci-Fi|Thriller|IMAX    205
## 28057 2007                                        Comedy|Drama|Romance    205
## 28058 2007                 Adventure|Animation|Children|Comedy|Fantasy    205
## 28059 2007                                     Action|Adventure|Sci-Fi    205
## 28061 2007                                              Comedy|Fantasy    205
## 28062 2007                                              Comedy|Romance    205
## 28065 2007                                       Action|Crime|Thriller    205
## 28069 2007                               Action|Horror|Sci-Fi|Thriller    205
## 28070 2007                                             Horror|Thriller    205
## 28071 2007                                       Crime|Horror|Thriller    205
## 28072 2007                                            Animation|Comedy    205
## 28077 2007                                        Comedy|Drama|Romance    205
## 28080 2008                              Action|Mystery|Sci-Fi|Thriller    205
## 28082 2008                             Action|Adventure|Fantasy|Sci-Fi    205
## 28084 2008                                       Action|Drama|Thriller    205
## 28085 2008                                  Adventure|Romance|Thriller    205
## 28086 2008                         Adventure|Animation|Children|Comedy    205
## 28087 2008                                     Action|Crime|Drama|IMAX    205
## 28091 2008                              Action|Adventure|Comedy|Sci-Fi    205
## 28093 2008                                                      Comedy    205
## 28094 2008                                       Drama|Sci-Fi|Thriller    205
## 28095 2008                                               Action|Sci-Fi    205
## 28096 2008                 Adventure|Animation|Children|Romance|Sci-Fi    205
## 28097 2008                       Action|Adventure|Comedy|Crime|Fantasy    205
## 28098 2008                                               Action|Comedy    205
## 28099 2008                                      Comedy|Musical|Romance    205
## 28100 2008                                 Action|Adventure|Comedy|War    205
## 28101 2008                                          Comedy|Crime|Drama    205
## 28102 2008                                  Action|Crime|Thriller|IMAX    205
## 28103 2008             Action|Adventure|Animation|Children|Comedy|IMAX    205
## 28104 2008                                   Action|Adventure|Thriller    205
## 28106 2008                              Drama|Fantasy|Romance|Thriller    205
## 28110 2009                                            Action|Drama|War    205
## 28113 2009                                             Horror|Thriller    205
## 28114 2009                                        Action|Comedy|Horror    205
## 28115 2009                                Action|Drama|Sci-Fi|Thriller    205
## 28116 2009                                Action|Adventure|Sci-Fi|IMAX    205
## 28117 2009                               Action|Crime|Mystery|Thriller    205
## 28119 2010            Adventure|Animation|Children|Comedy|Fantasy|IMAX    205
## 28120 2010             Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX    205
## 28122 2010                                    Adventure|Drama|Thriller    205
## 28125 2011                        Action|Adventure|Sci-Fi|Thriller|War    205
## 28128 2012                                 Action|Adventure|Crime|IMAX    205
## 28132 2012                              Action|Adventure|Thriller|IMAX    205
## 28134 2013                                 Action|Sci-Fi|Thriller|IMAX    205
## 28136 2014                                     Action|Adventure|Sci-Fi    205
## 28137 2014                                       Action|Crime|Thriller    205
## 28143 2015                      Action|Adventure|Drama|Sci-Fi|Thriller    205
## 28144 2014                         Adventure|Animation|Children|Comedy    205
## 28147 2015                              Children|Drama|Fantasy|Romance    205
## 28148 2015                                                      Comedy    205
## 28149 2015                                Action|Comedy|Fantasy|Sci-Fi    205
## 28150 2015                         Adventure|Animation|Children|Comedy    205
## 28151 1989                                       Action|Crime|Thriller    206
## 28152 1988                                       Action|Crime|Thriller    206
## 28153 1982                                      Comedy|Musical|Romance    206
## 28156 1989                                                Comedy|Drama    206
## 28160 1986                              Action|Adventure|Horror|Sci-Fi    206
## 28163 1989                                                       Drama    206
## 28164 1980                                                      Horror    206
## 28166 1980                                               Drama|Romance    206
## 28168 1985                                                      Comedy    206
## 28170 1989                                      Children|Drama|Fantasy    206
## 28171 1989                                              Comedy|Romance    206
## 28172 1981                                      Comedy|Horror|Thriller    206
## 28173 1984                                     Action|Adventure|Sci-Fi    206
## 28174 1986                                     Adventure|Comedy|Sci-Fi    206
## 28175 1982                                    Action|Adventure|Fantasy    206
## 28177 1998                                       Drama|Sci-Fi|Thriller    206
## 28178 1998                                                    Thriller    206
## 28181 1989                                                       Drama    206
## 28183 1982                                             Horror|Thriller    206
## 28184 1984                                               Comedy|Horror    206
## 28185 1985                    Action|Adventure|Children|Comedy|Fantasy    206
## 28186 1989                                     Adventure|Comedy|Sci-Fi    206
## 28187 1984                                            Adventure|Sci-Fi    206
## 28188 1985                        Adventure|Animation|Children|Fantasy    206
## 28189 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    206
## 28190 1995                                                Drama|Sci-Fi    207
## 28191 1995                                    Action|Adventure|Fantasy    207
## 28193 1994                                               Comedy|Sci-Fi    207
## 28195 1995                                                      Comedy    207
## 28196 1993                                                 Crime|Drama    207
## 28198 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi    207
## 28199 1997                                               Drama|Romance    207
## 28200 1952                                      Comedy|Musical|Romance    207
## 28201 1961                                               Drama|Romance    207
## 28202 1959                                                Comedy|Crime    207
## 28203 1964                                Comedy|Drama|Musical|Romance    207
## 28204 1996                                                Comedy|Drama    207
## 28205 1996                                                Comedy|Drama    207
## 28207 1986                                    Action|Adventure|Fantasy    207
## 28208 1959                                      Action|Adventure|Drama    207
## 28211 1996                                   Adventure|Children|Comedy    207
## 28212 1979                                            Adventure|Sci-Fi    207
## 28213 1996                            Adventure|Animation|Comedy|Crime    207
## 28214 1997                              Drama|Mystery|Romance|Thriller    207
## 28215 1998                         Action|Crime|Drama|Mystery|Thriller    207
## 28216 1961                                Adventure|Animation|Children    207
## 28217 1998                                                       Drama    207
## 28218 1999                                              Comedy|Romance    207
## 28219 1981                             Adventure|Comedy|Fantasy|Sci-Fi    207
## 28220 1999                                              Drama|Thriller    207
## 28221 1992                                 Action|Crime|Drama|Thriller    207
## 28222 2000                                             Children|Comedy    207
## 28223 1986                                               Drama|Musical    207
## 28226 1991                                              Comedy|Romance    207
## 28227 1998                                                     Musical    207
## 28228 2008                                  Adventure|Romance|Thriller    207
## 28229 1969                                       Adventure|War|Western    207
## 28230 2009                                                Comedy|Drama    207
## 28232 2009                                        Comedy|Drama|Romance    207
## 28233 1934                                                     Western    207
## 28234 2009                                                       Drama    207
## 28235 2009                            Action|Animation|Children|Sci-Fi    207
## 28240 1968                                      Adventure|Drama|Sci-Fi    208
## 28244 1979                                        Drama|Mystery|Sci-Fi    208
## 28247 1975                                               Action|Horror    208
## 28250 1998                                                      Comedy    208
## 28254 1982                                        Comedy|Drama|Romance    208
## 28256 2000                                                    Thriller    208
## 28259 2001                                              Comedy|Romance    208
## 28261 2001                                                    Thriller    208
## 28263 2003                                                Comedy|Crime    208
## 28273 2012                                        Comedy|Drama|Romance    208
## 28275 2013                                       Drama|Fantasy|Romance    208
## 28285 1995                                      Action|Sci-Fi|Thriller    209
## 28286 1995                                               Horror|Sci-Fi    209
## 28287 1993                                               Comedy|Sci-Fi    209
## 28288 1993                                           Action|Comedy|War    209
## 28290 1993                                     Comedy|Romance|Thriller    209
## 28291 1993                             Action|Adventure|Comedy|Romance    209
## 28292 1993                                              Crime|Thriller    209
## 28293 1996                                               Drama|Romance    209
## 28295 1973                                                Comedy|Crime    209
## 28296 1974                                              Comedy|Fantasy    209
## 28297 1986                                     Adventure|Comedy|Sci-Fi    209
## 28299 1989                                   Action|Comedy|Crime|Drama    209
## 28300 1998                                                Comedy|Drama    209
## 28301 1984                             Action|Adventure|Comedy|Romance    209
## 28302 1975                                Comedy|Horror|Musical|Sci-Fi    209
## 28303 1990                                               Comedy|Horror    209
## 28304 1995                                                 Crime|Drama    210
## 28305 1995                                              Children|Drama    210
## 28306 1994                                        Comedy|Drama|Fantasy    210
## 28307 1994                                      Drama|Mystery|Thriller    210
## 28308 1994             Adventure|Animation|Children|Drama|Musical|IMAX    210
## 28309 1994                                             Action|Thriller    210
## 28310 1994                                    Adventure|Comedy|Western    210
## 28311 1993                                               Comedy|Sci-Fi    210
## 28312 1993                                     Action|Adventure|Sci-Fi    210
## 28314 1993                                        Comedy|Drama|Romance    210
## 28315 1996                                 Comedy|Crime|Drama|Thriller    210
## 28317 1996                                        Comedy|Drama|Romance    210
## 28318 1975                                    Adventure|Comedy|Fantasy    210
## 28319 1981                                            Action|Adventure    210
## 28320 1986                                             Adventure|Drama    210
## 28321 1989                                            Action|Adventure    210
## 28322 1989                                              Comedy|Romance    210
## 28323 1990                                   Action|Adventure|Thriller    210
## 28324 1987                                                      Comedy    210
## 28325 1996                              Comedy|Horror|Mystery|Thriller    210
## 28326 1985                                                Comedy|Drama    210
## 28327 1991                                      Comedy|Horror|Thriller    210
## 28328 1984                                    Action|Adventure|Fantasy    210
## 28329 1990                                       Drama|Fantasy|Romance    210
## 28330 1998                         Adventure|Animation|Children|Comedy    210
## 28331 1974                                                      Horror    210
## 28332 1990                                      Comedy|Horror|Thriller    210
## 28333 1994                                                      Horror    210
## 28343 1996                                        Comedy|Drama|Romance    211
## 28380 1996                                                      Comedy    211
## 28381 1996                                        Action|Comedy|Sci-Fi    211
## 28384 1996                              Comedy|Horror|Mystery|Thriller    211
## 28387 1997                                        Action|Comedy|Sci-Fi    211
## 28391 1995                 Adventure|Animation|Children|Comedy|Fantasy    212
## 28392 1995                                  Adventure|Children|Fantasy    212
## 28393 1995                                                      Comedy    212
## 28394 1995                                   Action|Adventure|Thriller    212
## 28396 1995                                               Drama|Romance    212
## 28397 1995                                                      Comedy    212
## 28399 1995                                     Mystery|Sci-Fi|Thriller    212
## 28400 1995                                              Children|Drama    212
## 28402 1995                                              Comedy|Romance    212
## 28403 1995                                    Action|Adventure|Fantasy    212
## 28404 1995                                            Mystery|Thriller    212
## 28405 1995                    Animation|Children|Drama|Musical|Romance    212
## 28406 1995                                      Crime|Mystery|Thriller    212
## 28407 1996                                   Action|Adventure|Thriller    212
## 28408 1996                                                      Comedy    212
## 28410 1995                          Action|Comedy|Crime|Drama|Thriller    212
## 28411 1995                                                       Drama    212
## 28413 1995                                    Action|Drama|Romance|War    212
## 28414 1995                               Action|Adventure|Comedy|Crime    212
## 28415 1995                                          Adventure|Children    212
## 28416 1995                                      Action|Romance|Western    212
## 28417 1995                                       Action|Crime|Thriller    212
## 28418 1995                                        Action|Drama|Romance    212
## 28419 1995                                      Action|Sci-Fi|Thriller    212
## 28420 1995                                         Action|Crime|Sci-Fi    212
## 28421 1995                                              Comedy|Romance    212
## 28422 1995                                       Action|Crime|Thriller    212
## 28423 1995                                              Comedy|Romance    212
## 28424 1995                                     Action|Adventure|Sci-Fi    212
## 28425 1995                                                      Comedy    212
## 28427 1995                                        Comedy|Drama|Romance    212
## 28428 1994                                            Adventure|Comedy    212
## 28432 1994                                                       Drama    212
## 28434 1995                                Action|Drama|Sci-Fi|Thriller    212
## 28436 1994                                                       Drama    212
## 28437 1994                                       Action|Drama|Thriller    212
## 28438 1994                                        Comedy|Drama|Fantasy    212
## 28440 1995                                                      Comedy    212
## 28441 1993                                                       Drama    212
## 28442 1995                                              Comedy|Romance    212
## 28443 1994                                                      Comedy    212
## 28444 1994                                                      Comedy    212
## 28445 1994                                                Comedy|Drama    212
## 28446 1994                                      Drama|Mystery|Thriller    212
## 28448 1994                                              Comedy|Romance    212
## 28450 1994                                 Action|Comedy|Crime|Fantasy    212
## 28451 1994                                    Adventure|Comedy|Western    212
## 28452 1994                                               Action|Comedy    212
## 28453 1994                                        Comedy|Drama|Romance    212
## 28454 1994                                             Children|Comedy    212
## 28456 1994                                                      Comedy    212
## 28457 1994                                Action|Comedy|Crime|Thriller    212
## 28458 1993                                               Comedy|Sci-Fi    212
## 28459 1993                                              Comedy|Romance    212
## 28460 1993                                                      Comedy    212
## 28461 1993                                     Action|Adventure|Sci-Fi    212
## 28462 1993                                    Adventure|Children|Drama    212
## 28463 1993                                                    Thriller    212
## 28464 1993                                             Action|Thriller    212
## 28465 1993                            Action|Adventure|Sci-Fi|Thriller    212
## 28466 1993                                                       Drama    212
## 28467 1993                                              Comedy|Romance    212
## 28468 1993                                                Comedy|Drama    212
## 28473 1993                                        Comedy|Drama|Romance    212
## 28474 1993             Action|Adventure|Children|Comedy|Fantasy|Sci-Fi    212
## 28476 1993                             Action|Adventure|Comedy|Romance    212
## 28477 1993                                              Crime|Thriller    212
## 28478 1990                                             Children|Comedy    212
## 28479 1990                       Comedy|Drama|Fantasy|Romance|Thriller    212
## 28480 1992                 Adventure|Animation|Children|Comedy|Musical    212
## 28481 1991                                               Action|Sci-Fi    212
## 28482 1990                                     Adventure|Drama|Western    212
## 28483 1989                                       Action|Crime|Thriller    212
## 28485 1937                    Animation|Children|Drama|Fantasy|Musical    212
## 28486 1991             Animation|Children|Fantasy|Musical|Romance|IMAX    212
## 28487 1940                          Animation|Children|Fantasy|Musical    212
## 28488 1990                                              Comedy|Romance    212
## 28489 1996                                               Drama|Romance    212
## 28490 1996                           Action|Adventure|Mystery|Thriller    212
## 28491 1996                                                       Drama    212
## 28492 1996                                    Action|Adventure|Fantasy    212
## 28493 1996                Adventure|Animation|Children|Fantasy|Musical    212
## 28494 1996          Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi    212
## 28495 1996                           Action|Adventure|Romance|Thriller    212
## 28496 1964                                                  Comedy|War    212
## 28497 1996                                                Comedy|Crime    212
## 28499 1996                            Action|Adventure|Sci-Fi|Thriller    212
## 28500 1996                    Animation|Children|Drama|Musical|Romance    212
## 28501 1996                                             Comedy|Thriller    212
## 28502 1996                                              Drama|Thriller    212
## 28503 1996                                                      Comedy    212
## 28504 1996                                     Children|Comedy|Fantasy    212
## 28507 1952                                      Comedy|Musical|Romance    212
## 28508 1961                                               Drama|Romance    212
## 28509 1958                              Drama|Mystery|Romance|Thriller    212
## 28511 1964                                Comedy|Drama|Musical|Romance    212
## 28512 1953                                        Comedy|Drama|Romance    212
## 28513 1939                          Adventure|Children|Fantasy|Musical    212
## 28514 1939                                           Drama|Romance|War    212
## 28515 1941                                               Drama|Mystery    212
## 28516 1950                                                      Comedy    212
## 28517 1938                                    Action|Adventure|Romance    212
## 28520 1996                                          Adventure|Children    212
## 28521 1996                                                       Drama    212
## 28522 1957                                              Children|Drama    212
## 28523 1961                                     Children|Comedy|Romance    212
## 28524 1950                  Animation|Children|Fantasy|Musical|Romance    212
## 28525 1963                          Animation|Children|Fantasy|Musical    212
## 28527 1964                             Children|Comedy|Fantasy|Musical    212
## 28528 1951                Adventure|Animation|Children|Fantasy|Musical    212
## 28530 1988                                       Action|Crime|Thriller    212
## 28532 1996                                               Drama|Romance    212
## 28535 1979                                                      Comedy    212
## 28536 1987                                       Drama|Musical|Romance    212
## 28538 1986                                                   Drama|War    212
## 28539 1992                                      Crime|Mystery|Thriller    212
## 28540 1986                                              Action|Romance    212
## 28542 1951                                                       Drama    212
## 28543 1975                                    Adventure|Comedy|Fantasy    212
## 28544 1993                             Animation|Children|Comedy|Crime    212
## 28545 1957                                                   Drama|War    212
## 28547 1975                                                       Drama    212
## 28549 1981                                            Action|Adventure    212
## 28550 1986                              Action|Adventure|Horror|Sci-Fi    212
## 28551 1966                                    Action|Adventure|Western    212
## 28552 1957                                                       Drama    212
## 28553 1962                                         Adventure|Drama|War    212
## 28554 1971                                 Crime|Drama|Sci-Fi|Thriller    212
## 28556 1979                                            Action|Drama|War    212
## 28557 1993                      Action|Adventure|Comedy|Fantasy|Horror    212
## 28558 1980                                       Action|Comedy|Musical    212
## 28561 1984                                                       Drama    212
## 28564 1984                                      Action|Sci-Fi|Thriller    212
## 28567 1967                                        Comedy|Drama|Romance    212
## 28568 1957                                         Adventure|Drama|War    212
## 28569 1980                                                      Horror    212
## 28570 1986                                             Adventure|Drama    212
## 28571 1987                                Action|Comedy|Fantasy|Horror    212
## 28572 1963                                  Action|Adventure|Drama|War    212
## 28573 1993                                      Comedy|Fantasy|Romance    212
## 28574 1992                                               Drama|Western    212
## 28575 1985                                     Adventure|Comedy|Sci-Fi    212
## 28580 1959                                      Action|Adventure|Drama    212
## 28581 1987                                               Drama|Romance    212
## 28582 1989                                            Action|Adventure    212
## 28584 1989                                      Children|Drama|Fantasy    212
## 28586 1989                                              Comedy|Romance    212
## 28587 1976                               Drama|Fantasy|Horror|Thriller    212
## 28588 1990                                   Action|Adventure|Thriller    212
## 28589 1992                                                Action|Crime    212
## 28591 1975                                               Action|Horror    212
## 28592 1996                                        Action|Comedy|Sci-Fi    212
## 28594 1996                              Comedy|Horror|Mystery|Thriller    212
## 28595 1992                                  Action|Romance|War|Western    212
## 28599 1997                                                 Crime|Drama    212
## 28600 1997                                                      Comedy    212
## 28601 1997                                        Comedy|Crime|Romance    212
## 28602 1997                                     Action|Adventure|Comedy    212
## 28603 1997                            Action|Adventure|Sci-Fi|Thriller    212
## 28604 1997                           Action|Adventure|Fantasy|Thriller    212
## 28605 1997                 Adventure|Animation|Children|Comedy|Musical    212
## 28606 1997                                              Comedy|Romance    212
## 28607 1997                                 Action|Crime|Drama|Thriller    212
## 28608 1997                                        Action|Comedy|Sci-Fi    212
## 28609 1997                                                Drama|Sci-Fi    212
## 28610 1997                                                Action|Drama    212
## 28611 1997                              Drama|Mystery|Romance|Thriller    212
## 28612 1997                                             Action|Thriller    212
## 28613 1990                                   Action|Adventure|Thriller    212
## 28614 1997                                         Adventure|Drama|War    212
## 28616 1997                                     Horror|Mystery|Thriller    212
## 28618 1997                                                       Drama    212
## 28619 1985                                      Drama|Romance|Thriller    212
## 28622 1997                              Comedy|Horror|Mystery|Thriller    212
## 28623 1997                                               Drama|Romance    212
## 28624 1997                                   Action|Adventure|Thriller    212
## 28625 1998                                                Comedy|Crime    212
## 28626 1998                                              Comedy|Romance    212
## 28627 1997                                        Comedy|Drama|Romance    212
## 28630 1998   Adventure|Animation|Children|Comedy|Drama|Musical|Romance    212
## 28631 1998                              Action|Romance|Sci-Fi|Thriller    212
## 28632 1998                                Action|Comedy|Crime|Thriller    212
## 28633 1998                                              Comedy|Romance    212
## 28634 1930                                            Action|Drama|War    212
## 28635 1935                                             Adventure|Drama    212
## 28637 1966                                                       Drama    212
## 28638 1968                                               Drama|Musical    212
## 28639 1976                                                       Drama    212
## 28640 1979                                                       Drama    212
## 28641 1985                                               Drama|Romance    212
## 28642 1987                                                       Drama    212
## 28644 1989                                                       Drama    212
## 28646 1987                                   Action|Comedy|Crime|Drama    212
## 28647 1989                                   Action|Comedy|Crime|Drama    212
## 28648 1992                                   Action|Comedy|Crime|Drama    212
## 28649 1984                                               Comedy|Horror    212
## 28650 1985                    Action|Adventure|Children|Comedy|Fantasy    212
## 28652 1989                                     Adventure|Comedy|Sci-Fi    212
## 28653 1990                             Adventure|Comedy|Sci-Fi|Western    212
## 28654 1988                                               Drama|Romance    212
## 28655 1990                                Crime|Drama|Mystery|Thriller    212
## 28657 1989                    Adventure|Children|Comedy|Fantasy|Sci-Fi    212
## 28658 1955                           Animation|Children|Comedy|Romance    212
## 28659 1989                   Animation|Children|Comedy|Musical|Romance    212
## 28660 1992                                     Children|Comedy|Musical    212
## 28661 1961                                Adventure|Animation|Children    212
## 28663 1959                                  Animation|Children|Musical    212
## 28664 1984                                      Comedy|Fantasy|Romance    212
## 28665 1982                                     Action|Adventure|Sci-Fi    212
## 28666 1983                                                       Drama    212
## 28667 1984                                    Action|Adventure|Fantasy    212
## 28668 1984                                                Drama|Sci-Fi    212
## 28669 1983                                                    Thriller    212
## 28671 1987                                            Adventure|Comedy    212
## 28672 1985                                       Comedy|Fantasy|Sci-Fi    212
## 28673 1973                                          Animation|Children    212
## 28674 1982                          Adventure|Animation|Children|Drama    212
## 28675 1984                                              Comedy|Romance    212
## 28676 1986                                        Comedy|Drama|Romance    212
## 28677 1984                                  Adventure|Children|Fantasy    212
## 28678 1998                                      Action|Horror|Thriller    212
## 28679 1988                                              Comedy|Fantasy    212
## 28680 1988                                    Action|Adventure|Fantasy    212
## 28682 1998                                                       Drama    212
## 28684 1998                                Action|Comedy|Crime|Thriller    212
## 28685 1998                                       Action|Crime|Thriller    212
## 28686 1990                                       Drama|Fantasy|Romance    212
## 28687 1998                 Adventure|Animation|Children|Comedy|Fantasy    212
## 28688 1998                                                      Comedy    212
## 28689 1992                                                      Comedy    212
## 28690 1998                                                       Drama    212
## 28694 1998                                                       Drama    212
## 28695 1983                                                Comedy|Drama    212
## 28696 1998                         Adventure|Animation|Children|Comedy    212
## 28697 1998                                                      Comedy    212
## 28698 1989                                                Comedy|Crime    212
## 28699 1998                                           Animation|Musical    212
## 28700 1998                                        Comedy|Drama|Romance    212
## 28701 1947                                                Comedy|Drama    212
## 28702 1984                             Action|Adventure|Comedy|Romance    212
## 28703 1985                               Comedy|Crime|Mystery|Thriller    212
## 28704 1984                                                       Drama    212
## 28705 1986                                      Action|Adventure|Drama    212
## 28706 1998                                              Comedy|Romance    212
## 28708 1998                                               Horror|Sci-Fi    212
## 28710 1986                                Drama|Horror|Sci-Fi|Thriller    212
## 28711 1986                                            Adventure|Comedy    212
## 28712 1999                                              Comedy|Romance    212
## 28713 1999                                             Action|Thriller    212
## 28714 1999                                                       Drama    212
## 28715 1999                                                Comedy|Crime    212
## 28716 1968                                         Action|Drama|Sci-Fi    212
## 28717 1999                                                      Comedy    212
## 28718 1999                                                       Drama    212
## 28723 1999                                              Comedy|Romance    212
## 28724 1999                                                      Comedy    212
## 28725 1999                                              Crime|Thriller    212
## 28726 1999             Action|Adventure|Comedy|Fantasy|Horror|Thriller    212
## 28727 1999                                     Action|Adventure|Sci-Fi    212
## 28728 1978                                     Action|Adventure|Sci-Fi    212
## 28729 1980                                               Action|Sci-Fi    212
## 28730 1983                                     Action|Adventure|Sci-Fi    212
## 28731 1975                                Comedy|Horror|Musical|Sci-Fi    212
## 28732 1999                                              Comedy|Romance    212
## 28733 1999                                     Action|Adventure|Comedy    212
## 28735 1999                                Crime|Drama|Mystery|Thriller    212
## 28737 1999                                                      Comedy    212
## 28738 1990                                               Comedy|Horror    212
## 28739 1999                                Action|Comedy|Sci-Fi|Western    212
## 28740 1999                                              Comedy|Romance    212
## 28741 1999                                       Drama|Horror|Thriller    212
## 28742 1984                                        Action|Comedy|Sci-Fi    212
## 28743 1989                                       Comedy|Fantasy|Sci-Fi    212
## 28744 1999                                             Horror|Thriller    212
## 28745 1999                                       Action|Comedy|Fantasy    212
## 28746 1999                                              Comedy|Romance    212
## 28747 1960                                    Action|Drama|Romance|War    212
## 28748 1999                   Adventure|Animation|Children|Drama|Sci-Fi    212
## 28749 1999                                        Drama|Horror|Mystery    212
## 28750 1980                                                      Comedy    212
## 28751 1988                                Comedy|Drama|Fantasy|Romance    212
## 28752 1983                                             Children|Comedy    212
## 28753 1992                                               Action|Sci-Fi    212
## 28756 1999                                 Action|Crime|Drama|Thriller    212
## 28757 1999                           Action|Adventure|Comedy|Drama|War    212
## 28759 1983                                                      Comedy    212
## 28761 1967                                            Action|Drama|War    212
## 28762 1992                                             Children|Comedy    212
## 28764 1988   Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery    212
## 28765 1999                                             Horror|Thriller    212
## 28767 1999                                                    Thriller    212
## 28768 1999                                              Drama|Thriller    212
## 28769 1987                                               Comedy|Sci-Fi    212
## 28770 1973                 Adventure|Animation|Children|Comedy|Musical    212
## 28772 1999                                                   Drama|War    212
## 28773 1987                                              Comedy|Romance    212
## 28776 1999                                   Action|Adventure|Thriller    212
## 28777 1988                                      Comedy|Fantasy|Romance    212
## 28778 1987                                              Drama|Thriller    212
## 28779 1988                                Action|Comedy|Crime|Thriller    212
## 28780 1991                                Comedy|Drama|Fantasy|Romance    212
## 28781 1999                 Adventure|Animation|Children|Comedy|Fantasy    212
## 28783 1999                                                 Crime|Drama    212
## 28785 1999                                               Drama|Romance    212
## 28786 1969                                             Adventure|Drama    212
## 28787 1999                                     Adventure|Comedy|Sci-Fi    212
## 28788 1999                                      Drama|Mystery|Thriller    212
## 28792 1992                                                      Comedy    212
## 28793 1992                                                       Drama    212
## 28794 1992                                                Comedy|Crime    212
## 28796 1992                                                      Comedy    212
## 28797 1992                                                Comedy|Drama    212
## 28798 1992                                 Action|Crime|Drama|Thriller    212
## 28799 1992                                      Drama|Romance|Thriller    212
## 28800 1992                                                Comedy|Drama    212
## 28801 1992                                        Drama|Romance|Sci-Fi    212
## 28802 2000                              Comedy|Horror|Mystery|Thriller    212
## 28804 2000                                      Horror|Sci-Fi|Thriller    212
## 28805 2000                                                Comedy|Crime    212
## 28806 2000                                                      Sci-Fi    212
## 28807 1988                                        Comedy|Drama|Romance    212
## 28808 1975                                                 Crime|Drama    212
## 28809 1991                                      Drama|Mystery|Thriller    212
## 28810 2000                                                       Drama    212
## 28811 1991                                       Adventure|Crime|Drama    212
## 28812 1978                                                      Comedy    212
## 28813 1987                                            Comedy|Drama|War    212
## 28814 2000                               Action|Crime|Romance|Thriller    212
## 28818 1989                                                Comedy|Drama    212
## 28820 1955                                      Comedy|Musical|Romance    212
## 28821 1980                                                      Comedy    212
## 28825 2000                                                      Comedy    212
## 28826 2000                                   Action|Adventure|Thriller    212
## 28827 2000                             Action|Adventure|Comedy|Western    212
## 28828 1974                                              Comedy|Western    212
## 28829 2000                                                Action|Crime    212
## 28830 2000                  Action|Adventure|Animation|Children|Sci-Fi    212
## 28831 2000                                   Animation|Children|Comedy    212
## 28832 2000                                            Adventure|Comedy    212
## 28833 2000                                            Action|Drama|War    212
## 28834 2000                                               Comedy|Horror    212
## 28837 1991                                                      Comedy    212
## 28838 1988                                 Action|Comedy|Crime|Romance    212
## 28839 1991                                                      Comedy    212
## 28840 2000                                                      Comedy    212
## 28841 2000                                                 Crime|Drama    212
## 28843 2000                                                       Drama    212
## 28844 1943                                     Horror|Musical|Thriller    212
## 28845 2000                                                      Comedy    212
## 28846 2000                                                       Drama    212
## 28848 2000                                               Action|Comedy    212
## 28849 2000                                     Children|Comedy|Fantasy    212
## 28850 2000                                        Action|Drama|Romance    212
## 28851 1987                                                      Comedy    212
## 28854 2000                                               Comedy|Sci-Fi    212
## 28856 2000                                              Comedy|Romance    212
## 28858 2000                                                       Drama    212
## 28859 2000                                                Comedy|Crime    212
## 28860 2000                                      Adventure|Comedy|Crime    212
## 28862 1982                                               Drama|Romance    212
## 28863 1993                                                   Drama|War    212
## 28864 2001                                              Comedy|Romance    212
## 28865 1987                                          Animation|Children    212
## 28866 1987                                  Action|Adventure|Drama|War    212
## 28868 2001                                               Action|Comedy    212
## 28869 1990                                        Action|Adventure|War    212
## 28870 1978                                               Crime|Mystery    212
## 28871 2001                                                   Drama|War    212
## 28875 1983                                          Action|Crime|Drama    212
## 28876 2001                            Action|Adventure|Comedy|Thriller    212
## 28881 1991                                              Comedy|Western    212
## 28882 1988                                                       Drama    212
## 28883 2001                                          Action|Crime|Drama    212
## 28884 2001                                            Action|Adventure    212
## 28887 2001                                               Drama|Romance    212
## 28888 2001                                                      Comedy    212
## 28889 1968                                                       Drama    212
## 28890 2001                                              Comedy|Romance    212
## 28892 1988                                                      Comedy    212
## 28893 1989                                     Adventure|Comedy|Sci-Fi    212
## 28894 1989                                                       Drama    212
## 28895 2001                            Action|Adventure|Sci-Fi|Thriller    212
## 28896 2001                                                Comedy|Drama    212
## 28897 2001                               Action|Adventure|Drama|Sci-Fi    212
## 28898 2001                                               Action|Comedy    212
## 28899 2001                                                      Comedy    212
## 28901 2001                                            Adventure|Comedy    212
## 28902 2001                                      Horror|Sci-Fi|Thriller    212
## 28903 2001                                        Crime|Drama|Thriller    212
## 28904 2001                                                      Comedy    212
## 28905 2001                                              Comedy|Romance    212
## 28906 1971                                       Action|Crime|Thriller    212
## 28911 2001                                      Action|Sci-Fi|Thriller    212
## 28912 2001                                  Adventure|Children|Fantasy    212
## 28913 2001                                 Action|Crime|Drama|Thriller    212
## 28915 2001                                              Comedy|Romance    212
## 28920 2001                                        Comedy|Drama|Mystery    212
## 28921 2001                                                       Drama    212
## 28922 2001                                               Drama|Romance    212
## 28923 2001                                     Action|Mystery|Thriller    212
## 28924 2002                                               Action|Comedy    212
## 28925 1993                                                Action|Drama    212
## 28928 2001                                                Comedy|Drama    212
## 28929 2002                                            Action|Drama|War    212
## 28931 2002                               Action|Horror|Sci-Fi|Thriller    212
## 28932 2002                                      Action|Horror|Thriller    212
## 28933 2002                                                    Thriller    212
## 28934 2002                                              Comedy|Romance    212
## 28935 2002                                              Comedy|Romance    212
## 28936 1987                                                      Comedy    212
## 28937 2001                                            Romance|Thriller    212
## 28939 1994                                                   Adventure    212
## 28941 2002                                Action|Adventure|Sci-Fi|IMAX    212
## 28942 2002                         Action|Crime|Drama|Mystery|Thriller    212
## 28943 2002                        Adventure|Animation|Children|Western    212
## 28944 2002                                              Drama|Thriller    212
## 28946 2002                                                       Drama    212
## 28947 2002                         Adventure|Animation|Children|Sci-Fi    212
## 28949 2002                                        Action|Comedy|Sci-Fi    212
## 28950 2002                             Action|Adventure|Drama|Thriller    212
## 28951 2002                                                      Comedy    212
## 28952 2002                                      Horror|Sci-Fi|Thriller    212
## 28953 2002                                       Action|Crime|Thriller    212
## 28954 2002                                                Action|Crime    212
## 28955 2002                                               Adventure|War    212
## 28957 1983                                                      Comedy    212
## 28958 2002                                                 Documentary    212
## 28959 2002                                     Horror|Mystery|Thriller    212
## 28960 1981                                                   Drama|War    212
## 28961 2002                                                       Drama    212
## 28962 2002                                           Adventure|Fantasy    212
## 28963 2002                                   Action|Adventure|Thriller    212
## 28964 2002                                          Drama|Thriller|War    212
## 28966 2002                                Comedy|Drama|Musical|Romance    212
## 28967 2002                                                Comedy|Drama    212
## 28968 2002                                                       Drama    212
## 28970 2002                                                 Crime|Drama    212
## 28971 2002                                                 Crime|Drama    212
## 28972 2002                                               Drama|Romance    212
## 28973 2002                                               Drama|Romance    212
## 28975 2003                                             Action|Thriller    212
##       rating  timestamp
## 1        2.5 1260759144
## 2        3.0 1260759179
## 3        3.0 1260759182
## 4        2.0 1260759185
## 6        2.0 1260759151
## 7        2.0 1260759187
## 8        2.0 1260759148
## 9        3.5 1260759125
## 10       2.0 1260759131
## 11       2.5 1260759135
## 12       1.0 1260759203
## 15       3.0 1260759194
## 16       2.0 1260759198
## 17       2.0 1260759108
## 18       2.5 1260759113
## 19       1.0 1260759200
## 20       3.0 1260759117
## 26       3.0  835356031
## 27       3.0  835355749
## 29       3.0  835356016
## 32       3.0  835355493
## 33       3.0  835355441
## 34       3.0  835355710
## 35       3.0  835355511
## 36       3.0  835355664
## 37       3.0  835355511
## 39       1.0  835355749
## 40       3.0  835355552
## 41       3.0  835355664
## 42       3.0  835355896
## 47       3.0  835355767
## 49       3.0  835355492
## 51       3.0  835355532
## 53       2.0  835355551
## 54       1.0  835355918
## 55       3.0  835355492
## 58       3.0  835355628
## 59       3.0  835355749
## 60       3.0  835355604
## 61       3.0  835355619
## 62       2.0  835355932
## 63       3.0  835355968
## 64       3.0  835356094
## 65       3.0  835355710
## 66       3.0  835356165
## 67       2.0  835356246
## 68       3.0  835355532
## 70       3.0  835355511
## 72       2.0  835355828
## 74       3.0  835355918
## 75       3.0  835355880
## 82       3.0  835355767
## 83       3.0  835356109
## 85       3.0  835355860
## 87       3.0  835355790
## 88       3.0  835355779
## 89       3.0  835355441
## 93       3.0  835355511
## 94       3.0  835355932
## 97       3.0 1298861675
## 99       3.5 1298861637
## 100      3.0 1298861761
## 103      2.5 1298861589
## 105      2.5 1298923242
## 106      3.0 1298862528
## 107      3.0 1298922100
## 108      3.0 1298923247
## 109      3.0 1298921840
## 110      2.0 1298923260
## 111      3.5 1298932787
## 113      3.0 1298861687
## 115      3.0 1298921795
## 117      3.0 1298861605
## 119      3.5 1298922089
## 124      3.0 1298861789
## 125      3.0 1298862710
## 126      3.5 1298861796
## 127      3.0 1298924017
## 128      3.5 1298922057
## 132      3.0 1298861968
## 135      3.0 1298923266
## 136      3.5 1298862672
## 137      3.0 1298922080
## 138      2.5 1298921787
## 139      3.0 1298922065
## 140      3.5 1298861650
## 141      3.0 1298932766
## 142      3.5 1298862555
## 143      3.5 1298932740
## 146      3.0 1298922071
## 153      3.0  949811346
## 154      3.0  949920047
## 158      3.0  949810618
## 164      3.0  949810534
## 165      3.0  949919883
## 166      3.0  949895772
## 168      1.0  949920135
## 176      3.0  949810534
## 236      3.0  949920004
## 238      3.0  949918904
## 239      3.0  949810688
## 244      3.0  949811230
## 248      1.0  949895864
## 251      2.0  949895956
## 255      3.0  949949538
## 259      3.0  949895907
## 260      2.0  949918970
## 269      3.0  949896114
## 284      3.0  949896309
## 294      3.0  949896070
## 297      3.0  949896309
## 308      1.0  949895993
## 311      3.0  949918671
## 317      1.0  949896521
## 323      3.0  949811230
## 324      3.0  949918875
## 327      2.0  949896309
## 328      1.0  949896309
## 332      3.0  949896015
## 335      3.0  949896543
## 345      2.0  949778946
## 349      3.0  949919845
## 351      2.0  949982238
## 357      3.5 1163373762
## 359      3.5 1163373636
## 367      3.5 1163373551
## 370      3.5 1163374993
## 371      2.5 1163373651
## 372      3.5 1163373135
## 376      3.0 1163374173
## 377      2.5 1163374239
## 381      3.5 1163374165
## 383      3.5 1163374562
## 391      3.5 1163374593
## 392      1.5 1163373188
## 396      3.5 1163374184
## 398      3.5 1163374290
## 402      3.5 1163373743
## 403      3.5 1163374947
## 404      3.5 1163374278
## 405      3.5 1163374127
## 406      3.5 1163374263
## 407      3.5 1163374408
## 409      3.5 1163373148
## 411      3.5 1163374198
## 414      3.5 1163373696
## 416      3.5 1163374103
## 417      3.5 1163374354
## 419      3.5 1163375131
## 420      3.0 1163373548
## 422      3.5 1163374995
## 426      3.5 1163374206
## 428      3.0 1163373688
## 430      3.5 1163374491
## 434      2.5 1163373238
## 438      3.5 1163374118
## 443      3.5 1163374177
## 453      2.0 1108134263
## 454      2.0 1109258228
## 463      2.0 1109258181
## 464      2.0 1109258179
## 465      2.0 1109258281
## 466      2.0 1109258194
## 467      0.5 1108134334
## 468      3.0 1108134344
## 469      3.0 1108134289
## 473      3.5 1108134291
## 474      3.0 1109258245
## 476      1.0 1109258202
## 477      2.0 1108134271
## 479      3.0 1109258257
## 481      3.0 1109258199
## 482      1.0 1108134337
## 484      3.5 1109258250
## 485      1.5 1109258190
## 486      1.5 1109258217
## 487      1.5 1109258226
## 489      3.0 1108134534
## 492      3.5 1108134526
## 494      3.0 1108134531
## 496      3.0  851866703
## 497      3.0  851869035
## 498      3.0  851867289
## 499      3.0  851868750
## 502      3.0  851866744
## 507      2.0  851868704
## 508      3.0  851868705
## 510      3.0  851868188
## 511      2.0  851869161
## 513      3.0  851868524
## 514      3.0  851867345
## 515      3.0  851867621
## 516      3.0  851867941
## 517      3.0  851868188
## 518      3.0  851867436
## 519      3.0  851868020
## 520      3.0  851867790
## 521      3.0  851869291
## 524      3.0  851867669
## 526      3.0  851867688
## 530      3.0  851869140
## 532      3.0  851868863
## 534      3.0  851868044
## 535      3.0  851868074
## 537      3.0  851866744
## 539      2.0  851866784
## 540      1.0  851866704
## 541      1.0  851866763
## 543      3.0  851866703
## 544      2.0  851866744
## 546      3.0  851869102
## 547      3.0  851866744
## 550      3.0  851868308
## 551      3.0  851867553
## 552      3.0  851869103
## 556      3.0  851867289
## 565      3.0  851867436
## 567      3.0  851867436
## 570      3.0  851867320
## 571      3.0  851868471
## 573      3.0  851867401
## 574      3.0  851866935
## 575      3.0  851869160
## 576      3.0  851869102
## 577      2.0  851869230
## 579      3.0  851869140
## 580      3.0  851869062
## 581      3.0  851867688
## 583      1.0  851869140
## 585      2.5 1154389572
## 589      3.5 1154464829
## 590      2.0 1154389420
## 595      3.5 1154389356
## 596      2.0 1154400357
## 602      3.5 1154389432
## 604      3.5 1154464841
## 612      3.0 1154465230
## 615      3.5 1154400465
## 616      0.5 1154474527
## 618      3.0 1154400324
## 620      3.0 1154389408
## 621      3.5 1154464990
## 625      3.0 1154400308
## 627      3.5 1154389528
## 630      3.0 1154389460
## 631      3.0 1154465222
## 636      3.5 1154389340
## 637      3.5 1154400351
## 640      3.5 1154464944
## 642      2.5 1154389541
## 644      3.5 1154400340
## 645      3.5 1154473419
## 646      3.0 1154400360
## 652      3.5 1154400198
## 656      3.5 1154400245
## 660      2.5 1154400334
## 661      3.5 1154464808
## 662      3.5 1154400398
## 665      3.5 1154464819
## 666      3.5 1154389449
## 668      3.5 1154389552
## 673      3.0 1154465385
## 675      3.5 1154400444
## 677      3.0 1154400191
## 680      3.0 1154400253
## 681      3.5 1154400294
## 685      2.5 1154400471
## 688      3.0 1154465548
## 689      3.5 1154465243
## 693      3.5 1154400423
## 694      3.5 1154473088
## 695      3.5 1154473264
## 696      2.0 1154473042
## 697      3.5 1154473022
## 698      3.0 1154473014
## 699      3.0 1154473017
## 702      3.0  938628655
## 704      3.0  938628897
## 712      2.0  938628337
## 714      3.0  938629470
## 717      3.0  938628655
## 718      2.0  938628777
## 723      3.0  938629470
## 729      3.0  938629053
## 730      3.0  938628777
## 733      2.0  938629250
## 737      2.0  938629681
## 738      3.0  938629681
## 740      2.0  938629341
## 742      3.0  938628843
## 748      3.0  942766603
## 750      3.0  942767328
## 752      3.0  942767258
## 753      3.0  942766420
## 754      2.0  942767328
## 761      3.0  942767328
## 766      3.0  942766725
## 767      3.0  942766845
## 769      3.0  942766679
## 772      2.0  942766845
## 774      3.0  942766472
## 777      2.0  942767328
## 781      3.0  942766251
## 782      3.0  942766213
## 784      3.0  942766164
## 786      2.0  942766213
## 788      2.0  942766251
## 789      3.0  942766059
## 792      1.0 1391656827
## 794      3.0 1391657297
## 797      3.5 1391656845
## 802      3.0 1391657062
## 803      3.5 1391657376
## 805      3.0 1391658583
## 806      3.0 1391657112
## 807      3.0 1391658601
## 813      3.5 1391657720
## 817      3.0 1391658137
## 819      3.5 1391658218
## 829      3.0  968045587
## 830      1.0  968045407
## 831      3.0  968045438
## 832      2.0  968045353
## 833      1.0  968045732
## 835      3.0  968045764
## 836      1.0  968045500
## 837      2.0  968045561
## 838      3.0  968045500
## 839      1.0  955407153
## 842      2.0  968045354
## 844      1.0  955407153
## 845      1.0  968045475
## 847      2.0  968045438
## 848      3.0  968045529
## 849      2.0  955407153
## 850      2.0  968045475
## 852      1.0  968045475
## 853      2.0  968045764
## 855      2.0  968045732
## 856      1.0  968045379
## 857      3.0  968045649
## 858      2.0  968045354
## 860      1.0  968045732
## 863      3.0  968045619
## 864      2.0  968045680
## 865      2.0  968045619
## 866      1.0  968045232
## 868      3.0  968045232
## 870      1.0  968045198
## 871      3.0  968045198
## 872      3.0  968045172
## 874      2.0  968045142
## 875      2.0  968045106
## 877      2.0  968045074
## 878      1.0  968045074
## 879      3.0  968045015
## 881      3.0  968045015
## 883      2.0  968044981
## 884      2.0  968044981
## 885      3.0  968044981
## 887      3.0  968044949
## 888      2.0  968044949
## 891      2.5 1331380914
## 894      3.5 1331380895
## 898      3.0 1331380025
## 899      3.5 1331379485
## 902      3.0 1331380851
## 905      3.5 1331380871
## 906      3.0 1331379520
## 908      2.5 1331380845
## 909      3.0 1331379386
## 912      3.0 1331380888
## 913      3.5 1331379777
## 915      3.0 1331380765
## 916      3.0 1331380731
## 917      3.0 1331379494
## 918      3.0 1331380761
## 919      3.0 1331380738
## 921      3.5 1331379342
## 922      3.5 1331379599
## 923      3.0 1331379574
## 926      2.5 1331379589
## 927      3.5 1331379530
## 929      3.5 1331380834
## 935      3.5 1331380782
## 942      3.0 1331379985
## 943      1.0  976243997
## 945      3.0  976243912
## 946      3.0  976244179
## 947      2.0  976244179
## 948      3.0  976244471
## 949      3.0  976243933
## 950      2.0  976244131
## 951      3.0  976244313
## 952      2.0  976244367
## 953      3.0  976244524
## 954      2.0  976244287
## 956      2.0  976244564
## 958      3.0  976243997
## 959      3.0  976244423
## 961      3.0  976244107
## 963      2.0  997938310
## 964      2.0 1134521380
## 967      3.0 1093028290
## 968      2.5 1093028381
## 969      2.5 1166586286
## 970      3.5 1093070150
## 971      3.0  997939404
## 972      1.0 1093028409
## 974      2.5 1093070415
## 975      3.0 1033345172
## 977      3.0  997938310
## 978      1.0 1033345287
## 979      2.5 1093028334
## 980      3.0 1122576665
## 983      2.5 1093070271
## 984      2.0 1093028336
## 985      0.5 1093070467
## 987      3.0 1166587063
## 988      1.5 1093028331
## 990      1.0 1093070113
## 991      2.0 1166586594
## 992      3.0 1040205792
## 994      2.5 1093070156
## 996      3.5 1245362506
## 997      3.5 1134521543
## 999      3.0  997939380
## 1000     1.0 1128274517
## 1001     2.0 1052896975
## 1002     0.5 1093028411
## 1003     3.0 1093028319
## 1005     2.0 1166586021
## 1007     3.0 1093028183
## 1008     2.5 1166586376
## 1009     1.0 1093070329
## 1012     3.0 1166586276
## 1013     2.0 1052896916
## 1014     1.0 1193435347
## 1015     2.0 1093070170
## 1016     1.5 1134521967
## 1017     1.5 1193435482
## 1018     2.0 1033345241
## 1020     1.0 1349622582
## 1022     1.0 1134521432
## 1023     1.0 1033345068
## 1024     3.5 1093028308
## 1028     3.5 1166586251
## 1030     2.0  997938567
## 1031     2.0 1093070318
## 1032     2.0 1093028328
## 1034     1.0 1058250479
## 1035     2.0 1093028372
## 1036     1.0 1093028298
## 1043     3.0 1052896866
## 1044     1.0 1093028399
## 1045     2.0  997938727
## 1046     2.5 1120209787
## 1047     1.5 1093028255
## 1048     2.0  997938391
## 1049     2.5 1122576622
## 1050     3.0 1058250589
## 1051     2.0 1093028220
## 1052     3.0  997939193
## 1053     3.0 1093070088
## 1054     0.5 1122576667
## 1055     1.0 1058250631
## 1056     3.5 1058250490
## 1058     2.0 1374637824
## 1059     3.5 1122576670
## 1060     2.0 1443385370
## 1061     3.0 1465793100
## 1062     3.5 1054449871
## 1065     3.5 1166586661
## 1066     1.0 1465955324
## 1068     3.0 1093028320
## 1069     1.0 1093070102
## 1070     2.5 1058250627
## 1072     1.0 1193435522
## 1073     3.0 1093028323
## 1075     2.5 1134521456
## 1076     3.0 1166586067
## 1077     3.0 1093028384
## 1078     3.0  997939193
## 1079     3.0 1166586748
## 1080     1.0  997938905
## 1081     0.5 1093070332
## 1083     3.0 1035258747
## 1084     1.5 1093028394
## 1085     2.0 1093028389
## 1086     3.5 1443384915
## 1087     2.5 1166586387
## 1089     3.0 1033345148
## 1090     2.0 1093028325
## 1091     1.5 1240203835
## 1093     3.0 1093070381
## 1095     2.0  997939055
## 1097     3.5 1361078504
## 1098     3.0 1166586512
## 1099     3.0 1141391972
## 1100     2.0 1093028377
## 1101     1.0 1093028322
## 1102     0.5 1093028161
## 1104     3.0 1093028142
## 1107     2.5 1245021392
## 1108     2.5 1093028267
## 1110     3.0 1052896916
## 1111     2.5 1093070326
## 1112     1.5 1134521628
## 1114     2.0 1035258608
## 1115     3.0  997939348
## 1116     3.0 1052896916
## 1117     2.0 1052896867
## 1118     3.0 1093028406
## 1119     3.0 1033345122
## 1120     2.0 1166586237
## 1121     3.5 1093028260
## 1122     1.0 1093028237
## 1123     3.0  997938288
## 1124     2.5 1166586565
## 1126     2.0 1093070454
## 1128     2.5 1093028151
## 1129     2.5 1093070207
## 1130     3.0 1033344834
## 1131     0.5 1093028395
## 1132     1.5 1134521382
## 1133     3.0 1136904835
## 1135     1.0 1128274713
## 1137     3.5 1134522085
## 1138     1.0 1166586002
## 1139     2.0 1166586995
## 1148     2.5 1122576681
## 1152     1.5 1058250501
## 1153     1.0 1128274460
## 1154     3.0  997938737
## 1155     3.5 1093070090
## 1156     1.0 1040205624
## 1159     3.0 1044219825
## 1160     1.0 1058250466
## 1161     3.0  997938800
## 1163     2.0 1166586619
## 1164     2.0 1034544304
## 1167     2.5 1348976598
## 1168     1.5 1166586136
## 1170     3.0  997938603
## 1172     3.0  997938787
## 1173     2.0 1122576683
## 1175     2.5 1193436089
## 1176     2.0 1166586415
## 1180     2.5 1458506296
## 1181     3.0 1093070163
## 1182     1.0 1055439464
## 1184     2.5 1345397949
## 1185     2.5 1128274586
## 1186     3.5 1386368101
## 1187     3.0  997938288
## 1189     3.0 1193435335
## 1191     3.0  997938771
## 1193     2.0 1443384910
## 1195     3.5 1361078481
## 1198     1.0 1040205753
## 1200     1.0 1093070386
## 1202     3.5 1345398232
## 1204     2.0  997939111
## 1206     3.0 1044347743
## 1210     1.5 1058250487
## 1211     3.0 1166586696
## 1212     3.0  997938749
## 1214     1.5 1054271469
## 1215     2.0 1055439440
## 1217     3.0  997938203
## 1218     1.0 1093070109
## 1224     3.0 1044347881
## 1226     3.0  997938727
## 1228     3.5 1166586368
## 1229     3.0  997938451
## 1230     2.0 1033345172
## 1232     1.0 1093070174
## 1234     3.0  997938509
## 1235     3.0  997938500
## 1237     3.0  997938749
## 1239     3.5 1345398347
## 1241     3.0  997938917
## 1242     3.0  997938981
## 1243     1.5 1134521651
## 1245     3.0  997938162
## 1250     3.5 1054450246
## 1251     2.5 1054450208
## 1252     3.0  997938941
## 1253     1.0 1063565335
## 1254     3.0 1416120074
## 1255     3.0 1345397986
## 1256     2.0 1033345087
## 1259     3.0 1035258608
## 1263     3.0 1093070459
## 1264     2.0 1054450251
## 1265     3.0 1040205753
## 1267     3.0 1134521497
## 1268     2.0  997938219
## 1269     2.0 1052896916
## 1270     2.0 1134521654
## 1271     2.0 1033345050
## 1272     2.0 1052896819
## 1273     1.0  997938500
## 1274     3.5 1361078494
## 1275     3.0 1093070198
## 1276     3.0 1093070479
## 1277     2.5 1166586012
## 1278     3.0 1458506268
## 1280     0.5 1093070145
## 1281     3.5 1058250612
## 1284     3.0 1052897043
## 1289     3.0 1134522057
## 1290     1.5 1338699256
## 1291     3.0 1193435343
## 1292     3.0  997938358
## 1293     3.0 1093070397
## 1294     3.0 1093070210
## 1295     1.5 1425876701
## 1296     1.0 1035258747
## 1297     2.0 1033344937
## 1298     3.0  997939453
## 1299     1.0 1052896819
## 1300     3.0  997939393
## 1301     1.0 1093070319
## 1303     1.5 1134521507
## 1304     2.5 1166587010
## 1305     1.5 1166586212
## 1306     3.5 1134521624
## 1310     2.0 1093028013
## 1311     2.0 1134521585
## 1312     1.0 1093070221
## 1313     3.0 1040205754
## 1314     3.0  997939193
## 1315     3.0 1166587214
## 1320     1.5 1166586517
## 1321     3.0  997938413
## 1322     2.0  997938647
## 1323     3.0 1052896685
## 1324     3.0 1058250115
## 1325     3.0 1033345299
## 1327     3.0 1166586583
## 1328     2.0  997939424
## 1330     1.0 1134521603
## 1331     3.0  997938879
## 1335     1.5 1093028339
## 1336     3.5 1134521534
## 1337     1.0 1033344286
## 1338     3.5 1054449676
## 1339     0.5 1166981862
## 1340     3.5 1134521589
## 1342     3.5 1469330699
## 1343     1.0 1349622617
## 1344     3.5 1460076717
## 1345     2.0 1134521514
## 1346     1.0 1166586707
## 1347     3.0 1033345287
## 1348     3.0 1458506454
## 1349     3.0  997938391
## 1350     1.5 1093028022
## 1351     2.5 1166587162
## 1352     2.5 1465881179
## 1354     2.0 1166586439
## 1355     3.5 1058250734
## 1356     2.0 1469330727
## 1360     2.0 1469330647
## 1361     2.0 1134521539
## 1362     1.5 1166586478
## 1364     3.0 1054449827
## 1365     2.5 1469330584
## 1366     1.5 1054450597
## 1367     3.5 1075142949
## 1368     2.0 1052896819
## 1370     3.5 1054449899
## 1371     2.0 1052896916
## 1375     3.0 1058249502
## 1376     3.0  997938810
## 1377     3.0  997938528
## 1378     3.0 1040205792
## 1381     3.5 1093028404
## 1382     3.0 1033345068
## 1383     3.0  997938372
## 1385     2.5 1166586228
## 1387     3.0 1052896975
## 1388     3.0 1034544351
## 1391     3.0 1052896685
## 1392     3.0 1044219825
## 1393     1.0 1046209705
## 1394     2.0 1044347881
## 1396     2.5 1379040745
## 1397     2.0 1465881239
## 1398     3.0  997938784
## 1399     2.0 1033344732
## 1400     2.0  997938630
## 1401     2.5 1166586203
## 1402     2.0 1052896975
## 1404     3.0  997938413
## 1405     2.0  997938603
## 1409     2.0 1033345050
## 1410     1.0 1166587068
## 1411     3.5 1166587080
## 1412     3.5 1122576686
## 1413     3.0 1052896819
## 1414     2.0 1034544351
## 1415     3.0  997937311
## 1416     3.0 1166586521
## 1417     3.0  997938630
## 1418     3.0  997939162
## 1420     3.0  997938528
## 1422     3.0 1052897043
## 1425     3.5 1054449665
## 1426     1.0 1093070270
## 1427     2.5 1465881227
## 1428     2.5 1166586189
## 1429     2.5 1134521675
## 1430     0.5 1469330645
## 1431     3.0 1052896740
## 1433     3.0  997939439
## 1434     2.0 1052897012
## 1435     3.5 1093070399
## 1436     3.0  997938931
## 1437     2.0 1052896916
## 1438     3.5 1345397769
## 1440     3.5 1122576690
## 1441     2.0  997939328
## 1442     1.0 1054450149
## 1443     3.0 1033344795
## 1444     3.0 1469330601
## 1445     2.0 1033344772
## 1446     2.0 1134522028
## 1447     1.0 1044347881
## 1448     0.5 1134521484
## 1449     2.0  997939055
## 1450     3.0  997938834
## 1451     2.0  997937311
## 1452     3.0 1040205792
## 1453     1.0 1033344752
## 1454     3.5 1166586655
## 1455     3.0  997937311
## 1456     3.5 1465880711
## 1457     3.0  997938567
## 1459     2.0  997938162
## 1460     3.0 1052897012
## 1461     3.5 1458506447
## 1462     3.0 1052896819
## 1464     1.5 1134521618
## 1465     3.0 1040205754
## 1466     1.0 1033344782
## 1467     2.0  997939328
## 1468     2.5 1122576697
## 1469     3.5 1166586146
## 1470     1.0  997938413
## 1472     1.0 1033344906
## 1473     3.0  997938760
## 1475     0.5 1122576701
## 1476     2.0 1347937598
## 1477     2.5 1465880194
## 1478     1.0 1033344732
## 1479     1.0  997939415
## 1480     3.0 1033344917
## 1481     0.5 1469330735
## 1484     1.0 1033344897
## 1485     3.0 1033344772
## 1486     2.5 1054449822
## 1487     3.0  997939393
## 1488     1.0 1033344897
## 1489     1.0 1033344865
## 1491     1.5 1166587193
## 1492     3.0  997939021
## 1493     3.0 1033344995
## 1494     1.0 1033344772
## 1495     1.0 1093070339
## 1496     3.0  997939255
## 1497     2.5 1093028374
## 1499     3.0  997938219
## 1500     2.0 1052896819
## 1502     1.0 1033344752
## 1503     1.0 1033344657
## 1504     3.0  997938372
## 1505     3.0  997938151
## 1506     3.0 1033345068
## 1507     3.0 1033344958
## 1508     1.0 1245361903
## 1509     1.5 1122576707
## 1510     3.0 1033344657
## 1511     3.0 1033344663
## 1512     1.0 1033344878
## 1513     1.0 1033344702
## 1515     1.0 1033344834
## 1517     3.5 1465793437
## 1518     1.5 1469330590
## 1519     2.0 1033344732
## 1520     1.0 1033344897
## 1521     2.5 1054450195
## 1522     3.0  997939653
## 1523     1.0 1033344752
## 1524     2.0  997939037
## 1525     1.0  997938500
## 1526     1.0 1033344970
## 1527     2.0  997937762
## 1530     3.5 1065197456
## 1532     1.5 1166587203
## 1533     3.0  997938567
## 1534     1.0 1033344958
## 1535     2.0 1033344958
## 1538     1.0 1033344752
## 1541     1.0  997938879
## 1543     1.5 1345397822
## 1549     1.0 1054449851
## 1552     2.0 1469330578
## 1554     3.0 1052896740
## 1556     3.5 1345398317
## 1560     1.0 1033344685
## 1561     1.0 1033344702
## 1563     2.5 1361078485
## 1564     2.0 1033344865
## 1566     3.0  997938954
## 1567     3.0 1166586681
## 1571     3.0 1058250603
## 1572     3.0  997939653
## 1574     3.0 1033345241
## 1575     1.0 1033344958
## 1576     3.0 1166586269
## 1578     3.0  997938895
## 1581     3.0 1316395917
## 1583     2.0 1166587025
## 1584     1.0 1033344983
## 1586     3.5 1054449917
## 1587     1.0 1044347881
## 1588     1.5 1460076724
## 1589     1.0  997939415
## 1590     1.0 1134521933
## 1591     3.0 1245361773
## 1592     3.0  997938931
## 1593     1.0 1033344970
## 1594     3.0  997938941
## 1595     2.5 1338698402
## 1596     2.5 1122576723
## 1597     1.0 1033344865
## 1599     2.0  997938413
## 1600     1.0  997939393
## 1601     2.0  997937726
## 1602     2.0 1033344958
## 1604     2.0 1033344897
## 1605     1.0  997938046
## 1607     2.0 1034544351
## 1608     3.0  997939639
## 1609     2.0 1134521644
## 1610     2.0 1361831567
## 1612     1.0  997938391
## 1615     3.0 1063565307
## 1616     2.0 1033345227
## 1617     1.0  997937890
## 1618     0.5 1347936677
## 1619     2.0 1416119608
## 1620     3.0  997937999
## 1624     3.0 1082220247
## 1625     1.5 1416119948
## 1627     3.0  997937986
## 1630     2.5 1096005300
## 1631     3.0 1054449689
## 1632     3.5 1120209453
## 1633     3.0  997938391
## 1634     1.0  997937239
## 1635     2.0 1033344772
## 1637     1.0 1040205754
## 1638     1.5 1063565279
## 1639     3.0  997938310
## 1640     2.5 1054450188
## 1641     2.5 1193436085
## 1642     3.0  997939144
## 1643     1.5 1063565329
## 1646     3.0 1093028035
## 1648     0.5 1465880417
## 1649     2.0 1166586405
## 1650     3.0  997938242
## 1653     2.0 1033344795
## 1654     3.0  997937926
## 1655     3.0 1052896819
## 1656     1.0  997937935
## 1657     1.0  997937822
## 1659     1.5 1096005190
## 1660     2.0 1033344752
## 1661     2.0 1465880183
## 1662     1.0 1166586553
## 1663     3.0  997937786
## 1664     3.0  997937902
## 1667     3.5 1465954636
## 1668     2.0 1033344795
## 1669     3.0  997937762
## 1671     2.0  997937876
## 1672     1.0 1033344878
## 1673     2.0 1122576735
## 1674     3.0  997937961
## 1676     2.0 1044347881
## 1677     3.5 1345397811
## 1678     3.5 1345398289
## 1679     2.0 1345397721
## 1680     2.0 1166586157
## 1683     1.0 1163876415
## 1686     2.0  997938822
## 1687     2.5 1082220261
## 1688     1.0  997937836
## 1689     2.0  997937700
## 1690     1.0  997937726
## 1691     1.0  997937971
## 1692     1.5 1416119541
## 1693     2.0 1122576740
## 1694     2.0  997937700
## 1696     2.0 1033344712
## 1697     3.0  997937795
## 1698     3.0  997938391
## 1699     2.0  997937808
## 1701     2.0  997937999
## 1702     2.0 1039243666
## 1703     3.0  997938372
## 1704     2.0  997937726
## 1705     1.0  997938015
## 1706     1.0  997938035
## 1707     2.5 1134522068
## 1708     3.0 1044348420
## 1709     3.0 1240203682
## 1710     3.0 1044348492
## 1711     2.0  997937860
## 1714     1.0 1039243705
## 1715     1.0  997937860
## 1716     3.0  997937890
## 1717     3.0  997937700
## 1718     2.0  997937848
## 1719     2.0  997937427
## 1721     3.0  997937860
## 1725     1.0  997937986
## 1726     1.0  997937762
## 1727     2.5 1425876021
## 1728     1.0  997937459
## 1729     3.0  997937848
## 1730     1.0  997938035
## 1731     1.0 1033344924
## 1734     1.0  997937926
## 1736     1.0 1166587057
## 1737     3.0  997937700
## 1738     1.0  997937999
## 1739     1.0  997937902
## 1742     1.0  997937614
## 1743     3.0  997937459
## 1744     3.5 1345398275
## 1745     3.0 1052896916
## 1746     3.5 1426110367
## 1747     2.0 1033345087
## 1748     1.0  997937606
## 1749     2.0 1044348492
## 1752     1.0 1044348492
## 1753     2.0 1416119589
## 1754     3.0  997937442
## 1755     3.0  997937427
## 1756     3.0  997937413
## 1757     2.0  997937442
## 1758     1.0 1044348492
## 1759     3.0  997937606
## 1761     2.0  997937459
## 1764     1.0  997937427
## 1765     3.0  997938372
## 1766     1.0  997937442
## 1767     1.0 1033344023
## 1771     1.0 1034544351
## 1772     3.0 1345398332
## 1773     3.0 1033344307
## 1775     1.0  997938035
## 1776     1.0 1349622626
## 1777     2.0  997937459
## 1778     3.0  997937914
## 1779     1.0  997937986
## 1780     3.0 1040205943
## 1782     1.0  997937775
## 1783     1.0  997937762
## 1785     3.0  997939162
## 1787     3.0  997937986
## 1788     1.0  997937808
## 1789     2.0  997937713
## 1790     1.0 1349622526
## 1791     3.0 1120209753
## 1792     1.5 1166586578
## 1794     2.5 1374637769
## 1796     1.0 1033343955
## 1797     2.0 1033343955
## 1798     3.0  997937366
## 1799     2.0  997939193
## 1801     1.0  997937949
## 1802     2.0  997937334
## 1803     3.0 1349048073
## 1805     1.0  997937374
## 1806     3.0  997937366
## 1807     1.0  997937822
## 1808     3.0 1039243666
## 1809     3.0 1033343955
## 1810     2.0 1033345068
## 1811     2.0  997937346
## 1812     3.0  997937775
## 1813     1.0  997937384
## 1814     3.0 1416119736
## 1815     3.0  997939653
## 1817     1.5 1096005216
## 1818     1.0  997937822
## 1819     2.0 1054774846
## 1820     2.5 1075143282
## 1822     3.0  997938203
## 1823     3.0  997938617
## 1824     3.0  997937575
## 1826     1.0  997937346
## 1827     1.0 1033344625
## 1828     3.0 1033343955
## 1829     1.5 1469330631
## 1830     3.0  997937346
## 1831     1.0  997937551
## 1832     2.0  997937544
## 1833     1.0  997937539
## 1834     2.0  997937530
## 1836     3.0  997937519
## 1837     2.0  997937366
## 1838     3.0  997937366
## 1841     2.0 1374637779
## 1842     2.0 1039243705
## 1843     3.5 1054449465
## 1844     3.0 1052896975
## 1847     1.0 1044348420
## 1848     3.5 1075143297
## 1849     1.0 1039243705
## 1850     2.5 1054449369
## 1851     3.0 1166586875
## 1852     2.5 1416119762
## 1853     2.0 1044348492
## 1854     2.0 1054449351
## 1857     1.5 1054449340
## 1859     3.0 1054449355
## 1860     3.0 1033343866
## 1861     1.0 1040206325
## 1863     2.0 1033343828
## 1866     1.0 1469330599
## 1868     2.0 1033343815
## 1869     2.0 1349622574
## 1870     1.0 1040205965
## 1872     1.5 1425876112
## 1874     1.0 1033343815
## 1875     3.5 1443385401
## 1876     3.5 1120209745
## 1878     2.0 1033343815
## 1879     1.0 1033344055
## 1880     2.0 1041532617
## 1881     1.5 1054450221
## 1882     3.0 1033343866
## 1884     1.0 1096005077
## 1886     1.5 1416119882
## 1887     3.0 1345397962
## 1888     1.0 1033343934
## 1890     2.0 1033343901
## 1891     0.5 1416119747
## 1892     1.0 1033344044
## 1893     1.0 1033343934
## 1894     3.0 1033343919
## 1895     2.0 1122925555
## 1896     1.5 1075143288
## 1897     1.0 1033343866
## 1898     1.0 1033344286
## 1900     0.5 1054449705
## 1901     3.0 1033343934
## 1902     3.5 1416120007
## 1903     3.0 1033343841
## 1904     1.5 1465880704
## 1905     2.5 1367800223
## 1906     0.5 1416119542
## 1907     2.5 1465794274
## 1908     1.0 1033343919
## 1909     3.5 1054449455
## 1910     3.5 1345397799
## 1911     3.5 1465954627
## 1912     1.0 1039243048
## 1913     1.0 1033343901
## 1914     2.5 1465881201
## 1916     3.0 1039243048
## 1917     2.0 1166586831
## 1918     2.5 1367800228
## 1919     3.0 1039243048
## 1920     2.0 1052896740
## 1921     1.5 1096005195
## 1922     2.0 1033344065
## 1923     1.0 1039243069
## 1924     1.0 1040205624
## 1926     2.0 1033344188
## 1927     1.0 1033344374
## 1928     1.0 1033344188
## 1929     1.0 1033344188
## 1930     0.5 1166586482
## 1932     2.0 1052896819
## 1933     2.0 1033344374
## 1935     1.0 1033344129
## 1936     2.0 1033344119
## 1937     1.0 1033344145
## 1938     3.0 1054503542
## 1940     1.0 1033344137
## 1941     1.0 1033344334
## 1942     3.0 1035258747
## 1943     2.0 1035258747
## 1944     3.0 1035258747
## 1945     2.5 1054513297
## 1946     3.5 1222576379
## 1947     1.5 1084489317
## 1948     0.5 1425876082
## 1949     1.5 1055439475
## 1950     3.0 1034544351
## 1953     3.5 1075142963
## 1955     2.0 1039242955
## 1957     3.0 1052906939
## 1958     1.0 1416119666
## 1959     3.0 1166587383
## 1960     1.0 1066591270
## 1963     2.0 1357110234
## 1964     1.0 1096005087
## 1965     1.0 1096005111
## 1967     1.0 1084489297
## 1968     2.5 1163876422
## 1970     3.0 1443385275
## 1971     3.0 1040205624
## 1972     2.5 1134521661
## 1973     1.0 1096005123
## 1975     1.5 1096005130
## 1976     2.0 1093027992
## 1977     3.0 1046209643
## 1978     3.0 1465954655
## 1979     2.0 1416119908
## 1980     0.5 1416119753
## 1981     0.5 1416119690
## 1982     1.0 1046209705
## 1983     3.5 1416119611
## 1984     3.0 1046209705
## 1985     0.5 1096005101
## 1987     1.0 1163876393
## 1988     1.0 1416119893
## 1989     0.5 1425876025
## 1990     1.5 1096005116
## 1991     2.5 1075142952
## 1992     2.5 1055439424
## 1994     3.0 1120208617
## 1995     3.0 1052896685
## 1996     1.0 1054271424
## 1997     2.0 1134522002
## 1998     1.0 1061496771
## 1999     3.0 1122576748
## 2000     3.0 1166585438
## 2001     1.5 1084489293
## 2002     3.0 1465793939
## 2003     3.5 1054449659
## 2004     3.5 1055439392
## 2005     2.5 1056617566
## 2006     3.5 1058249439
## 2007     2.5 1134521973
## 2008     2.0 1061496778
## 2009     2.5 1058249457
## 2010     3.5 1061496766
## 2011     1.0 1061496761
## 2012     1.5 1082220233
## 2013     3.0 1416119958
## 2014     1.0 1096005208
## 2015     1.5 1082220241
## 2017     3.5 1120209771
## 2018     2.0 1082220217
## 2019     3.5 1065197251
## 2020     0.5 1425876028
## 2021     1.0 1465881072
## 2022     2.0 1082220258
## 2025     2.5 1067797435
## 2026     2.0 1082220208
## 2027     3.5 1093981691
## 2028     3.5 1068955127
## 2029     1.0 1096005187
## 2030     1.0 1067797349
## 2031     1.0 1096005180
## 2032     2.5 1416119807
## 2033     1.0 1465954640
## 2035     1.5 1338699263
## 2036     1.0 1075142924
## 2037     3.0 1088621558
## 2039     1.0 1347936706
## 2040     2.0 1083003232
## 2042     2.5 1240203829
## 2044     2.5 1097770851
## 2045     3.0 1257734253
## 2046     2.5 1348976559
## 2047     2.0 1367800233
## 2048     2.5 1374637760
## 2049     3.5 1240203970
## 2050     3.5 1465954687
## 2051     3.5 1132469120
## 2053     3.0 1120209290
## 2054     3.5 1347936794
## 2055     3.0 1096005056
## 2056     2.0 1088621554
## 2057     1.5 1088621484
## 2058     1.5 1075142916
## 2059     3.0 1120209458
## 2060     1.0 1075142909
## 2061     0.5 1416119886
## 2062     1.0 1096005109
## 2063     1.0 1166587408
## 2064     3.5 1193435338
## 2065     1.0 1093028019
## 2066     3.0 1082220195
## 2067     2.0 1222576372
## 2068     0.5 1416119755
## 2069     1.5 1082220223
## 2070     3.0 1465954961
## 2071     2.0 1093028001
## 2073     1.0 1097770844
## 2074     1.5 1134521979
## 2075     0.5 1093981610
## 2076     1.0 1425876074
## 2077     1.5 1416119694
## 2078     3.5 1416119705
## 2079     1.5 1166587430
## 2081     1.5 1240203696
## 2082     3.5 1093070784
## 2083     3.5 1345397687
## 2084     2.5 1345398305
## 2085     3.0 1345381192
## 2086     2.5 1345397672
## 2087     3.0 1096005042
## 2088     2.0 1093027976
## 2090     2.5 1134522006
## 2092     2.5 1088621517
## 2093     1.5 1163876352
## 2094     2.5 1166587363
## 2095     3.0 1416119547
## 2096     1.0 1122576284
## 2097     1.5 1257734240
## 2098     1.5 1465880288
## 2099     2.5 1361078268
## 2100     3.5 1120209740
## 2101     3.5 1163876408
## 2102     3.0 1096005049
## 2103     3.0 1093027850
## 2105     3.0 1349622612
## 2106     1.0 1163876378
## 2107     2.0 1120210020
## 2108     3.5 1093027853
## 2109     0.5 1416119915
## 2110     2.0 1134521997
## 2111     3.0 1166586987
## 2112     2.5 1349622634
## 2113     1.0 1166981777
## 2114     2.5 1122925517
## 2115     2.5 1120210034
## 2118     2.5 1166585434
## 2119     1.0 1166981765
## 2121     2.0 1357110243
## 2122     3.0 1134522096
## 2123     3.5 1134522079
## 2124     2.0 1101423869
## 2125     2.0 1163876370
## 2126     3.5 1374637712
## 2127     2.5 1374637844
## 2128     2.0 1166981834
## 2133     2.0 1166587331
## 2134     2.5 1240203954
## 2135     2.5 1349622724
## 2137     1.0 1134521148
## 2138     1.0 1348976609
## 2140     2.5 1347936774
## 2141     1.5 1127035004
## 2142     2.0 1120208607
## 2143     1.5 1136904803
## 2144     0.5 1416119604
## 2145     1.5 1416119717
## 2146     0.5 1361831527
## 2147     3.5 1127035028
## 2148     3.5 1136087271
## 2149     0.5 1127035016
## 2150     3.5 1338702522
## 2151     3.5 1132469115
## 2153     3.5 1136904851
## 2155     0.5 1316395912
## 2156     1.5 1361078474
## 2157     1.0 1416119744
## 2158     1.0 1141391741
## 2159     1.0 1316395893
## 2160     1.5 1367765144
## 2161     0.5 1357110418
## 2162     3.5 1141391837
## 2163     3.0 1135737540
## 2164     2.5 1141391844
## 2165     1.5 1138537176
## 2166     1.0 1416119600
## 2167     2.0 1465954599
## 2168     2.0 1141391812
## 2169     2.5 1425876066
## 2171     1.5 1338698465
## 2173     2.0 1416119810
## 2174     1.5 1416119662
## 2175     2.5 1258259502
## 2177     1.0 1465880318
## 2178     2.5 1240211404
## 2179     2.0 1222576358
## 2181     1.0 1465794625
## 2182     2.5 1316408165
## 2183     1.0 1240211399
## 2184     1.5 1357109999
## 2186     2.5 1316396016
## 2187     1.0 1425876007
## 2188     2.5 1338698829
## 2189     0.5 1416119707
## 2191     1.5 1465794277
## 2192     1.5 1416119790
## 2193     2.0 1416120304
## 2194     0.5 1416119889
## 2195     3.0 1169616283
## 2196     0.5 1338699292
## 2197     1.0 1338702417
## 2198     2.0 1367800237
## 2199     2.0 1416119963
## 2200     3.5 1374637631
## 2201     3.5 1222576367
## 2202     1.5 1245382906
## 2203     2.5 1465793916
## 2204     0.5 1416119898
## 2205     1.0 1347937644
## 2207     1.5 1348976680
## 2208     3.0 1222575856
## 2212     2.5 1316395906
## 2213     2.5 1465880683
## 2214     3.5 1443384396
## 2215     3.5 1245361883
## 2217     1.5 1222576350
## 2219     2.0 1347936470
## 2220     1.5 1349622540
## 2221     1.5 1347936786
## 2222     2.0 1443384826
## 2223     1.5 1338699286
## 2224     3.5 1349622826
## 2225     3.5 1425876037
## 2226     1.5 1443385025
## 2227     2.5 1338702524
## 2228     3.0 1338698806
## 2230     2.0 1416119677
## 2231     1.0 1425875994
## 2232     2.5 1258259468
## 2234     3.5 1338698617
## 2236     1.0 1416120041
## 2237     1.0 1374638435
## 2238     3.5 1222578076
## 2239     2.5 1416119972
## 2240     2.0 1361078252
## 2241     2.0 1338698362
## 2242     2.5 1443384839
## 2243     1.0 1416119594
## 2244     2.0 1374638451
## 2246     3.0 1443385030
## 2247     1.0 1416119686
## 2248     1.5 1425876060
## 2250     1.5 1338702423
## 2251     1.0 1338698854
## 2252     1.5 1347936713
## 2254     1.5 1240203919
## 2257     2.5 1347936669
## 2258     3.5 1216576555
## 2259     1.0 1338698814
## 2260     3.5 1357110059
## 2261     1.5 1349622715
## 2262     0.5 1216576611
## 2263     3.0 1216576596
## 2265     1.0 1316396154
## 2266     1.0 1416119795
## 2267     1.0 1361831545
## 2268     3.5 1316395628
## 2270     3.5 1240211388
## 2271     1.0 1357110065
## 2272     2.0 1222024906
## 2273     1.0 1257734243
## 2274     2.0 1349622731
## 2275     3.5 1367764780
## 2276     3.5 1443384812
## 2278     0.5 1357110411
## 2279     3.5 1245309336
## 2280     2.0 1338698608
## 2281     3.0 1348976367
## 2282     2.0 1245021120
## 2283     1.0 1416119731
## 2284     1.5 1416119711
## 2286     0.5 1465880993
## 2287     3.0 1238804089
## 2288     1.5 1240202854
## 2289     1.0 1465880257
## 2290     1.5 1465880651
## 2291     3.0 1257733143
## 2292     0.5 1338698623
## 2293     1.5 1426110601
## 2294     1.5 1257733150
## 2295     3.5 1245021164
## 2296     1.5 1374638441
## 2298     3.0 1338698899
## 2300     3.5 1338698337
## 2301     2.0 1316396161
## 2302     1.0 1465954712
## 2305     3.0 1374637633
## 2306     2.0 1338698886
## 2307     1.0 1338702414
## 2308     2.0 1389440855
## 2309     1.0 1361831532
## 2310     0.5 1465880996
## 2313     3.0 1257733119
## 2315     3.5 1261945002
## 2317     2.5 1374637773
## 2318     2.5 1465793997
## 2319     3.5 1257734180
## 2320     1.5 1465794388
## 2321     2.5 1465793912
## 2322     3.0 1465793920
## 2323     2.0 1257735545
## 2324     1.0 1425876002
## 2325     2.0 1465880969
## 2326     2.5 1338702430
## 2327     1.5 1338698882
## 2328     1.0 1357110070
## 2330     1.0 1273090173
## 2331     3.5 1316395633
## 2332     0.5 1338698316
## 2334     1.5 1367764758
## 2335     0.5 1361831555
## 2336     2.0 1458506610
## 2338     3.0 1273090163
## 2339     3.0 1361831522
## 2340     2.5 1379040852
## 2341     2.5 1367765175
## 2343     1.0 1316395588
## 2344     3.0 1458506646
## 2345     3.0 1316395983
## 2346     2.0 1338698896
## 2348     2.5 1367765128
## 2350     2.5 1458506381
## 2351     2.5 1465880302
## 2352     1.5 1349048062
## 2353     1.0 1349622587
## 2354     0.5 1367765181
## 2355     1.5 1338698870
## 2356     1.0 1465794431
## 2357     3.0 1374638009
## 2358     2.0 1361078260
## 2360     2.5 1465793930
## 2362     3.0 1367801466
## 2363     3.0 1374638035
## 2364     3.5 1348976539
## 2365     1.0 1338698369
## 2366     3.0 1316395900
## 2367     2.0 1458506571
## 2368     3.0 1367801474
## 2369     1.0 1338698918
## 2370     3.0 1338698461
## 2371     3.0 1316396252
## 2372     0.5 1465880518
## 2373     1.0 1361078285
## 2374     3.5 1367801456
## 2375     1.0 1316396136
## 2376     0.5 1367765123
## 2378     3.0 1345381190
## 2379     2.5 1465880243
## 2380     2.5 1367801369
## 2381     1.0 1347936749
## 2384     1.5 1348976211
## 2385     1.0 1316395573
## 2386     1.5 1338698824
## 2389     2.5 1458506580
## 2390     3.5 1458507263
## 2391     0.5 1458505901
## 2393     1.5 1316395580
## 2394     0.5 1374638031
## 2395     1.0 1347936763
## 2396     0.5 1338698810
## 2397     1.0 1458507259
## 2399     2.5 1458506136
## 2400     2.0 1443385461
## 2401     3.0 1416120053
## 2402     2.5 1338698356
## 2403     1.0 1348976202
## 2404     3.5 1386367929
## 2405     1.5 1316408269
## 2407     0.5 1316395783
## 2408     1.5 1367801460
## 2409     3.0 1374638024
## 2410     1.5 1458506641
## 2412     3.0 1338697857
## 2413     1.0 1349048081
## 2414     3.5 1338698848
## 2415     2.5 1367801470
## 2417     0.5 1361078276
## 2419     3.5 1367801363
## 2420     2.5 1348976195
## 2421     3.0 1374637765
## 2422     1.5 1338698014
## 2423     1.0 1338698247
## 2424     0.5 1465880427
## 2425     0.5 1338697915
## 2426     1.0 1347936860
## 2427     3.0 1345350956
## 2428     2.0 1348979143
## 2429     1.0 1348976183
## 2430     2.5 1338698134
## 2433     3.0 1338698158
## 2434     3.0 1338697924
## 2435     1.5 1465880962
## 2436     2.5 1338698152
## 2437     1.0 1361831455
## 2438     1.0 1338699137
## 2439     3.0 1338697920
## 2440     2.0 1458507291
## 2441     2.5 1338697984
## 2442     3.5 1338697905
## 2443     1.0 1338697996
## 2444     1.0 1338698001
## 2445     1.0 1338698006
## 2447     2.5 1338697968
## 2448     1.5 1345351002
## 2449     1.5 1338697964
## 2450     1.5 1345350968
## 2451     1.0 1374638428
## 2452     1.0 1345350979
## 2453     1.0 1345350959
## 2454     0.5 1465880715
## 2455     1.5 1347937652
## 2456     0.5 1357109952
## 2457     3.5 1345350961
## 2458     1.0 1357109941
## 2459     1.5 1345350995
## 2460     3.0 1361831420
## 2461     2.0 1345350973
## 2462     3.5 1361076608
## 2463     1.5 1374637996
## 2464     2.5 1357109969
## 2465     2.5 1458506349
## 2466     2.5 1367764836
## 2467     3.5 1386368013
## 2468     3.5 1361076604
## 2469     2.5 1426110392
## 2470     3.0 1386367936
## 2471     2.5 1389482906
## 2472     0.5 1465793928
## 2473     0.5 1425876388
## 2474     0.5 1416119923
## 2475     3.0 1367764716
## 2476     1.0 1465880234
## 2477     3.5 1458506339
## 2478     1.5 1425876390
## 2479     1.0 1357109923
## 2480     2.5 1386368031
## 2482     2.0 1361076617
## 2483     0.5 1465880648
## 2484     2.5 1361831156
## 2485     1.0 1400818425
## 2486     3.0 1381534422
## 2488     1.5 1465793952
## 2489     3.0 1386367955
## 2490     1.0 1367764695
## 2491     3.0 1367764864
## 2492     0.5 1465880292
## 2493     3.0 1465880371
## 2494     3.5 1400818444
## 2495     1.0 1386367999
## 2496     1.5 1458506656
## 2497     2.0 1389482894
## 2498     3.0 1386367981
## 2499     2.5 1386367968
## 2500     0.5 1400818394
## 2501     1.0 1458506599
## 2502     2.5 1386367923
## 2504     0.5 1465794267
## 2505     1.0 1465954520
## 2506     1.0 1465880282
## 2507     1.5 1465880264
## 2508     3.5 1458506673
## 2509     1.0 1458506703
## 2510     3.0 1425875562
## 2511     3.0 1381534394
## 2512     3.5 1386367735
## 2514     3.5 1425875553
## 2515     2.0 1443384429
## 2516     1.0 1386367830
## 2517     3.5 1386367813
## 2518     2.0 1389440765
## 2519     3.5 1416120264
## 2520     1.5 1416120141
## 2522     0.5 1465881258
## 2525     2.0 1416120159
## 2526     0.5 1458506323
## 2527     0.5 1465954590
## 2528     1.0 1465954969
## 2529     1.5 1407125286
## 2530     1.0 1458506369
## 2531     0.5 1465794437
## 2532     1.0 1416119568
## 2533     3.5 1425875392
## 2534     1.5 1416120169
## 2535     2.5 1465793948
## 2536     3.0 1425875503
## 2538     0.5 1416120162
## 2539     0.5 1416120149
## 2540     1.0 1416120159
## 2541     2.0 1465880696
## 2542     2.5 1443385454
## 2543     1.0 1425875482
## 2544     3.5 1416120099
## 2550     3.5 1407125270
## 2551     2.5 1425875460
## 2552     2.0 1426110071
## 2553     3.5 1416120171
## 2554     1.5 1443384078
## 2557     1.0 1465880699
## 2559     1.5 1425875476
## 2560     0.5 1465794105
## 2561     2.0 1425875488
## 2562     0.5 1425875497
## 2563     1.0 1425875574
## 2564     1.0 1465793290
## 2567     3.5 1443384500
## 2569     1.5 1425875413
## 2570     3.5 1443384091
## 2571     1.0 1425875458
## 2572     0.5 1425875401
## 2573     0.5 1465794406
## 2574     0.5 1425875449
## 2576     1.0 1425875426
## 2578     3.5 1443384084
## 2579     1.5 1443384307
## 2580     2.0 1443384336
## 2581     1.5 1425875443
## 2582     1.5 1443384294
## 2583     3.0 1443384317
## 2584     3.0 1465793971
## 2586     1.0 1443384389
## 2587     3.5 1458505928
## 2588     3.0 1466051442
## 2589     3.0 1443384000
## 2590     3.0 1443384283
## 2591     0.5 1443384352
## 2592     1.0 1458505916
## 2593     3.0 1465793115
## 2594     2.5 1465793601
## 2595     1.0 1443385387
## 2596     2.5 1458505982
## 2597     1.5 1443384322
## 2598     2.0 1458506093
## 2599     0.5 1465794100
## 2600     2.0 1465793706
## 2601     2.0 1458506081
## 2602     3.0 1443384337
## 2603     0.5 1465794103
## 2604     3.0 1458506026
## 2605     3.0 1443384330
## 2606     3.0 1458507347
## 2607     3.5 1458505912
## 2610     1.0 1458505921
## 2611     0.5 1465794150
## 2612     1.0 1469330276
## 2613     3.0 1467259301
## 2614     3.0 1469330245
## 2615     3.0 1458506089
## 2616     1.5 1458506078
## 2617     3.0 1465793719
## 2618     3.5 1458505989
## 2619     3.0 1465793116
## 2620     1.0 1443384531
## 2621     2.5 1458505973
## 2622     3.0 1458505986
## 2623     3.5 1465793975
## 2624     2.0 1458506009
## 2625     2.5 1465956541
## 2628     2.5 1443384516
## 2629     0.5 1465793205
## 2630     3.5 1458505911
## 2631     3.0 1465793179
## 2632     2.5 1458506017
## 2633     1.0 1465793183
## 2634     3.0 1465793201
## 2635     3.5 1458506016
## 2636     3.5 1458505924
## 2637     3.0 1465793208
## 2638     3.5 1458506107
## 2640     0.5 1465793700
## 2641     2.0 1465793170
## 2642     1.5 1465880375
## 2643     3.0 1460076733
## 2644     1.0 1465793639
## 2645     0.5 1465793691
## 2646     3.5 1465793621
## 2647     1.5 1465793612
## 2648     2.0 1467259316
## 2649     1.5 1465793630
## 2650     3.5 1465794051
## 2651     3.5 1467259294
## 2652     1.0 1465793091
## 2653     2.0 1465880080
## 2654     1.0 1465793093
## 2656     0.5 1469330481
## 2657     1.0 1469330238
## 2658     2.5 1466802905
## 2659     1.0 1469330270
## 2660     2.0 1469330266
## 2662     0.5 1469330307
## 2670     3.5 1178364916
## 2672     3.5 1137577912
## 2675     3.0 1137577645
## 2678     3.5 1137577979
## 2686     3.0 1137577776
## 2690     3.5 1137577905
## 2701     3.5 1127468646
## 2702     3.0 1127469509
## 2705     2.5 1127469577
## 2707     2.0 1127471027
## 2708     3.5 1127474688
## 2709     2.0 1127469552
## 2712     3.5 1127471192
## 2714     3.5 1127470013
## 2715     2.5 1127469401
## 2716     0.5 1127469444
## 2718     0.5 1127469407
## 2719     0.5 1127475344
## 2724     3.0 1127469416
## 2726     3.5 1127469440
## 2729     2.5 1127469466
## 2736     3.5 1127470036
## 2743     3.5 1127472146
## 2745     3.5 1127470622
## 2746     3.5 1127470607
## 2747     2.5 1127473110
## 2749     2.5 1127469628
## 2752     2.0 1127471148
## 2753     3.5 1127470400
## 2755     1.0 1127472932
## 2760     3.5 1127473503
## 2770     3.0 1127474779
## 2771     0.5 1127472490
## 2776     2.5 1127470114
## 2777     3.5 1127470489
## 2779     2.0 1127472442
## 2780     3.5 1127469694
## 2786     2.0 1127470062
## 2788     3.0 1127468688
## 2792     3.0 1127469661
## 2793     2.5 1127475516
## 2794     2.5 1127469521
## 2795     2.5 1127469976
## 2799     3.5 1127469988
## 2804     0.5 1127472770
## 2805     2.5 1127470069
## 2808     3.0 1127469129
## 2812     3.0 1127469612
## 2817     3.5 1127473090
## 2819     3.5 1127469494
## 2823     3.5 1127475491
## 2826     2.5 1127473955
## 2828     2.0 1127470030
## 2831     3.5 1127470130
## 2834     3.5 1127468671
## 2839     1.0 1127469848
## 2840     2.5 1127470166
## 2846     3.0 1127472715
## 2847     3.0 1127469890
## 2848     3.5 1127473623
## 2850     3.0 1127469619
## 2852     3.5 1127473627
## 2853     3.5 1127469711
## 2854     3.0 1127469824
## 2857     2.0 1127469746
## 2859     3.5 1127469374
## 2861     3.0 1127469690
## 2862     2.5 1127472212
## 2869     2.5 1127470023
## 2870     2.0 1127469202
## 2875     2.5 1127469817
## 2879     3.5 1127470537
## 2884     3.0 1127472085
## 2887     3.5 1127470327
## 2889     3.5 1127470285
## 2891     1.0 1127468701
## 2894     1.5 1127469852
## 2897     3.0 1127475013
## 2899     3.5 1127470473
## 2900     0.5 1127470119
## 2902     3.5 1127471221
## 2911     3.5 1127473495
## 2912     0.5 1127470004
## 2918     3.0 1127473364
## 2922     0.5 1127469827
## 2924     2.5 1127474324
## 2927     2.5 1127473845
## 2928     3.0 1127475457
## 2929     0.5 1127470247
## 2930     1.5 1127475188
## 2931     1.5 1127469195
## 2933     3.5 1127470134
## 2936     0.5 1127470299
## 2937     2.0 1127473010
## 2942     2.5 1127475440
## 2944     2.0 1127473119
## 2945     3.0 1127472423
## 2948     2.0 1127471062
## 2949     3.5 1127475067
## 2953     3.5 1127474362
## 2956     3.0 1127474841
## 2958     3.5 1127475334
## 2959     1.0 1127472991
## 2960     0.5 1127472976
## 2961     2.0 1127475308
## 2962     2.0 1127473829
## 2963     2.0 1127470144
## 2964     2.0 1127472896
## 2965     0.5 1127472979
## 2967     3.0 1127469259
## 2968     0.5 1127473548
## 2971     3.5 1127475452
## 2974     3.5 1127471196
## 2975     1.5 1127470254
## 2979     3.5 1127475092
## 2980     2.0 1127471327
## 2983     3.5 1127475055
## 2984     3.5 1127473832
## 2988     2.5 1127470546
## 2990     2.5 1127474852
## 2993     3.5 1127471213
## 3000     2.0 1127473904
## 3006     1.0 1127475148
## 3014     3.5 1127471336
## 3015     0.5 1127475448
## 3016     3.0 1127474877
## 3018     3.0 1127472844
## 3019     3.0 1127470866
## 3022     3.5 1127471100
## 3023     3.0 1127473138
## 3024     2.0 1127473808
## 3025     3.5 1127472829
## 3026     3.0 1127471144
## 3027     2.0 1127473772
## 3028     0.5 1127473349
## 3030     0.5 1127475524
## 3031     3.5 1127470706
## 3033     3.0 1127475246
## 3035     3.0 1127471549
## 3037     3.5 1127470788
## 3038     2.5 1127471208
## 3039     3.5 1127468773
## 3041     3.0 1127475110
## 3044     3.0 1127475574
## 3047     3.0 1127472057
## 3050     2.5 1127475161
## 3051     1.0 1127473991
## 3052     2.0 1127475261
## 3053     3.0 1127475175
## 3055     3.0  856006982
## 3057     3.0  856006982
## 3058     3.0  856007219
## 3059     2.0  856007147
## 3061     3.0  856007359
## 3064     3.0  856006982
## 3065     3.0  856007075
## 3067     2.0  856007279
## 3068     3.0  856007359
## 3069     2.0  856007147
## 3070     3.0  856007495
## 3073     3.0  856007409
## 3074     3.0  856006886
## 3076     3.0  856007147
## 3078     3.0  856007075
## 3079     3.0  856007075
## 3080     3.0  856006982
## 3083     3.0  856007359
## 3084     3.0  856006886
## 3086     3.0  856007279
## 3088     3.0  856007219
## 3090     2.0  856006885
## 3091     3.0  856007219
## 3092     3.0  856007359
## 3093     1.0  856007147
## 3094     2.0  856007587
## 3095     3.0  856006885
## 3098     3.0  856007075
## 3101     3.0  856092135
## 3102     3.0  856007219
## 3104     3.0  856007279
## 3105     1.0  856007587
## 3106     3.0  855190091
## 3107     3.0  855194773
## 3108     3.0  855194718
## 3109     3.0  855192868
## 3110     3.0  855190128
## 3111     3.0  855190128
## 3112     3.0  855190232
## 3113     3.0  855192496
## 3114     3.0  855192773
## 3117     3.0  855193244
## 3118     3.0  855192868
## 3119     1.0  855194301
## 3120     3.0  855190091
## 3121     3.0  855190349
## 3122     3.0  855190091
## 3124     3.0  855192496
## 3125     3.0  855190954
## 3126     3.0  855193076
## 3127     3.0  855192210
## 3128     3.0  855191478
## 3130     3.0  855193488
## 3132     3.0  855190167
## 3133     3.0  855192717
## 3134     3.0  855190167
## 3135     3.0  855190349
## 3136     2.0  855193770
## 3138     3.0  855190261
## 3139     3.0  855193220
## 3140     3.0  855190290
## 3141     3.0  855190091
## 3143     3.0  855190531
## 3144     3.0  855192656
## 3145     3.0  855193530
## 3147     3.0  855190128
## 3148     3.0  855194378
## 3149     3.0  855191429
## 3150     3.0  855190091
## 3152     3.0  855191289
## 3153     3.0  855193751
## 3158     3.0  855191227
## 3159     2.0  855194264
## 3160     1.0  855194345
## 3162     2.0  855192496
## 3163     2.0  855193865
## 3164     3.0  855192957
## 3166     3.0  855193806
## 3167     3.0  855191478
## 3168     3.0  855193054
## 3169     3.0  855192120
## 3170     3.0  855194790
## 3171     2.0  855193510
## 3172     3.0  855191324
## 3176     3.0  855194087
## 3177     3.0  855191324
## 3180     3.0  855193530
## 3181     3.0  855191430
## 3185     1.0  855194773
## 3186     3.0  855191882
## 3187     1.0  855194605
## 3188     3.0  855192982
## 3189     3.0  855192910
## 3194     3.0  855193220
## 3198     3.0  855194824
## 3202     3.0  855192814
## 3203     3.0  855193274
## 3204     3.0  855194773
## 3206     3.0  855193643
## 3208     3.0  855193404
## 3209     3.0  855194560
## 3210     3.0  855191289
## 3211     3.0  855192910
## 3213     3.0  855193558
## 3214     3.0  855193864
## 3215     3.0  855192868
## 3216     3.0  855192178
## 3220     3.0  855195078
## 3221     3.0  855192385
## 3222     3.0  855192254
## 3223     3.0  855194531
## 3224     3.0  855192636
## 3225     3.0  855193244
## 3226     1.0  855192254
## 3228     3.0  855190166
## 3229     3.0  855191289
## 3230     3.0  855193845
## 3231     3.0  855191228
## 3232     3.0  855192120
## 3233     3.0  855193914
## 3234     3.0  855193558
## 3235     3.0  855192605
## 3236     3.0  855193488
## 3237     3.0  855191701
## 3240     3.0  855194301
## 3241     3.0  855193330
## 3242     3.0  855192455
## 3243     3.0  855193404
## 3244     3.0  855192001
## 3245     3.0  855194345
## 3246     3.0  855193700
## 3247     3.0  855193599
## 3253     3.0  855192558
## 3254     3.0  855192419
## 3255     3.0  855191654
## 3256     2.0  855193806
## 3258     1.0  855192308
## 3259     2.0  855192940
## 3260     1.0  855193330
## 3261     3.0  855193449
## 3263     3.0  855190128
## 3264     3.0  855194264
## 3266     3.0  855193845
## 3267     3.0  855192558
## 3268     3.0  855192061
## 3270     1.0  855193700
## 3272     2.0  855193301
## 3273     1.0  855194590
## 3274     3.0  855193449
## 3275     3.0  855193301
## 3277     3.0  855192717
## 3281     3.0  855192688
## 3284     3.0  855192254
## 3286     3.0  855192033
## 3287     3.0  855190447
## 3288     1.0  855194052
## 3289     3.0  855194743
## 3290     3.0  855195077
## 3291     3.0  855191383
## 3292     3.0  855191289
## 3294     3.0  855191229
## 3298     3.0  855193530
## 3302     3.0  855190427
## 3303     3.0  855190199
## 3304     3.0  855190091
## 3305     3.0  855190167
## 3307     3.0  855190382
## 3310     3.0  855190606
## 3311     3.0  855193404
## 3312     3.0  855190128
## 3313     3.0  855190091
## 3314     3.0  855190290
## 3316     3.0  855190091
## 3317     3.0  855190167
## 3318     3.0  855190349
## 3319     3.0  855191702
## 3320     3.0  855190167
## 3321     3.0  855190382
## 3322     3.0  855191324
## 3323     3.0  855190232
## 3324     3.0  855190199
## 3326     2.0  855190382
## 3327     3.0  855194072
## 3329     3.0  855192496
## 3334     3.0  855191552
## 3336     3.0  855193012
## 3346     3.0  855192814
## 3347     3.0  855192582
## 3359     3.0  855193700
## 3363     3.0  855192347
## 3368     3.0  855192178
## 3370     3.0  855190382
## 3372     3.0  855191775
## 3374     3.0  855191289
## 3375     3.0  855195268
## 3378     3.0  855193599
## 3381     3.0  855194052
## 3382     1.0  855192773
## 3383     3.0  855192910
## 3387     3.0  855193194
## 3390     3.0  855192940
## 3391     3.0  855194282
## 3392     3.0  855195373
## 3394     3.0  855192347
## 3398     3.0  855192254
## 3399     3.0  855192740
## 3400     3.0  855191882
## 3404     3.0  855190427
## 3408     3.0  855191701
## 3424     2.0  855192814
## 3432     3.0  855192517
## 3442     3.0  855192868
## 3443     3.0  855191702
## 3452     3.0  855192061
## 3460     3.0  855192688
## 3463     3.0  855192455
## 3464     3.0  855191964
## 3466     3.0  855192605
## 3472     3.0  855191846
## 3476     3.0  855193035
## 3477     3.0  855192090
## 3480     1.0  855192455
## 3482     3.0  855192210
## 3483     3.0  855192120
## 3484     3.0  855193274
## 3485     3.0  855192558
## 3486     3.0  855193628
## 3487     3.0  855192308
## 3488     3.0  855193806
## 3489     2.0  855193932
## 3491     3.0  855193599
## 3492     3.0  855194641
## 3493     3.0  855192773
## 3494     3.0  855193358
## 3498     3.0  855192835
## 3500     3.0  855192814
## 3502     3.0  855190199
## 3506     2.0  855193035
## 3507     3.0  855193845
## 3508     3.0  855192496
## 3510     3.0  855192740
## 3511     3.0  855193700
## 3512     2.0  855193244
## 3513     3.0  855193194
## 3514     3.0  855194670
## 3515     1.0  855194188
## 3516     3.0  855193076
## 3518     1.0  855193946
## 3519     1.0  855194693
## 3520     2.0  855190404
## 3521     3.0  855190404
## 3523     3.0  855193012
## 3524     3.0  855190404
## 3525     3.0  855192910
## 3526     3.0  855192982
## 3527     3.0  855192254
## 3529     3.5 1238729767
## 3530     2.5 1238729782
## 3531     3.5 1238729861
## 3532     3.5 1224042765
## 3533     2.0 1238729747
## 3534     3.0 1238729755
## 3536     2.5 1224042795
## 3537     1.0 1238729849
## 3538     1.5 1224043057
## 3539     0.5 1238729735
## 3540     3.5 1238729834
## 3542     1.0 1238729802
## 3543     2.0 1238729739
## 3544     3.5 1238729826
## 3545     1.0 1238729854
## 3548     3.0 1238729744
## 3550     3.0 1238729842
## 3551     2.5 1224043054
## 3552     3.5 1238729785
## 3553     2.0 1238729764
## 3555     0.5 1238729741
## 3558     2.0 1238729789
## 3561     3.5 1238729831
## 3565     2.0 1238729822
## 3566     3.0 1224043134
## 3567     3.5 1238729311
## 3568     2.0 1224043067
## 3569     3.0 1224042752
## 3570     1.5 1238729863
## 3574     2.0 1238729793
## 3578     3.0 1238729777
## 3579     1.0 1238730775
## 3581     3.5 1238729811
## 3582     3.5 1238730771
## 3583     3.0 1224042777
## 3584     2.5 1224042802
## 3589     3.0 1224042811
## 3593     3.5 1238729839
## 3594     0.5 1238731034
## 3595     0.5 1224043052
## 3596     0.5 1224042755
## 3597     0.5 1238729331
## 3599     2.0 1224042780
## 3600     2.0 1224042827
## 3603     3.5 1224043145
## 3611     1.0 1224043213
## 3613     3.5 1224043257
## 3614     1.5 1224043185
## 3615     2.5 1224043294
## 3620     1.0 1238729405
## 3624     3.5 1224043018
## 3627     3.0  853846478
## 3628     3.0  853846669
## 3631     3.0  853157544
## 3632     3.0  853846547
## 3634     3.0  853157476
## 3637     2.0  853846288
## 3638     3.0  853847536
## 3639     2.0  853846511
## 3640     3.0  853846669
## 3641     3.0  853846207
## 3642     3.0  853847723
## 3643     3.0  853857742
## 3644     3.0  853846400
## 3645     3.0  853847574
## 3646     3.0  853846400
## 3647     3.0  853846752
## 3648     3.0  853847612
## 3651     3.0  853852608
## 3652     3.0  853846783
## 3653     3.0  853856221
## 3654     3.0  853846579
## 3655     3.0  853846443
## 3656     3.0  853846873
## 3657     3.0  853846511
## 3658     3.0  853847574
## 3661     3.0  853846813
## 3662     3.0  853847688
## 3663     3.0  853846443
## 3664     3.0  853846547
## 3665     3.0  853847813
## 3668     3.0  853846639
## 3670     3.0  853846612
## 3671     3.0  853846511
## 3672     3.0  853846723
## 3673     2.0  853846511
## 3674     3.0  853157476
## 3675     3.0  853157544
## 3677     3.0  853157476
## 3678     3.0  853845946
## 3680     3.0  853850791
## 3681     3.0  853850699
## 3682     3.0  853850791
## 3692     3.0  853851841
## 3693     3.0  853851861
## 3694     3.0  853851892
## 3698     3.0  853849003
## 3699     3.0  853848034
## 3700     3.0  853851203
## 3701     3.0  853848062
## 3702     3.0  853852140
## 3703     3.0  853848342
## 3706     3.0  853846752
## 3707     3.0  853846723
## 3708     2.0  853853701
## 3709     3.0  853847910
## 3711     3.0  853853956
## 3712     3.0  853847780
## 3713     3.0  853847910
## 3716     3.0  853851608
## 3717     3.0  853848738
## 3718     3.0  853852316
## 3723     3.0  853850791
## 3734     3.0  853850905
## 3735     3.0  853851222
## 3739     3.0  853850752
## 3740     3.0  853850874
## 3744     3.0  853850835
## 3745     3.0  853850835
## 3747     3.0  853850968
## 3750     3.0  853851052
## 3751     3.0  853850874
## 3753     2.0  853848737
## 3755     3.0  853850933
## 3761     3.0  853852020
## 3763     3.0  853851203
## 3764     3.0  853852097
## 3765     3.0  853850968
## 3768     3.0  853853496
## 3770     3.0  853853725
## 3771     3.0  853852524
## 3772     3.0  853852058
## 3773     3.0  853853473
## 3774     3.0  853852140
## 3775     3.0  853851257
## 3776     3.0  853852263
## 3777     3.0  853851257
## 3778     3.0  853853545
## 3780     3.0  853851841
## 3781     3.0  853850905
## 3782     3.0  853852501
## 3783     3.0  853850968
## 3784     3.0  853854148
## 3786     3.0  853853593
## 3787     3.0  854522908
## 3788     3.0  853850933
## 3790     2.0 1131662481
## 3791     3.5 1131662466
## 3792     2.0 1131661907
## 3793     3.0 1131661969
## 3794     3.0 1131662452
## 3795     1.0 1131661890
## 3797     1.5 1131662930
## 3798     2.0 1131664520
## 3799     2.5 1131662440
## 3800     2.0 1131662423
## 3803     2.0 1131663069
## 3805     3.0 1131662435
## 3806     2.0 1131753358
## 3807     3.5 1131663409
## 3808     2.5 1131662387
## 3811     2.5 1131753373
## 3814     3.0 1131661923
## 3816     1.0 1131664533
## 3817     2.0 1131662084
## 3822     1.5 1131662400
## 3823     2.5 1131662414
## 3825     3.5 1131662357
## 3827     2.5 1131723086
## 3828     2.0 1131662346
## 3829     2.0 1131661960
## 3833     2.5 1131662370
## 3834     3.5 1131662293
## 3836     3.5 1131663188
## 3840     3.0 1131753381
## 3843     3.5 1131661937
## 3846     2.0 1131662302
## 3848     3.5 1131662312
## 3853     3.5 1131662334
## 3855     3.0 1131663044
## 3857     2.5 1131662271
## 3858     2.0 1131663328
## 3859     2.0 1131662659
## 3860     2.5 1131662268
## 3861     2.5 1131663443
## 3862     2.0 1131664773
## 3863     3.0 1131662252
## 3864     3.5 1131662000
## 3865     2.5 1131723166
## 3867     2.0 1131661994
## 3869     3.0 1131663020
## 3870     2.5 1131664489
## 3871     2.5 1131662243
## 3872     3.0 1131662014
## 3873     2.5 1131661978
## 3874     3.5 1131723076
## 3875     3.5 1131662226
## 3876     2.5 1131661945
## 3877     3.5 1131662232
## 3879     3.5 1131663357
## 3882     3.5 1131664754
## 3883     2.5 1131664719
## 3884     3.0 1131723151
## 3885     2.0 1131663013
## 3887     1.5 1131663552
## 3890     2.0 1131723146
## 3891     2.5 1131664710
## 3892     2.5 1131723065
## 3893     2.0 1131661911
## 3894     2.0 1131664699
## 3895     2.5 1131662202
## 3896     2.0 1131662216
## 3897     2.0 1131662209
## 3898     2.0 1131662220
## 3900     3.0 1131662152
## 3901     3.0 1131662710
## 3902     2.0 1131663006
## 3904     1.5 1131662185
## 3906     2.0 1131664676
## 3907     1.0 1131664687
## 3909     2.0 1131662174
## 3911     3.0 1131662717
## 3913     2.5 1131663311
## 3915     3.5 1131723124
## 3916     2.5 1131662169
## 3917     2.5 1131662162
## 3919     1.5 1131662194
## 3920     2.0 1131723135
## 3921     3.0 1131662989
## 3922     2.5 1131662687
## 3924     1.5 1131662190
## 3925     3.0 1131664651
## 3928     3.0 1131663515
## 3929     2.5 1131661897
## 3930     2.5 1131664627
## 3931     2.0 1131662894
## 3933     2.0 1131662700
## 3934     2.0 1131723113
## 3936     2.5 1131753363
## 3937     3.0 1131663359
## 3938     2.0 1131662121
## 3939     2.0 1131664612
## 3941     2.0 1131664618
## 3942     2.0 1131723071
## 3945     2.0 1131664374
## 3946     3.5 1131663472
## 3948     3.5 1131664587
## 3949     3.5 1131663565
## 3950     2.5 1131663696
## 3952     2.5 1131663383
## 3953     3.0 1131663420
## 3955     3.5 1131662103
## 3956     2.5 1131662107
## 3959     2.5 1131662670
## 3961     3.0 1131662525
## 3962     2.5 1131664572
## 3964     2.5 1131664567
## 3966     3.5 1131662534
## 3967     2.5 1131663373
## 3970     3.5 1131663263
## 3971     3.5 1131662504
## 3974     3.5 1131663453
## 3977     2.5 1131663156
## 3978     2.0 1131662491
## 3979     3.0 1131662517
## 3981     2.5 1131662684
## 3982     2.5 1131723215
## 3984     2.0 1131664302
## 3985     2.0 1131663158
## 3989     3.5 1131663298
## 3990     3.0 1131662518
## 3992     3.0 1131663081
## 3994     3.5 1131662473
## 3995     3.5 1131662938
## 3997     3.0 1131663440
## 3998     3.0 1131663094
## 4001     3.5 1131663378
## 4006     2.5 1131663228
## 4007     3.0 1131662462
## 4009     3.0 1148729853
## 4010     3.5 1148730128
## 4011     3.5 1166728170
## 4013     2.0 1148669114
## 4014     1.5 1148720884
## 4015     3.5 1148673467
## 4017     3.5 1166728173
## 4020     3.5 1148672099
## 4023     3.5 1148730116
## 4024     3.5 1148669588
## 4026     3.5 1148672933
## 4027     3.0 1148720873
## 4029     2.5 1148386188
## 4030     3.5 1148778581
## 4037     3.5 1148668973
## 4040     3.5 1148673465
## 4041     2.5 1148720795
## 4045     3.5 1148777951
## 4046     2.5 1148777966
## 4047     3.5 1148668967
## 4051     2.0 1148668961
## 4055     3.5 1148669891
## 4056     3.5 1148730048
## 4057     3.5 1148720861
## 4058     3.5 1148673418
## 4059     3.5 1148669887
## 4060     3.5 1148730134
## 4061     3.5 1148729018
## 4062     3.0 1148720907
## 4067     3.5 1148729022
## 4068     3.5 1148720627
## 4070     2.5 1148729848
## 4071     3.0 1148668958
## 4072     3.5 1166728142
## 4074     3.5 1149868397
## 4075     2.5 1148728787
## 4076     3.5 1148670328
## 4079     3.0 1149868548
## 4083     2.5 1148669090
## 4089     3.5 1148673415
## 4090     2.0 1148669865
## 4091     3.5 1148669863
## 4092     3.5 1148669087
## 4097     2.5 1148728764
## 4098     3.5 1148671779
## 4102     3.5 1148730009
## 4107     3.0 1148673452
## 4108     3.5 1148778793
## 4111     3.5 1148729982
## 4116     3.5 1148671931
## 4118     3.5 1148721097
## 4119     3.5 1148721092
## 4120     3.5 1148728814
## 4123     3.5 1148669327
## 4124     3.5 1148729987
## 4125     3.5 1148669080
## 4126     3.5 1148721086
## 4127     2.5 1148728784
## 4128     3.0 1148668956
## 4131     3.5 1148673456
## 4136     3.5 1148671525
## 4138     2.5 1148669302
## 4140     3.0 1148673102
## 4145     3.5 1148669299
## 4146     3.0 1148670388
## 4149     3.0 1149868223
## 4155     3.5 1148730030
## 4161     3.5 1148670496
## 4164     3.5 1148670960
## 4165     3.5 1148671412
## 4168     3.5 1148672325
## 4171     3.5 1148671596
## 4173     3.5 1149868188
## 4178     3.5 1148778850
## 4179     3.5 1148386185
## 4180     1.5 1148669296
## 4182     3.5 1148730410
## 4183     2.5 1148720563
## 4184     3.5 1148672048
## 4185     3.5 1148671992
## 4192     3.5 1148777838
## 4193     3.5 1148730086
## 4194     3.5 1148671587
## 4197     3.0 1148778787
## 4199     3.5 1148728732
## 4203     2.0 1148670285
## 4204     3.5 1148720736
## 4206     3.0 1148777902
## 4209     3.5 1148386142
## 4210     3.5 1148730139
## 4215     3.5 1148672025
## 4217     2.5 1148777918
## 4219     3.0 1148669063
## 4220     2.5 1148670340
## 4221     2.5 1166728237
## 4222     3.5 1148669051
## 4223     3.5 1148730168
## 4226     3.5 1148720760
## 4227     3.5 1148669282
## 4228     3.0 1148720878
## 4229     2.0 1149868079
## 4230     1.5 1148720958
## 4232     3.0 1148720919
## 4233     3.5 1166728241
## 4234     2.0 1148720846
## 4235     3.0 1148669048
## 4236     0.5 1148778558
## 4237     1.0 1148670343
## 4238     3.5 1148668953
## 4240     2.5 1148669045
## 4246     3.5 1148729054
## 4248     3.0 1148669792
## 4252     3.5 1148669267
## 4253     3.5 1148728611
## 4254     3.5 1148670970
## 4256     3.0 1148730178
## 4257     3.0 1148673442
## 4258     3.5 1148730066
## 4259     3.5 1148669265
## 4260     2.0 1148720837
## 4261     3.0 1148728727
## 4263     1.5 1148728810
## 4265     3.5 1148728751
## 4270     3.5 1148730162
## 4272     3.0 1148728794
## 4274     3.0 1148671908
## 4275     3.0 1148728778
## 4277     1.0 1148728746
## 4278     3.5 1148728769
## 4279     3.5 1148728790
## 4280     2.5 1148728802
## 4281     1.5 1148728736
## 4283     3.5 1148728767
## 4284     3.5 1148728429
## 4285     3.5 1148669764
## 4286     3.5 1148669261
## 4291     3.0 1148669036
## 4292     3.5 1148669531
## 4294     2.5 1148728867
## 4297     2.0 1148720894
## 4299     1.5 1148669258
## 4300     3.5 1166728231
## 4302     3.0 1148730098
## 4304     3.5 1148672500
## 4306     3.5 1148386163
## 4308     3.5 1148672515
## 4309     3.5 1148669228
## 4310     3.5 1148729360
## 4311     3.5 1148669739
## 4315     3.5 1148673578
## 4317     3.5 1148730155
## 4318     2.5 1148669021
## 4319     3.5 1148669225
## 4320     2.5 1148669239
## 4321     3.0 1148671939
## 4323     3.0 1148386176
## 4325     3.5 1148730053
## 4327     3.5 1148778590
## 4330     3.0 1148729858
## 4332     2.5 1148669219
## 4335     2.0 1149868567
## 4336     3.5 1149868269
## 4338     3.0 1148672184
## 4339     3.5 1148669719
## 4340     3.5 1148730088
## 4342     3.5 1166728248
## 4343     2.5 1148670873
## 4345     3.5 1148671340
## 4347     3.0 1148669012
## 4349     1.5 1148386172
## 4352     3.0 1166036066
## 4353     3.5 1148673094
## 4354     2.0 1148669714
## 4357     3.5 1149868713
## 4361     2.0 1149867815
## 4363     2.5 1148669200
## 4364     3.5 1148669501
## 4365     3.5 1148672034
## 4368     3.5 1148673075
## 4371     3.5 1148669008
## 4372     3.5 1148730113
## 4373     3.5 1148669191
## 4374     3.5 1148778865
## 4377     3.5 1149868562
## 4380     3.5 1148778622
## 4381     2.5 1148720744
## 4382     3.5 1148669706
## 4383     2.0 1148669188
## 4385     3.0 1148672778
## 4386     2.5 1148720826
## 4388     2.5 1148671916
## 4390     3.0 1148673280
## 4391     3.5 1148728895
## 4392     3.5 1148669703
## 4393     3.0 1148729851
## 4394     2.0 1148728701
## 4395     2.5 1148669181
## 4400     3.5 1148672101
## 4403     3.0 1148669488
## 4405     3.5 1148730163
## 4409     2.5 1148721061
## 4410     3.5 1148728891
## 4412     3.5 1148721102
## 4414     1.5 1166035912
## 4419     3.0 1148669175
## 4421     3.5 1148721082
## 4422     3.5 1148729373
## 4423     3.5 1148671696
## 4425     3.5 1148669480
## 4426     3.0 1148669173
## 4427     3.5 1148730416
## 4430     2.0 1148721157
## 4431     1.0 1148669685
## 4433     3.0 1148669465
## 4434     2.0 1148386159
## 4436     3.0 1148669458
## 4437     3.5 1149868554
## 4438     3.5 1148669165
## 4439     3.5 1148730072
## 4441     2.5 1148777893
## 4443     2.0 1148669688
## 4445     2.0 1148671784
## 4446     3.0 1148669156
## 4447     3.0 1148721105
## 4453     3.5 1148729496
## 4459     3.5 1148672776
## 4460     2.0 1148729830
## 4461     3.5 1148728652
## 4462     3.5 1148386146
## 4463     3.5 1148669449
## 4464     3.5 1148671975
## 4465     1.0 1149868599
## 4466     3.0 1148669447
## 4467     2.0 1148670048
## 4472     3.5 1148670046
## 4473     2.0 1148670035
## 4474     3.5 1148672150
## 4476     1.5 1148778542
## 4477     3.5 1148670033
## 4478     3.0 1148670029
## 4479     0.5 1148669153
## 4480     2.0 1148672030
## 4481     3.0 1148672429
## 4483     3.5 1148672010
## 4484     3.5 1148669150
## 4485     3.0 1148730000
## 4486     1.5 1148729027
## 4487     3.5 1148670025
## 4490     3.0 1148670015
## 4493     3.5 1148669430
## 4494     3.5 1148669145
## 4495     3.5 1148730080
## 4496     3.5 1148669142
## 4497     3.5 1148730186
## 4498     3.5 1148673770
## 4499     3.0 1148670011
## 4504     2.0 1148729348
## 4505     3.0 1148730142
## 4511     1.0 1148669423
## 4512     3.5 1148671310
## 4513     3.0 1148668984
## 4514     3.0 1149868375
## 4515     3.0 1148670003
## 4524     2.5 1166728155
## 4525     3.5 1148777819
## 4526     3.5 1148669987
## 4527     2.0 1148670299
## 4529     3.5 1148721129
## 4530     3.5 1148729991
## 4531     0.5 1148668981
## 4532     3.5 1148669651
## 4533     3.5 1148730375
## 4534     3.0 1148671569
## 4536     2.5 1148669404
## 4537     2.0 1148728872
## 4538     3.0 1148669643
## 4539     3.0 1148729764
## 4541     3.5 1148728844
## 4542     3.5 1148670503
## 4546     3.5 1148728452
## 4547     3.5 1148672044
## 4549     2.5 1148668978
## 4552     1.5 1148728632
## 4557     3.5 1148729985
## 4558     3.5 1148672553
## 4561     2.5 1148728773
## 4565     3.0 1166035845
## 4567     2.5 1148673567
## 4568     2.5 1149868386
## 4569     3.5 1148730363
## 4573     3.5 1149868589
## 4574     3.5 1148673429
## 4576     3.5 1148670511
## 4577     3.5 1148777788
## 4578     1.5 1148671670
## 4579     3.5 1148728655
## 4580     3.0 1148730486
## 4582     3.5 1148730325
## 4584     3.5 1166728191
## 4586     3.5 1148777833
## 4587     2.5 1149868022
## 4589     3.0 1148672862
## 4591     3.5 1148672069
## 4592     1.5 1148669388
## 4593     3.0 1148672708
## 4596     3.5 1148777887
## 4597     3.0 1148669120
## 4598     3.5 1148670540
## 4599     3.5 1148671873
## 4606     3.0 1148669952
## 4607     3.0 1149867788
## 4608     2.5 1148669950
## 4609     3.5 1148673142
## 4610     3.0 1148777906
## 4612     2.5 1148721109
## 4613     2.0 1148721080
## 4616     3.5 1148671989
## 4617     2.0 1148720869
## 4618     1.5 1148673512
## 4621     2.5 1148672120
## 4627     2.0 1148729032
## 4628     3.5 1148671849
## 4630     3.5 1148672333
## 4633     3.0 1148671300
## 4634     2.0 1149867747
## 4635     2.0 1148669384
## 4639     3.0 1148669381
## 4642     3.5 1148671745
## 4643     3.5 1148673159
## 4644     2.0 1148673729
## 4645     3.5 1166036074
## 4647     3.5 1148671356
## 4648     3.5 1148672143
## 4649     1.0 1166035969
## 4652     3.0 1148729504
## 4653     3.5 1148728467
## 4656     3.5 1148673274
## 4657     3.0 1148672148
## 4658     3.5 1148672825
## 4659     3.5 1148728858
## 4662     3.5 1148671852
## 4663     3.5 1148777848
## 4664     2.0 1148729024
## 4665     3.5 1148670303
## 4666     2.5 1148777970
## 4669     3.5 1148673283
## 4672     3.5 1148730147
## 4675     3.0 1148673032
## 4676     3.5 1148730109
## 4678     2.5 1148777777
## 4683     3.0 1148669930
## 4684     3.0 1148730354
## 4685     3.0 1148672301
## 4687     3.5 1148672278
## 4689     3.5 1148730062
## 4690     3.5 1148669374
## 4693     3.5 1148728505
## 4694     3.5 1149868226
## 4696     2.5 1148673735
## 4699     3.5 1148730017
## 4700     3.5 1148673299
## 4701     3.0 1148671579
## 4702     2.5 1148728469
## 4704     3.0 1148672716
## 4705     3.5 1148730328
## 4706     3.5 1148730343
## 4708     3.5 1148730331
## 4709     3.0 1148670189
## 4716     3.5 1148671243
## 4719     3.0 1148673758
## 4720     3.0 1148671278
## 4722     2.0 1148720535
## 4723     2.5 1148728902
## 4724     3.5 1148777867
## 4727     3.5 1148671236
## 4728     3.0 1148778653
## 4731     3.5 1148672962
## 4732     1.5 1149867891
## 4733     2.5 1166728253
## 4734     3.5 1166728226
## 4736     3.0  849321616
## 4738     3.0  849321588
## 4739     3.0  849282414
## 4742     3.0  849282540
## 4746     3.0  849282506
## 4748     3.0  849282414
## 4749     3.0  849321669
## 4751     3.0  849321569
## 4754     3.0  849321955
## 4756     3.0  859625254
## 4758     3.0  859625874
## 4761     3.0  859625254
## 4762     3.0  859625254
## 4763     2.0  859625336
## 4764     2.0  859625772
## 4765     3.0  859625553
## 4768     3.0  859625336
## 4769     3.0  859625254
## 4770     2.0  859625336
## 4772     3.0  859625495
## 4773     2.0  859625824
## 4775     1.0  859625931
## 4776     3.0  859625442
## 4778     2.0  859625669
## 4779     3.0  859625669
## 4780     2.0  859625845
## 4781     3.0  859626258
## 4786     0.5 1351544773
## 4788     3.5 1360088114
## 4789     2.5 1360088108
## 4790     3.0 1360087975
## 4791     3.5 1360087955
## 4792     0.5 1360088129
## 4794     0.5 1360088074
## 4796     2.0 1360088133
## 4797     3.0 1360088079
## 4798     3.0 1360088041
## 4799     3.5 1360088007
## 4800     2.5 1360087958
## 4801     1.0 1360088125
## 4802     3.5 1352636797
## 4804     3.5 1354752756
## 4805     3.5 1360088060
## 4806     2.5 1360088081
## 4807     3.0 1351544331
## 4808     3.0 1360088143
## 4810     3.5 1360088024
## 4812     3.5 1352058567
## 4813     3.5 1371811577
## 4814     3.5 1360088053
## 4816     3.5 1352058572
## 4817     1.5 1351544316
## 4819     3.5 1360088119
## 4820     3.5 1371811514
## 4821     3.5 1351544445
## 4823     3.0 1351544792
## 4824     3.0 1351544355
## 4826     3.0 1352058527
## 4834     2.0 1351544362
## 4836     3.0 1352058543
## 4838     2.5 1353708984
## 4839     2.5 1352058529
## 4843     3.0 1351545093
## 4844     3.5 1351544451
## 4846     2.5 1354752813
## 4849     2.0 1351544780
## 4851     1.5 1352058557
## 4852     3.5 1351545042
## 4854     3.0 1352058609
## 4855     3.5 1352597808
## 4860     2.0 1353708976
## 4861     2.5 1352058766
## 4863     3.0 1352058603
## 4864     2.0 1352921335
## 4866     0.5 1357253672
## 4867     1.5 1357253678
## 4868     3.5 1353344968
## 4870     3.0 1352921346
## 4873     3.5 1365194619
## 4874     3.5 1352838248
## 4876     3.0 1352058778
## 4878     2.0 1351545109
## 4880     1.5 1351545104
## 4882     0.5 1357253708
## 4884     3.0 1353708965
## 4885     2.0 1352838206
## 4889     3.0 1353344981
## 4891     3.0 1357253700
## 4892     3.5 1352921338
## 4893     3.0 1361215024
## 4899     3.5 1352058533
## 4903     3.0 1353797039
## 4906     3.0 1353962805
## 4908     3.5 1353868066
## 4910     3.5 1351545097
## 4915     3.0 1352058770
## 4917     2.5 1353344881
## 4918     2.5 1352921375
## 4919     0.5 1357253685
## 4921     3.5 1352838242
## 4922     3.5 1361215017
## 4923     2.5 1352058524
## 4924     3.0 1353708936
## 4925     3.5 1351544480
## 4926     3.5 1351545114
## 4928     3.5 1352597733
## 4930     3.0 1353868028
## 4932     3.0 1352838257
## 4934     3.0 1353345002
## 4935     3.5 1353345011
## 4937     3.0 1352838237
## 4939     3.5 1353709018
## 4940     3.5 1352597735
## 4941     2.0 1353797029
## 4942     3.5 1351545047
## 4943     3.5 1352838229
## 4944     0.5 1357253681
## 4945     2.0 1353345007
## 4946     3.5 1352597807
## 4947     3.5 1352597692
## 4949     3.5 1354313972
## 4950     2.0 1354313516
## 4952     3.5 1351545019
## 4966     3.0  939079855
## 4968     2.0  939082326
## 4969     3.0  939078921
## 4970     2.0  939077258
## 4973     1.0  939076569
## 4984     3.0  938944636
## 4993     2.0  938944139
## 5010     1.0  938942755
## 5014     3.0  938943150
## 5015     2.0  938942821
## 5016     3.0  938942529
## 5022     2.0  938944923
## 5028     2.0 1313925564
## 5029     0.5 1313925259
## 5030     3.0 1313925074
## 5031     0.5 1313925699
## 5032     0.5 1313925185
## 5033     1.5 1313925639
## 5034     3.5 1313924474
## 5035     3.0 1313924446
## 5037     3.0 1313925688
## 5038     2.5 1313925589
## 5039     0.5 1313925693
## 5041     2.0 1313925220
## 5042     2.5 1313927224
## 5044     2.5 1313927226
## 5048     3.0 1313924902
## 5050     2.0  945277634
## 5056     2.0  945277971
## 5060     2.0  945122277
## 5062     3.0  945278415
## 5063     3.0 1060795346
## 5067     2.0  945277094
## 5069     2.0  945706968
## 5073     3.0  994458116
## 5076     3.0  945277588
## 5078     1.0  945113597
## 5081     2.0  999626484
## 5082     3.0  994458432
## 5083     2.0  945278527
## 5084     2.0  945277654
## 5086     2.0  945279013
## 5087     2.0  986009538
## 5090     3.0  945276587
## 5096     1.0  952884892
## 5102     2.0  994458003
## 5108     3.0  945276685
## 5110     3.0  945277422
## 5117     2.0  995228802
## 5118     2.0  945278777
## 5121     2.0  945277698
## 5123     3.0  954818652
## 5145     2.0  945277535
## 5146     2.0  945116219
## 5148     3.0  945122884
## 5149     2.0  945277742
## 5153     3.0  945276726
## 5159     3.0  945276726
## 5161     2.0  945277405
## 5167     3.0  945116219
## 5173     3.0  951009961
## 5175     2.0  945277181
## 5176     3.0  945278043
## 5179     3.0  945112993
## 5180     3.0  945278328
## 5181     3.0  951009383
## 5184     3.0  945276900
## 5187     1.0  945278630
## 5190     2.0  960819972
## 5212     3.0  986009052
## 5214     3.0  945295766
## 5215     3.0  945295955
## 5217     2.0  945295766
## 5218     3.0  945295766
## 5220     3.0  945278498
## 5225     3.0  946162006
## 5226     3.0  945295466
## 5227     2.0  945114585
## 5236     1.0  945295052
## 5238     1.0  945115105
## 5245     3.0 1039068134
## 5248     2.0  960819766
## 5249     3.0  945294508
## 5250     3.0  945294700
## 5251     3.0  945122605
## 5255     3.0  945114638
## 5258     3.0  945114495
## 5260     3.0  948166414
## 5261     2.0  945114673
## 5265     3.0  951007847
## 5278     2.0  945114453
## 5298     3.0  945113844
## 5301     3.0  945294811
## 5308     3.0  951009284
## 5316     3.0  945115456
## 5323     3.0  945277674
## 5326     3.0  945277556
## 5328     3.0  960918255
## 5329     3.0  945278359
## 5334     3.0  945115018
## 5336     3.0  945277760
## 5337     3.0  960819894
## 5344     3.0 1011327941
## 5347     3.0  945278893
## 5351     2.0  945277026
## 5352     3.0  945122819
## 5356     2.0  945123592
## 5357     3.0  945276660
## 5361     3.0  945276960
## 5368     3.0  948142097
## 5374     2.0  945122710
## 5376     3.0  945122710
## 5382     3.0  945279033
## 5384     3.0  945276705
## 5386     3.0  945279097
## 5389     2.0 1030334513
## 5390     1.0  948165859
## 5395     3.0  945296041
## 5405     3.0  945115767
## 5411     3.0  945116252
## 5416     3.0  945278278
## 5417     3.0  994457962
## 5418     3.0  948167472
## 5420     3.0  945278244
## 5421     3.0  948167277
## 5422     3.0  952884997
## 5424     1.0  945115480
## 5427     1.0  944943070
## 5432     3.0  948166931
## 5434     2.0  945277311
## 5436     3.0  945295156
## 5438     2.0  994439964
## 5440     3.0  945295466
## 5441     3.0  945276493
## 5444     3.0  952744480
## 5445     3.0  945294641
## 5448     2.0  968788273
## 5449     2.0  945295156
## 5452     3.0  945295766
## 5453     3.0  945116220
## 5454     3.0  945294700
## 5456     1.0  945294872
## 5457     2.0  945113656
## 5463     3.0  968787840
## 5464     3.0  945294700
## 5467     3.0  945276439
## 5474     3.0  945277634
## 5475     2.0  960917865
## 5476     3.0  948165999
## 5477     2.0  945294858
## 5478     2.0  945295069
## 5482     3.0  945277113
## 5483     1.0  945295214
## 5486     2.0  945278963
## 5491     3.0  945294811
## 5495     3.0  945115512
## 5496     3.0  945277654
## 5498     3.0  960918218
## 5499     3.0  945295543
## 5503     2.0  945295588
## 5505     3.0  945294509
## 5506     3.0  945880314
## 5508     3.0  945117801
## 5512     3.0  954818726
## 5513     3.0  948141433
## 5519     3.0  945880314
## 5520     3.0  945294912
## 5521     2.0  945294912
## 5523     1.0  945116330
## 5526     2.0  945122356
## 5530     2.0  945295214
## 5534     3.0  945117685
## 5535     1.0  945295052
## 5536     2.0  945294858
## 5537     3.0  945294764
## 5539     3.0  968788273
## 5540     3.0  945295466
## 5542     3.0  945295543
## 5544     2.0  945295588
## 5545     2.0  945295543
## 5546     3.0  945295543
## 5547     2.0  994438963
## 5550     2.0  945294641
## 5552     3.0  945117284
## 5553     3.0  945117855
## 5554     3.0  986009301
## 5559     3.0  945278292
## 5560     3.0 1012830681
## 5564     1.0  945295156
## 5565     3.0  945115326
## 5569     2.0  945117855
## 5570     2.0  945114316
## 5571     3.0  945117685
## 5576     3.0  945116067
## 5582     2.0  945294700
## 5585     3.0  945118400
## 5588     3.0  945113125
## 5589     2.0  945113981
## 5590     3.0  945278645
## 5591     3.0  945295156
## 5601     2.0  945295588
## 5617     3.0  945295052
## 5620     3.0  951162572
## 5628     3.0  945118516
## 5629     2.0  945118906
## 5635     3.0  945295466
## 5636     3.0  945123497
## 5642     3.0  945276778
## 5644     2.0  945277311
## 5649     3.0  945118516
## 5650     3.0 1033398031
## 5651     2.0  945294811
## 5652     3.0  945113597
## 5659     2.0  945116137
## 5663     3.0  945278929
## 5664     3.0  986738761
## 5666     3.0  945295766
## 5672     3.0  945117941
## 5673     3.0  948595947
## 5676     3.0  950389052
## 5682     1.0  952744452
## 5686     3.0  951009046
## 5692     3.0  960819766
## 5693     3.0  960819374
## 5695     3.0  951009046
## 5697     2.0  952224346
## 5701     2.0  994439603
## 5711     2.0  954818846
## 5713     3.0  968788547
## 5714     3.0  954818365
## 5721     2.0  960917865
## 5722     3.0  954818149
## 5726     2.0  960819182
## 5728     3.0  955926108
## 5730     3.0  960918425
## 5736     3.0  960918218
## 5739     3.0  960917702
## 5741     2.0  960819512
## 5743     3.0  957052972
## 5754     2.0  986008334
## 5767     2.0  960917865
## 5768     3.0  960917657
## 5770     3.0  960917771
## 5778     3.0  986745621
## 5781     2.0  968788764
## 5782     3.0 1039065693
## 5793     2.0  994438640
## 5802     2.0 1015714238
## 5806     3.0 1009341085
## 5812     3.0  986738661
## 5817     3.0  994459012
## 5821     3.0  986738661
## 5827     2.0  986738761
## 5828     1.0 1039070344
## 5830     3.0  986008184
## 5833     3.0  986738613
## 5834     3.0 1055785445
## 5835     3.0  986008121
## 5842     3.0  994457827
## 5847     3.0  994458606
## 5852     3.0 1039066739
## 5855     3.0 1039067403
## 5859     3.0  999310004
## 5860     2.0 1039067528
## 5862     2.0 1039069165
## 5867     3.0  994457142
## 5870     3.0 1039067434
## 5871     3.0  994440115
## 5873     2.0 1039066699
## 5874     3.0  994457641
## 5881     3.0 1039067528
## 5882     2.0 1002770641
## 5888     1.0  994458003
## 5890     3.0  994457962
## 5891     2.0  996950674
## 5893     2.0  996950674
## 5897     3.0  996950542
## 5901     3.0  996950542
## 5902     2.0  996950542
## 5903     3.0 1014533110
## 5911     3.0 1002769561
## 5916     3.0 1006492881
## 5919     3.0 1006492955
## 5921     2.0 1006492955
## 5922     3.0 1009340636
## 5929     3.0 1010289168
## 5932     3.0 1011328056
## 5933     3.0 1009937419
## 5935     3.0  945114153
## 5936     3.0 1011328004
## 5941     2.0 1012830712
## 5942     3.0 1016419671
## 5947     3.0 1014613681
## 5950     3.0 1039065866
## 5952     3.0 1015205474
## 5954     1.0 1036123436
## 5956     2.0 1019363280
## 5960     3.0 1019363219
## 5961     3.0 1019363219
## 5963     3.0 1020056776
## 5965     2.0 1019363168
## 5969     1.0 1020056711
## 5970     2.0 1021348305
## 5975     2.0 1024891677
## 5977     3.0 1027051268
## 5978     3.0 1046105730
## 5984     3.0 1035175467
## 5985     3.0 1031799315
## 5988     3.0 1039067403
## 5990     1.0 1036367646
## 5993     2.0 1033880299
## 5996     3.0 1033880263
## 6001     3.0 1039067617
## 6005     3.0 1035175594
## 6011     1.0 1036367914
## 6012     2.0 1036367914
## 6014     3.5 1060013944
## 6016     3.0 1038203534
## 6017     3.0 1038203534
## 6021     3.0 1039066739
## 6024     3.0 1060736279
## 6027     3.0 1040659215
## 6033     3.0 1043687080
## 6034     3.0 1043687080
## 6035     2.0 1043687080
## 6036     2.0 1043687080
## 6037     3.0 1043687014
## 6039     3.0 1055798065
## 6040     2.0 1046106675
## 6041     3.0 1049142071
## 6042     3.0 1048704049
## 6043     3.0 1048704049
## 6046     3.0 1049142157
## 6047     3.0 1049142105
## 6050     3.0 1049749117
## 6052     3.5 1055797818
## 6062     3.5 1273633559
## 6067     3.5 1273541973
## 6071     3.5 1273720368
## 6075     3.0 1273542081
## 6076     2.0 1273542019
## 6084     3.0 1273542066
## 6095     3.0 1273541964
## 6096     3.5 1273542085
## 6102     3.5 1274150321
## 6106     3.5 1273553986
## 6107     3.5 1274150289
## 6127     3.5 1273720454
## 6130     3.0  834828185
## 6132     3.0  834828337
## 6136     3.0  834828318
## 6138     3.0  834828318
## 6139     3.0  834828227
## 6142     2.0  834828168
## 6144     3.0  834828268
## 6146     3.0  834828185
## 6148     2.0  834828059
## 6149     3.0  834828155
## 6150     3.0  834828108
## 6151     3.0  834828168
## 6152     3.0  834828337
## 6156     3.0  834828337
## 6158     3.0  834828227
## 6161     3.0  834828059
## 6162     3.0  834828155
## 6163     2.0  834828185
## 6164     3.0  834828632
## 6165     3.0  834828199
## 6166     3.0  834828123
## 6172     3.0  834828085
## 6176     2.0  834828108
## 6177     3.0 1032769612
## 6178     3.0 1032678367
## 6179     1.0 1033543456
## 6180     3.0 1032769595
## 6182     2.0 1032676906
## 6186     1.0 1032678174
## 6192     2.0 1032679359
## 6200     2.0 1032679990
## 6201     3.0 1032859220
## 6202     2.0 1032679469
## 6204     3.0 1032769282
## 6205     1.0 1032859270
## 6207     2.0 1032679534
## 6208     3.0 1032680083
## 6211     1.0 1032766234
## 6215     3.0 1032860971
## 6217     2.0 1032680420
## 6218     2.0 1032676887
## 6220     2.0 1032860951
## 6221     2.0 1032680004
## 6224     3.0 1033192223
## 6227     1.0 1032766463
## 6230     2.0 1032859504
## 6231     1.0 1032766852
## 6232     3.0 1032858995
## 6234     2.0 1032768775
## 6236     2.0 1032859012
## 6237     1.0 1032859119
## 6240     3.0 1032679887
## 6244     2.0 1032859389
## 6245     2.0 1032769282
## 6247     2.0 1032859878
## 6248     3.0 1032677405
## 6249     3.0 1032769523
## 6250     3.0 1032769002
## 6251     2.0 1032677594
## 6252     3.0 1032677740
## 6255     2.0 1032677346
## 6256     2.0 1034930090
## 6257     3.0 1032769237
## 6260     3.0 1032859050
## 6261     2.0 1032766929
## 6263     2.0 1032769543
## 6264     3.0 1032859587
## 6265     2.0 1032677362
## 6269     2.0 1032676888
## 6271     3.0 1034930190
## 6272     1.0 1032859254
## 6276     3.0 1032677333
## 6277     2.0 1032769250
## 6278     2.0 1033604248
## 6280     2.0 1034929996
## 6282     2.0 1032679865
## 6283     2.0 1032678282
## 6285     3.0 1032680212
## 6287     3.0 1032767204
## 6288     3.0 1033604322
## 6289     2.0 1032677637
## 6293     3.0 1032678352
## 6296     3.0 1034930125
## 6297     3.0 1032679488
## 6302     3.0 1032858930
## 6303     3.0 1032769523
## 6304     3.0 1032858979
## 6306     3.0 1032859878
## 6309     2.0 1032678432
## 6315     3.0  973747402
## 6318     3.0  973747340
## 6324     3.0  973747709
## 6332     3.0  973748307
## 6333     3.0  973747985
## 6334     3.0  973747797
## 6345     3.0  973748336
## 6354     3.0  973748587
## 6364     3.0  973747591
## 6367     3.0  973747156
## 6369     3.0  973747911
## 6372     1.0  973747354
## 6374     3.0  973748587
## 6384     3.0  973747591
## 6386     3.0  973748787
## 6390     3.0  973747017
## 6402     3.0  973747017
## 6406     3.0  973748443
## 6408     3.0  973747797
## 6411     3.0  973747877
## 6413     3.0  973748196
## 6416     1.0  973748964
## 6417     3.0  973747685
## 6418     3.0  973747621
## 6420     3.0  973749013
## 6423     3.0  973748979
## 6425     3.0  973747777
## 6426     3.0  973747797
## 6427     3.0  973749026
## 6430     2.0  973746627
## 6431     3.0  973748277
## 6432     3.0  973747591
## 6442     2.0  973749049
## 6443     3.0  973748307
## 6446     3.0  973747685
## 6448     3.0  973747723
## 6450     3.0  973747609
## 6457     2.0  973747877
## 6459     3.0  973747985
## 6460     3.0  973748713
## 6468     3.0  973748196
## 6469     3.0  973748228
## 6472     3.0  973747643
## 6477     3.0  973746214
## 6481     3.0  973747385
## 6482     1.0  973746896
## 6485     3.0  973748196
## 6501     3.0  973747017
## 6502     2.5 1174450075
## 6503     1.5 1174450069
## 6504     3.0 1174450074
## 6506     2.0 1174450068
## 6508     1.5 1174450057
## 6509     1.5 1174450070
## 6510     1.5 1174450053
## 6511     0.5 1174450079
## 6512     1.5 1174450076
## 6513     2.5 1174450052
## 6514     1.0 1174450054
## 6515     3.5 1174450064
## 6517     3.5 1174450061
## 6518     2.0 1174450051
## 6519     0.5 1174450080
## 6521     2.5 1174450059
## 6522     3.0  847057147
## 6523     3.0  847057223
## 6525     3.0  847056854
## 6527     3.0  847057202
## 6530     3.0  847057696
## 6533     3.0  847057520
## 6540     3.0  847057301
## 6541     3.0  847057765
## 6542     3.0  847058110
## 6543     3.0  847056547
## 6544     3.0  847057385
## 6547     3.0  847057018
## 6550     2.0  847057444
## 6552     3.0  847057061
## 6554     3.0  847057136
## 6559     3.0  847057240
## 6560     3.0  847057202
## 6561     3.0  847056984
## 6569     3.0  847057827
## 6575     3.0  847057278
## 6576     3.0  847056948
## 6577     3.0  847056636
## 6580     3.0  847057119
## 6581     3.0  847057444
## 6582     3.0  847057328
## 6583     3.0  847057520
## 6585     3.0  847056926
## 6587     3.0  847056948
## 6588     3.0  847056636
## 6589     3.0  847056926
## 6590     3.0  847056783
## 6591     3.0  847056547
## 6594     3.0  847056636
## 6596     3.0  847057385
## 6599     3.0  847057179
## 6601     3.0  847057575
## 6604     3.0  847057415
## 6606     3.0  847056854
## 6607     3.0  847057363
## 6608     3.0  847057328
## 6609     3.0  847057094
## 6610     2.0  847056854
## 6611     3.0  847056854
## 6612     3.0  847056547
## 6613     3.0  847056510
## 6614     3.0  847056510
## 6616     3.0  847056819
## 6617     3.0  853005492
## 6620     2.0  853005800
## 6622     3.0  847057696
## 6623     3.0  847057928
## 6625     3.0  853005621
## 6629     2.0  981308246
## 6632     3.0  981308294
## 6634     3.0  981308309
## 6641     3.0  981304291
## 6647     3.0  981307942
## 6649     3.0  981307838
## 6651     3.0  981304524
## 6653     3.0  981304635
## 6656     3.0  981307823
## 6668     3.0 1416075151
## 6671     3.5 1389806500
## 6686     3.5 1416075186
## 6687     3.0 1416075336
## 6688     3.0 1389721837
## 6691     3.5 1389721935
## 6693     3.0 1416075365
## 6707     3.5 1390248633
## 6708     3.5 1389722066
## 6716     3.0 1416075350
## 6727     3.5 1416075321
## 6740     3.5 1449693163
## 6756     3.0 1416074797
## 6772     3.0  833532967
## 6774     3.0  832525157
## 6776     3.0  832523307
## 6777     3.0  832523276
## 6779     3.0  833532967
## 6780     3.0  832523411
## 6782     3.0  832523738
## 6784     3.0  832523045
## 6785     3.0  832523339
## 6788     3.0  832525093
## 6789     3.0  832525181
## 6790     3.0  833534728
## 6793     2.0  832523411
## 6799     3.0  832523340
## 6807     2.0  832523386
## 6808     3.0  832523386
## 6809     3.0  832523307
## 6810     3.0  832525157
## 6813     3.0  832523411
## 6815     3.0  832523386
## 6820     3.0  832523045
## 6821     3.0  832523013
## 6822     3.0  832523013
## 6823     3.0  832523340
## 6824     3.0  832523082
## 6859     3.5 1466993111
## 6874     3.5 1093888283
## 6879     3.5 1093886586
## 6881     3.0 1107100488
## 6887     3.5 1093887342
## 6892     3.5 1109811944
## 6895     3.0 1093887714
## 6897     3.5 1093887565
## 6901     3.0 1093886809
## 6905     3.5 1093889745
## 6911     3.5 1093888257
## 6912     3.5 1093887515
## 6916     3.5 1093887255
## 6920     3.5 1093886864
## 6928     3.0 1093886607
## 6930     2.5 1093886688
## 6932     3.5 1093886662
## 6941     3.5 1109816599
## 6947     3.0 1093886675
## 6950     3.5 1109816608
## 6951     3.5 1093887570
## 6954     3.0 1093887748
## 6956     3.0 1093886639
## 6957     2.5 1093886710
## 6960     3.5 1093887247
## 6965     3.5 1093887225
## 6967     3.5 1093887900
## 6968     3.0 1093887778
## 6969     3.0 1093886717
## 6970     3.0 1093889767
## 6971     3.5 1093889882
## 6975     3.0 1093887368
## 6976     3.0 1093887455
## 6977     3.0 1093887370
## 6978     2.5 1093889776
## 6981     3.5 1093887446
## 6983     3.5 1093886996
## 6984     3.5 1093887641
## 6985     3.5 1093888808
## 6986     3.5 1093888619
## 6990     3.5 1093887350
## 6996     3.0 1093886668
## 6998     3.5 1107102322
## 7003     3.5 1093887254
## 7004     3.5 1093887241
## 7005     3.5 1109816504
## 7009     3.5 1093886835
## 7011     3.5 1093887961
## 7012     3.5 1093886804
## 7014     3.0 1093887835
## 7015     3.5 1107100521
## 7020     3.5 1109812764
## 7023     3.5 1109814401
## 7025     2.5 1107100577
## 7028     3.5 1093887686
## 7031     3.5 1107100440
## 7033     3.5 1093887634
## 7034     3.5 1093887667
## 7035     3.5 1093889755
## 7039     3.5 1093888602
## 7041     3.0 1107100419
## 7046     3.5 1093887841
## 7052     3.5 1109813193
## 7053     3.5 1093887324
## 7056     3.0 1093887605
## 7066     3.0 1093887692
## 7074     3.5 1473258327
## 7080     3.5 1473258331
## 7083     3.5 1473258311
## 7088     3.5 1473258305
## 7097     1.5 1473258445
## 7098     3.5 1473258346
## 7100     3.0 1473258409
## 7104     3.5 1473258169
## 7107     3.5 1473258388
## 7108     2.5 1473258340
## 7117     3.5 1473258269
## 7118     3.5 1473258378
## 7124     3.0 1473258337
## 7125     3.5 1473258248
## 7129     3.5 1473258356
## 7134     3.5 1473258383
## 7135     3.0 1473258427
## 7136     2.0 1473258421
## 7139     3.0 1473258291
## 7140     3.5 1473258281
## 7142     2.0 1473258334
## 7146     2.0  974767953
## 7147     2.0  974769666
## 7149     1.0  974770180
## 7150     3.0  974768430
## 7151     3.0  974769902
## 7155     3.0  974769730
## 7156     3.0  974767845
## 7158     2.0  974770079
## 7159     3.0  974768798
## 7160     3.0  974767746
## 7165     3.0  974756766
## 7166     3.0  974770180
## 7167     3.0  974770325
## 7170     1.0  974769125
## 7171     2.0  974768022
## 7175     3.0  974767879
## 7176     1.0  974770474
## 7177     3.0  974769125
## 7178     1.0  974769482
## 7179     3.0  974769561
## 7180     3.0  974768903
## 7181     2.0  974769902
## 7182     3.0  974756766
## 7184     3.0  974768604
## 7186     2.0  974768471
## 7187     2.0  974769658
## 7188     1.0  974770180
## 7189     2.0  974770079
## 7191     2.0  974770281
## 7192     3.0  974770104
## 7193     3.0  974768999
## 7194     3.0  974769207
## 7195     1.0  974767879
## 7196     3.0  974767845
## 7200     3.0  974768285
## 7201     3.0  974768834
## 7203     3.0  974769843
## 7204     3.0  974767917
## 7205     3.0  974767845
## 7206     2.0  974769730
## 7207     2.0  974769659
## 7208     2.0  974770360
## 7210     2.0  974770325
## 7211     3.0  974756704
## 7213     2.0  974768402
## 7215     3.0  974770104
## 7216     3.0  974769963
## 7217     2.0  974767746
## 7219     3.0  974769659
## 7222     2.0  974770180
## 7224     2.0  974756766
## 7225     3.0  974769253
## 7227     2.0  974770248
## 7229     3.0  974767983
## 7231     3.0  974769963
## 7232     2.0  974770007
## 7233     3.0  974769034
## 7234     2.0  974767808
## 7235     2.0  974770281
## 7237     2.0  974767953
## 7238     2.0  974756976
## 7241     3.0  974769561
## 7242     1.0  974757072
## 7243     2.0  974757005
## 7244     3.0  974757005
## 7245     2.0  974769818
## 7247     2.0  974770227
## 7248     1.0  974768834
## 7249     1.0  974769902
## 7250     2.0  974767809
## 7251     2.0  974768798
## 7255     3.0  858707194
## 7256     3.0  858707194
## 7257     2.0  858707139
## 7258     3.0  858707139
## 7259     3.0  858707138
## 7261     3.0  858707138
## 7264     2.0  858707138
## 7265     3.0  858707247
## 7266     3.0  858707194
## 7267     3.0  858707310
## 7268     2.0  858707310
## 7269     3.0  858707138
## 7273     3.0  858707194
## 7274     3.0  858707248
## 7275     3.0  858707310
## 7277     3.0  858707464
## 7278     3.5 1140202251
## 7283     3.0 1140202266
## 7286     2.5 1140202408
## 7288     2.5 1140202271
## 7289     2.5 1140202307
## 7292     0.5 1140202339
## 7294     1.0 1140202402
## 7295     2.5 1140202334
## 7342     3.0  832229039
## 7344     3.0  832229161
## 7348     3.0  832229039
## 7352     3.0  832228958
## 7353     3.0  832228906
## 7355     3.0  832228958
## 7356     3.0  832229007
## 7360     3.0  832228958
## 7364     3.0  832228859
## 7367     3.0  832228979
## 7368     3.0  832229068
## 7370     3.0  832229985
## 7373     3.0  832228796
## 7375     3.0  832228906
## 7377     3.5 1322169967
## 7378     3.0 1322169717
## 7380     3.0 1439687078
## 7381     3.0 1322170542
## 7382     3.5 1322170475
## 7383     2.5 1322169932
## 7384     3.5 1322169695
## 7385     3.5 1319744320
## 7388     3.5 1322169641
## 7391     3.5 1322169697
## 7392     3.5 1322167325
## 7393     3.5 1367466511
## 7396     3.5 1368072767
## 7397     3.5 1322169588
## 7398     3.5 1322169669
## 7399     3.5 1322169653
## 7400     3.0 1322170930
## 7403     2.5 1419495810
## 7406     3.5 1322169711
## 7407     3.5 1319745467
## 7408     3.5 1318721589
## 7411     3.5 1316496812
## 7412     3.5 1322169763
## 7413     3.5 1322167612
## 7414     3.5 1410971787
## 7416     3.5 1322169645
## 7417     3.5 1318721485
## 7419     2.5 1412457717
## 7420     3.5 1322170149
## 7421     2.5 1412471587
## 7422     3.5 1322169801
## 7423     3.5 1322167341
## 7424     3.5 1322167292
## 7425     3.0 1322171839
## 7426     3.0 1419495799
## 7427     3.5 1322169947
## 7429     3.5 1318725610
## 7431     3.0 1322171335
## 7433     3.5 1322169954
## 7435     3.5 1319744666
## 7436     3.5 1322167149
## 7437     3.0 1322170564
## 7438     3.5 1322170785
## 7439     3.5 1415258524
## 7440     3.5 1412321963
## 7442     3.0 1322170922
## 7443     3.5 1324101279
## 7446     3.5 1318835468
## 7447     2.5 1412471207
## 7448     3.5 1322170518
## 7450     3.5 1322167802
## 7451     3.0 1322170331
## 7452     3.5 1322170196
## 7453     3.5 1322169924
## 7454     3.0 1322170066
## 7455     2.5 1412470814
## 7456     3.5 1367729581
## 7457     3.0 1412471725
## 7459     3.5 1318835841
## 7460     3.0 1319744255
## 7462     3.5 1318797469
## 7464     3.0 1322170644
## 7467     3.0 1322171045
## 7468     3.5 1322173362
## 7469     3.0 1316922546
## 7470     3.5 1410971832
## 7472     3.0 1319748211
## 7474     3.5 1318835610
## 7475     3.5 1322167231
## 7476     3.5 1405181557
## 7477     3.0 1322167807
## 7479     3.5 1303371101
## 7480     3.5 1322171604
## 7481     3.0 1319745406
## 7483     3.5 1318796382
## 7484     3.5 1425960044
## 7486     3.5 1305602329
## 7492     3.0 1322169255
## 7493     3.5 1322167657
## 7494     3.0 1322167294
## 7495     3.5 1322167764
## 7496     3.5 1322167056
## 7499     3.5 1322167180
## 7502     3.5 1320820975
## 7507     3.5 1319744880
## 7508     3.5 1320505613
## 7509     3.0 1412478838
## 7510     3.5 1317277244
## 7511     3.0 1367774627
## 7513     3.5 1322167119
## 7517     3.0 1317612608
## 7518     3.5 1318796409
## 7519     3.0 1322871160
## 7520     3.0 1322167122
## 7521     3.5 1322174318
## 7523     3.5 1322170898
## 7525     3.0 1368072937
## 7528     2.5 1414562338
## 7530     3.5 1322167707
## 7531     3.0 1368060971
## 7534     2.5 1333323786
## 7535     3.0 1317417331
## 7536     3.5 1322171670
## 7539     3.0 1341268936
## 7543     2.5 1319744919
## 7544     2.5 1339446902
## 7546     3.0 1367968341
## 7547     3.5 1317413816
## 7548     3.0 1339447083
## 7552     3.5 1319743664
## 7553     3.5 1425960095
## 7555     2.5 1325534468
## 7557     3.5 1316416730
## 7558     3.5 1318796541
## 7559     3.0 1341268726
## 7560     3.0 1367794617
## 7562     3.5 1320128368
## 7564     3.5 1319744696
## 7569     3.0 1341268857
## 7570     3.0 1339446959
## 7571     3.0 1319743714
## 7575     3.5 1322167635
## 7576     3.5 1322167363
## 7577     3.5 1319744759
## 7578     3.0 1414562300
## 7579     3.5 1319745276
## 7580     2.5 1414561763
## 7581     3.5 1317613176
## 7582     3.0 1333324895
## 7583     3.5 1317417268
## 7584     3.5 1303371215
## 7586     3.5 1322174118
## 7587     3.0 1320505644
## 7588     3.0 1367968282
## 7589     3.0 1322167429
## 7590     3.5 1319745902
## 7591     2.5 1367968590
## 7594     3.0 1414561107
## 7595     3.5 1319745453
## 7598     3.0 1322168181
## 7600     3.5 1317612663
## 7601     3.5 1317415599
## 7602     3.0 1415388297
## 7603     3.5 1322168130
## 7604     3.0 1339447216
## 7608     3.5 1322167725
## 7610     3.5 1319745148
## 7612     3.0 1339447153
## 7613     3.0 1322171427
## 7614     3.5 1322171197
## 7615     3.5 1317415398
## 7617     3.5 1322167397
## 7618     3.0 1369722178
## 7620     3.5 1309052092
## 7621     3.5 1317612601
## 7622     3.0 1319745336
## 7624     3.5 1371359811
## 7625     3.0 1339446347
## 7627     2.5 1415388549
## 7628     3.0 1322167257
## 7629     3.0 1322167662
## 7630     2.5 1339447162
## 7631     2.0 1414561720
## 7632     3.0 1333325498
## 7633     3.0 1428727629
## 7636     3.5 1322167586
## 7637     2.5 1317417320
## 7638     3.5 1319746126
## 7644     3.0 1339447164
## 7646     3.5 1319745424
## 7647     3.0 1339447168
## 7648     2.5 1414561470
## 7649     3.0 1322967502
## 7650     3.5 1319743116
## 7651     3.0 1412471624
## 7653     3.5 1320709035
## 7655     3.0 1412457389
## 7656     3.5 1319747076
## 7658     3.5 1405916134
## 7660     3.5 1319743302
## 7662     3.0 1322167708
## 7664     3.0 1322165598
## 7665     3.5 1319746873
## 7666     3.5 1319744824
## 7667     3.5 1317621831
## 7670     3.5 1369880284
## 7674     3.5 1318796568
## 7676     3.0 1305603027
## 7677     3.5 1317414089
## 7679     3.5 1322167566
## 7680     3.5 1371359903
## 7682     3.5 1319744734
## 7684     3.0 1322966900
## 7685     3.5 1305603309
## 7686     3.5 1322167367
## 7687     3.5 1322167677
## 7688     2.5 1368412407
## 7689     3.5 1322719467
## 7690     3.5 1305603082
## 7693     3.5 1319746373
## 7694     3.0 1322168337
## 7695     3.5 1305603272
## 7698     3.5 1316539661
## 7700     3.5 1317405737
## 7701     3.5 1316494407
## 7702     3.5 1322167931
## 7704     3.0 1339446804
## 7705     3.0 1322167961
## 7708     3.0 1414850769
## 7709     3.5 1405650223
## 7712     3.0 1305603095
## 7713     3.5 1322167425
## 7714     3.5 1319748155
## 7721     3.5 1317417335
## 7722     3.5 1317414139
## 7723     3.0 1371530476
## 7726     3.0 1322167866
## 7727     3.5 1305603492
## 7728     3.5 1319746905
## 7729     3.5 1319745128
## 7731     3.0 1414850946
## 7732     3.0 1339446991
## 7733     3.5 1319745750
## 7734     3.0 1414562131
## 7735     3.5 1324101310
## 7738     3.0 1305603556
## 7739     3.0 1319745660
## 7740     3.5 1316539530
## 7741     3.0 1317415585
## 7743     3.5 1428726464
## 7745     3.5 1319745518
## 7748     3.5 1319744484
## 7750     1.5 1341268695
## 7751     3.5 1322167990
## 7757     3.5 1320700986
## 7759     3.5 1319745212
## 7761     3.5 1368483486
## 7762     2.5 1412309172
## 7763     3.5 1321425442
## 7765     3.5 1318796373
## 7766     3.5 1322167089
## 7767     3.5 1318742711
## 7769     3.5 1415388786
## 7770     3.5 1318796556
## 7771     3.5 1305603954
## 7772     3.5 1341268645
## 7773     3.5 1368499219
## 7774     3.5 1368250070
## 7775     3.0 1414850824
## 7778     2.5 1414851036
## 7781     3.5 1319744151
## 7783     3.0 1319743782
## 7786     3.5 1319743415
## 7787     3.0 1369722191
## 7789     3.5 1317277357
## 7790     3.5 1322169386
## 7791     3.0 1368499410
## 7794     2.5 1415388667
## 7795     3.0 1317277197
## 7796     3.0 1317277220
## 7797     2.5 1410972161
## 7798     3.5 1316907766
## 7799     3.0 1414851073
## 7800     2.5 1414849679
## 7801     3.0 1329101733
## 7802     2.5 1368483363
## 7803     3.5 1368249365
## 7804     3.5 1331430993
## 7805     3.0 1368499298
## 7806     3.5 1371530093
## 7807     3.5 1371360050
## 7808     2.0 1341268688
## 7809     2.5 1415388593
## 7810     2.5 1341268657
## 7811     3.0 1414562176
## 7812     2.5 1414562366
## 7815     3.0 1414850934
## 7816     3.0 1410972137
## 7817     3.0 1368499835
## 7819     3.0 1356760463
## 7820     3.0 1368499321
## 7821     3.0 1415388917
## 7822     3.0 1371530088
## 7825     2.5 1410972337
## 7826     3.5 1367725555
## 7828     3.5 1368483794
## 7829     3.5 1367725590
## 7830     3.5 1367786421
## 7832     3.0 1371530237
## 7833     2.5 1412497730
## 7838     3.5 1368499380
## 7839     2.5 1428726967
## 7841     3.5 1410972280
## 7842     2.0 1412570841
## 7843     2.5 1412570882
## 7844     2.0 1412570808
## 7845     3.5 1414561040
## 7846     3.0 1414850862
## 7847     3.0 1410972358
## 7848     2.5 1415388310
## 7849     2.5 1412554038
## 7850     2.5 1412561078
## 7851     3.0 1405181551
## 7853     3.5 1410972517
## 7854     2.5 1412570817
## 7855     2.5 1410972202
## 7856     2.5 1412583710
## 7857     3.0 1410972239
## 7858     2.5 1410972320
## 7859     3.5 1425960344
## 7860     3.0 1412553084
## 7861     2.5 1410972264
## 7862     3.0 1412553201
## 7863     2.5 1428726440
## 7864     2.5 1412553055
## 7865     3.5 1410972164
## 7866     3.0 1410972074
## 7867     3.0 1419495256
## 7868     3.0 1410972132
## 7869     2.5 1405181398
## 7870     2.5 1412553003
## 7871     3.5 1410972058
## 7872     3.5 1405649924
## 7873     2.5 1410972102
## 7874     2.5 1412552876
## 7876     3.5 1412552728
## 7877     2.5 1412552534
## 7878     2.5 1428726233
## 7879     3.5 1425960080
## 7880     3.5 1412550699
## 7881     3.0 1415388454
## 7882     2.5 1428726245
## 7883     3.0 1428726219
## 7884     2.5 1428727019
## 7885     2.0 1428726405
## 7886     3.0 1428726202
## 7887     3.0 1414562891
## 7888     2.5 1428726241
## 7890     3.0  978039958
## 7892     2.0  978040891
## 7893     1.0  978040922
## 7894     3.0  978040023
## 7895     3.0  978039850
## 7897     2.0  978039693
## 7899     3.0  978039301
## 7900     3.0  978039629
## 7901     2.0  978039693
## 7903     3.0  978039922
## 7904     3.0  978040871
## 7905     3.0  978039850
## 7913     3.0  978039654
## 7916     3.0  978039693
## 7920     3.0  978039819
## 7926     3.0  978039301
## 7933     3.0  978039753
## 7936     3.0  978041342
## 7937     3.0  978039714
## 7938     2.0  978041312
## 7940     1.0  978039958
## 7941     2.0  978039891
## 7942     2.0  978040828
## 7943     2.0  978040023
## 7944     3.0  978039891
## 7949     3.0  978039557
## 7950     2.0  978041370
## 7952     3.0  978039795
## 7955     2.0  978039263
## 7956     1.0  978040922
## 7958     3.0  978041224
## 7959     3.0  978040922
## 7960     1.0  978041370
## 7961     1.0  978041398
## 7962     1.0  978041398
## 7963     3.0  978039629
## 7964     3.0  978041279
## 7969     3.0  978041312
## 7971     3.0  978039301
## 7972     2.0  978039988
## 7974     3.0  978039891
## 7976     2.0  978041342
## 7977     2.0  978039629
## 7978     2.0  978041312
## 7982     3.0  978041189
## 7983     3.0  978039693
## 7985     3.0  978041224
## 7989     3.0  847412676
## 7990     2.0  847412692
## 7991     3.0  847412643
## 7992     3.0  847412837
## 7994     3.0  847412515
## 7995     3.0  847412712
## 7998     3.0  847412606
## 7999     3.0  847412606
## 8000     1.0  847412567
## 8001     3.0  847412628
## 8002     3.0  847412811
## 8005     3.0  847412812
## 8006     3.0  847412567
## 8007     3.0  847412859
## 8009     2.0  847412544
## 8010     3.0  847412567
## 8015     3.0  847412643
## 8016     3.0  847412515
## 8017     3.0  847412692
## 8018     3.0  847412586
## 8020     3.0  847412812
## 8021     3.0  847412628
## 8022     3.0  847413020
## 8024     3.0  847412812
## 8026     3.0  847412676
## 8027     3.0  847413043
## 8028     3.0  847412659
## 8030     3.0  847412515
## 8031     3.0  847412659
## 8033     3.0  847413043
## 8035     1.0  974728763
## 8036     3.0  974728763
## 8040     3.0  974728999
## 8041     2.0  974729270
## 8047     2.0  974729345
## 8050     2.0  974729270
## 8051     3.0  974729165
## 8056     3.0  974729270
## 8066     1.0 1231763607
## 8067     3.5 1231770596
## 8072     1.0 1231770503
## 8074     0.5 1231763493
## 8075     1.0 1231766853
## 8077     0.5 1231763521
## 8078     1.0 1231763632
## 8082     3.5 1231766114
## 8085     1.0 1231763560
## 8088     2.0 1231763745
## 8092     3.5 1231770278
## 8093     2.0 1231763949
## 8101     1.0 1231763805
## 8104     3.5 1231769278
## 8105     3.5 1231769628
## 8111     3.5 1231763467
## 8112     3.5 1231770591
## 8114     3.5 1231769937
## 8117     3.5 1231766722
## 8119     2.0 1231763882
## 8120     2.0 1231763840
## 8123     3.0 1231767136
## 8126     3.5 1231766676
## 8127     3.5 1231769289
## 8128     3.5 1231770833
## 8132     2.0 1231769833
## 8135     1.0  955192933
## 8136     1.0  955192933
## 8137     3.0  955193660
## 8138     1.0  955192933
## 8139     1.0  955192933
## 8142     3.0  955193310
## 8143     3.0  955193387
## 8146     2.0  955192367
## 8148     2.0  955191985
## 8149     3.0  955193468
## 8150     1.0  955192692
## 8152     3.0  955193256
## 8153     1.0  955192663
## 8155     1.0  955193574
## 8160     1.0  955192739
## 8161     1.0  955192603
## 8162     3.0  955192307
## 8163     3.0  955192417
## 8164     3.0  955192010
## 8165     1.0  955192491
## 8166     1.0  955192571
## 8168     2.0  955192739
## 8169     1.0  955193387
## 8171     1.0  955192779
## 8172     1.0  955192307
## 8174     1.0  955192760
## 8175     2.0  955192571
## 8184     2.0 1352836775
## 8187     2.5 1352832722
## 8188     3.5 1352836545
## 8189     3.5 1352835678
## 8191     3.0 1352837063
## 8194     0.5 1352832871
## 8200     3.5 1352834428
## 8202     3.5 1352836442
## 8203     1.0 1352836450
## 8207     1.0 1352834067
## 8209     2.0 1352833048
## 8211     1.5 1352836517
## 8216     3.5 1352833131
## 8220     2.5 1352836507
## 8221     3.5 1352834483
## 8223     3.0  855926941
## 8224     3.0  855926988
## 8226     2.0  855926988
## 8227     3.0  855927315
## 8230     3.0  855927438
## 8231     3.0  855927172
## 8232     3.0  855926941
## 8233     3.0  855927437
## 8235     3.0  855927131
## 8239     3.0  855926988
## 8240     3.0  855926988
## 8241     3.0  855927438
## 8245     2.0  855927438
## 8246     3.0  855927131
## 8250     3.0  855926941
## 8251     3.0  855927315
## 8252     2.0  855927438
## 8254     3.0  855927131
## 8257     3.0  855927315
## 8260     3.0  855926988
## 8264     2.0 1470350794
## 8272     2.0 1467003504
## 8273     2.0 1467004905
## 8277     2.0 1470350790
## 8280     2.0 1470350831
## 8281     2.0 1467006124
## 8285     2.0 1470350811
## 8287     2.0 1467004922
## 8291     2.0 1470350967
## 8300     2.0 1467005800
## 8301     2.0 1467003164
## 8307     2.0 1467005377
## 8309     2.0 1470351101
## 8316     2.0 1470351007
## 8319     2.0 1470350746
## 8321     2.0 1470350810
## 8323     2.0 1470350743
## 8331     2.0 1467005230
## 8337     2.0 1470350796
## 8339     2.0 1467006386
## 8340     2.0 1470350740
## 8341     2.0 1470351006
## 8347     2.0 1470351002
## 8356     2.0 1470350881
## 8357     2.0 1470350949
## 8367     2.0 1470350880
## 8372     2.0 1470350958
## 8376     2.0 1470350857
## 8380     2.0 1470350850
## 8381     2.0 1470350848
## 8383     1.0 1469031525
## 8386     2.0 1470352143
## 8388     2.0 1470350841
## 8391     2.0 1470352155
## 8392     2.0 1470350839
## 8396     2.0 1470350837
## 8398     1.0 1467005018
## 8401     2.0 1470351704
## 8407     2.0 1475110909
## 8412     2.0 1470351096
## 8422     2.0 1467005813
## 8423     2.0 1470351099
## 8427     1.0 1467006042
## 8432     2.0 1470350837
## 8433     2.0 1470351801
## 8435     2.0 1470351097
## 8437     2.0 1470350982
## 8439     2.0 1470351095
## 8440     2.0 1467005081
## 8442     2.0 1467009601
## 8446     2.0 1470350862
## 8448     2.0 1467005858
## 8450     2.0 1467006160
## 8452     2.0 1470351118
## 8460     2.0 1470350976
## 8461     2.0 1470350951
## 8462     2.0 1470350879
## 8463     2.0 1470350876
## 8469     2.0 1467005824
## 8471     2.0 1470355415
## 8473     2.0 1470350975
## 8476     2.0 1470351000
## 8481     2.0 1470351001
## 8482     2.0 1470350956
## 8485     2.0 1470350834
## 8500     2.0 1470350980
## 8502     2.0 1470350814
## 8504     2.0 1470350817
## 8505     2.0 1467005360
## 8507     2.0 1470350824
## 8512     2.0 1467003213
## 8513     2.0 1470350961
## 8517     2.0 1470350791
## 8518     2.0 1470351794
## 8519     2.0 1470350792
## 8520     1.0 1472530513
## 8521     2.0 1470352323
## 8533     2.0 1470350829
## 8536     2.0 1470350939
## 8539     2.0 1469228080
## 8542     2.0 1470351983
## 8544     2.0 1467009198
## 8548     2.0 1467009678
## 8549     2.0 1470350835
## 8553     2.0 1467007232
## 8557     2.0 1470350809
## 8566     2.0 1467005523
## 8570     2.0 1470350985
## 8580     2.0 1470351003
## 8584     2.0 1467005359
## 8590     2.0 1467006058
## 8591     2.0 1470350855
## 8592     2.0 1470350851
## 8593     2.0 1467005604
## 8596     2.0 1470350845
## 8601     1.0 1467095936
## 8603     1.0 1467005673
## 8606     2.0 1467005222
## 8607     2.0 1467005342
## 8608     2.0 1470350978
## 8614     2.0 1470350955
## 8617     2.0 1470350986
## 8625     2.0 1470350866
## 8637     2.0 1467004435
## 8657     1.0 1467004629
## 8664     2.0 1470350858
## 8665     2.0 1470350948
## 8667     1.0 1473791535
## 8668     2.0 1470350973
## 8671     2.0 1470350882
## 8672     2.0 1467004552
## 8680     2.0 1470350873
## 8682     1.0 1467004544
## 8691     2.0 1470350788
## 8694     1.0 1467004530
## 8700     1.0 1467092453
## 8702     2.0 1467004218
## 8703     2.0 1470350802
## 8706     2.0 1467004578
## 8708     2.0 1470350983
## 8711     1.0 1467092392
## 8718     2.0 1470350793
## 8722     2.0 1474953835
## 8724     2.0 1471306876
## 8729     2.0 1470351005
## 8731     2.0 1470351004
## 8734     2.0 1467092461
## 8737     2.0 1467005297
## 8738     1.0 1467003517
## 8744     2.0 1470350815
## 8745     2.0 1467005244
## 8747     1.0 1470355990
## 8748     2.0 1470350818
## 8751     2.0 1470352041
## 8757     2.0 1470350977
## 8761     2.0 1470350833
## 8766     2.0 1469152845
## 8768     2.0 1467005931
## 8772     2.0 1470350745
## 8777     2.0 1470350805
## 8790     3.0  907762733
## 8796     2.0  907762795
## 8797     3.0  907763065
## 8809     3.0  907764831
## 8812     3.0  907762795
## 8818     3.0  907766060
## 8828     2.0  907765142
## 8829     2.0  907762832
## 8836     2.0  907765142
## 8837     3.0  907765059
## 8849     3.0  907764544
## 8850     3.0  907765939
## 8851     3.0  907765939
## 8859     3.0  907764544
## 8868     3.0  907764584
## 8869     3.0  907765939
## 8870     3.0  907764723
## 8873     3.0  907764431
## 8880     2.0  907765422
## 8881     1.0  907765461
## 8895     3.0  907762885
## 8898     3.0  907765059
## 8902     3.0  907762795
## 8909     3.0  907763245
## 8910     3.0  907762733
## 8911     3.0  907762832
## 8914     2.0  907762795
## 8916     1.0  907761833
## 8917     3.0  907761919
## 8930     3.0  907764389
## 8932     2.0  907765223
## 8933     2.0  907765363
## 8934     1.0  907765329
## 8935     1.0  907765329
## 8936     1.0  907765422
## 8937     1.0  907765461
## 8939     3.0  907765278
## 8940     1.0  907765422
## 8941     2.0  907765329
## 8943     3.0  907765223
## 8944     2.0  907765329
## 8948     3.0  907765223
## 8949     3.0  907764935
## 8951     3.0  907765902
## 8954     2.0  907762001
## 8957     3.0  907765191
## 8958     3.0  907765191
## 8960     2.0  907765363
## 8961     3.0  907765278
## 8965     3.0  907765278
## 8968     2.0  907764584
## 8969     3.0  907765422
## 8970     1.0  907765461
## 8973     3.0  907765059
## 8974     3.0  907764544
## 8975     1.0  907762089
## 8976     3.0  907764470
## 8977     2.0  907765363
## 8987     3.0  907765600
## 8988     3.0  907765142
## 8993     1.0  961127638
## 8995     1.0  961127638
## 8996     3.0  961127638
## 8997     2.0  961128086
## 9000     2.0  961128124
## 9002     2.0  961127724
## 9003     2.0  961128239
## 9006     2.0  961127522
## 9007     2.0  961128178
## 9010     2.0  961127638
## 9015     2.0  961127256
## 9017     3.0  961127834
## 9021     1.0  961128020
## 9022     1.0  961128302
## 9025     2.0  961128239
## 9028     3.0  961127592
## 9029     2.0  961128124
## 9030     2.0  961127480
## 9031     3.0  961127480
## 9032     3.0  961127690
## 9034     2.0  961128302
## 9039     3.0  961127558
## 9041     2.0  961127790
## 9042     2.0  961127761
## 9043     2.0  961127256
## 9044     1.0  961128302
## 9048     2.0  961127638
## 9049     3.0  961128269
## 9052     2.0  961127558
## 9058     1.0  961127407
## 9060     3.0  961127923
## 9061     1.0  961127256
## 9064     3.0  961127639
## 9065     2.5 1144755845
## 9068     2.5 1144755826
## 9070     3.5 1144755802
## 9071     2.0 1144756058
## 9072     1.0 1144756054
## 9075     2.5 1144756299
## 9076     1.5 1144756051
## 9077     0.5 1144756048
## 9078     1.5 1144755842
## 9083     0.5 1144756031
## 9084     3.5 1144756028
## 9085     3.5 1144756398
## 9090     1.5 1144755833
## 9093     3.5 1144756013
## 9094     3.5 1144755855
## 9096     0.5 1144755869
## 9098     1.5 1144756203
## 9099     3.0 1144755873
## 9100     3.5 1144755823
## 9101     2.5 1144756199
## 9102     1.5 1144756004
## 9103     1.0 1144756192
## 9104     0.5 1144756188
## 9106     0.5 1144756181
## 9107     3.5 1144756178
## 9108     3.5 1144756175
## 9110     3.5 1144755999
## 9111     0.5 1144756164
## 9112     2.0 1144756161
## 9114     1.0 1144756153
## 9115     1.5 1144756141
## 9116     1.5 1144755852
## 9118     2.0 1144755809
## 9119     1.5 1144756134
## 9120     3.0 1144756128
## 9123     1.5 1144755795
## 9126     1.0 1144756112
## 9128     3.5 1144756106
## 9129     0.5 1144756094
## 9130     1.5 1144755866
## 9132     3.5 1144756101
## 9133     3.0 1144756087
## 9140     3.5 1144756276
## 9141     2.0 1144756332
## 9144     3.0 1125829035
## 9147     3.5 1125828860
## 9152     2.5 1125828818
## 9154     3.5 1125829207
## 9162     1.5 1125828900
## 9163     2.5 1125828872
## 9168     3.5 1125828850
## 9174     3.5 1125829108
## 9175     3.5 1125829131
## 9177     3.0 1125829042
## 9184     3.0 1125828855
## 9189     3.0 1125829047
## 9195     3.0 1125828995
## 9198     3.5 1216051639
## 9199     2.0 1216050806
## 9200     2.5 1216052245
## 9203     1.5 1216486613
## 9205     3.5 1216052001
## 9206     3.5 1216050872
## 9208     1.5 1216052048
## 9209     3.5 1216487185
## 9210     3.0 1216050910
## 9212     3.0 1216050688
## 9214     3.0 1217176111
## 9215     3.5 1216051901
## 9216     2.5 1216050607
## 9217     2.0 1216486577
## 9218     1.5 1216050050
## 9219     2.5 1216487081
## 9220     2.0 1216487462
## 9221     2.5 1216050212
## 9222     3.0 1216050981
## 9223     3.5 1216052355
## 9224     3.0 1216050143
## 9225     3.0 1216487383
## 9226     3.5 1216052159
## 9227     2.5 1216487645
## 9229     3.0 1216486917
## 9230     2.0 1216050704
## 9231     3.5 1216050633
## 9234     2.5 1217176086
## 9235     3.5 1216051628
## 9236     2.5 1216487574
## 9237     3.5 1216051765
## 9239     3.5 1216050812
## 9240     2.0 1216052066
## 9242     2.0 1216051712
## 9244     2.5 1216487345
## 9245     2.5 1216051756
## 9246     1.5 1216050040
## 9247     2.5 1216052376
## 9248     3.5 1216051647
## 9249     2.5 1216487259
## 9250     3.0 1216487390
## 9251     2.5 1216050185
## 9252     3.0 1216486970
## 9253     2.0 1216486558
## 9254     2.0 1216050841
## 9255     3.0 1216486754
## 9257     3.5 1216050771
## 9258     2.0 1216050083
## 9262     3.0 1216050558
## 9263     3.0 1216487170
## 9264     1.0 1216052021
## 9267     3.0 1216487450
## 9268     1.0 1216050711
## 9269     2.5 1216050152
## 9270     1.5 1216050859
## 9271     3.0 1216487130
## 9272     1.5 1216487195
## 9273     2.5 1217175695
## 9274     3.5 1217175825
## 9275     3.5 1216051015
## 9276     3.5 1216050580
## 9278     2.5 1216486820
## 9279     3.0 1216050489
## 9280     3.5 1216487437
## 9281     3.0 1216050661
## 9283     3.5 1216051026
## 9285     1.0 1216487083
## 9286     3.5 1217175814
## 9287     3.0 1216051664
## 9288     1.5 1216052029
## 9290     3.5 1216050163
## 9291     3.0 1216050722
## 9294     2.5 1217175803
## 9296     3.5 1216051752
## 9297     3.0 1216050500
## 9298     1.5 1216050627
## 9299     2.5 1216050335
## 9301     3.0 1216486831
## 9304     2.0 1216050274
## 9306     2.0 1216050747
## 9307     2.5 1217175562
## 9308     0.5 1216052075
## 9309     3.0 1217175793
## 9310     3.5 1216486608
## 9312     2.5 1217176199
## 9314     3.5 1216487236
## 9315     1.5 1216051039
## 9316     2.0 1216052080
## 9317     2.5 1216487374
## 9318     2.0 1217176162
## 9321     2.5 1216487036
## 9323     3.0 1216487165
## 9325     2.5 1216051161
## 9328     1.0 1216050246
## 9329     2.5 1216052363
## 9331     3.5 1216051047
## 9335     3.5 1216051666
## 9336     2.5 1216051984
## 9341     3.0 1216487179
## 9342     1.0 1216051188
## 9344     2.5 1216050332
## 9346     2.5 1216051008
## 9347     2.5 1216050692
## 9349     2.5 1217424458
## 9350     3.5 1216050821
## 9354     3.0 1216052146
## 9355     2.5 1217175527
## 9357     3.0 1216487091
## 9362     3.0 1216486663
## 9366     3.5 1451359418
## 9378     3.5 1452916989
## 9383     3.5 1451707886
## 9389     3.0 1451708608
## 9390     3.0 1451708709
## 9392     3.5 1451708254
## 9393     3.5 1451712467
## 9401     3.0 1451706920
## 9404     3.0 1451178678
## 9405     3.0 1451406848
## 9406     3.5 1451706930
## 9409     1.5 1465535480
## 9411     3.5 1453472303
## 9418     3.5 1079098249
## 9420     0.5 1075307034
## 9421     3.0 1075307039
## 9423     0.5 1075307036
## 9424     0.5 1075307056
## 9426     1.0 1075307064
## 9428     3.5 1079098188
## 9430     3.0 1078570670
## 9432     1.0 1075307062
## 9433     3.0 1079098254
## 9437     2.5 1075307060
## 9438     1.5 1076324016
## 9441     0.5 1076324074
## 9446     1.5 1075307020
## 9447     1.0 1075307065
## 9450     2.0 1079098251
## 9452     3.0 1076324009
## 9454     3.5 1079098265
## 9456     1.0 1076324059
## 9457     1.0 1076324000
## 9462     3.0 1078570723
## 9465     3.5 1078570725
## 9468     2.5 1079098501
## 9469     1.0 1078570715
## 9471     2.0 1078570716
## 9478     3.0 1079098192
## 9489     2.0 1078570684
## 9493     2.0 1078570672
## 9499     2.5 1079098205
## 9509     2.5 1076324031
## 9513     3.5 1079098342
## 9515     3.0  843159644
## 9517     3.0  843159716
## 9518     3.0  843159967
## 9519     3.0  843159770
## 9525     2.0  843159716
## 9534     3.0  843159967
## 9538     2.0  945118660
## 9543     2.0  945118792
## 9546     2.0  945150351
## 9548     3.0  945118543
## 9550     3.0  945150278
## 9555     3.0  945149834
## 9563     2.0  974599486
## 9564     2.0  974597659
## 9583     3.0  974600108
## 9588     3.0  974600728
## 9589     3.0  974599861
## 9590     3.0  974600572
## 9592     2.0  974599543
## 9599     3.0  974599434
## 9600     3.0  974600144
## 9601     2.0  974600286
## 9602     3.0  974599773
## 9607     3.0  974600703
## 9610     3.0  974598446
## 9611     3.0  854711770
## 9613     3.0  854711916
## 9619     3.0  854714498
## 9622     3.0  854711772
## 9624     3.0  854711958
## 9625     3.0  854711941
## 9626     1.0  854711771
## 9627     3.0  854711830
## 9628     3.0  854711884
## 9630     3.0  854711804
## 9631     1.0  854711771
## 9634     3.0  854715870
## 9637     3.0  854713176
## 9645     3.0  854714394
## 9648     3.0  854713245
## 9651     3.0  854714421
## 9654     1.0  854713245
## 9656     3.0  854715869
## 9660     2.0  854715870
## 9662     2.0  854714246
## 9664     3.0  854714439
## 9671     3.0  854714302
## 9676     3.0  854714282
## 9679     3.0  854715905
## 9683     3.0  854711916
## 9687     3.0  854711862
## 9688     3.0  854711941
## 9689     3.0  854711862
## 9690     3.0  854711771
## 9692     3.0  854711830
## 9693     3.0  854712785
## 9694     3.0  854711978
## 9696     3.0  854711830
## 9698     3.0  854711916
## 9699     1.0  854711884
## 9700     3.0  854711916
## 9703     2.0  854711884
## 9705     3.0  854711830
## 9706     3.0  854711830
## 9707     3.0  854712006
## 9708     3.0  854711916
## 9710     3.0  854714227
## 9715     3.0 1249809905
## 9716     3.5 1249808221
## 9718     3.0 1219476836
## 9719     3.0 1249808197
## 9722     3.0 1219477266
## 9726     3.0 1194740982
## 9729     3.5 1194741627
## 9730     3.5 1219477297
## 9731     3.5 1194741800
## 9732     3.5 1219477374
## 9734     3.5 1194741795
## 9735     3.5 1194741615
## 9736     3.0 1249809470
## 9737     2.5 1249807905
## 9738     3.5 1249809424
## 9743     3.5 1194741164
## 9744     3.5 1194741234
## 9747     3.0 1194743811
## 9749     3.5 1194741096
## 9751     3.5 1194742491
## 9753     3.5 1194741774
## 9763     3.5 1194741082
## 9766     3.0 1249809495
## 9771     2.5 1194741124
## 9772     3.5 1249808019
## 9774     3.5 1194741217
## 9776     3.5 1194741010
## 9778     3.5 1249808373
## 9779     3.5 1194742620
## 9780     3.5 1194742605
## 9782     1.0 1249809623
## 9783     3.5 1194740954
## 9784     1.5 1249808007
## 9785     3.0 1249807997
## 9787     2.5 1194743883
## 9789     3.0 1194740965
## 9792     3.5 1194741657
## 9793     3.5 1194744286
## 9794     3.5 1249809788
## 9797     3.5 1249807965
## 9798     3.5 1194744599
## 9800     3.5 1194741843
## 9804     1.5 1249807943
## 9805     3.5 1194744481
## 9806     3.5 1194744514
## 9807     3.0 1249807928
## 9808     3.0 1194741828
## 9810     3.5 1194744593
## 9811     1.0 1194741643
## 9812     3.5 1194741823
## 9814     3.0 1194741682
## 9816     3.0 1194742776
## 9819     3.5 1249808268
## 9822     3.5 1255153332
## 9824     2.5 1219474832
## 9825     3.0 1194742092
## 9826     3.0 1194742744
## 9828     3.5 1346824829
## 9830     2.5 1194741316
## 9831     3.5 1194744575
## 9832     3.5 1194744487
## 9833     3.5 1249809801
## 9834     3.5 1194744213
## 9835     3.5 1202605564
## 9838     3.5 1366831701
## 9845     3.0 1366831962
## 9848     3.5 1366831100
## 9854     3.5 1348153638
## 9855     3.5 1366831784
## 9856     3.5 1366831290
## 9861     3.0 1366831955
## 9863     2.0 1366831769
## 9867     3.0 1366831950
## 9873     3.5 1348153569
## 9877     3.5 1366831929
## 9882     2.5 1366831811
## 9883     3.5 1348153818
## 9884     1.0 1348153829
## 9889     3.5 1348153794
## 9895     2.5 1348153841
## 9897     0.5 1348153863
## 9898     3.5 1366831871
## 9899     3.5 1366831839
## 9900     3.5 1348153974
## 9902     3.5 1366831823
## 9907     3.5 1366831708
## 9915     3.0 1348154058
## 9921     3.0  853954323
## 9922     3.0  853954486
## 9923     3.0  853954577
## 9924     3.0  853954402
## 9935     3.0  853954577
## 9941     3.0  853954814
## 9945     3.0  853954401
## 9951     3.0  853954323
## 9957     3.0  853954485
## 9958     3.0  853954656
## 9959     3.0  853954235
## 9962     3.0  853954814
## 9964     3.0  853954729
## 9965     3.0  853954814
## 9972     3.0  853954577
## 9975     3.0  853954485
## 9976     3.0  853954577
## 9978     3.0  853954729
## 9979     3.0  853954656
## 9982     3.0  853954402
## 9989     3.0  853954814
## 10002    3.0  974659502
## 10014    3.0  974659023
## 10021    3.0  974659408
## 10024    3.5 1461778737
## 10025    2.5 1461784724
## 10026    3.5 1461784392
## 10028    3.5 1461784365
## 10029    3.5 1461784569
## 10030    3.0 1461778719
## 10034    3.0 1461778746
## 10037    3.5 1461778557
## 10041    3.5 1461784591
## 10043    3.0 1461784428
## 10044    3.0 1461778739
## 10045    3.0 1461784475
## 10051    3.5 1461784644
## 10053    3.0 1461778751
## 10054    3.5 1461784424
## 10055    3.5 1461784642
## 10056    2.5 1461778617
## 10057    3.5 1461784345
## 10059    3.5 1461778611
## 10060    3.5 1461778692
## 10061    3.0 1461784613
## 10062    3.5 1461784742
## 10065    3.0 1461784637
## 10067    3.0 1461784599
## 10068    3.0 1461778600
## 10069    3.0 1461778760
## 10070    1.5 1461784035
## 10071    2.5 1461783967
## 10072    3.0 1461783836
## 10073    3.0 1461783926
## 10074    3.5 1461784442
## 10075    3.5 1461783857
## 10076    3.5 1461783923
## 10077    3.0 1461784071
## 10079    1.5 1461784048
## 10080    3.5 1461783915
## 10082    2.5 1461783988
## 10084    3.0 1461784367
## 10085    3.0 1461784065
## 10086    3.5 1461784011
## 10088    3.0 1461783845
## 10089    3.0 1461783869
## 10090    3.5 1461783841
## 10091    3.5 1461783980
## 10092    3.0 1461778717
## 10093    3.5 1461783881
## 10094    2.5 1461783975
## 10095    3.0 1461783872
## 10096    3.0 1461784578
## 10097    3.0 1461783889
## 10098    3.5 1461783865
## 10099    3.0 1461784050
## 10100    2.5 1461784730
## 10101    3.0 1461778734
## 10102    3.5 1461783920
## 10103    3.5 1461783992
## 10104    2.5 1461784606
## 10105    3.0 1461783846
## 10106    3.5 1461783983
## 10107    3.0 1461783838
## 10109    3.0 1461784038
## 10110    3.5 1461783871
## 10111    2.0 1461783970
## 10112    3.0 1461784533
## 10113    3.5 1461783960
## 10114    3.0 1461778706
## 10115    3.0 1461784490
## 10116    3.5 1461783867
## 10117    3.0 1461783898
## 10118    2.5 1461784661
## 10119    3.5 1461784505
## 10120    3.0 1461784473
## 10121    3.0 1461783972
## 10122    3.5 1461784759
## 10123    2.0 1461783887
## 10124    3.0 1461784763
## 10125    3.0 1461783896
## 10126    3.5 1461784702
## 10127    3.0 1461784573
## 10128    3.5 1461784364
## 10129    3.5 1461784711
## 10130    2.5 1461784674
## 10131    3.0 1461783948
## 10132    3.0 1461784566
## 10133    3.0 1461784585
## 10134    3.5 1461783951
## 10135    3.5 1461784370
## 10136    3.0 1461783936
## 10138    3.0 1464722875
## 10139    3.0 1464723963
## 10140    3.0 1461783977
## 10141    3.5 1464723975
## 10142    1.5 1464722915
## 10143    2.5 1464722908
## 10144    3.5 1464723971
## 10145    3.0 1464722892
## 10146    2.5 1464723952
## 10147    3.5 1464723990
## 10148    3.0 1464723959
## 10149    2.0 1461784655
## 10150    2.5 1464723939
## 10151    3.0 1464723955
## 10152    3.5 1464722900
## 10153    3.0 1461783945
## 10154    3.0 1461784582
## 10155    3.5 1464723948
## 10156    3.5 1461784515
## 10157    3.5 1464723984
## 10158    3.0 1464723945
## 10160    3.0 1464722878
## 10162    3.5 1464723967
## 10164    3.5 1461778714
## 10165    3.0 1461784352
## 10167    3.5 1461784770
## 10168    3.5 1461784524
## 10169    3.5 1461783955
## 10170    2.0 1461784744
## 10171    3.0 1461784013
## 10173    2.0 1461784029
## 10174    2.0 1461783938
## 10175    3.0 1461784053
## 10176    3.5 1461778701
## 10177    3.0 1461784665
## 10178    3.5 1461784766
## 10179    3.5 1461784449
## 10180    3.5 1461784739
## 10181    3.5 1461784720
## 10182    3.0 1461784574
## 10183    3.5 1461784563
## 10184    3.5 1461784704
## 10185    2.5 1461784358
## 10186    3.0 1461778763
## 10189    2.5 1461784734
## 10190    3.0 1461784588
## 10191    3.5 1461778748
## 10192    3.0 1461784567
## 10193    2.5 1461784749
## 10194    3.5 1461784700
## 10195    3.5 1461784437
## 10196    3.5 1461784698
## 10197    3.5 1461784548
## 10199    3.5 1461778724
## 10200    3.5 1461784387
## 10201    3.0 1461784379
## 10202    1.0 1461784707
## 10203    3.5 1461784342
## 10204    3.5 1461778744
## 10205    3.5 1461784635
## 10207    3.0 1461778642
## 10208    3.0 1461778637
## 10209    3.0 1461778586
## 10210    3.5 1461778626
## 10211    1.0 1461784183
## 10212    3.5 1461784683
## 10213    3.0 1461778632
## 10214    2.0 1461784162
## 10216    2.5 1255595527
## 10218    3.0 1255591764
## 10219    2.5 1255593501
## 10221    1.5 1255501766
## 10222    3.5 1255597031
## 10224    3.5 1255591860
## 10226    2.5 1255606447
## 10229    3.0 1255596165
## 10231    2.0 1255608841
## 10233    2.0 1470720095
## 10234    3.5 1304411684
## 10235    2.0 1255587668
## 10237    3.5 1255596154
## 10238    3.0 1406172306
## 10239    3.5 1312496282
## 10240    2.5 1255843848
## 10241    3.0 1255742407
## 10243    3.5 1255502716
## 10244    3.5 1348568488
## 10245    3.0 1255596442
## 10247    3.5 1286701620
## 10248    1.0 1281668214
## 10249    2.0 1255608880
## 10250    3.0 1255506790
## 10251    3.5 1255505013
## 10252    3.5 1255608532
## 10253    2.5 1256018505
## 10254    0.5 1255587428
## 10255    3.5 1255503714
## 10256    3.0 1255587153
## 10258    3.0 1470720332
## 10259    3.5 1255593273
## 10260    2.5 1256030057
## 10261    3.0 1266049987
## 10263    3.0 1255503373
## 10267    3.5 1264835146
## 10270    3.0 1437711199
## 10273    3.5 1255506785
## 10274    2.5 1369513505
## 10275    2.0 1470720392
## 10278    3.0 1304411765
## 10279    3.5 1255844977
## 10280    3.0 1255597661
## 10284    3.0 1256029728
## 10288    2.5 1255849588
## 10289    2.0 1255609029
## 10290    3.5 1285414310
## 10291    3.0 1255593485
## 10292    2.0 1255501759
## 10293    3.0 1256029720
## 10294    3.5 1470720434
## 10298    2.0 1255947440
## 10299    3.0 1457597096
## 10300    2.5 1255597004
## 10301    3.0 1256030041
## 10302    3.0 1255594331
## 10303    3.5 1280749457
## 10304    2.5 1255501745
## 10305    2.5 1255597090
## 10306    2.5 1255596999
## 10308    3.5 1255502945
## 10309    2.5 1304412304
## 10310    3.5 1255508982
## 10311    3.5 1304412090
## 10314    2.5 1304411724
## 10316    3.5 1255608640
## 10318    3.5 1255507407
## 10320    3.0 1287294447
## 10322    3.5 1255845005
## 10323    3.5 1272354528
## 10324    3.0 1470720213
## 10325    3.5 1470896986
## 10327    0.5 1255593983
## 10328    3.5 1470720182
## 10330    3.0 1255850852
## 10333    3.5 1255844972
## 10336    3.5 1255596533
## 10337    2.5 1470719734
## 10338    3.5 1255608112
## 10340    3.0 1255595915
## 10344    3.5 1255844780
## 10346    3.5 1255844932
## 10347    3.0 1256030046
## 10349    1.5 1398568108
## 10351    3.0 1470720316
## 10352    3.0 1255845002
## 10353    2.5 1256030164
## 10354    3.0 1255506758
## 10355    3.0 1470720292
## 10356    3.0 1470720380
## 10357    2.5 1256018210
## 10358    2.5 1422335223
## 10359    3.0 1256029754
## 10361    1.5 1255608540
## 10362    2.5 1256030591
## 10364    2.5 1470720372
## 10366    3.5 1283940897
## 10367    2.5 1470720219
## 10369    3.5 1457596624
## 10370    1.0 1255591836
## 10371    3.5 1304411666
## 10372    2.0 1398568202
## 10373    2.5 1255606772
## 10374    3.5 1348567967
## 10375    3.0 1418785517
## 10376    2.5 1256030174
## 10377    3.5 1255500962
## 10379    2.5 1255849976
## 10383    1.5 1255501638
## 10386    3.5 1470720223
## 10387    3.0 1255594607
## 10388    3.5 1303464880
## 10389    3.5 1279948049
## 10390    3.5 1337594349
## 10391    3.0 1256030424
## 10392    3.0 1255595609
## 10393    3.5 1282638702
## 10395    3.5 1255743474
## 10396    3.5 1255609078
## 10400    3.5 1255844891
## 10402    2.0 1255595979
## 10403    3.5 1411355622
## 10405    3.5 1255595920
## 10406    3.5 1255609131
## 10409    3.0 1255508109
## 10412    3.5 1280749995
## 10430    3.5 1270610619
## 10433    3.0 1255608634
## 10437    3.5 1432525150
## 10439    3.5 1256030107
## 10444    3.5 1280749968
## 10454    3.5 1312496151
## 10455    2.5 1255587965
## 10458    1.5 1255591944
## 10459    3.5 1267705570
## 10460    2.0 1255593963
## 10461    3.5 1255501914
## 10462    3.0 1255501035
## 10463    3.0 1255500860
## 10464    3.0 1348567962
## 10467    3.5 1255844967
## 10468    3.0 1255608055
## 10469    3.5 1437103984
## 10471    2.0 1470720209
## 10472    2.5 1470719755
## 10473    3.0 1255502875
## 10474    3.5 1261667770
## 10476    3.5 1281668223
## 10479    3.0 1255591429
## 10483    3.5 1255500918
## 10485    3.0 1398567944
## 10486    2.5 1255501084
## 10487    1.0 1255586834
## 10488    3.5 1409205998
## 10490    2.5 1255609223
## 10491    3.5 1304411853
## 10492    2.0 1255502015
## 10494    3.0 1255843935
## 10495    3.5 1255591360
## 10496    3.5 1255509163
## 10497    3.0 1256030207
## 10498    2.5 1255597293
## 10499    0.5 1255597075
## 10501    3.5 1331374345
## 10502    3.0 1255607723
## 10503    3.0 1460517728
## 10506    3.0 1256028479
## 10507    0.5 1255586362
## 10508    3.5 1255596053
## 10509    1.0 1255589046
## 10510    2.5 1255597219
## 10511    3.5 1255501843
## 10514    3.5 1311319246
## 10515    1.5 1255849480
## 10516    3.0 1255609000
## 10517    3.5 1295875283
## 10519    3.5 1457597070
## 10520    3.0 1255596853
## 10521    1.5 1255507319
## 10523    2.0 1255596139
## 10525    1.5 1255845284
## 10526    0.5 1256552857
## 10527    3.5 1255502846
## 10530    2.0 1255593683
## 10532    0.5 1255503138
## 10533    3.5 1406172191
## 10534    3.0 1256030295
## 10535    3.0 1257239744
## 10537    3.5 1369514567
## 10538    2.5 1255596509
## 10539    1.0 1255588837
## 10540    3.5 1272354630
## 10541    3.0 1470720028
## 10542    1.0 1255589167
## 10543    2.5 1437709517
## 10544    1.0 1255849486
## 10545    3.5 1255594560
## 10546    3.5 1437709512
## 10547    3.0 1411355597
## 10550    2.0 1255591355
## 10551    2.5 1255596503
## 10552    3.0 1255591350
## 10553    3.5 1272355372
## 10556    3.5 1431232609
## 10559    3.5 1255845278
## 10561    3.5 1255742786
## 10568    3.0 1437103998
## 10571    2.5 1255595963
## 10573    3.5 1411452543
## 10574    2.5 1255595957
## 10576    3.5 1303464933
## 10577    3.5 1470720309
## 10578    3.5 1255608711
## 10579    2.5 1304412471
## 10580    2.5 1304411648
## 10583    3.5 1378180034
## 10584    3.5 1303464871
## 10585    3.5 1282545301
## 10586    3.5 1255844937
## 10587    3.5 1279948023
## 10588    3.5 1437711085
## 10590    3.0 1256027987
## 10591    3.0 1255500870
## 10594    3.5 1255506668
## 10599    3.5 1261656636
## 10600    3.5 1300947005
## 10602    3.5 1255844084
## 10603    3.0 1255596126
## 10604    3.0 1418786181
## 10605    3.5 1261656735
## 10606    1.0 1255589018
## 10607    3.0 1256030336
## 10611    3.0 1304411810
## 10614    3.5 1411876538
## 10616    3.5 1348568537
## 10620    3.5 1255593907
## 10621    3.5 1255502070
## 10622    3.0 1255844988
## 10624    2.5 1255587644
## 10626    3.0 1256030202
## 10627    3.5 1255608781
## 10628    3.5 1441522263
## 10630    3.0 1255502470
## 10631    0.5 1256028414
## 10632    2.5 1255742368
## 10633    3.0 1255594309
## 10635    3.5 1369513448
## 10636    3.5 1255504073
## 10637    3.5 1454042117
## 10638    3.5 1431234283
## 10641    3.0 1255593426
## 10642    3.5 1255593420
## 10643    3.0 1255586748
## 10644    3.0 1275964632
## 10646    3.0 1255507270
## 10647    3.5 1255844856
## 10648    2.0 1255844835
## 10651    3.0 1427170376
## 10652    1.5 1255597066
## 10654    2.0 1255850016
## 10655    2.0 1255593663
## 10657    3.5 1261487007
## 10660    3.0 1441522359
## 10662    3.0 1474615000
## 10663    3.5 1255844950
## 10664    3.5 1274265898
## 10666    3.5 1406171915
## 10668    2.0 1256030469
## 10670    3.0 1469772944
## 10671    1.0 1255586425
## 10674    3.5 1437709524
## 10676    3.0 1427170447
## 10679    2.0 1256030461
## 10680    3.5 1369514518
## 10681    3.5 1464751460
## 10682    2.5 1255591345
## 10683    2.0 1256944354
## 10684    3.0 1437709506
## 10685    3.0 1255596353
## 10688    3.0 1255597830
## 10689    3.0 1255502120
## 10690    3.5 1255844776
## 10691    2.0 1255586467
## 10692    3.5 1255501979
## 10694    3.5 1255591385
## 10696    1.5 1255947627
## 10698    3.0 1282545112
## 10699    1.0 1255587084
## 10700    2.5 1472698650
## 10701    3.0 1256019289
## 10702    2.5 1304412607
## 10704    3.0 1369513635
## 10705    3.0 1259325836
## 10706    2.5 1257229357
## 10708    3.0 1255591390
## 10709    3.5 1255501853
## 10710    3.5 1273043702
## 10711    3.0 1255844915
## 10713    2.0 1255596937
## 10716    3.0 1348568560
## 10717    3.5 1255506106
## 10720    3.5 1255849777
## 10721    3.5 1348568747
## 10722    3.5 1255509017
## 10723    3.0 1464508137
## 10724    3.5 1456038664
## 10725    3.5 1411355584
## 10734    2.5 1255849720
## 10736    3.5 1432523188
## 10737    1.0 1255586415
## 10739    3.5 1255607717
## 10742    3.5 1406172160
## 10744    3.5 1261487189
## 10747    3.5 1255596722
## 10750    3.0 1255509153
## 10751    3.0 1337594327
## 10752    2.5 1255503566
## 10753    2.5 1255500985
## 10754    3.5 1256018249
## 10757    2.5 1474615285
## 10759    2.0 1255743364
## 10760    3.5 1257228558
## 10762    3.5 1255845019
## 10763    2.5 1255845250
## 10765    2.5 1255608868
## 10767    3.5 1255508823
## 10770    3.5 1304411787
## 10771    2.5 1256028073
## 10772    2.5 1255500852
## 10773    3.0 1256030417
## 10776    3.5 1475124680
## 10777    2.5 1255607878
## 10778    3.5 1255507224
## 10780    3.5 1369514944
## 10782    3.5 1279948734
## 10783    3.5 1261572674
## 10787    3.5 1255742725
## 10788    3.5 1255592969
## 10789    3.0 1255586543
## 10790    1.5 1255586548
## 10791    3.5 1255597612
## 10792    3.0 1264493967
## 10796    3.5 1255597607
## 10798    3.5 1282543451
## 10801    3.0 1255506079
## 10802    2.0 1255594378
## 10803    0.5 1255588774
## 10804    0.5 1255588780
## 10807    0.5 1255588769
## 10808    2.5 1255591380
## 10809    2.0 1255608746
## 10810    3.0 1255595938
## 10812    3.5 1469772991
## 10813    3.0 1255844919
## 10816    2.5 1258367323
## 10817    3.5 1258367400
## 10818    3.5 1259389532
## 10820    3.5 1370057557
## 10821    3.5 1464751470
## 10824    3.5 1255596218
## 10825    3.5 1259325859
## 10826    2.0 1255608143
## 10827    2.5 1255594368
## 10828    3.0 1255597273
## 10829    3.0 1255844941
## 10831    3.0 1255591794
## 10832    2.5 1255608592
## 10833    1.5 1255608249
## 10834    1.5 1257229260
## 10836    3.5 1261573299
## 10837    2.5 1255596214
## 10838    1.5 1255742451
## 10840    3.5 1255844895
## 10841    3.0 1262826535
## 10844    3.5 1312496194
## 10845    3.0 1304411604
## 10846    3.0 1255742998
## 10847    2.5 1255586357
## 10848    3.5 1255849638
## 10851    2.0 1255608483
## 10852    0.5 1255503033
## 10853    3.0 1369513586
## 10854    2.5 1255596840
## 10855    3.5 1255591337
## 10856    3.0 1257229345
## 10861    2.5 1255742448
## 10862    3.0 1255597278
## 10863    3.0 1255845245
## 10864    3.0 1255594363
## 10865    2.5 1256030443
## 10868    2.0 1255608233
## 10869    1.5 1456038994
## 10870    3.5 1255609092
## 10873    3.5 1255845024
## 10874    3.5 1437710061
## 10875    3.0 1418462162
## 10876    3.5 1255844881
## 10877    3.5 1255849756
## 10879    0.5 1255596198
## 10881    2.5 1255608478
## 10882    0.5 1255592082
## 10884    2.5 1255596703
## 10886    2.5 1256019294
## 10888    2.5 1257228611
## 10889    1.0 1255849364
## 10890    2.0 1255845363
## 10891    2.5 1255596208
## 10892    3.5 1255507158
## 10895    1.5 1257229023
## 10897    2.5 1255609063
## 10898    3.5 1255844800
## 10899    2.0 1255596203
## 10900    3.5 1255506563
## 10901    3.5 1457597545
## 10903    3.0 1428469574
## 10906    1.5 1255608385
## 10907    3.5 1456038999
## 10908    3.5 1256944285
## 10910    3.5 1370057531
## 10912    3.0 1255593845
## 10914    3.5 1255596109
## 10916    3.5 1427170442
## 10917    3.5 1406172273
## 10918    2.5 1296952145
## 10919    2.0 1255505425
## 10921    3.0 1255594496
## 10924    2.5 1255742990
## 10925    3.5 1448953270
## 10926    3.0 1255845239
## 10928    3.0 1255596106
## 10929    3.5 1304411492
## 10930    1.5 1255608222
## 10931    3.0 1255591538
## 10932    1.5 1255594879
## 10933    0.5 1255606781
## 10934    3.5 1255509080
## 10936    2.0 1255594188
## 10937    3.0 1255844809
## 10939    3.5 1272355409
## 10941    3.5 1306826998
## 10945    3.0 1255608487
## 10946    2.5 1255607838
## 10947    3.0 1312496381
## 10948    2.0 1456039352
## 10949    3.5 1331374381
## 10950    3.5 1255844964
## 10951    3.0 1255844032
## 10952    3.5 1272354473
## 10954    3.5 1255591532
## 10955    3.0 1406172104
## 10956    3.0 1255504768
## 10961    3.0 1256030678
## 10962    3.5 1255592071
## 10963    3.0 1255742674
## 10965    0.5 1255586200
## 10967    3.0 1255606569
## 10968    3.5 1369514322
## 10970    3.0 1256030657
## 10971    3.0 1456039054
## 10974    3.5 1448953334
## 10975    3.5 1435472845
## 10976    3.0 1304411962
## 10977    3.0 1255844887
## 10979    3.5 1448953194
## 10980    3.0 1255593557
## 10981    3.5 1395987921
## 10982    3.0 1460517505
## 10983    2.0 1456039090
## 10986    3.0 1255591376
## 10987    3.0 1255591889
## 10988    3.0 1304411695
## 10989    3.0 1256017396
## 10990    3.0 1255503508
## 10991    3.0 1255503893
## 10992    1.0 1256030597
## 10993    2.0 1255608382
## 10994    3.0 1456039073
## 10995    3.5 1304412191
## 10996    2.0 1255849610
## 10997    2.5 1255609142
## 10998    0.5 1255742979
## 10999    1.5 1255503888
## 11000    2.0 1456039270
## 11002    2.5 1337594371
## 11003    1.5 1257164626
## 11004    2.5 1256029172
## 11005    1.0 1255587508
## 11006    3.5 1431406170
## 11008    2.0 1427170483
## 11009    3.5 1255850919
## 11013    3.0 1255595533
## 11015    2.5 1255587123
## 11016    2.5 1256029535
## 11017    3.5 1256029550
## 11018    2.5 1255588990
## 11019    2.0 1255588995
## 11021    3.5 1255501720
## 11022    3.0 1312496408
## 11023    3.5 1406172340
## 11026    2.0 1456039316
## 11027    2.0 1456039164
## 11030    3.5 1279948760
## 11031    3.5 1255503878
## 11034    1.5 1255608120
## 11037    3.0 1411355691
## 11038    3.5 1369513550
## 11039    0.5 1255503002
## 11040    3.5 1255844960
## 11041    2.0 1456039319
## 11042    2.5 1456039235
## 11043    2.5 1255849679
## 11045    3.0 1432523137
## 11046    2.5 1304411827
## 11047    0.5 1255586932
## 11048    3.5 1255503222
## 11050    3.5 1417081916
## 11051    3.0 1369514779
## 11052    2.0 1255596285
## 11053    2.5 1255591371
## 11055    3.0 1417081929
## 11056    2.5 1309414298
## 11057    3.0 1369515372
## 11059    3.0 1255501671
## 11060    1.5 1255843864
## 11061    0.5 1257229292
## 11062    2.0 1255503487
## 11064    2.0 1255595377
## 11066    3.0 1369513547
## 11067    2.5 1257229160
## 11068    0.5 1255589036
## 11069    3.0 1427170631
## 11070    3.0 1464508095
## 11071    0.5 1256029804
## 11072    1.5 1256028643
## 11073    3.5 1460519359
## 11074    1.5 1255742653
## 11076    3.0 1337594381
## 11077    1.5 1255587133
## 11078    2.5 1348567959
## 11082    3.5 1457596987
## 11084    3.5 1289045130
## 11087    3.0 1255591789
## 11089    3.0 1471332819
## 11090    3.5 1264405832
## 11091    2.5 1257228185
## 11094    3.5 1369514741
## 11095    2.0 1464508090
## 11096    3.5 1257222707
## 11097    2.0 1255503478
## 11098    2.0 1255596893
## 11099    3.0 1441513227
## 11100    3.0 1255593542
## 11101    3.5 1255588164
## 11102    2.0 1255607831
## 11103    3.0 1279947114
## 11107    3.5 1261656678
## 11108    3.5 1454042575
## 11109    3.0 1256029303
## 11113    3.0 1261486850
## 11115    2.5 1256030436
## 11116    2.0 1255594326
## 11118    2.0 1456039242
## 11120    3.5 1255849692
## 11122    3.5 1255594489
## 11123    3.5 1474614697
## 11125    3.0 1255591876
## 11126    2.5 1257164378
## 11127    2.5 1255596889
## 11128    3.0 1288095855
## 11129    3.0 1255591517
## 11131    2.0 1260977308
## 11132    3.5 1304412434
## 11133    3.5 1255503212
## 11134    3.0 1255844992
## 11137    3.5 1255606539
## 11138    1.5 1255743175
## 11139    2.0 1255595662
## 11143    1.5 1256559095
## 11144    3.5 1279948092
## 11146    2.5 1287575320
## 11148    3.0 1255503838
## 11149    2.5 1255586520
## 11150    3.5 1423801745
## 11152    3.5 1448953187
## 11153    3.5 1435474813
## 11156    3.5 1303464741
## 11157    3.0 1255742433
## 11158    1.5 1255589173
## 11159    3.5 1312496376
## 11160    3.0 1456039039
## 11161    1.0 1256029799
## 11162    2.5 1256030665
## 11163    3.5 1255844984
## 11164    3.5 1411451654
## 11165    2.5 1427170338
## 11166    3.0 1255596174
## 11168    2.0 1456039261
## 11169    3.5 1255742327
## 11170    3.5 1348568288
## 11172    2.5 1456039172
## 11174    3.0 1255502811
## 11175    3.0 1256017177
## 11176    2.5 1256019169
## 11178    3.0 1255593134
## 11179    3.0 1255608196
## 11180    2.0 1255843862
## 11181    0.5 1255588939
## 11182    3.5 1441522129
## 11183    0.5 1255588886
## 11184    2.5 1255594684
## 11188    3.0 1296460230
## 11189    3.5 1255591865
## 11190    3.5 1475989020
## 11191    0.5 1255592030
## 11192    3.5 1304412144
## 11195    3.0 1255597036
## 11196    3.0 1256019079
## 11197    2.5 1255742417
## 11200    3.5 1359617333
## 11201    3.0 1406172493
## 11203    3.5 1456038539
## 11204    3.5 1469772963
## 11206    3.5 1437710037
## 11208    3.0 1255587770
## 11211    2.5 1255589582
## 11216    3.5 1255590127
## 11217    2.5 1255501883
## 11220    2.0 1256029681
## 11223    2.5 1337593382
## 11224    3.0 1255596884
## 11225    1.0 1456039398
## 11227    3.5 1431234249
## 11228    2.0 1255589041
## 11229    3.5 1255947240
## 11231    3.0 1427168079
## 11233    3.5 1262838012
## 11237    3.5 1457597312
## 11238    3.5 1469772912
## 11239    3.0 1255596762
## 11241    3.5 1255844160
## 11242    0.5 1354679048
## 11243    1.0 1255587749
## 11244    1.0 1255743146
## 11246    3.0 1255596758
## 11247    3.0 1255595655
## 11248    3.5 1337593113
## 11249    3.0 1289046552
## 11252    2.5 1255845334
## 11253    3.0 1255843857
## 11255    1.0 1255587163
## 11258    3.0 1255595926
## 11259    2.0 1256018225
## 11261    3.0 1255507534
## 11262    2.5 1255607814
## 11263    3.0 1369513542
## 11264    3.0 1257228496
## 11265    3.0 1255591870
## 11266    3.5 1255844803
## 11267    3.5 1309414233
## 11268    2.0 1255506326
## 11269    3.0 1255596097
## 11270    2.5 1255845337
## 11271    3.5 1255508666
## 11272    3.5 1255592012
## 11273    3.0 1255845325
## 11276    1.5 1256029685
## 11277    3.5 1457320124
## 11278    3.5 1256028349
## 11279    3.5 1369513527
## 11280    3.0 1255505821
## 11281    1.5 1256029392
## 11283    3.5 1312496387
## 11284    3.5 1411355658
## 11285    3.0 1417081946
## 11286    2.5 1257228521
## 11288    3.0 1255844003
## 11289    3.0 1256030828
## 11290    3.5 1454043394
## 11291    3.5 1304412896
## 11292    1.0 1255588757
## 11294    3.0 1256030820
## 11296    3.5 1255502976
## 11299    3.0 1309414323
## 11302    2.0 1256559191
## 11304    3.0 1427170230
## 11305    2.5 1257229414
## 11306    2.5 1454042655
## 11308    0.5 1255742925
## 11309    1.0 1255591703
## 11310    3.5 1255844928
## 11311    2.5 1255742920
## 11312    3.0 1255508977
## 11314    3.0 1369515354
## 11315    0.5 1255587403
## 11316    3.5 1255584710
## 11317    1.0 1255586255
## 11318    2.5 1454042857
## 11319    2.5 1362112175
## 11320    3.5 1411355653
## 11322    3.5 1255844905
## 11323    3.5 1255593521
## 11325    3.0 1255504580
## 11326    0.5 1255586400
## 11328    3.5 1296460156
## 11329    3.5 1255502085
## 11330    3.5 1255506853
## 11331    3.5 1466320346
## 11333    0.5 1255587385
## 11335    3.5 1457597587
## 11338    2.5 1256030711
## 11340    3.0 1422335258
## 11341    2.5 1255586478
## 11342    2.5 1259837617
## 11343    3.5 1255502965
## 11344    2.5 1257164355
## 11345    3.0 1256030617
## 11348    3.0 1286699648
## 11349    2.5 1256030870
## 11350    1.0 1255588747
## 11351    1.0 1255586233
## 11352    3.0 1255596877
## 11353    2.5 1255845225
## 11356    3.0 1255501684
## 11358    2.5 1309414319
## 11359    3.0 1454042794
## 11360    3.5 1255592002
## 11361    3.5 1441513955
## 11362    3.0 1256029140
## 11363    3.5 1255502108
## 11365    2.0 1348568291
## 11367    3.0 1257228572
## 11368    3.5 1255591698
## 11369    2.0 1255742621
## 11370    3.0 1255503784
## 11372    2.0 1256018404
## 11374    3.5 1384070152
## 11376    3.0 1257228718
## 11377    2.5 1256018025
## 11378    3.5 1312496372
## 11379    2.0 1256029937
## 11380    3.0 1256017323
## 11381    3.0 1255947527
## 11382    0.5 1255588933
## 11385    3.0 1255503405
## 11386    3.5 1323247224
## 11387    3.5 1255844923
## 11392    2.5 1256030803
## 11393    3.0 1369514644
## 11395    3.5 1281668271
## 11397    3.0 1255844816
## 11399    3.5 1255501962
## 11400    2.5 1256029998
## 11402    3.5 1255504199
## 11403    2.0 1423801583
## 11404    2.5 1286794236
## 11406    2.5 1255596747
## 11407    3.5 1255505761
## 11408    3.5 1255502960
## 11409    3.0 1457598052
## 11410    2.5 1255596552
## 11411    2.5 1473060722
## 11413    2.0 1256559213
## 11414    1.5 1255594676
## 11415    3.5 1255844900
## 11416    1.0 1255586222
## 11417    3.0 1255592007
## 11419    1.5 1255596555
## 11420    0.5 1255586134
## 11421    1.0 1255501589
## 11422    3.0 1454042795
## 11424    1.0 1255586976
## 11427    3.5 1427170416
## 11428    3.0 1255501647
## 11429    2.5 1435472881
## 11430    3.5 1454042671
## 11431    1.0 1255589062
## 11432    2.5 1454043041
## 11433    3.0 1255597366
## 11434    3.0 1255596548
## 11435    3.5 1255606270
## 11436    1.5 1255591493
## 11437    2.5 1257228964
## 11438    2.0 1454042917
## 11440    2.0 1255503396
## 11441    3.0 1255508072
## 11442    2.5 1255591693
## 11443    2.0 1255593506
## 11444    2.0 1255844138
## 11447    3.5 1437711118
## 11449    3.0 1255505738
## 11450    3.0 1288697624
## 11452    3.5 1457597334
## 11453    3.5 1255843975
## 11454    3.0 1369514646
## 11455    3.5 1457318292
## 11456    0.5 1255588727
## 11457    3.5 1255844953
## 11458    1.0 1256559067
## 11459    3.5 1430034154
## 11461    0.5 1255587337
## 11462    3.5 1255504546
## 11463    3.5 1266309913
## 11465    2.0 1256018282
## 11466    3.0 1255742863
## 11467    0.5 1255586420
## 11468    3.0 1337593619
## 11470    2.0 1454042733
## 11472    1.0 1255589051
## 11478    3.5 1418785824
## 11480    3.0 1406172474
## 11482    3.5 1460517652
## 11483    0.5 1255506219
## 11485    3.5 1255851305
## 11486    3.5 1255501824
## 11488    3.5 1427170617
## 11490    3.0 1255509258
## 11491    3.0 1273231862
## 11492    3.5 1423801587
## 11493    3.5 1369515334
## 11498    3.0 1454042683
## 11499    3.5 1255508067
## 11500    3.0 1257228665
## 11501    2.5 1454042767
## 11502    3.5 1289995423
## 11503    3.5 1348567926
## 11505    2.5 1255851331
## 11506    0.5 1261217423
## 11507    3.5 1255584542
## 11508    3.0 1260280418
## 11510    3.5 1256639055
## 11511    3.0 1476086345
## 11512    2.5 1255850946
## 11514    3.5 1312496413
## 11515    3.5 1255505699
## 11517    0.5 1257228032
## 11518    3.0 1263197192
## 11521    3.5 1264835071
## 11522    3.5 1268808266
## 11526    3.0 1262490949
## 11528    3.5 1369514017
## 11529    2.0 1260877856
## 11531    3.5 1441513896
## 11533    3.0 1437711220
## 11538    3.0 1270610716
## 11539    3.0 1279948662
## 11544    3.5 1432523566
## 11545    3.5 1279947051
## 11547    3.5 1471493475
## 11548    2.0 1288697300
## 11549    3.5 1277244869
## 11552    3.5 1279948640
## 11553    2.5 1286184933
## 11554    3.5 1293747419
## 11555    3.5 1293747383
## 11556    2.5 1454042956
## 11557    3.0 1286699464
## 11558    2.5 1295874843
## 11559    3.5 1289045492
## 11560    3.0 1369514012
## 11562    3.5 1288262844
## 11563    2.0 1454041525
## 11565    3.5 1337594376
## 11568    3.5 1296730408
## 11569    3.5 1470450406
## 11572    3.5 1334396237
## 11573    3.5 1337593917
## 11575    3.5 1476081506
## 11576    2.5 1457597559
## 11577    3.5 1304412705
## 11582    3.0 1320810425
## 11583    2.5 1457597487
## 11584    3.5 1437709564
## 11585    3.5 1300946992
## 11588    2.5 1406172509
## 11592    3.5 1471332805
## 11597    3.0 1411452415
## 11599    3.0 1315968775
## 11605    3.5 1317176746
## 11607    3.5 1369515303
## 11612    3.5 1457597592
## 11614    3.5 1319336835
## 11617    3.5 1345798952
## 11618    3.5 1357553094
## 11620    3.5 1324634215
## 11621    3.5 1325543528
## 11623    3.5 1431406208
## 11624    3.0 1329461095
## 11627    3.0 1329122460
## 11628    3.5 1345799028
## 11629    3.5 1325685214
## 11630    3.5 1329461077
## 11632    3.5 1348568449
## 11637    3.0 1457597425
## 11638    3.0 1329986644
## 11640    3.0 1411452403
## 11641    3.5 1345799036
## 11643    3.5 1348568088
## 11647    2.5 1352959770
## 11650    3.5 1351406444
## 11654    3.5 1437711595
## 11655    3.0 1398570058
## 11656    3.0 1398570053
## 11658    3.5 1437711059
## 11662    3.5 1358144551
## 11663    3.5 1437711174
## 11664    3.5 1398570077
## 11665    3.5 1348568386
## 11666    3.5 1398570066
## 11669    3.5 1437711131
## 11671    2.5 1359358796
## 11672    3.0 1348568337
## 11673    3.5 1441514105
## 11674    3.5 1454043300
## 11676    3.5 1369515292
## 11681    3.5 1357552193
## 11682    3.5 1369206362
## 11684    3.5 1374355488
## 11686    3.5 1437710825
## 11690    3.5 1357552186
## 11693    3.5 1370057754
## 11698    3.5 1411452577
## 11699    3.5 1378179817
## 11703    2.5 1454041530
## 11705    3.5 1374355582
## 11707    3.0 1409452741
## 11709    2.5 1457596601
## 11710    2.5 1454042845
## 11711    3.0 1406171923
## 11712    2.0 1457597113
## 11713    3.0 1437104561
## 11714    3.5 1418462292
## 11715    3.0 1427170398
## 11719    3.5 1457597402
## 11721    3.5 1411452394
## 11724    0.5 1390015641
## 11725    3.5 1404370211
## 11726    3.0 1427170708
## 11729    3.5 1404370215
## 11731    3.5 1406172291
## 11732    3.5 1457597419
## 11734    3.5 1427170706
## 11735    3.5 1398570071
## 11736    3.5 1437711587
## 11737    3.5 1411452354
## 11740    3.5 1437104540
## 11744    3.0 1411452818
## 11745    3.5 1409452259
## 11746    2.0 1411452812
## 11749    3.0 1409452254
## 11750    3.0 1457597194
## 11752    2.5 1454043389
## 11753    3.5 1423801674
## 11754    2.5 1454043328
## 11756    3.5 1454043334
## 11759    2.5 1423801598
## 11760    3.5 1422335674
## 11763    3.0 1454042867
## 11764    3.0 1457597515
## 11767    2.5 1427170549
## 11768    3.0 1457597407
## 11770    3.5 1418462052
## 11772    3.0 1457597605
## 11775    3.5 1423801646
## 11779    3.5 1437711208
## 11780    3.0 1437711165
## 11781    3.5 1418462066
## 11783    0.5 1454042838
## 11784    3.0 1457597665
## 11786    3.0 1454042923
## 11787    3.5 1431232449
## 11788    3.0 1454042873
## 11789    3.5 1454042779
## 11790    3.5 1431233322
## 11791    3.5 1431233272
## 11795    3.0 1466320222
## 11797    3.5 1474255427
## 11798    3.5 1437711226
## 11799    3.5 1457597882
## 11801    3.5 1437709660
## 11802    3.5 1432523179
## 11803    3.5 1466320172
## 11805    3.0 1466320258
## 11806    3.5 1470720695
## 11809    3.5 1457597863
## 11810    3.0 1456038901
## 11812    3.5 1471332767
## 11815    3.5 1457332236
## 11816    3.5 1466320302
## 11817    3.0 1466320393
## 11819    3.5 1460517484
## 11821    3.0 1469772608
## 11822    3.5 1473060620
## 11823    3.0 1474255459
## 11826    3.0  942705457
## 11835    1.0  942703569
## 11838    3.0  942703678
## 11839    3.0  942705648
## 11849    2.0  942705232
## 11851    3.0  942704723
## 11854    3.0  942705496
## 11861    3.0  942704863
## 11866    3.0  942704192
## 11870    3.0  942705648
## 11874    3.0 1165607201
## 11875    3.0 1143047700
## 11880    2.0 1165607377
## 11882    3.0 1143047643
## 11885    2.0 1143047471
## 11887    0.5 1165607346
## 11888    2.0 1143047458
## 11889    3.0 1143047880
## 11890    0.5 1143047478
## 11891    3.0 1165596956
## 11895    1.0 1143047916
## 11897    1.0 1143047463
## 11898    3.0 1143048961
## 11899    1.0 1143048947
## 11900    1.0 1165596837
## 11901    3.0 1143048856
## 11908    0.5 1143047705
## 11909    3.0 1143047928
## 11911    3.5 1165607559
## 11913    3.5 1143048840
## 11914    3.5 1143048887
## 11915    0.5 1143048986
## 11918    0.5 1143048977
## 11919    1.0 1143047503
## 11920    3.0 1143048836
## 11921    3.0 1165607261
## 11925    3.5 1165607211
## 11931    3.0 1143048004
## 11932    2.0 1143048064
## 11933    0.5 1165607144
## 11934    0.5 1143048164
## 11935    3.5 1143048156
## 11936    3.0 1143047444
## 11937    2.5 1143049592
## 11940    3.0 1165607364
## 11941    0.5 1143047624
## 11942    3.0 1143048523
## 11943    3.0 1143047921
## 11944    3.0 1143048053
## 11945    3.5 1143048090
## 11947    3.5 1143047679
## 11948    3.0 1143047997
## 11949    3.0 1143048070
## 11951    2.5 1165607133
## 11952    3.5 1143047685
## 11954    3.5 1143048532
## 11957    2.5 1143048305
## 11958    2.0 1143047636
## 11959    3.0 1143048520
## 11961    2.5 1143049630
## 11965    3.0 1165607066
## 11967    1.5 1143048602
## 11968    0.5 1143047691
## 11969    2.0 1143047689
## 11971    3.5 1143048020
## 11972    3.5 1143048746
## 11973    3.0 1143048172
## 11975    3.0 1143048565
## 11977    3.5 1143047896
## 11978    2.0 1143049546
## 11979    3.5 1143048546
## 11981    0.5 1165607272
## 11983    3.0 1143047490
## 11984    3.5 1143047941
## 11986    3.0 1143048203
## 11988    3.5 1143049532
## 11989    2.5 1165607291
## 11994    2.5 1165607318
## 11996    3.5 1143048060
## 11997    2.0 1165607360
## 12001    3.5 1143048192
## 12002    3.0 1165607372
## 12007    3.0 1143047861
## 12011    3.0 1165607136
## 12012    3.0 1165607299
## 12018    0.5 1165607897
## 12020    3.0 1194384318
## 12021    3.0 1194384313
## 12025    3.5 1194384373
## 12026    3.5 1194384328
## 12029    3.5 1194384353
## 12032    3.5 1194384277
## 12034    2.0 1194384399
## 12037    3.5 1194384470
## 12038    3.5 1194384451
## 12040    3.5 1163252774
## 12041    3.0 1183844529
## 12043    3.5 1163253023
## 12044    2.5 1163253088
## 12046    3.5 1163252918
## 12047    3.5 1163004464
## 12048    3.5 1163219726
## 12049    1.5 1163253105
## 12050    3.5 1163013335
## 12052    3.0 1163253085
## 12053    2.0 1183844506
## 12054    3.0 1163286142
## 12055    2.5 1163082488
## 12056    2.5 1163219428
## 12057    2.0 1163253082
## 12058    3.0 1163253079
## 12060    1.0 1163125859
## 12061    2.5 1163259531
## 12063    3.5 1163253117
## 12064    2.5 1163252922
## 12066    3.5 1163012801
## 12069    2.0 1163253047
## 12070    2.5 1163253104
## 12071    3.0 1163082485
## 12072    3.5 1163082500
## 12074    3.5 1163006023
## 12075    3.0 1163125780
## 12076    3.5 1163219373
## 12077    2.5 1163013353
## 12078    2.5 1163013344
## 12079    1.5 1163286164
## 12080    3.0 1163277657
## 12081    2.5 1163013330
## 12082    3.0 1163006020
## 12083    3.0 1183920204
## 12084    2.0 1163013198
## 12086    1.5 1183920099
## 12087    2.5 1163252886
## 12088    3.5 1163082479
## 12090    3.0 1163013339
## 12091    3.5 1163006012
## 12092    3.0 1163013328
## 12093    3.5 1163253015
## 12094    2.5 1163253037
## 12095    2.0 1183844492
## 12096    2.5 1163013368
## 12097    3.0 1183512581
## 12098    3.0 1163253027
## 12099    2.0 1163253163
## 12101    3.0 1183512477
## 12103    3.5 1163005369
## 12104    3.0 1163219390
## 12105    2.5 1163277702
## 12107    3.5 1183920326
## 12108    3.0 1163253110
## 12110    3.5 1163252515
## 12112    3.0 1163253049
## 12115    3.0 1183512491
## 12122    3.5 1183920321
## 12124    3.5 1163253113
## 12126    3.5 1163013055
## 12128    3.5 1163012783
## 12129    3.0 1183512498
## 12131    3.0 1163252277
## 12134    3.5 1163006001
## 12135    3.5 1163219327
## 12136    3.5 1163079424
## 12140    3.0 1163252892
## 12141    3.5 1183920197
## 12142    2.0 1183920089
## 12145    3.5 1163286102
## 12146    3.5 1163253071
## 12147    1.5 1183920103
## 12148    2.5 1163219409
## 12150    3.5 1163277597
## 12152    3.5 1163915779
## 12153    3.0 1183844513
## 12154    2.0 1163252930
## 12155    3.5 1163079388
## 12156    2.5 1163269736
## 12157    2.5 1163219656
## 12158    2.5 1183844547
## 12159    2.0 1163286171
## 12160    2.0 1163252812
## 12161    2.5 1163253127
## 12163    3.0 1183920347
## 12164    3.5 1183920251
## 12165    3.5 1183920333
## 12168    3.5 1163286265
## 12169    3.5 1163004544
## 12170    2.5 1163915788
## 12171    3.5 1183920345
## 12179    3.5 1163005107
## 12181    3.5 1183844537
## 12182    2.0 1163252612
## 12183    3.5 1163219423
## 12185    3.5 1163277646
## 12186    3.5 1163277601
## 12187    3.5 1163738035
## 12190    2.5 1163738031
## 12192    1.5 1163006017
## 12193    3.5 1163219366
## 12194    3.0 1163219414
## 12195    2.5 1163252918
## 12198    3.5 1163125798
## 12199    3.0 1166027951
## 12200    1.0 1183844524
## 12204    3.5 1163125886
## 12205    2.0 1163259854
## 12206    3.0 1163013177
## 12207    3.5 1163125878
## 12211    3.5 1163277606
## 12212    2.5 1163277704
## 12213    3.5 1183920193
## 12218    3.0 1163259912
## 12219    3.5 1163082621
## 12221    2.5 1163738069
## 12222    3.5 1183920264
## 12225    3.0 1163259527
## 12228    3.5 1166027891
## 12229    3.0 1166027895
## 12230    1.5 1183844498
## 12231    0.5 1183920246
## 12233    3.0 1183512502
## 12234    2.5 1163219416
## 12235    1.5 1163260803
## 12238    3.0 1163006008
## 12239    1.5 1163915774
## 12243    3.5 1163265862
## 12244    3.5 1163220288
## 12245    3.5 1183920122
## 12247    3.0 1163252840
## 12248    3.0 1163252803
## 12249    3.0 1163125809
## 12251    0.5 1163004354
## 12253    2.5 1183920127
## 12254    1.0 1163346129
## 12255    2.5 1163277700
## 12256    2.0 1183920136
## 12257    3.0 1166027898
## 12258    3.5 1163125847
## 12259    3.5 1163286177
## 12260    3.5 1163252909
## 12263    3.5 1163005241
## 12265    3.0 1163125785
## 12266    3.0 1183920097
## 12267    2.0 1183844539
## 12268    3.0 1183844467
## 12269    2.0 1163005117
## 12271    3.5 1163219308
## 12273    1.0 1163386523
## 12274    3.0 1163006045
## 12275    0.5 1183920259
## 12278    3.5 1163004657
## 12279    0.5 1183511678
## 12281    3.0 1163125818
## 12283    3.5 1166027993
## 12284    3.0 1163219386
## 12285    3.0 1163219717
## 12286    3.5 1163219638
## 12287    3.0 1163277592
## 12288    3.0 1163005385
## 12291    3.0 1183844543
## 12292    0.5 1163004453
## 12293    3.5 1183920262
## 12296    3.0 1163277654
## 12297    3.0 1163346143
## 12301    3.5 1163004488
## 12302    2.5 1183844503
## 12304    2.0 1163004783
## 12306    3.5 1163219723
## 12311    3.5 1163004517
## 12313    2.5 1183511703
## 12320    3.0 1183844570
## 12322    0.5 1183511682
## 12324    2.0 1183920174
## 12327    3.5 1163252803
## 12329    3.5 1183511991
## 12330    2.0 1183511757
## 12331    1.0 1163219241
## 12333    3.5 1183511779
## 12334    2.5 1163219395
## 12336    3.5 1163013078
## 12338    3.0 1163386501
## 12340    2.0 1163286160
## 12342    3.5 1163079317
## 12345    3.5 1163220283
## 12346    2.5 1163005991
## 12349    3.5 1163125866
## 12351    0.5 1163005434
## 12353    0.5 1183511648
## 12354    3.5 1274051069
## 12358    3.5 1344469842
## 12362    1.5 1274050758
## 12363    3.5 1274050991
## 12365    3.5 1327289203
## 12379    3.5 1274050816
## 12381    3.5 1274050750
## 12385    3.5 1274050785
## 12392    3.5 1327289197
## 12394    3.5 1274051063
## 12395    2.0 1274051008
## 12397    1.0 1274050989
## 12399    3.5 1274050843
## 12400    3.0 1274050885
## 12403    2.5 1327288495
## 12407    3.5 1274050904
## 12410    2.0 1274050876
## 12413    3.5 1345676342
## 12419    3.0 1274045997
## 12422    3.0 1274051802
## 12425    2.5 1344469730
## 12427    3.5 1274046079
## 12433    3.5 1274051084
## 12444    1.5 1274050974
## 12449    2.5 1274050826
## 12450    3.0 1344470388
## 12465    2.0 1274046002
## 12466    3.5 1274050967
## 12476    2.5 1274046172
## 12486    3.5 1274046121
## 12487    3.0 1344470577
## 12492    3.0 1327289233
## 12498    3.5 1344472522
## 12499    3.5 1344469805
## 12502    3.5 1327288577
## 12506    3.5 1344470351
## 12507    3.5 1344470343
## 12508    3.5 1327288572
## 12514    1.5 1274050890
## 12524    3.5 1344530365
## 12526    2.5 1274051757
## 12536    3.5 1344530435
## 12540    2.5 1344530420
## 12548    3.0 1274051715
## 12550    3.5 1327288529
## 12551    3.0 1274051268
## 12567    3.5 1274051780
## 12568    3.5 1327288523
## 12575    3.5 1344530363
## 12576    3.5 1344530371
## 12583    2.0 1345676370
## 12587    3.5 1274051816
## 12589    3.5 1274051721
## 12594    3.5 1344469724
## 12617    2.0 1182994648
## 12618    2.5 1182994926
## 12619    0.5 1182995062
## 12620    2.5 1182994636
## 12621    3.0 1182994622
## 12622    2.0 1182994728
## 12624    2.5 1182994765
## 12625    0.5 1182555848
## 12626    3.0 1182994616
## 12627    2.0 1182556000
## 12628    2.5 1182994781
## 12629    2.5 1182994717
## 12630    2.5 1182994627
## 12631    2.5 1182994732
## 12632    3.0 1182994756
## 12633    3.0 1182994965
## 12634    2.5 1182994653
## 12635    2.0 1182994899
## 12636    3.0 1182994775
## 12637    2.5 1182994952
## 12638    3.0 1182994723
## 12639    3.0 1182994711
## 12640    2.5 1182994818
## 12641    0.5 1182994912
## 12642    3.0 1182994786
## 12643    2.5 1182994791
## 12644    2.5 1182994945
## 12645    2.5 1182555959
## 12646    0.5 1182555847
## 12647    2.0 1182556054
## 12648    3.0 1182994750
## 12649    3.0 1182994807
## 12650    2.5 1182995057
## 12651    2.5 1182555876
## 12652    0.5 1182994878
## 12653    3.5 1182994972
## 12654    3.0 1182556148
## 12655    3.0 1182994834
## 12656    2.0 1182555991
## 12657    2.5 1182555869
## 12658    3.0 1182994903
## 12659    2.5 1182556240
## 12660    3.0 1182994861
## 12661    3.0 1182995029
## 12662    3.0 1182994849
## 12663    3.0 1182995072
## 12664    3.0 1182994884
## 12665    2.5 1182995104
## 12666    3.0 1182995012
## 12667    3.5 1182556308
## 12668    3.0 1182556130
## 12669    2.5 1182556378
## 12670    2.0 1182556482
## 12671    3.5 1182556320
## 12672    2.0  844860022
## 12675    3.0  844860003
## 12677    1.0  844860151
## 12682    3.0  844860173
## 12683    3.0  844860003
## 12685    3.0  844860250
## 12686    1.0  844860173
## 12687    2.0  844860022
## 12688    2.0  844860266
## 12689    3.0  844860062
## 12691    3.0  844860022
## 12693    2.0  844860215
## 12695    3.0  844860085
## 12700    2.0  844860250
## 12705    3.0  844860198
## 12711    3.0 1307179969
## 12713    3.5 1307172938
## 12714    3.0 1307171149
## 12715    3.5 1307173087
## 12716    3.0 1307173089
## 12721    3.5 1307169236
## 12727    3.0 1307178475
## 12728    3.5 1307178724
## 12732    3.5 1307175182
## 12734    3.0 1307178374
## 12741    3.5 1307172085
## 12743    1.5 1307169246
## 12745    3.0 1307178387
## 12750    2.0 1307169218
## 12761    3.5 1307173783
## 12768    3.0 1307169275
## 12780    2.0 1307180653
## 12781    3.0 1307171489
## 12783    3.0 1307171929
## 12786    2.5 1307169545
## 12788    2.5 1307169589
## 12792    3.5 1307180611
## 12793    2.5 1307169608
## 12803    3.5 1307180420
## 12810    3.5 1307178465
## 12814    3.5 1307175022
## 12821    2.5 1307177440
## 12835    3.0 1307177412
## 12837    3.0 1307178303
## 12838    3.0 1307172173
## 12841    2.5 1307177426
## 12842    3.5 1307180145
## 12847    3.5 1307173098
## 12850    3.0 1307169533
## 12854    2.0 1307180237
## 12857    2.0 1307169383
## 12859    3.5 1307175227
## 12860    3.0 1307177375
## 12863    3.0 1307180634
## 12864    3.0 1307172215
## 12866    2.5 1307172182
## 12868    3.5 1307172379
## 12869    3.0  835973445
## 12870    3.0  835973471
## 12877    3.0  835973398
## 12878    2.0  835973504
## 12879    3.0  835973398
## 12880    3.0  835973445
## 12884    3.0  835973458
## 12885    3.0  835973431
## 12888    2.0  835973419
## 12890    2.0  835973418
## 12892    3.0  835973398
## 12895    3.0  835973504
## 12896    3.0  835973380
## 12897    3.0  835973458
## 12898    1.0  835973488
## 12899    3.0  835973431
## 12900    3.0  835973504
## 12901    3.0  835973488
## 12902    3.0  835973445
## 12905    3.0  835973379
## 12909    1.0 1156206448
## 12912    3.5 1156207469
## 12913    3.5 1156206709
## 12916    0.5 1156205069
## 12922    3.5 1156205656
## 12925    2.5 1156205254
## 12927    3.5 1156205241
## 12929    3.5 1156205647
## 12934    3.5 1156207536
## 12946    3.0 1156205231
## 12956    0.5 1156205108
## 12967    2.0 1156205343
## 12968    0.5 1156205568
## 12969    2.0 1156206976
## 12971    1.5 1156205337
## 12972    3.5 1156205560
## 12979    3.5 1156205549
## 12983    1.0 1156205227
## 12998    3.5 1156205522
## 13000    0.5 1156205302
## 13003    3.5 1156206681
## 13005    3.5 1156206992
## 13021    1.0 1156205296
## 13025    3.0 1156205474
## 13027    2.0 1156205292
## 13028    3.5 1156205780
## 13029    3.5 1156205468
## 13034    1.5 1156205759
## 13039    3.5 1156205736
## 13040    3.5 1156205449
## 13043    0.5 1156207279
## 13045    0.5 1156205445
## 13051    0.5 1156205029
## 13052    3.5 1156206308
## 13053    3.5 1156206705
## 13055    1.0 1156205435
## 13056    0.5 1156206646
## 13057    3.5 1156205432
## 13058    3.5 1156207498
## 13064    3.5 1156205409
## 13068    3.5 1156206624
## 13069    3.5 1429910800
## 13073    3.0 1429910797
## 13074    3.0 1429910957
## 13077    3.5 1429910909
## 13079    3.5 1429910906
## 13080    3.0 1429910948
## 13081    3.5 1429911562
## 13082    3.0 1429910790
## 13084    3.5 1429910812
## 13087    3.5 1429910861
## 13090    3.5 1429911066
## 13093    3.5 1429911142
## 13096    3.0 1429911077
## 13097    3.0 1429911265
## 13099    3.5 1429911152
## 13101    3.5 1429911137
## 13102    3.5 1429911227
## 13106    3.5 1429911063
## 13111    3.5 1429910917
## 13112    3.5 1429911017
## 13113    3.5 1429911098
## 13114    3.0 1429911130
## 13115    3.5 1429911247
## 13117    3.5 1429911059
## 13119    3.5 1429911297
## 13120    3.5 1429910872
## 13121    3.5 1429911118
## 13122    3.0 1429911039
## 13123    3.0 1429911113
## 13124    3.5 1429910932
## 13127    3.5 1429911126
## 13128    3.5 1429911204
## 13131    3.0 1429911214
## 13133    3.5 1429911525
## 13134    3.5 1429911101
## 13135    3.5 1429910987
## 13137    3.5 1429911276
## 13138    3.5 1429911292
## 13140    3.5 1429910892
## 13143    3.5 1429911174
## 13145    3.5 1429911221
## 13146    3.5 1429910876
## 13147    3.5 1429911233
## 13148    3.0 1429911253
## 13150    3.5 1429911097
## 13151    3.5 1429911229
## 13152    3.5 1429911203
## 13153    3.0 1429911238
## 13155    3.0 1429911193
## 13158    3.5 1429910974
## 13160    2.5 1429910960
## 13161    3.5 1429910829
## 13162    3.5 1429910890
## 13164    3.5 1429910852
## 13169    3.5 1429911541
## 13170    3.5 1429910984
## 13172    3.5 1429910849
## 13174    3.5 1429911003
## 13177    3.0 1429911001
## 13178    3.0 1429910808
## 13179    3.5 1429910884
## 13180    3.5 1429910860
## 13186    2.0  837512420
## 13187    3.0  837512493
## 13189    3.0  837512280
## 13191    3.0  837512169
## 13192    2.0  837512134
## 13193    1.0  837506990
## 13196    1.0  837513025
## 13197    3.0  837512403
## 13200    3.0  837512681
## 13201    3.0  837513025
## 13203    2.0  837512454
## 13204    1.0  837512701
## 13205    3.0  837511998
## 13206    3.0  837512987
## 13207    1.0  837511493
## 13208    3.0  837511986
## 13209    3.0  837512599
## 13210    3.0  837511797
## 13211    3.0  837512325
## 13213    2.0  837512519
## 13216    1.0  837512599
## 13217    3.0  837512030
## 13220    1.0  837513012
## 13221    3.0  837512134
## 13222    2.0  837512482
## 13223    1.0  837512962
## 13225    1.0  837512611
## 13233    1.0  837512249
## 13236    1.0  837512763
## 13239    3.0  837511838
## 13240    3.0  837512312
## 13242    3.0  837512561
## 13243    3.0  837512169
## 13244    1.0  837512580
## 13247    2.0  837512403
## 13248    1.0  837512723
## 13251    3.0  837512599
## 13253    3.0  837512420
## 13254    1.0  837512433
## 13256    3.0  837512015
## 13257    3.0  837512344
## 13259    3.0  837512191
## 13261    3.0  837512312
## 13262    3.0  837512312
## 13264    3.0  837512225
## 13266    2.0  837512648
## 13267    3.0  837512249
## 13268    3.0  837511838
## 13269    2.0  837506847
## 13271    1.0  837512482
## 13273    1.0  837512648
## 13275    3.0  837512114
## 13276    3.0  837512268
## 13277    3.0  837512325
## 13278    3.0  837506797
## 13280    3.0  837506714
## 13283    2.0  837512504
## 13284    3.0  837507101
## 13286    3.0  837512225
## 13289    1.0  837512681
## 13290    1.0  837512723
## 13292    3.0  848161799
## 13293    1.0  848159306
## 13297    1.0  848159249
## 13298    1.0  848159249
## 13299    3.0  848161123
## 13305    3.0  848159230
## 13310    3.0  848161443
## 13313    3.0  848161498
## 13316    3.0  848161182
## 13318    3.0  848161091
## 13321    3.0  848161330
## 13322    3.0  848161539
## 13324    3.0  848161182
## 13325    3.0  848161391
## 13326    1.0  848160230
## 13328    3.0  848161353
## 13333    3.0  848161454
## 13334    2.0  848159289
## 13335    3.0  848161091
## 13337    3.0  848161811
## 13339    3.0  848161507
## 13340    1.0  848159406
## 13342    3.0  848159752
## 13344    3.0  848159167
## 13348    3.0  848161373
## 13350    1.0  848159117
## 13354    3.0  848161252
## 13357    1.0  848159406
## 13361    3.0  848161454
## 13362    3.0  848161149
## 13364    3.0  848161787
## 13367    3.0  848161308
## 13368    3.0  848161308
## 13369    3.0  848161343
## 13370    3.0  848161773
## 13372    3.0  848161773
## 13376    3.0  848161134
## 13377    3.0  848159765
## 13381    3.0  848161182
## 13382    3.0  848159117
## 13385    3.0  848160389
## 13386    3.0  848160729
## 13388    3.0  848161199
## 13389    3.0  848160081
## 13393    3.0  848161134
## 13395    3.0  848159654
## 13399    3.0  848161404
## 13400    2.0  848162010
## 13401    3.0  848159719
## 13402    3.0  848161443
## 13405    3.0  848160066
## 13406    2.0  848159191
## 13408    3.0  848161491
## 13409    3.0  848161343
## 13412    3.0  848161443
## 13413    3.0  848159148
## 13414    3.0  848159932
## 13417    3.0  848161773
## 13419    3.0  848159361
## 13423    3.0  848159779
## 13427    3.0  848159249
## 13432    3.0  848161252
## 13434    1.0  848161788
## 13435    3.0  848159230
## 13436    3.0  848159093
## 13437    2.0  848159191
## 13438    3.0  848161161
## 13439    3.0  848159074
## 13442    3.0  848161267
## 13444    3.0  848159230
## 13446    3.0  848161360
## 13447    3.0  848161308
## 13449    3.0  848160245
## 13450    3.0  848161481
## 13451    3.0  848161221
## 13454    3.0  848159794
## 13456    3.0  848162119
## 13458    3.0  848161237
## 13459    3.0  848161539
## 13462    2.0  848159406
## 13463    3.0  848159949
## 13464    2.0  848162010
## 13465    3.0  848161481
## 13466    2.0  848161528
## 13467    3.0  848161552
## 13468    3.0  848161552
## 13470    1.0  848162026
## 13473    3.0  848161267
## 13476    3.0  848160211
## 13479    3.0  848160993
## 13482    3.0  858623186
## 13483    3.0  858623219
## 13485    3.0  858623186
## 13487    1.0  858623186
## 13488    3.0  858623319
## 13489    3.0  858623186
## 13491    3.0  858623240
## 13497    3.0  858623186
## 13498    3.0  858623335
## 13500    3.0  858623219
## 13501    2.0  858623186
## 13502    3.0  858623257
## 13503    3.0  858623270
## 13504    3.0  858623186
## 13506    3.0  858623219
## 13507    3.0  858623257
## 13508    1.0  858623283
## 13509    3.0  858623219
## 13510    3.0  858623299
## 13512    2.0  858623335
## 13513    3.5 1239773232
## 13515    3.5 1239764623
## 13516    3.5 1239764334
## 13517    3.0 1239755559
## 13519    3.0 1239764316
## 13521    3.5 1239758460
## 13522    2.0 1239764336
## 13523    0.5 1239764721
## 13526    2.0 1239763939
## 13527    2.0 1239765071
## 13528    3.0 1239766992
## 13529    3.0 1239763933
## 13530    3.0 1239764312
## 13532    0.5 1239767689
## 13533    3.0 1239764173
## 13534    0.5 1239755560
## 13536    3.5 1239755456
## 13537    3.0 1239758451
## 13538    3.5 1239757625
## 13539    2.5 1239763984
## 13541    3.5 1239764763
## 13543    2.0 1239763845
## 13544    3.0 1239775160
## 13545    3.0 1239764885
## 13550    3.0 1239763839
## 13551    2.0 1239763826
## 13552    1.5 1239766980
## 13553    2.5 1239773306
## 13554    2.5 1239764176
## 13555    2.5 1239763731
## 13556    3.0 1239763722
## 13558    2.5 1239772521
## 13561    1.5 1239766985
## 13563    3.5 1239767724
## 13566    2.0 1239755377
## 13567    3.0 1239765069
## 13568    2.5 1239764309
## 13569    3.0 1239757679
## 13570    3.0 1239772558
## 13571    2.0 1239763711
## 13573    3.5 1239763938
## 13575    3.5 1239763830
## 13576    3.5 1239763854
## 13577    3.5 1239764853
## 13578    3.0 1239772575
## 13579    3.5 1239763983
## 13580    3.0 1239762941
## 13582    3.5 1239757090
## 13583    1.0 1239755385
## 13588    3.0 1239775047
## 13589    3.0 1239758081
## 13591    3.5 1239764678
## 13592    3.5 1239758059
## 13594    3.5 1239758202
## 13595    3.0 1239764886
## 13597    3.5 1239757684
## 13602    3.0 1239764604
## 13604    2.5 1239772561
## 13605    3.5 1239763858
## 13608    3.0 1239764173
## 13610    2.5 1239755415
## 13612    2.5 1239765070
## 13613    3.0 1239764905
## 13614    3.0 1239764514
## 13615    3.5 1239765130
## 13616    1.5 1239764889
## 13617    0.5 1239764845
## 13619    0.5 1239767713
## 13621    3.0 1239764767
## 13622    2.5 1239756858
## 13625    3.0 1239755446
## 13628    1.5 1239773365
## 13629    3.5 1239764518
## 13630    0.5 1239755427
## 13631    3.0 1239764540
## 13632    3.5 1239764341
## 13633    3.5 1239772229
## 13634    2.0 1239764751
## 13635    3.0 1239764896
## 13636    3.5 1239774217
## 13637    2.0 1239764695
## 13639    3.0 1239765142
## 13641    3.0 1239767000
## 13642    3.0 1257010873
## 13643    2.5 1239764852
## 13644    3.5 1239766983
## 13645    3.5 1239764618
## 13650    2.5 1239764978
## 13651    0.5 1239758086
## 13652    2.0 1239764969
## 13655    1.0 1239764684
## 13656    2.5 1239766975
## 13657    3.5 1239767661
## 13659    2.5 1239755416
## 13660    3.5 1239764774
## 13666    2.5 1239765128
## 13667    3.0 1239773748
## 13670    3.0 1239755557
## 13672    3.5 1239775154
## 13673    3.5 1239763277
## 13676    2.0 1239764184
## 13677    3.5 1239765070
## 13678    3.5 1239773151
## 13679    2.5 1239755558
## 13680    3.0 1239756814
## 13682    3.5 1239758460
## 13687    3.0 1239762847
## 13689    3.0 1239772623
## 13690    2.5 1239773931
## 13692    3.5 1239767658
## 13697    3.0 1239757094
## 13698    3.5 1239772461
## 13699    3.5 1239772239
## 13700    3.0 1239764714
## 13702    1.0 1239767719
## 13704    3.5 1239764608
## 13705    2.5 1239773123
## 13707    2.0 1239773937
## 13708    3.5 1239756837
## 13709    3.0 1239773743
## 13712    2.5 1239773941
## 13717    3.0 1239772568
## 13723    3.5 1239757077
## 13728    3.5 1239767702
## 13729    3.0 1239772533
## 13733    3.5 1239772618
## 13734    3.5 1239772528
## 13735    2.5 1239772951
## 13736    3.5 1239772632
## 13737    3.0 1239778397
## 13738    2.0 1239755439
## 13739    3.0 1239775005
## 13740    2.5 1239772928
## 13742    3.5 1239774702
## 13745    3.0 1239774712
## 13750    3.0 1239773175
## 13752    1.5 1256960930
## 13755    1.0 1239772235
## 13756    2.5 1239758696
## 13758    2.5 1239772923
## 13762    3.0 1239759260
## 13763    3.0 1239758705
## 13764    2.5 1239767650
## 13778    2.0 1257610314
## 13789    3.0 1257610347
## 13791    3.5 1257620544
## 13794    3.0 1257610479
## 13836    2.0  875517624
## 13840    3.0  875520648
## 13842    3.0  875518226
## 13846    3.0  875518088
## 13848    3.0  875518345
## 13849    3.0  875520264
## 13851    2.0  875520463
## 13852    3.0  875518641
## 13855    3.0  875520464
## 13862    3.0  875518016
## 13869    3.0  875515203
## 13871    3.0  875515030
## 13873    2.0  876370672
## 13874    3.0  876288277
## 13883    2.0  875515030
## 13885    3.5 1448813887
## 13887    3.5 1448798511
## 13888    3.0 1448798347
## 13894    3.5 1448814317
## 13903    3.5 1448814498
## 13919    3.0 1448813382
## 13920    3.0 1448814231
## 13921    3.0 1448814231
## 13922    3.0 1448814230
## 13923    2.5 1448814268
## 13929    3.5 1448813361
## 13930    3.0 1448814276
## 13933    3.0 1448814280
## 13935    3.0 1448814200
## 13937    3.0 1448813368
## 13938    3.5 1448814226
## 13940    3.0 1448814412
## 13948    2.0 1448813528
## 13949    3.0 1448814312
## 13950    3.5 1448814436
## 13955    3.0 1448814393
## 13961    3.5 1448814434
## 13964    3.0 1448814469
## 13966    2.5 1448814476
## 13967    2.0 1448814443
## 13968    3.5 1448814407
## 13972    3.0 1448813885
## 13973    2.0 1448814418
## 13975    3.0 1448814399
## 13978    3.0 1448813535
## 13987    3.5 1448798561
## 13992    3.0 1448814299
## 13993    3.5 1448813209
## 13996    3.5 1448814286
## 14000    3.5 1448798222
## 14009    3.0 1448814395
## 14013    3.5 1448813127
## 14016    3.5 1448814472
## 14018    3.0 1448798204
## 14029    3.5 1448813890
## 14030    2.5 1448814423
## 14035    3.0  848525932
## 14036    3.0  848526431
## 14037    2.0  848525661
## 14039    1.0  848525799
## 14043    2.0  848525833
## 14044    3.0  848526389
## 14048    3.0  848526334
## 14049    3.0  848526084
## 14050    3.0  848525971
## 14054    3.0  848526572
## 14055    3.0  848525510
## 14056    3.0  848526334
## 14057    3.0  848525554
## 14058    2.0  848525873
## 14061    3.0  848525554
## 14062    1.0  848526406
## 14063    3.0  848525932
## 14064    2.0  848526037
## 14065    3.0  848526572
## 14066    3.0  848526334
## 14067    3.0  848526060
## 14068    1.0  848526484
## 14069    3.0  848526274
## 14071    3.0  848525661
## 14073    3.0  848526484
## 14074    3.0  848525589
## 14076    3.0  848526529
## 14078    3.0  848526334
## 14079    2.0  848525694
## 14080    2.0  848525873
## 14081    3.0  848526005
## 14082    3.0  848525694
## 14083    3.0  848525624
## 14087    2.0  848525932
## 14088    1.0  848525589
## 14089    2.0  848525873
## 14092    3.0  848526037
## 14093    3.0  848525624
## 14094    3.0  848526061
## 14095    3.0  848526061
## 14096    3.0  848526431
## 14097    3.0  848525694
## 14098    2.0  848525554
## 14099    3.0  848525589
## 14100    2.0  848525873
## 14101    3.0  848526389
## 14102    2.0  848526484
## 14104    3.0  848525833
## 14105    3.0  848526594
## 14106    1.0  848525730
## 14107    2.0  848526037
## 14108    3.0  848525730
## 14110    3.0  848526431
## 14111    3.0  848525730
## 14113    1.0  848526671
## 14114    1.0  848525833
## 14115    2.0  848526037
## 14116    2.0  848525903
## 14117    3.0  848525624
## 14118    3.0  848525903
## 14119    3.0  848525873
## 14120    3.0  848525971
## 14121    2.0  848525694
## 14122    3.0  848526615
## 14124    2.0  848526508
## 14128    3.0  848526431
## 14130    3.0  848525730
## 14131    3.0  848526251
## 14132    1.0  848525932
## 14133    2.0  848526508
## 14135    3.0  848526615
## 14136    3.0  848526005
## 14137    3.0  848525799
## 14138    3.0  848526632
## 14139    3.0  848526363
## 14140    1.0  848526529
## 14143    3.0  848525764
## 14144    3.0  848525554
## 14147    3.0  848525510
## 14149    2.0  848525764
## 14150    2.0  848526061
## 14152    3.0  848526615
## 14154    2.0  848526274
## 14156    2.0  848526334
## 14158    3.5 1304992956
## 14161    3.5 1304992612
## 14164    3.5 1304992545
## 14166    3.0 1304992201
## 14168    3.5 1304729472
## 14169    3.5 1304993113
## 14172    3.5 1304729463
## 14173    3.5 1304992467
## 14174    3.5 1304991727
## 14175    3.5 1304993029
## 14179    2.5 1304729519
## 14182    2.5 1304992362
## 14183    3.5 1304992164
## 14184    3.0 1304991715
## 14186    3.5 1304992145
## 14188    3.5 1304991976
## 14189    3.5 1304992476
## 14190    3.0 1304992157
## 14193    2.5 1304729528
## 14196    3.5 1304729500
## 14198    3.5 1304729546
## 14202    3.5 1304991872
## 14210    3.0 1304991885
## 14211    3.5 1304729440
## 14212    3.5 1304992621
## 14213    3.5 1304992965
## 14216    3.5 1304992197
## 14218    3.5 1304992081
## 14221    3.5 1304992785
## 14222    3.0 1304992367
## 14223    3.5 1304992382
## 14225    3.5 1304992244
## 14228    3.5 1304992372
## 14232    3.5 1304992334
## 14234    3.5 1304992089
## 14236    3.5 1304992212
## 14237    3.0 1304992510
## 14238    2.5 1304992707
## 14239    2.5 1304729449
## 14240    3.5 1304992236
## 14243    3.5 1304992445
## 14246    3.0 1304992274
## 14248    3.5 1304992693
## 14249    2.5 1304993132
## 14251    3.0 1304992753
## 14252    3.5 1304991839
## 14255    3.5 1304729573
## 14258    3.0 1304992724
## 14259    3.0 1304729539
## 14260    3.5 1304729577
## 14262    3.5 1304992717
## 14263    3.5 1304992675
## 14266    3.5 1304993193
## 14267    3.5 1304992208
## 14268    3.5 1304992116
## 14270    3.5 1304992960
## 14272    3.0 1304991655
## 14274    3.0 1304992417
## 14279    3.5 1304992638
## 14280    3.5 1304992993
## 14283    3.5 1304991702
## 14285    3.0 1304992773
## 14286    3.5 1304993061
## 14287    3.5 1304730389
## 14289    3.0 1304991855
## 14290    3.5 1304992297
## 14295    3.0 1304993097
## 14297    2.5 1304992317
## 14299    3.5 1304992218
## 14300    3.5 1304992595
## 14304    2.5 1304993120
## 14305    3.5 1304992010
## 14309    3.5 1304992976
## 14315    3.5 1304991723
## 14317    3.5 1291781117
## 14319    3.0 1291777340
## 14320    2.5 1291781042
## 14322    3.5 1291780487
## 14324    3.5 1291780453
## 14325    2.0 1291780169
## 14327    3.0 1291779564
## 14328    3.5 1291780604
## 14330    2.5 1291779708
## 14332    3.0 1291780145
## 14333    3.0 1291781185
## 14335    1.5 1291779806
## 14336    1.5 1291781070
## 14337    2.5 1291779540
## 14339    1.0 1291781004
## 14342    2.5 1291779941
## 14343    2.0 1291779697
## 14345    3.0 1291781464
## 14346    3.0 1291777310
## 14347    2.5 1291780484
## 14349    3.5 1291781459
## 14350    3.5 1291779824
## 14351    2.5 1291780026
## 14354    1.5 1291780751
## 14355    3.0 1291780969
## 14356    3.5 1291781469
## 14357    2.0 1291780019
## 14359    3.0 1291780592
## 14360    2.5 1291781119
## 14361    3.0 1291779528
## 14363    3.5 1291779626
## 14369    2.0 1291777522
## 14370    2.5 1291781044
## 14371    3.5 1291780064
## 14374    2.5 1291780343
## 14376    1.0 1291780076
## 14382    1.0 1291780335
## 14383    2.5 1291780964
## 14384    3.5 1291779761
## 14385    1.5 1291780347
## 14386    3.0 1291779570
## 14387    3.5 1291777280
## 14390    2.0 1291780196
## 14394    1.5 1291780877
## 14396    1.5 1291777466
## 14397    2.5 1291777325
## 14398    0.5 1291777450
## 14399    2.5 1291777293
## 14400    3.0 1291780906
## 14402    0.5 1291777353
## 14404    3.5 1291780358
## 14406    3.0 1291780351
## 14407    3.5 1291781096
## 14416    3.5 1291780951
## 14419    2.5 1291779700
## 14420    3.5 1291777250
## 14421    1.5 1291780622
## 14422    2.5 1291780996
## 14426    3.0 1291781112
## 14427    2.5 1291779623
## 14428    2.5 1291781129
## 14430    1.0 1291781066
## 14431    3.5 1291779733
## 14432    3.5 1291777509
## 14433    1.5 1291779692
## 14435    3.5 1292392675
## 14436    3.5 1291779659
## 14437    1.5 1291780177
## 14439    2.0 1291781215
## 14440    3.0 1291779577
## 14441    2.0 1291779607
## 14443    3.5 1291779652
## 14444    3.0 1291780898
## 14445    3.5 1291779827
## 14446    3.0 1291780974
## 14447    3.5 1292392653
## 14448    3.0 1291777481
## 14449    2.5 1291780596
## 14450    2.5 1291781001
## 14451    2.5 1292392659
## 14452    2.0 1291780469
## 14453    1.5 1291781025
## 14454    3.0 1291779663
## 14457    1.0 1291781212
## 14461    3.0 1291780509
## 14462    3.5 1291780992
## 14463    3.5 1291781105
## 14465    3.5 1292392712
## 14469    3.0 1291781085
## 14470    3.0 1292392700
## 14471    2.5 1291779888
## 14474    3.5 1292392505
## 14475    3.0 1291780552
## 14478    3.5 1292392628
## 14479    3.5 1292392633
## 14480    3.0 1291780606
## 14482    2.5 1291781053
## 14483    3.0 1291780941
## 14484    3.0 1291780984
## 14486    3.0 1291780476
## 14487    2.5 1291780610
## 14488    3.5 1291781204
## 14491    3.0 1291779704
## 14495    3.5 1291780148
## 14497    3.5 1292392670
## 14498    3.5 1292392500
## 14500    3.5 1292392637
## 14503    3.5 1292392716
## 14508    2.5 1291780910
## 14509    3.0 1291780495
## 14513    3.0 1016317600
## 14522    2.0 1016317489
## 14523    3.0 1016317721
## 14533    3.0 1019023101
## 14534    3.0 1016317617
## 14535    3.0 1019023293
## 14538    3.0 1016317696
## 14544    2.0 1016317171
## 14548    3.0 1019023206
## 14553    3.0 1019023343
## 14557    3.0 1016317074
## 14574    2.0 1019023613
## 14590    3.0 1019023410
## 14592    2.0 1019023252
## 14593    3.0 1019023190
## 14595    3.0 1019023230
## 14597    3.0 1016317074
## 14601    3.0 1019023736
## 14602    3.0 1016317396
## 14604    3.0 1019023569
## 14606    3.0 1019023517
## 14607    3.0 1016317090
## 14608    2.0 1019023463
## 14609    3.0 1019023369
## 14611    3.0 1019023613
## 14615    3.0 1018816035
## 14616    3.0 1019023410
## 14618    3.0 1016317111
## 14620    3.0 1025556197
## 14623    2.0 1019023768
## 14626    3.0 1019023230
## 14627    2.0 1019023343
## 14630    3.0 1016317773
## 14631    3.0 1019022937
## 14632    3.0 1016317697
## 14634    3.0 1018815528
## 14641    3.0 1018815698
## 14646    3.0 1016317157
## 14649    3.0 1016317856
## 14654    2.0 1019023753
## 14655    3.0 1019023314
## 14667    3.0 1025556197
## 14669    3.0 1018816130
## 14673    3.0 1018816171
## 14674    3.0 1018816130
## 14677    3.0 1018815904
## 14680    3.0 1018815674
## 14684    3.0 1019023252
## 14691    3.0 1018815770
## 14697    3.0 1018815599
## 14702    3.0 1019023314
## 14703    3.0 1019023054
## 14704    3.0 1019023314
## 14706    3.0 1018815560
## 14718    3.0 1016317600
## 14719    3.0 1018816073
## 14723    2.0 1016317833
## 14726    3.0 1016317074
## 14727    3.0 1025556197
## 14732    3.0 1019023102
## 14735    3.0 1018815953
## 14737    3.0 1019023314
## 14739    3.0 1019023569
## 14741    3.0 1016317140
## 14743    2.0 1018815877
## 14744    3.0 1019023613
## 14745    3.0 1019023671
## 14747    2.0 1016317856
## 14751    2.0 1019023517
## 14753    3.0 1025556197
## 14756    3.0 1016317519
## 14762    3.0 1016317253
## 14769    3.0 1019023736
## 14770    3.0 1016317253
## 14778    3.0 1016317227
## 14780    3.0 1019023736
## 14783    2.0 1016317111
## 14784    3.0 1018815528
## 14788    3.0 1016317721
## 14793    2.0 1016316859
## 14796    3.0 1025556197
## 14797    3.0 1025556369
## 14798    3.0 1025556197
## 14802    3.0 1018816326
## 14804    3.0 1018816304
## 14805    2.0 1018816267
## 14806    3.0 1018816267
## 14810    3.0 1025556285
## 14811    2.5 1223256331
## 14813    2.0 1223256805
## 14814    3.5 1223256797
## 14816    3.0 1223256282
## 14817    3.0 1223256349
## 14832    3.0 1223256301
## 14837    3.5 1223256264
## 14844    2.5 1223256322
## 14846    3.0 1223256635
## 14848    3.0 1223256357
## 14849    3.0 1223256336
## 14850    3.0 1223256786
## 14851    2.5 1223256713
## 14854    2.5 1223256849
## 14860    3.0 1223256810
## 14861    3.0 1223256730
## 14873    3.0 1223256472
## 14880    3.0 1223256615
## 14882    3.5 1223256776
## 14886    3.5 1223256753
## 14887    1.0 1460342505
## 14890    1.0 1460342434
## 14891    3.5 1460343084
## 14892    2.0 1460343105
## 14895    2.5 1460342503
## 14896    1.5 1460342652
## 14897    2.5 1460342605
## 14898    1.5 1460342318
## 14900    0.5 1460342660
## 14901    2.0 1460342416
## 14902    3.5 1460342325
## 14903    1.5 1460342687
## 14904    2.0 1460342646
## 14907    3.0 1460342315
## 14909    3.5 1460342304
## 14910    2.0 1460342342
## 14911    1.5 1460342302
## 14914    1.5 1460342421
## 14915    2.5 1460342673
## 14916    2.0 1460342716
## 14917    2.0 1460343721
## 14919    2.5 1460342322
## 14922    3.5 1460342334
## 14923    2.0 1460342420
## 14926    3.0 1460342517
## 14927    3.5 1460342468
## 14928    3.5 1460343956
## 14931    3.0 1460342330
## 14932    2.5 1460342480
## 14933    2.5 1460342320
## 14934    2.0 1460342498
## 14935    2.0 1460342433
## 14937    1.5 1460342560
## 14939    2.5 1460342413
## 14941    3.0 1460342413
## 14942    1.5 1460342563
## 14943    3.5 1460342531
## 14944    2.5 1460342451
## 14945    0.5 1460342715
## 14947    3.5 1460343016
## 14948    0.5 1460342648
## 14949    3.0 1460342624
## 14951    1.0 1460342488
## 14955    3.5 1460343708
## 14956    2.5 1460342388
## 14957    2.5 1460342443
## 14958    1.0 1460342654
## 14959    1.5 1460342423
## 14960    1.5 1460342389
## 14961    3.5 1460343714
## 14962    3.5 1460342705
## 14963    3.0 1460342676
## 14964    1.5 1460342685
## 14965    3.0 1460342668
## 14966    1.0 1460342613
## 14967    1.5 1460342644
## 14968    0.5 1460342547
## 14969    3.5 1460343718
## 14971    3.0 1460343661
## 14975    3.5 1460343011
## 14977    2.5 1460343401
## 14978    2.0 1460343083
## 14979    2.5 1460342395
## 14983    3.0 1460342391
## 14984    3.5 1460343777
## 14985    3.5 1460342807
## 14987    1.5 1460343379
## 14988    3.0 1460343218
## 14989    1.5 1460343699
## 14991    3.5 1460343862
## 14992    3.5 1460342888
## 14993    2.0 1460343786
## 14994    3.0 1460343233
## 14995    3.5 1460343228
## 14999    3.0 1460343800
## 15001    1.5 1460343121
## 15002    2.0 1460342400
## 15008    2.0 1460342393
## 15009    1.5 1460343388
## 15012    1.0 1460342589
## 15013    3.5 1460343371
## 15014    1.0 1460342797
## 15015    3.0 1459405466
## 15016    3.0 1459405274
## 15018    3.5 1459405698
## 15020    3.5 1459405701
## 15024    3.5 1459405340
## 15036    2.5 1459405478
## 15039    3.5 1459405423
## 15043    2.5 1459405039
## 15044    3.0 1459405262
## 15050    3.0 1459405452
## 15051    3.5 1459405271
## 15052    3.0 1459405319
## 15059    3.0 1459405160
## 15068    3.5 1459405380
## 15071    3.5 1459405048
## 15073    1.5 1459405437
## 15074    3.5 1459405880
## 15079    2.0 1459405127
## 15083    3.0 1459404907
## 15084    3.0 1459404951
## 15087    2.0  950999958
## 15088    3.0  938586999
## 15089    3.0  938586999
## 15091    1.0  938585500
## 15093    3.0  938587407
## 15094    3.0  947519500
## 15095    3.0  938623596
## 15096    2.0  938586337
## 15097    2.0  938585857
## 15098    2.0  938586560
## 15099    3.0  938585556
## 15100    1.0  938586591
## 15104    3.0  938585656
## 15106    2.0  938587172
## 15107    1.0  938586663
## 15109    3.0  938587407
## 15111    3.0  938587034
## 15114    1.0  938586706
## 15115    3.0  938586006
## 15122    2.0  947519711
## 15123    3.0  938586662
## 15128    3.0  938588178
## 15129    3.0  938624252
## 15133    3.0  938623596
## 15139    3.0  938623596
## 15146    2.0  938624708
## 15147    2.0  938588392
## 15148    1.0  938624591
## 15149    2.0  938588290
## 15150    3.0  938588290
## 15151    2.0  938624617
## 15153    3.0  938587916
## 15154    3.0  938588290
## 15155    3.0  938623534
## 15156    2.0  938624591
## 15159    3.0  938585037
## 15163    3.0  938623675
## 15165    3.0  947519573
## 15168    3.0  938587916
## 15169    3.0  938587876
## 15172    2.0  938588358
## 15173    3.0  938585285
## 15174    3.0  938587104
## 15175    3.0  947519657
## 15176    2.0  938585094
## 15177    3.0  938585718
## 15178    1.0  938586764
## 15182    1.0  938585037
## 15184    3.0  938585613
## 15187    3.0  938587337
## 15189    3.0  938586895
## 15190    3.0  947519573
## 15194    3.0  938624252
## 15196    2.0  947519658
## 15198    3.0  947519629
## 15199    1.0  938623675
## 15204    3.0  938624708
## 15205    2.0  947519712
## 15208    2.0  938584974
## 15209    1.0  938585869
## 15210    2.0  938623675
## 15211    1.0  938624708
## 15212    1.0  938624807
## 15213    3.0  947519712
## 15217    2.0  942783208
## 15218    3.0  938586999
## 15219    3.0  942783156
## 15221    3.0  938549745
## 15223    1.0  951000065
## 15224    3.0  938623208
## 15225    3.0  947519597
## 15228    3.0  938586006
## 15230    2.0  950999958
## 15231    3.0  938587172
## 15232    2.0  938549053
## 15236    3.0  940223140
## 15237    2.0  942783078
## 15239    3.0  950999736
## 15243    2.0  947519315
## 15244    2.0  948412004
## 15245    2.0  953399961
## 15247    1.0 1015038047
## 15249    3.0  963871870
## 15250    3.0  970943910
## 15252    3.0 1015037811
## 15253    2.0 1015038093
## 15257    3.0 1044786615
## 15258    3.0  982280624
## 15259    3.0 1015037743
## 15260    2.0 1015037795
## 15276    3.0  854194023
## 15277    3.0  854194024
## 15280    3.0  854194056
## 15281    3.0  854193977
## 15282    3.0  854194208
## 15283    2.0  854194208
## 15284    3.0  854193977
## 15285    3.0  854194086
## 15286    3.0  854193977
## 15288    3.0  854193977
## 15289    3.0  854194086
## 15290    3.0  854194056
## 15291    3.0  854194024
## 15292    3.0  854193977
## 15294    3.0  854193977
## 15295    3.0  854194056
## 15299    3.5 1292402318
## 15300    2.5 1292402288
## 15301    2.5 1292402307
## 15302    3.5 1292402305
## 15304    2.0 1292402324
## 15306    2.5 1292402282
## 15307    3.5 1292402634
## 15308    2.5 1292402274
## 15312    2.5 1292402330
## 15313    3.5 1292402569
## 15318    3.5 1292402444
## 15319    3.5 1292402503
## 15325    3.0 1292402316
## 15326    3.5 1292402618
## 15330    3.5 1292402682
## 15331    2.5 1292402269
## 15334    3.0 1292402279
## 15335    3.5 1292402688
## 15336    3.0 1292402332
## 15339    3.5 1292402724
## 15360    1.0  959976593
## 15366    2.0  957980283
## 15368    2.0  957895047
## 15382    3.0  957895080
## 15384    3.0  957894400
## 15390    2.0  956598995
## 15391    3.0  956598677
## 15396    3.0  956599860
## 15399    3.0  957895251
## 15400    3.0  958249214
## 15404    3.0  956600134
## 15406    3.0  956600183
## 15409    3.0  957894532
## 15410    3.0  957894532
## 15411    2.0  957894170
## 15420    3.0  958248454
## 15425    2.0  957894532
## 15438    2.0  957980779
## 15439    3.0  957980120
## 15441    3.0  957895047
## 15481    3.0  959976680
## 15491    2.0  957894450
## 15502    2.0  957893991
## 15503    3.0  957894807
## 15527    3.0  956590405
## 15541    3.0  956590405
## 15568    3.0  957893991
## 15586    3.0  957894707
## 15587    3.0  958248668
## 15606    3.0  957894204
## 15608    3.0  956599971
## 15609    3.0  957980378
## 15611    2.0  957980557
## 15614    3.0  957980250
## 15617    3.0  957980222
## 15619    3.0  957980400
## 15624    3.0  956599100
## 15628    2.0  958248516
## 15632    2.0  957980557
## 15633    2.0  957894170
## 15645    2.0  957894285
## 15646    2.0  957982093
## 15647    3.0  959976817
## 15650    2.0  957980451
## 15656    2.0  957893804
## 15666    2.0  957895650
## 15668    3.0  958249148
## 15669    1.0  957895013
## 15670    2.0  957894870
## 15671    3.0  956600246
## 15692    3.0  956599162
## 15702    3.0  957980400
## 15703    2.0  957894204
## 15704    2.0  957894807
## 15705    2.0  957980222
## 15712    2.0  957894667
## 15713    3.0  959976680
## 15731    3.0  959976680
## 15732    3.0  957980451
## 15734    3.0  958248471
## 15735    2.0  957894627
## 15737    2.0  957980426
## 15744    3.0  959976634
## 15745    3.0  958248878
## 15746    3.0  957894667
## 15747    3.0  957895251
## 15752    3.0  959976680
## 15759    1.0  957894741
## 15760    3.0  957894126
## 15770    3.0  957894400
## 15773    3.0  956600183
## 15777    3.0  957894126
## 15779    3.0  957893897
## 15784    3.0  957980309
## 15788    3.0  957894400
## 15789    3.0  958248949
## 15790    3.0  958249041
## 15791    3.0  957894883
## 15792    3.0  958249076
## 15794    3.0  956599941
## 15796    3.0  957980146
## 15798    3.0  957980283
## 15802    1.0  957894760
## 15803    1.0  957980378
## 15805    3.0  958248533
## 15812    3.0  957893541
## 15815    3.0  957895189
## 15816    3.0  957980173
## 15819    2.0  957980426
## 15840    3.0  959976634
## 15847    3.0  956598547
## 15848    3.0  956591576
## 15851    3.0  957894309
## 15854    2.0  957980469
## 15875    3.0  956600083
## 15885    3.0  957896083
## 15886    3.0  956599100
## 15892    3.0  957894126
## 15901    3.0  958249773
## 15904    2.0  957893930
## 15908    3.0  956599162
## 15909    2.0  957894309
## 15910    2.0  957893972
## 15921    3.0  957894505
## 15922    3.0  958248878
## 15924    3.0  957895233
## 15928    3.0  956598432
## 15929    2.0  957893451
## 15930    2.0  957893451
## 15932    2.0  956599821
## 15933    2.0  957893364
## 15934    2.0  957893405
## 15935    2.0  957893405
## 15937    3.0  956599874
## 15939    1.0  957893451
## 15942    3.0  956591745
## 15946    3.0  957894788
## 15948    2.0  957893364
## 15951    3.0  956599061
## 15957    2.0  957980779
## 15958    3.0  957894667
## 15965    3.0  957894760
## 15968    1.0  957893428
## 15973    1.0  957893428
## 15976    2.0  957894267
## 15977    2.0  957981575
## 15979    3.0  959975630
## 15990    2.0  957893471
## 15991    3.0  957981663
## 15995    3.0  956590822
## 16015    3.0  959976106
## 16019    3.0  959975848
## 16020    3.0  959021792
## 16021    3.0  959976044
## 16028    3.0  961791852
## 16035    1.0 1117751197
## 16036    1.5 1117482144
## 16038    1.0 1117750991
## 16039    1.0 1117751173
## 16041    3.0 1117403705
## 16042    3.0 1117403402
## 16046    2.5 1117751391
## 16049    2.0 1117482051
## 16051    1.0 1117315897
## 16052    2.0 1117402549
## 16053    2.5 1117315794
## 16057    3.5 1117403369
## 16059    3.5 1117403410
## 16060    3.0 1117403375
## 16062    3.5 1117481903
## 16063    3.0 1117315673
## 16064    3.5 1117315810
## 16065    1.5 1117751643
## 16066    1.0 1117751071
## 16068    2.0 1117402521
## 16069    1.5 1117315867
## 16070    3.0 1117403717
## 16071    3.5 1117402531
## 16072    1.0 1117750982
## 16073    3.5 1117402540
## 16074    3.5 1117315619
## 16076    1.5 1117315761
## 16077    3.0 1117751684
## 16078    2.0 1117315940
## 16079    1.5 1117315845
## 16082    3.0 1117751407
## 16083    1.0 1117403012
## 16085    3.0 1117315874
## 16086    2.0 1117402713
## 16088    3.5 1117482016
## 16090    3.0 1117402464
## 16093    3.5 1117403390
## 16095    2.0 1117482135
## 16097    3.0 1117482102
## 16098    3.5 1117402645
## 16107    3.5 1117402615
## 16108    1.0 1117751135
## 16114    3.0 1117403312
## 16116    1.5 1117751234
## 16121    2.0 1117482004
## 16123    3.5 1117751568
## 16125    3.5 1117402600
## 16135    3.5 1446673678
## 16136    3.5 1446674058
## 16137    3.5 1446673686
## 16141    3.5 1446674117
## 16144    3.5 1446674123
## 16148    3.5 1446674066
## 16149    3.5 1446674097
## 16152    3.5 1446673980
## 16153    3.5 1446673794
## 16155    3.5 1446674082
## 16160    3.5 1446673875
## 16162    3.5 1446674148
## 16168    3.5 1446674037
## 16171    3.5 1446674062
## 16180    3.0 1446674088
## 16184    3.5 1446673778
## 16189    3.5 1446673992
## 16191    3.5 1446673802
## 16195    3.0 1446674139
## 16201    3.5 1446674078
## 16202    3.0 1085578997
## 16203    3.5 1101130624
## 16204    3.5 1100533597
## 16206    2.0 1088058230
## 16207    3.5 1086093635
## 16208    2.5 1085574077
## 16211    3.0 1100533551
## 16215    2.5 1088058158
## 16216    3.5 1100533831
## 16217    3.5 1088058675
## 16218    3.5 1086093600
## 16220    3.0 1100529775
## 16221    3.5 1085581733
## 16222    3.0 1085581726
## 16224    3.5 1100533423
## 16225    2.0 1088058683
## 16226    2.0 1100533903
## 16227    2.5 1100533996
## 16229    2.5 1086093646
## 16230    3.5 1100533509
## 16231    3.0 1101130498
## 16232    3.5 1085579933
## 16233    3.5 1085574471
## 16234    2.5 1088058647
## 16235    3.5 1100533466
## 16238    3.0 1100533564
## 16239    2.0 1088058656
## 16240    3.0 1085579676
## 16241    3.0 1086272698
## 16242    3.0 1085579171
## 16243    3.0 1100533414
## 16244    3.5 1086101939
## 16245    3.0 1101130575
## 16246    3.0 1086094614
## 16248    3.5 1100533451
## 16249    3.5 1101130637
## 16250    3.0 1086095273
## 16251    3.0 1100534070
## 16252    3.0 1086094602
## 16253    3.5 1100529797
## 16254    2.5 1088058623
## 16256    3.0 1086093920
## 16257    3.0 1100533629
## 16258    2.5 1085581664
## 16259    3.0 1086095239
## 16261    1.5 1085573835
## 16262    3.5 1100533484
## 16263    2.5 1100533815
## 16264    3.0 1100533587
## 16265    3.5 1086101945
## 16266    3.5 1100533501
## 16267    3.5 1100529745
## 16268    3.0 1085640697
## 16269    3.0 1085640689
## 16270    3.0 1086094013
## 16272    3.5 1100533610
## 16273    3.0 1086094619
## 16274    3.5 1086094026
## 16275    2.5 1085574422
## 16276    3.0 1086101954
## 16277    3.5 1086095236
## 16279    3.5 1085640658
## 16281    3.0 1085574395
## 16283    3.5 1086095164
## 16284    3.0 1086093615
## 16285    3.5 1100533482
## 16286    3.5 1086272680
## 16287    3.0 1088058164
## 16290    3.5 1086095185
## 16292    3.0 1100533435
## 16294    2.5 1088058610
## 16295    3.0 1100533457
## 16296    2.5 1085581674
## 16297    3.5 1086093893
## 16299    2.5 1085574335
## 16300    2.5 1085581638
## 16302    2.5 1088058188
## 16303    3.0 1086101906
## 16304    2.5 1085581624
## 16306    3.5 1086095142
## 16307    3.5 1100533616
## 16309    3.0 1086274277
## 16310    3.0 1086095103
## 16311    3.0 1085579881
## 16314    2.5 1088058573
## 16316    3.5 1085574410
## 16317    3.5 1085573973
## 16318    3.0 1086095128
## 16322    3.0 1085581557
## 16324    2.5 1086093583
## 16325    3.5 1088058555
## 16326    3.0 1085579179
## 16328    3.5 1085579028
## 16330    3.5 1086095072
## 16332    3.0 1086095090
## 16334    3.0 1088059092
## 16336    3.0 1101130590
## 16339    3.5 1086101917
## 16342    3.5 1085581565
## 16343    3.0 1101130530
## 16346    3.5 1085580336
## 16347    3.5 1100533822
## 16350    3.5 1086101890
## 16351    3.5 1085580285
## 16353    3.5 1101125772
## 16356    1.5 1085573954
## 16361    3.0 1086272749
## 16364    3.0 1085581535
## 16365    3.0 1086093850
## 16366    3.5 1088058500
## 16368    3.0 1085579145
## 16369    3.5 1085640555
## 16371    3.0 1086093867
## 16374    3.5 1086101897
## 16375    3.5 1085579314
## 16376    3.5 1086960518
## 16377    3.0 1086094327
## 16378    2.5 1085581530
## 16379    3.5 1086960509
## 16381    2.5 1086093877
## 16382    3.0 1086101845
## 16384    3.5 1086095038
## 16385    3.0 1086960525
## 16386    3.5 1086095060
## 16387    3.5 1085573855
## 16388    3.5 1085640550
## 16389    3.0 1100533952
## 16390    3.0 1086095042
## 16392    3.5 1086093488
## 16393    2.0 1085580294
## 16395    3.0 1085579473
## 16396    3.5 1088058180
## 16397    3.0 1085574042
## 16398    3.0 1085581486
## 16399    3.5 1086095010
## 16401    2.0 1086274021
## 16403    3.0 1086095002
## 16404    3.5 1100533713
## 16408    3.5 1085581466
## 16410    3.5 1086960071
## 16411    3.0 1086101836
## 16412    3.0 1088059037
## 16416    3.0 1101116025
## 16417    3.0 1085640483
## 16419    2.0 1085579811
## 16420    3.5 1088058417
## 16423    3.0 1086093845
## 16425    3.5 1086093383
## 16427    3.0 1088058422
## 16429    3.0 1100533686
## 16431    3.5 1100533958
## 16432    3.0 1085581438
## 16433    3.0 1085581441
## 16434    2.5 1088058369
## 16435    2.5 1100533989
## 16437    3.0 1086094963
## 16438    3.0 1086272795
## 16439    3.0 1085581411
## 16440    3.5 1100534034
## 16441    2.0 1086093376
## 16442    3.5 1088058350
## 16443    3.0 1086093792
## 16445    3.0 1086094915
## 16447    3.0 1086272559
## 16450    3.0 1088058975
## 16451    3.5 1199439298
## 16454    3.5 1085579021
## 16456    3.5 1085581448
## 16457    2.5 1085581377
## 16458    3.0 1088058358
## 16459    3.0 1085574059
## 16460    3.0 1100533577
## 16461    3.0 1086093370
## 16462    3.5 1100534113
## 16463    3.0 1088058376
## 16464    3.0 1088058315
## 16465    3.0 1085579828
## 16466    3.5 1086272645
## 16467    3.5 1086094900
## 16469    2.0 1085640299
## 16470    3.0 1085581383
## 16471    3.0 1086094906
## 16474    3.0 1085574342
## 16476    2.5 1086093818
## 16477    3.5 1085574093
## 16478    1.5 1085574070
## 16479    3.0 1086094844
## 16480    3.0 1085581341
## 16481    3.5 1199439167
## 16482    3.0 1086094851
## 16483    1.0 1086102111
## 16484    2.5 1086094875
## 16485    3.0 1085581358
## 16487    3.0 1086274315
## 16488    2.0 1086093346
## 16489    3.5 1086960054
## 16490    3.0 1086094859
## 16491    3.0 1085579657
## 16492    2.0 1088058933
## 16493    3.0 1100533937
## 16494    2.5 1086960284
## 16496    2.5 1085581054
## 16497    3.0 1086272690
## 16501    3.0 1086094218
## 16502    3.5 1086093785
## 16504    3.0 1086101839
## 16505    3.0 1085574349
## 16508    3.5 1101125851
## 16511    3.0 1086093777
## 16512    3.0 1086094809
## 16513    3.0 1086094805
## 16515    3.0 1086094522
## 16516    3.5 1085579412
## 16517    2.5 1085641901
## 16518    3.0 1085581274
## 16519    3.0 1086274284
## 16520    3.5 1086093765
## 16521    3.5 1086094765
## 16522    3.5 1086093452
## 16523    3.5 1085580217
## 16525    3.0 1085640104
## 16526    3.0 1086272799
## 16527    2.5 1086094787
## 16528    2.5 1086093357
## 16529    3.5 1086102081
## 16530    3.0 1088058238
## 16531    3.0 1086272525
## 16532    2.5 1086093741
## 16533    2.5 1100531148
## 16534    3.0 1101125778
## 16535    3.0 1086272631
## 16536    3.5 1085574022
## 16537    3.5 1085581284
## 16540    3.0 1086960240
## 16541    3.0 1085581289
## 16542    3.0 1085640064
## 16546    2.5 1086102087
## 16549    2.0 1088058852
## 16550    3.5 1086094781
## 16551    3.0 1085579419
## 16552    3.5 1086093773
## 16553    3.0 1086094534
## 16555    3.5 1086094545
## 16557    2.0 1086094180
## 16561    3.0 1086094194
## 16562    3.0 1086093756
## 16564    3.5 1086102036
## 16565    2.5 1086274173
## 16567    3.0 1085580186
## 16568    3.0 1086274263
## 16569    3.0 1088058270
## 16570    3.0 1086094721
## 16571    3.0 1085581279
## 16572    3.0 1101125836
## 16573    3.0 1086094736
## 16575    2.0 1086275040
## 16576    2.5 1086093749
## 16577    3.0 1085639931
## 16578    3.0 1086272615
## 16580    3.0 1088058788
## 16581    2.0 1086094164
## 16582    3.0 1085639873
## 16583    2.0 1085639899
## 16584    3.5 1085573843
## 16585    3.5 1100532157
## 16586    3.5 1086272672
## 16588    3.5 1086272776
## 16590    3.5 1085580193
## 16592    3.0 1088058815
## 16593    3.5 1085580206
## 16594    3.0 1085639858
## 16595    2.0 1086094470
## 16598    3.5 1088058250
## 16600    3.0 1085639848
## 16603    3.0 1085639812
## 16605    3.5 1085580172
## 16606    3.0 1085639807
## 16607    3.5 1086094703
## 16609    3.0 1086101988
## 16610    2.0 1085579220
## 16612    3.0 1086093719
## 16613    3.5 1085639777
## 16615    3.0 1085579637
## 16616    3.0 1085580165
## 16617    3.0 1085580993
## 16618    3.0 1086274032
## 16619    3.0 1086094467
## 16620    2.5 1088058223
## 16621    3.0 1086094100
## 16622    2.5 1085639782
## 16624    3.5 1085582146
## 16625    3.5 1086274529
## 16627    3.0 1086272790
## 16628    3.5 1085581236
## 16629    3.5 1086272598
## 16630    3.0 1086272410
## 16631    3.0 1085581244
## 16632    3.0 1101115611
## 16633    3.0 1085582137
## 16634    3.0 1086093708
## 16635    3.5 1085582061
## 16637    2.5 1199438959
## 16638    3.0 1086093682
## 16639    3.0 1088058214
## 16643    3.0 1086094105
## 16645    3.0 1085574460
## 16646    3.5 1085582030
## 16647    2.0 1086274470
## 16648    1.5 1088058733
## 16649    3.5 1085641574
## 16650    2.5 1101115415
## 16653    2.5 1085582022
## 16655    1.5 1086094117
## 16656    3.0 1085581212
## 16659    3.0 1086094066
## 16660    3.0 1100532042
## 16662    3.5 1100532177
## 16663    3.0 1086101995
## 16664    3.5 1101125659
## 16665    3.5 1085581939
## 16666    3.0 1085641448
## 16667    3.5 1086093675
## 16669    3.5 1100606244
## 16671    3.5 1086272571
## 16673    3.5 1101125697
## 16675    2.5 1086272492
## 16677    3.5 1100605991
## 16678    3.5 1088058706
## 16679    3.0 1086094075
## 16680    3.0 1085581170
## 16681    3.5 1085581157
## 16682    3.0 1199438599
## 16683    3.0 1086272603
## 16684    2.0 1199439214
## 16685    3.5 1100532089
## 16686    3.0 1086094656
## 16687    2.5 1085580015
## 16690    3.0 1086094360
## 16691    3.5 1100532118
## 16692    3.0 1085581870
## 16694    3.5 1100532019
## 16698    3.0 1100606302
## 16699    2.0 1086094349
## 16700    2.5 1088059177
## 16702    2.5 1086093699
## 16703    3.0 1085579207
## 16705    3.5 1100606316
## 16707    3.5 1086093623
## 16708    2.5 1085581780
## 16710    3.5 1086272341
## 16711    3.0 1086272346
## 16712    3.5 1101125893
## 16713    3.5 1086272329
## 16715    3.5 1199439249
## 16719    3.5 1199439144
## 16721    2.5 1199439080
## 16724    3.5 1199438665
## 16725    3.0 1199438842
## 16726    1.5 1199439007
## 16728    3.0 1215820041
## 16734    3.0 1215760658
## 16735    3.5 1215759985
## 16737    3.5 1215760493
## 16739    3.0 1215760243
## 16740    3.5 1215818358
## 16744    2.5 1215760669
## 16747    2.5 1215761066
## 16750    2.0 1215761101
## 16752    3.5 1215818302
## 16755    3.0 1215818385
## 16756    0.5 1215818472
## 16758    1.0 1215818522
## 16760    3.0 1215760972
## 16761    0.5 1215819552
## 16766    3.5 1215818396
## 16772    3.0 1446493028
## 16775    3.0 1446493238
## 16776    0.5 1446493194
## 16777    2.0 1446493350
## 16779    3.5 1446493296
## 16780    1.5 1446493230
## 16781    3.5 1446493183
## 16782    3.5 1446493152
## 16783    3.5 1446493281
## 16784    0.5 1446493334
## 16785    1.5 1446493198
## 16786    0.5 1446493222
## 16787    2.0 1446493286
## 16788    2.0 1446493319
## 16789    3.0 1446493190
## 16790    0.5 1446493216
## 16791    1.5 1446493250
## 16792    0.5 1446493273
## 16794    3.5 1446493203
## 16799    1.5 1446493170
## 16803    3.0 1446493062
## 16805    3.0  843302154
## 16806    2.0  843302154
## 16807    3.0  843302110
## 16808    3.0  843301948
## 16809    3.0  843302067
## 16810    3.0  843302067
## 16812    3.0  843302196
## 16813    2.0  843301990
## 16814    3.0  843302067
## 16815    3.0  843302110
## 16816    3.0  843301884
## 16818    3.0  843302111
## 16819    1.0  843301948
## 16822    3.0  843302154
## 16824    3.0  843301884
## 16825    3.0  843302026
## 16826    3.0  843302111
## 16831    3.0  843302154
## 16832    3.0  843301884
## 16835    3.5 1153229790
## 16839    2.5 1153229745
## 16852    2.5 1153229716
## 16854    3.5 1153229759
## 16869    3.0  840100546
## 16870    3.0  840100501
## 16873    3.0  840100501
## 16874    1.0  840101128
## 16880    3.0  840100386
## 16881    3.0  840100546
## 16886    3.0  840100585
## 16900    3.0  840100893
## 16902    3.0  840100456
## 16906    3.0  840100546
## 16912    3.0  840100821
## 16915    3.0  840100439
## 16916    3.0  840100821
## 16920    2.0  840100921
## 16925    3.0  840100501
## 16935    3.0  840100946
## 16950    3.0  840100994
## 16953    3.0  840100921
## 16967    3.0  840100416
## 16972    3.0  840100695
## 16978    3.0 1097430540
## 16979    3.5 1097429457
## 16980    3.5 1097432318
## 16982    2.5 1098045013
## 16984    3.5 1097429230
## 16985    3.5 1097429750
## 16987    1.0 1097429193
## 16990    3.0 1097431144
## 16991    3.0 1097430874
## 16992    0.5 1097429180
## 16994    3.5 1097514612
## 16995    3.5 1097432358
## 16998    3.0 1097432346
## 16999    2.5 1097431678
## 17002    0.5 1097431412
## 17003    3.5 1097430507
## 17005    3.5 1097432320
## 17007    3.5 1097432375
## 17009    3.0 1097514606
## 17011    3.0 1097430518
## 17012    2.0 1097429176
## 17013    3.0 1097514380
## 17014    3.5 1097429651
## 17015    3.5 1098045314
## 17016    2.0 1097432326
## 17018    3.5 1097431682
## 17019    3.5 1097429767
## 17022    2.5 1097432334
## 17024    3.5 1097429669
## 17026    3.5 1097430883
## 17028    3.0 1097432336
## 17029    3.5 1097430881
## 17030    3.5 1098044819
## 17031    1.0 1097430889
## 17032    3.5 1097429406
## 17033    3.0 1097432380
## 17034    1.5 1097432330
## 17035    2.5 1097429297
## 17039    3.0 1097432294
## 17040    3.0 1097430856
## 17042    2.5 1097429228
## 17043    3.5 1097432291
## 17045    3.5 1097432312
## 17047    1.5 1097429183
## 17049    2.5 1097429387
## 17051    3.0 1097514893
## 17052    3.5 1097429385
## 17058    3.0 1097429251
## 17060    3.5 1097429373
## 17061    3.5 1097431651
## 17064    3.0 1097431125
## 17067    2.5 1097432456
## 17074    3.5 1097429355
## 17076    3.0 1097431418
## 17080    3.5 1097432420
## 17081    3.0 1098044795
## 17082    3.5 1097431623
## 17083    3.5 1097431420
## 17087    3.0 1097432450
## 17088    3.5 1098373835
## 17089    1.5 1097431619
## 17091    3.5 1097429361
## 17092    3.5 1097514793
## 17093    3.0 1097431614
## 17097    3.5 1097514816
## 17098    3.5 1097429351
## 17100    3.0 1098044660
## 17103    1.5 1097429349
## 17104    1.5 1097429237
## 17105    2.5 1097431968
## 17107    1.0 1097430687
## 17109    3.5 1097431959
## 17110    3.0 1098373801
## 17111    3.0 1097432240
## 17112    3.0 1097431606
## 17113    3.5 1098374434
## 17114    2.5 1097429293
## 17115    2.5 1097431602
## 17116    3.5 1097429320
## 17117    3.5 1097430719
## 17118    3.5 1098373990
## 17121    3.5 1097514936
## 17123    3.5 1098374461
## 17124    3.0 1098373776
## 17125    2.5 1097429187
## 17127    3.5 1097514940
## 17128    3.5 1098045265
## 17129    3.5 1097431564
## 17131    3.5 1097431577
## 17132    2.0 1097431941
## 17135    2.5 1097514906
## 17136    1.5 1097429203
## 17139    3.0 1098373766
## 17140    3.5 1098374417
## 17142    3.5 1097514883
## 17143    3.0 1097431925
## 17144    3.5 1098373592
## 17148    2.5 1098373755
## 17152    1.5 1097431911
## 17155    2.5 1098044731
## 17156    3.0 1098044735
## 17157    2.5 1097432395
## 17159    3.5 1098374402
## 17160    1.5 1097432489
## 17162    3.0 1097430705
## 17163    1.0 1097429310
## 17165    3.5 1097431536
## 17166    1.0 1097429213
## 17171    3.5 1097514822
## 17172    3.5 1097431519
## 17175    3.0 1097431523
## 17177    3.0 1097432427
## 17178    3.0 1097431882
## 17184    3.5 1098374333
## 17185    0.5 1097429253
## 17186    3.5 1098044715
## 17187    3.0 1097429526
## 17188    3.5 1097429513
## 17189    3.0 1098373553
## 17193    1.0 1097429530
## 17194    3.5 1097429519
## 17196    2.5 1098374329
## 17197    2.5 1098374337
## 17198    3.5 1097431498
## 17201    3.5 1097429206
## 17203    3.5 1097429533
## 17205    3.5 1097431490
## 17206    3.5 1097429535
## 17207    1.0 1097429517
## 17208    3.5 1097432437
## 17209    3.5 1098374299
## 17210    3.5 1098373571
## 17211    3.5 1097514909
## 17212    2.0 1098374296
## 17215    3.5 1097431843
## 17216    2.5 1098045068
## 17217    3.5 1097514767
## 17219    3.0 1097431503
## 17220    3.5 1097431493
## 17221    3.5 1098374191
## 17224    3.5 1098374196
## 17225    2.5 1097514553
## 17226    0.5 1097431467
## 17229    3.5 1097514787
## 17232    2.5 1097514663
## 17233    3.5 1098044698
## 17234    3.0 1097432186
## 17235    2.5 1097514666
## 17240    3.5 1097431823
## 17243    3.5 1098044693
## 17244    3.5 1097436698
## 17246    2.5 1098374158
## 17247    3.5 1097431477
## 17249    2.5 1097514531
## 17250    3.5 1097431817
## 17252    2.5 1098374154
## 17254    3.5 1097431810
## 17258    3.0 1097514898
## 17259    2.5 1097431464
## 17260    3.5 1097514657
## 17261    2.0 1098374142
## 17263    3.0 1097431797
## 17264    3.0 1097514862
## 17266    2.5 1098045051
## 17269    1.5 1097431446
## 17271    1.5 1097430574
## 17272    3.0 1097514874
## 17276    3.0 1097432135
## 17277    3.5 1098045039
## 17278    3.5 1097514754
## 17281    3.5 1098045419
## 17282    3.5 1097432127
## 17283    3.0 1097432492
## 17289    3.0 1098373561
## 17290    3.0 1097514681
## 17291    1.5 1097429446
## 17293    3.0 1098045033
## 17294    3.0 1097436615
## 17295    3.5 1097429453
## 17299    3.5 1098374066
## 17303    2.0 1098044676
## 17304    3.5 1097432077
## 17305    3.0 1097432100
## 17307    3.0 1097432064
## 17310    3.5 1097432030
## 17312    3.0 1097437389
## 17318    3.0 1097432018
## 17321    3.0  852720897
## 17322    3.0  852720984
## 17323    3.0  852720865
## 17326    3.0  852720866
## 17330    2.0  852720866
## 17333    1.0  852720866
## 17341    3.0  844884590
## 17346    3.0  844884266
## 17369    3.0  838365897
## 17371    3.0  838365897
## 17374    3.0  838365857
## 17375    1.0  838365737
## 17376    3.0  838365840
## 17389    3.0  838365907
## 17390    3.0  838365867
## 17395    3.5 1107034126
## 17396    2.0 1107034459
## 17399    3.0 1107034092
## 17400    3.0 1107034046
## 17403    3.5 1107034097
## 17405    2.5 1107034038
## 17407    3.5 1107034454
## 17415    3.0 1107034043
## 17416    3.5 1107034088
## 17419    3.5 1107034448
## 17420    3.5 1107034119
## 17429    3.0 1107034074
## 17430    3.5 1107034071
## 17434    1.5 1163454706
## 17441    2.5 1163454728
## 17442    2.5 1163454712
## 17443    2.0 1163454650
## 17444    3.0 1163454691
## 17449    3.0 1163454632
## 17450    1.0 1163454748
## 17451    2.0 1163454640
## 17458    3.5 1320638323
## 17462    3.5 1320638237
## 17465    3.0 1320634780
## 17466    2.5 1320634699
## 17467    2.5 1320634623
## 17470    0.5 1320634657
## 17473    0.5 1320634669
## 17475    3.0 1320634724
## 17477    3.0 1320638154
## 17480    3.0 1320640136
## 17481    0.5 1320634828
## 17483    0.5 1320634835
## 17484    2.0 1320634634
## 17486    3.5 1320634680
## 17487    3.0 1320634856
## 17496    3.5 1320637335
## 17503    3.5 1320639535
## 17504    3.5 1320637031
## 17519    2.0  951009429
## 17531    3.0  951009851
## 17533    2.0  951009005
## 17547    3.0  951009349
## 17550    3.0  951009429
## 17553    3.0  951009005
## 17558    3.0  950153947
## 17573    3.0  951009429
## 17579    3.0  951009005
## 17582    3.0  951008883
## 17584    3.0  951009585
## 17585    2.0  951008911
## 17592    3.0  951008828
## 17594    1.0  951009552
## 17595    3.0  951009097
## 17597    3.0  951009481
## 17607    3.0  951009067
## 17608    1.0  951009097
## 17610    3.0  951009097
## 17615    3.0  951009067
## 17616    3.0  951009481
## 17617    3.0  950153928
## 17618    3.0  951009397
## 17629    3.0  951008941
## 17633    3.0  951009067
## 17635    3.0  951009826
## 17636    1.0  951009209
## 17638    3.0  951009005
## 17640    3.0  951009097
## 17641    3.0  951008855
## 17642    3.0  951009148
## 17643    3.0  951009037
## 17645    3.0  951009005
## 17646    3.0  951009230
## 17648    3.0  951009168
## 17658    2.0  951009097
## 17678    3.0  964408657
## 17680    3.0  964408796
## 17683    3.0  964408894
## 17684    3.0  964408994
## 17686    3.0  964409017
## 17687    2.0  964408796
## 17690    3.0  964408911
## 17695    3.0  964408938
## 17696    3.0  964409039
## 17699    3.0  964408938
## 17701    3.0  964408938
## 17702    2.0  913048158
## 17703    3.0  913051445
## 17705    3.0  913048006
## 17707    3.0  913050793
## 17709    3.0  915411448
## 17711    3.0  945993306
## 17715    2.0  913048438
## 17718    3.0  945993516
## 17719    2.0  913232674
## 17720    2.0  952582537
## 17723    3.0  913128316
## 17726    3.0  913048077
## 17727    1.0  913232864
## 17728    2.0  913051632
## 17731    2.0  913232864
## 17732    1.0  913051632
## 17733    2.0  960751812
## 17734    2.0  913051475
## 17735    3.0  913050333
## 17736    2.0  913232894
## 17738    2.0  913232929
## 17740    2.0  913050480
## 17746    3.0  913050293
## 17748    3.0  913051506
## 17750    3.0  913048548
## 17752    3.0  913049150
## 17753    3.0  952583089
## 17754    3.0  913049072
## 17755    3.0  913048916
## 17756    2.0  913050396
## 17758    2.0  913049964
## 17761    2.0  913051632
## 17762    2.0  952583169
## 17763    3.0  952583509
## 17764    3.0  913048158
## 17767    3.0  972097228
## 17770    3.0  952582353
## 17775    3.0  913047597
## 17776    3.0  952582708
## 17788    1.0  913232929
## 17789    3.0  913048883
## 17790    3.0  913052090
## 17791    3.0  913049964
## 17793    2.0  913232864
## 17794    3.0  915411867
## 17798    2.0  913232716
## 17802    3.0  913050553
## 17807    1.0  913051506
## 17809    3.0  913211320
## 17810    3.0  913051666
## 17811    2.0  952583400
## 17827    3.0  915411502
## 17830    3.0  913232992
## 17831    3.0  960671689
## 17832    2.0  913050827
## 17833    3.0  913681100
## 17834    3.0  952584169
## 17837    3.0  913051666
## 17838    3.0  913050942
## 17839    3.0  913048764
## 17840    2.0  913049782
## 17843    3.0  960671633
## 17854    2.0  913050942
## 17855    2.0  913232754
## 17860    3.0  913680627
## 17861    2.0  952583063
## 17862    2.0  913118043
## 17877    3.0  913058346
## 17887    3.0  952581003
## 17899    2.0  913049179
## 17913    3.0  913232524
## 17921    2.0  913051590
## 17926    2.0  952584516
## 17928    2.0  952582585
## 17929    3.0  952582509
## 17930    3.0  913049427
## 17933    2.0  952583400
## 17934    3.0  913232642
## 17935    2.0  913232965
## 17936    3.0  952582034
## 17937    1.0  913232965
## 17938    3.0  913232794
## 17941    2.0  913233215
## 17943    3.0  913051590
## 17948    2.0  913050666
## 17949    2.0  913232929
## 17952    2.0  913050368
## 17953    3.0  913232754
## 17955    2.0  913051590
## 17956    3.0  913048764
## 17957    2.0  952581174
## 17958    1.0  913233239
## 17959    1.0  913233239
## 17961    2.0  952583721
## 17962    2.0  913048476
## 17964    3.0  913051475
## 17965    2.0  913050942
## 17966    3.0  913232754
## 17967    2.0  913050793
## 17968    3.0  913050230
## 17969    2.0  913233183
## 17971    2.0  913051632
## 17972    2.0  913233268
## 17973    3.0  915579236
## 17976    3.0  952582839
## 17978    1.0  913049303
## 17982    3.0  913048232
## 17983    2.0  913048077
## 17985    3.0  952583024
## 17986    3.0  913211248
## 17988    2.0  913050553
## 17989    3.0  913117813
## 17990    3.0  927055670
## 17991    3.0  913232894
## 17992    3.0  952583747
## 17993    1.0  913051506
## 17994    2.0  913050075
## 17995    3.0  913052089
## 17998    3.0  913057714
## 17999    3.0  913047343
## 18000    2.0  913049844
## 18001    3.0  913047878
## 18005    3.0  913050029
## 18006    3.0  913049605
## 18007    2.0  913050666
## 18008    2.0  913233215
## 18009    2.0  913048883
## 18010    3.0  913051445
## 18013    3.0  913232864
## 18014    3.0  913048721
## 18015    2.0  913048605
## 18016    3.0  913128356
## 18019    2.0  913057714
## 18020    2.0  913051666
## 18021    2.0  913233136
## 18022    3.0  913047687
## 18023    3.0  913049396
## 18024    3.0  913680547
## 18025    2.0  913051697
## 18026    3.0  913233296
## 18027    3.0  913050997
## 18028    2.0  913051666
## 18030    2.0  913058499
## 18032    2.0  913680503
## 18033    2.0  913050666
## 18035    3.0  913051632
## 18037    2.0  913052129
## 18040    3.0  952583206
## 18046    3.0  913052966
## 18047    3.0  952582353
## 18055    3.0  960671689
## 18059    3.0  952583848
## 18061    3.0  952583799
## 18062    3.0  913050368
## 18063    3.0  952581796
## 18066    2.0  952583848
## 18067    2.0  913050261
## 18068    3.0  913233012
## 18070    3.0  960671689
## 18072    2.0  913051697
## 18073    2.0  960671689
## 18080    3.0  913211160
## 18083    2.0  913051697
## 18085    3.0  952583442
## 18088    3.0  913233215
## 18091    2.0  952582409
## 18093    3.0  913232965
## 18094    3.0  913058346
## 18095    3.0  952584492
## 18096    3.0  913050518
## 18098    3.0  913211320
## 18099    3.0  913211248
## 18100    3.0  945993582
## 18101    3.0  960671726
## 18102    3.0  952582538
## 18104    3.0  960671689
## 18105    3.0  915411308
## 18110    3.0  952582887
## 18112    2.0  913052129
## 18113    3.0  913058279
## 18116    2.0  952584516
## 18120    2.0  927055099
## 18121    3.0  913051262
## 18123    2.0  952583548
## 18124    3.0  952582839
## 18131    2.0  913046852
## 18132    3.0  927055342
## 18133    3.0  952583721
## 18135    3.0  952582174
## 18136    3.0  952121372
## 18139    1.0  913233136
## 18141    3.0  945995494
## 18142    3.0  952582248
## 18143    2.0  913233327
## 18145    3.0  952581686
## 18147    2.0  913233183
## 18148    3.0  913232567
## 18150    2.0  913233296
## 18151    2.0  913232864
## 18152    3.0  913233268
## 18153    3.0  927055846
## 18154    2.0  913232642
## 18155    1.0  913233136
## 18156    3.0  952583624
## 18158    3.0  972097288
## 18159    3.0  915411448
## 18163    3.0  915412223
## 18164    3.0  945993844
## 18166    2.0  952583587
## 18167    2.0  952582887
## 18169    3.0  952583587
## 18170    3.0  952582382
## 18172    1.0  945993859
## 18173    2.0  959733676
## 18174    3.0  952583902
## 18175    3.0  945993764
## 18176    3.0  952583967
## 18177    2.0  945993697
## 18178    3.0  945993582
## 18179    3.0  952583509
## 18185    3.0  945993537
## 18187    3.0  952121533
## 18188    2.0  952582248
## 18189    1.0  945993764
## 18190    3.0  952582887
## 18191    1.0  945993967
## 18192    2.0  952121596
## 18194    2.0  952121533
## 18196    2.0  952583721
## 18201    2.0  989622527
## 18202    3.0  952121372
## 18203    2.0  952583136
## 18205    3.0  952582207
## 18207    3.0  952121372
## 18208    2.0  952121490
## 18211    3.0  952581439
## 18213    3.0  945993349
## 18220    3.0  952582069
## 18229    3.0  945993582
## 18234    3.0  952583136
## 18237    3.0  952582207
## 18242    3.0  952582639
## 18243    3.0  952582729
## 18244    2.0  952583587
## 18246    3.0  960751946
## 18248    2.0  972097355
## 18249    3.0  972097906
## 18252    3.0  952583442
## 18253    2.0  972097256
## 18256    3.0  959734260
## 18263    2.0  952583929
## 18265    3.0  952581470
## 18266    2.0  952583206
## 18267    2.0  952583587
## 18271    2.0  972097449
## 18274    2.0  972097473
## 18275    2.0  972097288
## 18276    3.0  952581856
## 18278    3.0  952580649
## 18279    2.0  952580566
## 18282    3.0  972097355
## 18287    2.0  960671726
## 18288    3.0  952580649
## 18290    3.0  952580566
## 18291    3.0  972097322
## 18298    2.0  960671726
## 18299    1.0  989784509
## 18303    2.0  972097378
## 18305    1.0  989622944
## 18308    3.0  989623049
## 18313    3.0  989622945
## 18314    2.0  972097449
## 18316    2.0  972097449
## 18317    2.0  989622976
## 18318    3.0  989623306
## 18319    2.0  989623049
## 18323    3.0  972097355
## 18326    2.0  989622976
## 18329    3.0  989622945
## 18331    3.0  989622945
## 18332    3.0  989622570
## 18333    3.0  989622945
## 18334    2.0  989784550
## 18343    2.5 1167422234
## 18344    3.5 1167420751
## 18345    3.0 1125350649
## 18346    3.5 1167421762
## 18349    3.0 1167422401
## 18350    2.5 1125350327
## 18351    2.0 1167422338
## 18352    3.0 1167422364
## 18353    3.5 1125522893
## 18355    3.0 1167422305
## 18356    3.0 1167422258
## 18357    3.5 1167422230
## 18358    3.5 1167422387
## 18359    3.5 1125523032
## 18360    3.0 1125523035
## 18361    3.0 1167422333
## 18362    3.0 1167422359
## 18363    3.5 1125523111
## 18365    3.5 1167420777
## 18367    3.0 1167422326
## 18368    1.5 1167420460
## 18369    3.5 1167422272
## 18370    3.0 1167422320
## 18371    3.0 1167422296
## 18372    3.5 1125523023
## 18373    1.5 1167420471
## 18376    3.0 1167421691
## 18377    3.5 1125523097
## 18378    3.5 1125523103
## 18382    3.5 1167422131
## 18383    3.0 1125523069
## 18384    3.5 1125350472
## 18387    3.5 1167421349
## 18388    1.5 1167421357
## 18389    2.5 1125523079
## 18390    3.5 1125522964
## 18391    2.5 1125350599
## 18392    3.0 1125350568
## 18393    3.0 1125350259
## 18394    3.5 1125523072
## 18396    3.0 1125350313
## 18397    3.0 1125523087
## 18400    3.5 1167422380
## 18401    3.0 1125350343
## 18402    3.5 1125350275
## 18406    2.5 1167420608
## 18407    3.0 1167420253
## 18408    3.5 1125523075
## 18409    3.0 1125350356
## 18410    1.5 1167420444
## 18411    2.5 1167420413
## 18416    3.0 1167420364
## 18417    3.5 1125350564
## 18420    3.0 1125350335
## 18422    3.5 1125350317
## 18423    3.5 1125350538
## 18426    3.5 1125523055
## 18427    3.0 1125523007
## 18431    3.5 1125350425
## 18433    3.5 1167421669
## 18437    3.0 1125522923
## 18438    3.0 1167421776
## 18439    2.0 1167420840
## 18440    3.5 1167422034
## 18441    3.5 1167422048
## 18443    3.5 1125350417
## 18445    3.5 1125523048
## 18446    3.5 1167420588
## 18447    3.5 1167422090
## 18449    3.5 1125350348
## 18450    2.0 1125523044
## 18453    2.5 1167420410
## 18454    2.5 1167422038
## 18455    2.5 1125523018
## 18456    3.0 1167420604
## 18457    3.5 1125350427
## 18458    3.5 1125522968
## 18460    3.0 1125350544
## 18461    3.0 1167420597
## 18463    2.5 1125523014
## 18466    0.5 1167420818
## 18467    3.5 1125350483
## 18468    3.0 1125350587
## 18472    2.0 1125350613
## 18473    3.0 1125350594
## 18475    3.5 1125350627
## 18476    2.0 1167421715
## 18479    1.5 1167420746
## 18480    3.0 1167421787
## 18483    3.0  833058428
## 18491    3.0  833058633
## 18493    3.0  833058866
## 18494    3.0  833059070
## 18496    3.0  833058390
## 18499    3.0  833058390
## 18501    3.0  833058557
## 18509    3.0  833058442
## 18510    3.0  833058621
## 18521    3.0  833058414
## 18524    3.0  833058428
## 18526    3.0  833058704
## 18533    3.0  833058489
## 18536    3.0  833058645
## 18546    3.0  836906092
## 18548    3.0  833058545
## 18549    3.0  833058905
## 18550    3.0  836906093
## 18557    3.0  836906141
## 18558    3.0  833058905
## 18561    3.0  832773057
## 18562    3.0  832773057
## 18563    3.0  832773202
## 18564    3.0  832773358
## 18566    3.0  832772925
## 18567    3.0  832772980
## 18568    3.0  832773057
## 18569    2.0  832772980
## 18570    2.0  832773092
## 18571    1.0  832773092
## 18572    1.0  832773017
## 18573    3.0  832773092
## 18574    3.0  832773358
## 18575    3.0  832773202
## 18577    3.0  832773092
## 18578    1.0  832772925
## 18579    3.0  832773092
## 18582    3.0  832773017
## 18583    3.0  832773057
## 18584    1.0  832773202
## 18585    1.0  832772980
## 18586    3.0  832772977
## 18587    3.0  832773358
## 18588    1.0  832772925
## 18589    3.0  832773057
## 18590    3.0  832773202
## 18592    3.0  832773302
## 18595    3.0  832772977
## 18596    3.0  832772925
## 18597    3.0  832772925
## 18598    3.0  832773017
## 18599    3.0  832773358
## 18600    3.0  832773358
## 18605    3.0  994021141
## 18609    3.0  994021000
## 18610    1.0  994015880
## 18613    2.0  994015896
## 18614    2.0  994020942
## 18615    2.0  994021210
## 18616    2.0  994020942
## 18617    1.0  994020953
## 18621    2.0  994021077
## 18626    3.0  994021178
## 18628    3.0  994021057
## 18630    2.0  994020971
## 18635    3.0 1147861200
## 18637    3.5 1147861617
## 18639    3.0 1147861437
## 18641    3.0 1147861878
## 18642    3.5 1147861620
## 18646    2.5 1147862448
## 18648    3.5 1147862163
## 18649    3.0 1147861240
## 18655    3.5 1147862239
## 18661    3.5 1147861842
## 18662    3.0 1147862399
## 18667    3.0 1147861193
## 18672    3.5 1147861893
## 18676    3.5 1147861388
## 18677    2.0 1147861403
## 18678    3.0 1147861760
## 18685    3.5 1147861832
## 18686    3.5 1147861688
## 18687    2.5 1147861744
## 18688    3.5 1147862433
## 18689    3.0 1147861810
## 18690    2.0 1147862179
## 18692    2.5 1147861752
## 18693    3.0 1147861764
## 18696    2.0 1147862295
## 18697    3.0 1147861798
## 18698    2.5 1147862366
## 18701    3.0 1147861916
## 18702    2.0 1147862207
## 18706    2.5 1147862346
## 18707    2.5 1147861882
## 18708    3.0 1147862438
## 18709    3.0 1147861819
## 18711    3.0 1147861932
## 18713    3.5 1147861944
## 18714    3.5 1147861644
## 18715    2.5 1147862196
## 18716    3.5 1147861573
## 18726    0.5 1269733955
## 18736    2.0 1244537743
## 18738    3.5 1269733436
## 18747    3.0 1244537726
## 18751    3.0 1269734068
## 18759    2.0 1269735439
## 18762    2.5 1269735996
## 18777    3.5 1269734601
## 18782    3.5 1269736034
## 18796    3.5 1269736671
## 18801    3.0 1269735987
## 18803    3.0 1269735628
## 18807    3.0 1269734042
## 18810    0.5 1269734109
## 18811    3.5 1244537996
## 18814    3.0 1269734161
## 18820    0.5 1244537537
## 18822    0.5 1269734112
## 18832    3.5 1269736579
## 18833    2.5 1269735788
## 18836    3.0 1244537079
## 18842    3.0 1269735935
## 18843    2.5 1269734016
## 18844    3.5 1269735525
## 18846    3.0 1269734062
## 18847    3.5 1269734659
## 18848    3.0 1269737566
## 18849    3.5 1269736108
## 18850    3.5 1269733447
## 18852    1.0 1269735812
## 18857    2.0 1269736281
## 18861    2.5 1269736021
## 18864    1.0 1269734116
## 18865    1.5 1269734961
## 18866    3.0 1269736040
## 18868    3.5 1269733990
## 18872    3.0 1269734050
## 18873    3.5 1269737542
## 18875    3.0 1269735283
## 18878    3.5 1269735728
## 18880    3.0 1269737520
## 18884    3.5 1269733972
## 18887    3.5 1269734945
## 18892    0.5 1269734106
## 18895    1.5 1269734083
## 18896    3.5 1269735602
## 18903    3.5 1269735450
## 18904    2.5 1269734352
## 18907    2.5 1269735873
## 18917    3.5 1269736050
## 18924    0.5 1269735444
## 18926    0.5 1269736273
## 18930    3.0  833286607
## 18931    3.0  833286456
## 18932    3.0  833286506
## 18933    3.0  833286550
## 18934    3.0  833286654
## 18936    3.0  833286594
## 18939    3.0  833286550
## 18941    3.0  833286470
## 18942    2.0  833286594
## 18943    3.0  833286795
## 18944    3.0  833286470
## 18947    3.0  833286577
## 18948    3.0  833286643
## 18950    3.0  833286440
## 18951    3.0  833286506
## 18953    3.0  833286440
## 18956    3.0  833286723
## 18958    3.0  833287094
## 18959    3.0  833286940
## 18966    2.0  833286978
## 18967    3.0  833286550
## 18969    3.0  833286624
## 18970    2.0  833287220
## 18973    3.0  833286712
## 18980    3.0  833287311
## 18985    3.0  833286399
## 18988    3.0  833287296
## 18991    3.0  833287296
## 18992    3.0  833287194
## 18999    3.0  842322769
## 19004    3.0  842323102
## 19005    3.0  842322681
## 19007    3.0  842322523
## 19016    2.0 1049682634
## 19017    3.0 1049682515
## 19020    2.0 1049683567
## 19025    3.0 1049690251
## 19029    1.0 1049684039
## 19031    1.0 1049682562
## 19034    3.0 1049684855
## 19039    2.0 1049683476
## 19040    3.0 1049683383
## 19041    3.0 1049690067
## 19042    1.0 1049682729
## 19044    2.0 1049684039
## 19046    2.0 1049682822
## 19047    3.0 1049683828
## 19057    3.0 1049690251
## 19066    2.0 1049684701
## 19069    3.0 1049684687
## 19070    3.0 1049684826
## 19080    3.0 1049682807
## 19084    3.0 1049683439
## 19088    2.0 1049683456
## 19099    3.0 1049690086
## 19102    3.0 1049683972
## 19103    1.0 1049683032
## 19104    3.0 1049682539
## 19106    2.0 1049684749
## 19107    2.0 1049683548
## 19108    2.0 1049691020
## 19109    2.0 1049682780
## 19112    2.0 1049684916
## 19116    3.0 1049683751
## 19120    2.0 1049683504
## 19123    3.0 1049683768
## 19124    3.0 1049683326
## 19131    3.0 1049683220
## 19134    2.0 1049682679
## 19135    3.0 1049682807
## 19136    2.0 1049682729
## 19137    3.0 1049684733
## 19139    3.0 1049683351
## 19141    2.0 1049682780
## 19143    3.0 1049690354
## 19145    3.0 1049684794
## 19146    2.0 1049684762
## 19147    2.0 1049683204
## 19152    3.0 1049683738
## 19154    3.0 1049682497
## 19166    3.0 1049690086
## 19169    3.0 1049682780
## 19175    3.0 1049683929
## 19176    2.0 1049682835
## 19179    3.0 1049683204
## 19181    1.0 1049682865
## 19184    3.0 1049683701
## 19192    3.0 1049683467
## 19194    1.0 1049682795
## 19195    3.0 1049682759
## 19196    2.0 1049684817
## 19204    3.0 1049683920
## 19205    3.0 1049683651
## 19206    1.0 1049683266
## 19211    1.0 1049690048
## 19212    3.0 1049683249
## 19214    3.0 1049690613
## 19215    3.0 1049690808
## 19216    3.0 1049690695
## 19217    3.0 1049690847
## 19218    3.0 1049690102
## 19223    1.0 1049684340
## 19226    2.0 1049684373
## 19227    3.0 1049690644
## 19230    2.0 1049690152
## 19231    3.0 1049690988
## 19232    1.0 1049682846
## 19238    2.0 1049684260
## 19240    3.0 1049690481
## 19241    2.0 1049682975
## 19242    2.0 1049684289
## 19243    3.0 1049685075
## 19249    2.0 1049690140
## 19258    3.0 1049684450
## 19262    3.0 1049684142
## 19268    3.0 1049685135
## 19270    3.0 1049684216
## 19271    1.0 1049682951
## 19273    3.0 1049684159
## 19276    1.0 1049683099
## 19277    3.0 1049690695
## 19278    2.0 1049685166
## 19282    2.0 1049682909
## 19288    3.0 1049690516
## 19292    3.0 1049690695
## 19293    3.0 1049690580
## 19296    1.0 1049683086
## 19297    1.0 1049690547
## 19306    3.0 1049684271
## 19309    3.0 1049685053
## 19311    3.0 1049684359
## 19321    3.0 1049684537
## 19323    2.0 1049690439
## 19325    3.0 1049689958
## 19326    3.0 1049684216
## 19327    1.0 1049685126
## 19329    3.0 1049690674
## 19336    1.0 1049690439
## 19337    3.0  965328135
## 19339    3.0  965328135
## 19340    3.0  965328135
## 19341    3.0  965328135
## 19343    3.0  965328135
## 19345    1.0  965328476
## 19348    3.0  965328302
## 19349    3.0  965328416
## 19350    3.0  965328241
## 19352    3.0  965328302
## 19353    2.0  965328135
## 19354    2.0  965328302
## 19355    3.0  965328416
## 19356    2.0  965328241
## 19358    3.0  965328416
## 19361    3.0  965328416
## 19362    3.0  965328241
## 19363    3.0 1138997743
## 19364    3.5 1140723887
## 19365    1.0 1138998764
## 19366    3.5 1138999325
## 19367    3.0 1138999264
## 19369    3.0 1139003683
## 19370    3.5 1138997386
## 19371    1.5 1140723854
## 19372    3.0 1138999206
## 19373    2.5 1138999333
## 19375    0.5 1138998386
## 19376    2.0 1139003532
## 19377    1.0 1138999624
## 19378    0.5 1139000278
## 19379    3.0 1139000192
## 19380    3.0 1138999377
## 19381    3.5 1138999284
## 19382    0.5 1138998368
## 19385    2.5 1138999494
## 19386    3.5 1138999984
## 19387    1.0 1138999363
## 19389    3.5 1138999359
## 19390    3.5 1139000274
## 19391    3.5 1138998393
## 19392    2.0 1138999234
## 19393    3.5 1138985739
## 19394    1.5 1140723852
## 19396    3.5 1138999338
## 19397    3.0 1138999240
## 19398    3.5 1138998345
## 19399    3.5 1138998954
## 19400    3.5 1138998339
## 19401    2.5 1138999304
## 19402    3.0 1139003169
## 19403    3.0 1138999246
## 19404    3.5 1149644358
## 19405    2.5 1138999426
## 19406    2.0 1139003970
## 19407    1.0 1138998357
## 19408    2.5 1138998351
## 19410    3.5 1139000027
## 19411    3.0 1138999196
## 19413    3.5 1138999276
## 19414    1.5 1138999450
## 19417    2.0 1149644393
## 19418    3.0 1139004419
## 19420    3.5 1138998637
## 19422    3.5 1138998867
## 19423    3.0 1138997735
## 19425    3.5 1138999226
## 19427    3.0 1138999271
## 19428    2.0 1138999218
## 19429    2.0 1139000095
## 19430    2.0 1138999229
## 19431    3.5 1138999943
## 19432    1.0 1139003949
## 19434    3.0 1138999279
## 19436    3.0 1138998722
## 19437    1.5 1138998179
## 19438    2.5 1138999897
## 19441    3.5 1138998705
## 19442    3.5 1139003939
## 19443    3.5 1138999381
## 19450    3.5 1139000148
## 19452    3.5 1138999458
## 19453    0.5 1138998296
## 19456    3.0 1138999948
## 19457    3.0 1138999293
## 19458    3.0 1138998307
## 19459    3.0 1138999543
## 19463    3.0 1138999352
## 19467    3.0 1138985488
## 19471    3.0 1138999487
## 19474    3.5 1138998614
## 19476    3.0 1138985543
## 19478    3.5 1138999564
## 19481    3.5 1138999472
## 19483    3.0 1139003088
## 19485    1.0 1138999570
## 19488    3.5 1139002409
## 19494    3.0 1138999930
## 19495    2.5 1138999889
## 19502    3.5 1138999832
## 19504    3.5 1138999386
## 19505    3.0 1138999978
## 19506    2.0 1139000051
## 19507    3.5 1139000105
## 19508    3.5 1138999646
## 19509    3.0 1138999999
## 19510    1.0 1138985523
## 19512    1.5 1138985568
## 19513    1.0 1138999849
## 19514    3.0 1139003911
## 19515    2.0 1138999651
## 19516    3.5 1138999441
## 19517    2.5 1138999586
## 19518    2.0 1138999392
## 19519    3.0 1139003180
## 19522    3.5 1139000022
## 19523    1.0 1140723811
## 19526    2.5 1138999757
## 19527    2.5 1139000200
## 19528    2.5 1139003364
## 19530    2.5 1138999414
## 19531    3.5 1138998573
## 19532    1.5 1138985430
## 19533    3.5 1138998229
## 19534    3.0 1138985529
## 19535    3.5 1138999699
## 19536    3.0 1139002586
## 19537    3.0 1138999402
## 19538    3.0 1138998251
## 19539    3.0 1138999878
## 19540    3.5 1139003501
## 19542    2.5 1138999939
## 19544    3.5 1138999817
## 19545    1.5 1138998812
## 19546    1.5 1138985574
## 19549    3.5 1139003177
## 19551    1.0 1138999860
## 19552    3.0 1140723797
## 19553    2.0 1138985434
## 19554    3.5 1138999966
## 19556    3.5 1138998245
## 19557    3.5 1138999592
## 19558    2.0 1138998151
## 19559    2.0 1139000186
## 19560    3.5 1139003198
## 19562    3.0 1138998159
## 19563    3.5 1139000209
## 19564    3.5 1138985437
## 19567    3.0 1138998930
## 19570    2.5 1138998238
## 19571    3.5 1139003856
## 19572    2.5 1139000322
## 19574    3.5 1139004433
## 19576    3.5 1139003454
## 19577    3.5 1139000118
## 19578    3.0 1138999518
## 19580    3.5 1138999663
## 19581    3.5 1138998919
## 19582    3.0 1139000084
## 19583    1.0 1138985399
## 19585    2.0 1138999477
## 19587    2.5 1138998912
## 19589    3.0 1138998883
## 19590    3.0 1139003270
## 19591    2.5 1139003272
## 19592    2.5 1139003277
## 19593    3.0 1139003192
## 19595    3.5 1138999903
## 19597    1.0 1139003839
## 19600    3.5 1138999343
## 19601    3.0 1138999611
## 19602    2.5 1139003845
## 19603    1.0 1138998776
## 19604    3.0 1138985408
## 19608    3.0 1139002432
## 19609    3.0 1138999845
## 19610    3.5 1138998544
## 19611    3.0 1138999531
## 19612    2.0 1139003827
## 19613    3.5 1139002483
## 19614    3.5 1138999514
## 19615    3.5 1138999827
## 19616    2.0 1138999259
## 19618    2.5 1139000240
## 19619    3.5 1138998117
## 19621    2.0 1139003804
## 19622    3.5 1139000015
## 19624    3.5 1139002538
## 19625    2.0 1139003810
## 19630    3.5 1138999421
## 19631    3.5 1139004267
## 19632    3.5 1139002739
## 19633    3.0 1138998089
## 19634    2.5 1138999989
## 19636    3.5 1139002323
## 19638    3.5 1139003233
## 19639    3.5 1139002489
## 19640    3.5 1139002089
## 19641    3.5 1140723698
## 19642    3.0 1138999838
## 19643    3.0 1139000344
## 19644    3.0 1139004475
## 19646    2.5 1139003778
## 19647    3.5 1138998124
## 19648    3.5 1139003786
## 19649    3.0 1138999869
## 19650    2.5 1149644342
## 19651    3.5 1139002313
## 19653    3.0 1139003239
## 19654    3.5 1138998877
## 19655    3.5 1138999687
## 19657    3.5 1138999373
## 19659    0.5 1138985391
## 19660    2.0 1149644335
## 19663    3.0 1139003758
## 19664    3.5 1139000126
## 19666    2.5 1140723774
## 19667    2.0 1138998034
## 19668    3.0 1139002677
## 19671    3.5 1138998191
## 19676    3.0 1139002534
## 19677    2.5 1138999409
## 19678    2.0 1140723933
## 19680    3.5 1140723925
## 19682    2.5 1139003545
## 19683    2.0 1139002134
## 19686    3.0 1138997700
## 19688    3.5 1138998187
## 19689    3.0 1139004237
## 19690    3.0 1139003560
## 19692    3.5 1149644325
## 19693    3.5 1139003416
## 19694    1.0 1149644286
## 19695    3.5 1139003209
## 19696    3.0 1139000247
## 19699    3.5 1138998092
## 19700    2.5 1138999669
## 19702    3.5 1138997691
## 19708    3.5 1139000080
## 19709    3.0 1138997433
## 19710    3.5 1139003694
## 19711    3.5 1139004327
## 19713    3.0 1139003401
## 19717    3.0 1139003512
## 19718    2.0 1139003706
## 19719    3.0 1138998783
## 19722    3.0 1139004044
## 19723    1.0 1138998410
## 19727    3.5 1139004407
## 19728    3.0 1138998609
## 19729    3.0 1139003215
## 19730    3.0 1138998402
## 19731    3.5 1139002515
## 19735    3.0 1138997905
## 19736    0.5 1139002372
## 19740    3.0  992138514
## 19745    3.0  992234666
## 19753    3.0  992138595
## 19755    3.0  992139118
## 19756    2.0  992139284
## 19757    3.0  992234780
## 19758    2.0  992294336
## 19759    3.0  992139118
## 19762    3.0  992294336
## 19765    2.0  992293841
## 19768    3.0  992139118
## 19769    3.0  992232012
## 19772    3.0  992139205
## 19773    1.0  992232108
## 19774    2.0  992294182
## 19775    3.0  992232081
## 19777    3.0  992232081
## 19778    2.0  992232012
## 19781    3.0  992324879
## 19783    3.5 1285244965
## 19786    3.0 1285312208
## 19787    2.0 1285312185
## 19788    3.5 1284656529
## 19789    3.5 1284656508
## 19790    3.0 1285312214
## 19792    2.5 1285312198
## 19794    2.5 1285244961
## 19799    3.5 1285244968
## 19807    1.5 1283414100
## 19809    2.5 1285245057
## 19811    3.5 1296286126
## 19834    2.5 1283580984
## 19836    3.5 1285241821
## 19847    3.5 1283416148
## 19857    3.5 1283580966
## 19858    3.5 1285241067
## 19864    3.5 1283416213
## 19874    3.5 1296285967
## 19876    2.5 1416147036
## 19877    2.5 1416147058
## 19878    0.5 1416151676
## 19879    1.0 1416148560
## 19880    1.0 1416148907
## 19882    2.5 1416146851
## 19883    3.5 1416147092
## 19884    2.5 1416149693
## 19885    0.5 1416147032
## 19886    2.5 1416166708
## 19887    0.5 1416152168
## 19888    2.5 1416151751
## 19889    2.0 1416152164
## 19890    3.0 1416149837
## 19891    2.0 1416166759
## 19892    1.5 1416166508
## 19893    0.5 1416152160
## 19895    3.5 1416147099
## 19896    0.5 1416146861
## 19898    0.5 1416167123
## 19899    3.0 1416147759
## 19900    2.0 1416151683
## 19902    2.0 1416147111
## 19903    2.5 1416147040
## 19904    2.0 1416149794
## 19905    1.0 1416151786
## 19906    2.0 1416148867
## 19907    1.5 1416148459
## 19908    0.5 1416150265
## 19909    1.5 1416149433
## 19911    0.5 1416167074
## 19912    0.5 1416149415
## 19913    2.0 1416149825
## 19914    2.5 1416147765
## 19915    2.0 1416149643
## 19917    1.0 1416152218
## 19918    2.0 1416152182
## 19919    1.0 1416152187
## 19920    3.5 1416151493
## 19922    3.0 1416147085
## 19923    0.5 1416166658
## 19924    2.0 1416149829
## 19925    0.5 1416147045
## 19926    2.0 1416147101
## 19927    3.0 1416166743
## 19928    3.0 1416149349
## 19929    0.5 1416150251
## 19930    2.0 1416148801
## 19931    0.5 1416147215
## 19932    1.0 1416151854
## 19934    3.0 1416147113
## 19936    0.5 1416152056
## 19937    0.5 1416151747
## 19938    1.0 1416150738
## 19939    2.5 1416148463
## 19941    2.0 1416150569
## 19942    0.5 1416151745
## 19943    3.5 1416148555
## 19944    0.5 1416151669
## 19945    1.5 1416150273
## 19946    2.0 1416149089
## 19947    1.5 1416150896
## 19948    0.5 1416148619
## 19949    2.5 1416150482
## 19950    0.5 1416148052
## 19953    0.5 1416151035
## 19954    3.0 1416148805
## 19955    0.5 1416147953
## 19957    0.5 1416150855
## 19958    2.0 1416148791
## 19959    3.5 1416148256
## 19960    2.0 1416151800
## 19962    1.0 1416149227
## 19963    0.5 1416150529
## 19964    3.0 1416148375
## 19966    1.5 1416167044
## 19967    3.5 1416148707
## 19968    1.0 1416151820
## 19969    3.0 1416148514
## 19970    2.0 1416151753
## 19971    1.5 1416147889
## 19972    1.0 1416150791
## 19973    2.0 1416148883
## 19974    1.0 1416150781
## 19975    3.0 1416152236
## 19976    0.5 1416147175
## 19977    3.5 1416167222
## 19979    3.0 1416166737
## 19981    3.0 1416166854
## 19982    1.5 1416148953
## 19984    2.0 1416151937
## 19987    0.5 1416147095
## 19988    0.5 1416151020
## 19990    2.0 1416148342
## 19991    2.0 1416147321
## 19992    2.0 1416150287
## 19994    2.0 1416151014
## 19999    3.0 1416147749
## 20000    0.5 1416149287
## 20001    0.5 1416151053
## 20004    1.5 1416152072
## 20005    1.0 1416151620
## 20008    3.0 1416148004
## 20010    0.5 1416151654
## 20011    2.5 1416167104
## 20012    3.5 1416151509
## 20013    0.5 1416151960
## 20014    1.5 1416151825
## 20016    3.0 1416147860
## 20017    0.5 1416152127
## 20018    2.5 1416148204
## 20019    2.5 1416150536
## 20020    1.0 1416151755
## 20021    1.5 1416149735
## 20022    2.5 1416151835
## 20024    0.5 1416151768
## 20025    2.5 1416152378
## 20026    3.0 1416151661
## 20027    2.5 1416151890
## 20029    3.0 1416166671
## 20031    3.5 1416151617
## 20032    1.5 1416151903
## 20034    1.0 1416150767
## 20037    3.0 1416150940
## 20038    0.5 1416166636
## 20039    2.5 1416148065
## 20040    2.0 1416152039
## 20041    3.0 1416151814
## 20045    2.5 1416146932
## 20046    1.0 1416152114
## 20048    2.0 1416146928
## 20050    2.0 1416146891
## 20051    0.5 1416146955
## 20052    2.5 1416146886
## 20053    0.5 1416166965
## 20054    3.5 1361244876
## 20056    1.0 1361244162
## 20059    2.0 1361245876
## 20063    3.5 1361245791
## 20065    3.0 1361245653
## 20067    1.0 1361244182
## 20068    3.0 1361246182
## 20070    2.0 1361244165
## 20071    3.0 1361245161
## 20072    2.5 1361245725
## 20074    3.5 1361245346
## 20080    2.5 1361246029
## 20085    2.5 1361245689
## 20088    3.0 1361246175
## 20089    2.0 1361246185
## 20090    3.5 1361245691
## 20094    2.0 1361244151
## 20095    3.0 1361244172
## 20097    3.5 1361245759
## 20100    2.0 1361244168
## 20101    2.5 1361245768
## 20102    3.5 1361245754
## 20103    3.0 1361245676
## 20107    3.0 1361245704
## 20108    3.0 1361245727
## 20115    3.0 1361245112
## 20117    2.5 1361245321
## 20118    3.5 1361245315
## 20123    3.5 1361244188
## 20125    3.0 1361245892
## 20136    3.0 1361245847
## 20142    2.5 1361245888
## 20143    2.5 1361244155
## 20145    2.0 1361244184
## 20146    3.5 1361245921
## 20152    3.5 1361245133
## 20153    3.5 1361245107
## 20155    3.0 1361244819
## 20159    3.0 1361244856
## 20166    2.5 1361246019
## 20173    3.5 1361245956
## 20175    3.5 1361245898
## 20181    3.0 1361245711
## 20183    3.0 1361245851
## 20191    3.0 1361244148
## 20194    3.5 1361245934
## 20195    3.5 1361245906
## 20196    3.0 1361245975
## 20197    3.0 1361244270
## 20198    3.0 1361244186
## 20205    3.5 1361245203
## 20210    3.0 1361245894
## 20211    3.0 1361244382
## 20216    3.0 1361244291
## 20219    3.5 1361245986
## 20229    3.5 1361245927
## 20242    3.0 1361245531
## 20244    3.5 1361245129
## 20254    3.0 1361245074
## 20260    3.5 1361246024
## 20263    3.5 1361246072
## 20264    3.0 1361246008
## 20277    3.0 1361244834
## 20282    3.0 1361245076
## 20291    3.0 1361245069
## 20296    3.0 1361244810
## 20298    3.0 1361244379
## 20300    3.0 1361244837
## 20305    3.5 1361244363
## 20306    3.0 1361245067
## 20308    1.5 1361244337
## 20309    3.5 1361244279
## 20315    3.0 1361244869
## 20316    3.5 1361244267
## 20318    3.0 1361245093
## 20331    2.5 1361246377
## 20333    2.5 1361245099
## 20337    3.0 1361244853
## 20339    2.0 1361245355
## 20340    1.0 1361244352
## 20351    3.0 1361245454
## 20356    1.0 1361244804
## 20360    3.5 1361245472
## 20362    2.0 1361244831
## 20363    2.0 1361244263
## 20365    3.0  844995924
## 20367    3.0  844995987
## 20368    3.0  844995924
## 20369    3.0  844996094
## 20370    1.0  844996036
## 20371    3.0  844996094
## 20372    3.0  844995987
## 20374    1.0  844996017
## 20375    3.0  844996159
## 20376    3.0  844996036
## 20377    3.0  844996171
## 20378    1.0  844995935
## 20379    1.0  844996003
## 20380    2.0  844996017
## 20381    3.0  844996213
## 20382    3.0  844996036
## 20384    2.0  844996139
## 20385    1.0  844996105
## 20386    3.0  844996304
## 20392    3.5 1405977333
## 20393    3.5 1405977381
## 20397    3.0 1405975956
## 20401    3.5 1405977273
## 20402    3.0 1405977357
## 20404    1.0 1405977464
## 20405    3.5 1405975561
## 20406    3.5 1405975526
## 20409    3.0 1405975376
## 20411    3.5 1405977493
## 20412    2.0 1405975398
## 20414    3.0 1405975454
## 20415    3.0 1405975219
## 20418    3.0 1405975645
## 20421    3.5 1405977432
## 20428    3.5 1405975580
## 20430    3.5 1405975698
## 20431    3.5 1405975826
## 20433    3.5 1405977595
## 20435    3.5 1405975837
## 20440    3.0  946411893
## 20447    3.0  946411129
## 20452    3.0  946412403
## 20458    3.0  946412362
## 20460    2.0  946411524
## 20463    3.0  946411524
## 20464    3.0  946412547
## 20468    3.0  946412517
## 20470    3.0  946412480
## 20472    1.0  946412054
## 20476    2.0  946412430
## 20479    2.0  946412015
## 20481    3.0  946412054
## 20485    3.0  946412072
## 20486    2.0  946412302
## 20487    1.0  946411077
## 20492    3.0  946412302
## 20493    2.0  946411646
## 20494    2.0  946411893
## 20496    2.0  946411077
## 20498    3.0  946411893
## 20499    2.0  946412262
## 20500    3.0  946412230
## 20501    1.0  946411077
## 20503    2.0  946411129
## 20508    3.0  946412031
## 20510    3.0  946411180
## 20512    3.0  946411610
## 20514    2.0  946412517
## 20517    2.0 1440379001
## 20523    2.5 1440378998
## 20525    0.5 1440379483
## 20533    3.0 1440379096
## 20536    3.5 1440379423
## 20537    3.0 1440379493
## 20538    3.0 1440379257
## 20539    3.5 1440379002
## 20541    2.0 1440379156
## 20542    2.5 1440379164
## 20544    0.5 1440379157
## 20545    0.5 1440379171
## 20546    3.5 1440379148
## 20548    0.5 1440379177
## 20549    3.5 1440380097
## 20550    3.0 1440379205
## 20551    3.0 1440379149
## 20553    3.0 1440379211
## 20554    0.5 1440379198
## 20555    1.0 1440379175
## 20556    2.5 1440379166
## 20557    3.5 1440379152
## 20559    0.5 1440379203
## 20560    3.0 1440379816
## 20561    0.5 1440379200
## 20562    0.5 1440379805
## 20564    3.5 1440379269
## 20567    3.5 1440379576
## 20569    3.5 1440379218
## 20573    3.5 1440379410
## 20575    3.5 1440379572
## 20576    2.5 1440380767
## 20577    3.0 1440380782
## 20578    3.0 1440380741
## 20579    1.5 1440380784
## 20580    2.0 1440380751
## 20582    0.5 1440380709
## 20583    3.0 1440380727
## 20585    2.0 1440380794
## 20586    3.5 1440379950
## 20587    3.0 1440380763
## 20588    3.0 1440380757
## 20590    1.0 1440379581
## 20592    3.0 1440379431
## 20595    3.5 1440379061
## 20596    1.0 1440379297
## 20597    3.5 1440379307
## 20598    3.5 1066860908
## 20599    3.5 1066860904
## 20604    3.0 1066861159
## 20605    2.5 1066860664
## 20606    2.5 1066860594
## 20607    3.5 1066861087
## 20610    2.5 1066861232
## 20613    3.0 1066860858
## 20617    2.5 1066861049
## 20619    3.5 1066861243
## 20621    3.5 1066860612
## 20623    0.5 1066860579
## 20624    3.0 1066860952
## 20626    3.5 1066860861
## 20628    2.0 1066860669
## 20629    3.0 1066860559
## 20631    3.5 1066860675
## 20633    3.5 1066860623
## 20634    3.0 1066861192
## 20636    2.0 1066860605
## 20637    2.0 1066860946
## 20640    3.0 1066860979
## 20647    3.0 1066861237
## 20648    3.5 1066861206
## 20649    3.5 1066861079
## 20651    0.5 1066861031
## 20652    3.0 1066861058
## 20653    3.0 1066861052
## 20654    0.5 1066861066
## 20655    1.0 1066861099
## 20657    3.5 1066861201
## 20659    3.5 1066861152
## 20660    3.5 1066861002
## 20667    2.0 1398068334
## 20668    1.0 1398068296
## 20669    3.5 1398068279
## 20670    3.5 1398068429
## 20672    0.5 1398068255
## 20675    0.5 1398068232
## 20678    3.5 1398068846
## 20680    2.0 1398068298
## 20682    3.5 1398068868
## 20684    1.5 1398068441
## 20685    3.5 1398068320
## 20686    3.5 1398068624
## 20692    3.0 1398070522
## 20693    1.5 1398068815
## 20694    3.0 1398070657
## 20696    1.5 1398068331
## 20698    3.0 1398070514
## 20701    3.5 1398070653
## 20702    3.0 1398070681
## 20703    3.5 1398069668
## 20704    3.0 1398069605
## 20705    3.0 1398069703
## 20706    3.5 1398069632
## 20707    3.5 1398069387
## 20708    2.5 1398069406
## 20714    3.0  944933710
## 20716    3.0  979428119
## 20717    3.0  959003310
## 20718    3.0  949293748
## 20719    3.0  998014490
## 20721    2.0  945056203
## 20723    2.0  947534592
## 20725    2.0  979428220
## 20726    2.0  979428203
## 20727    3.0  952206207
## 20729    2.0  979428221
## 20731    1.0  979428095
## 20732    2.0  959003302
## 20733    3.0  979428119
## 20735    3.0  979428204
## 20736    2.0  979428037
## 20738    3.0  998014346
## 20742    3.0  998014490
## 20744    3.0  997098002
## 20745    2.0  997731322
## 20746    2.0  997731488
## 20747    1.0  997097547
## 20748    3.0  997097201
## 20750    3.0  997731488
## 20751    3.0  997098002
## 20753    3.0  997731585
## 20754    1.0  997731439
## 20755    1.0  997731406
## 20758    3.0  997097862
## 20759    1.0  997097126
## 20761    2.0  997097887
## 20762    1.0  997097104
## 20763    3.0  997098179
## 20764    3.0  997098179
## 20765    3.0  997731406
## 20766    2.0  997097602
## 20767    2.0  997097547
## 20768    1.0  997097175
## 20769    2.0  997097663
## 20770    2.0  997098027
## 20771    3.0  997097663
## 20772    3.0  997097602
## 20773    3.0  997097731
## 20777    3.0  997097710
## 20779    3.0  997097801
## 20780    3.0  997097922
## 20781    2.0  997731439
## 20782    3.0  997098048
## 20783    3.0  997097461
## 20784    3.0  997731565
## 20785    3.0  997097753
## 20786    1.0  997097510
## 20787    3.0  997097547
## 20788    2.0  997097774
## 20789    3.0  999350539
## 20790    2.0  999350539
## 20791    3.0  999350539
## 20792    1.0  999350510
## 20793    3.0  999350465
## 20794    1.0  997097967
## 20795    3.0  999350418
## 20796    3.0 1001762787
## 20797    2.0 1001762723
## 20799    3.0 1001762672
## 20801    3.0 1001762599
## 20802    1.0 1001762575
## 20803    2.0 1001762575
## 20806    1.5 1149647922
## 20807    2.0 1149648223
## 20808    1.0 1149648213
## 20811    3.0 1149647927
## 20813    1.5 1149648270
## 20814    1.0 1149648209
## 20815    3.0 1149649360
## 20816    1.0 1149650329
## 20817    3.5 1149651175
## 20820    3.5 1149648233
## 20826    1.5 1149650037
## 20828    3.5 1149650138
## 20830    2.0 1149650080
## 20833    3.0 1149648260
## 20834    1.5 1149650110
## 20835    1.0 1149648217
## 20839    3.0 1149647890
## 20840    1.0 1149648220
## 20844    3.0 1149648257
## 20846    3.5 1149650126
## 20848    3.0 1149650334
## 20849    3.5 1149649869
## 20851    3.5 1149648743
## 20853    3.5 1149649918
## 20855    0.5 1149650208
## 20857    3.0 1149648266
## 20862    0.5 1149648226
## 20876    2.5 1149651161
## 20877    3.0 1149650183
## 20880    3.5 1149649117
## 20882    2.0  837455574
## 20884    3.0  837455602
## 20886    3.0  837455152
## 20887    3.0  837455212
## 20889    2.0  837455463
## 20891    3.0  837455463
## 20893    2.0  837455702
## 20894    3.0  837455510
## 20895    3.0  837455389
## 20897    3.0  837455702
## 20898    3.0  837455360
## 20899    3.0  837455359
## 20901    3.0  837455207
## 20903    3.0  837455538
## 20906    3.0  837455155
## 20907    2.0  837455505
## 20908    1.0  837455574
## 20909    2.0  837455642
## 20910    3.0  837455389
## 20914    3.0  837455700
## 20916    3.0  837455769
## 20917    3.0  837455203
## 20920    3.0  837455149
## 20927    3.0  845421514
## 20932    3.0  845421721
## 20935    3.0  845421758
## 20937    3.0  845421514
## 20938    1.0  845421838
## 20941    3.0  845421636
## 20962    2.0 1256071554
## 20963    3.0 1256071535
## 20966    2.5 1256071403
## 20969    2.5 1256071385
## 20970    2.5 1256071313
## 20971    3.0 1256070632
## 20974    3.5 1256070637
## 20976    3.5 1256070798
## 20977    3.0 1256070669
## 20982    3.5 1256071551
## 20983    3.5 1256071087
## 20984    3.5 1256071515
## 20990    1.5 1256070731
## 20991    3.5 1256071497
## 20992    3.0 1256071301
## 20993    1.0 1256070809
## 20994    2.5 1256070651
## 20996    3.5 1256070622
## 20997    3.5 1256070833
## 20998    3.0 1256071434
## 21001    3.5 1256071125
## 21003    2.5 1256070791
## 21004    3.5 1256071570
## 21005    3.5 1256070838
## 21006    3.0 1256070819
## 21010    3.5 1256071278
## 21012    3.0 1256071619
## 21014    3.0 1256071561
## 21015    3.0 1256071208
## 21016    2.5 1256071348
## 21017    3.0 1256071512
## 21019    3.5 1256071623
## 21020    3.5 1256071306
## 21023    3.5 1256071427
## 21024    3.0 1256071632
## 21025    3.0 1256071408
## 21027    3.5 1256071479
## 21028    3.0 1256071414
## 21030    3.0 1256071118
## 21032    1.0 1256071015
## 21035    3.5 1405201255
## 21037    3.5 1405201272
## 21042    3.5 1405202676
## 21044    2.0 1405201244
## 21046    3.5 1405201384
## 21052    3.0 1405201225
## 21058    3.0 1405201208
## 21059    2.0 1405201342
## 21066    1.5 1405201645
## 21071    3.5 1059603929
## 21076    2.0 1059530841
## 21077    2.5 1059504993
## 21078    3.0 1059604099
## 21083    3.5 1059604535
## 21084    2.5 1059530882
## 21086    3.5 1059507607
## 21087    3.5 1059507635
## 21090    3.5 1059603985
## 21096    3.5 1059603845
## 21097    3.5 1059604425
## 21100    3.0 1059604127
## 21108    3.5 1059507495
## 21110    2.0 1059504978
## 21111    3.0 1059531137
## 21117    2.5 1059604044
## 21121    3.5 1059604070
## 21123    3.5 1059603976
## 21128    3.5 1059604059
## 21129    3.0 1059604077
## 21132    3.5 1059604123
## 21133    3.5 1059604016
## 21137    2.5 1059604160
## 21147    2.5 1059604051
## 21148    1.0 1059504922
## 21151    3.5 1059530938
## 21154    3.5 1059604467
## 21156    3.0 1059604600
## 21158    3.5 1059604495
## 21167    3.0 1059530858
## 21169    3.0 1059531133
## 21172    2.0 1059680407
## 21174    2.0 1059604523
## 21179    3.0 1059604443
## 21188    3.0 1059507478
## 21189    3.5 1059530891
## 21192    3.5 1059507573
## 21197    3.0 1059604518
## 21198    3.5 1059505089
## 21203    3.0 1436919660
## 21204    3.5 1436923278
## 21205    3.5 1436922267
## 21206    3.0 1436922260
## 21207    1.0 1436923406
## 21209    3.5 1436920137
## 21210    3.5 1436919731
## 21214    3.5 1436923463
## 21215    3.5 1436919682
## 21216    2.0 1436919678
## 21217    3.5 1436922091
## 21218    3.0 1436923262
## 21219    3.0 1436919666
## 21220    1.0 1436923874
## 21221    3.5 1436923201
## 21222    3.0 1436922845
## 21224    2.5 1436923492
## 21225    3.5 1436924020
## 21226    3.0 1436922838
## 21227    3.5 1436923241
## 21228    3.0 1436923341
## 21229    3.0 1436921940
## 21232    3.0 1436919693
## 21233    3.5 1436923824
## 21234    3.5 1436923836
## 21238    3.5 1436923511
## 21239    3.5 1436923301
## 21241    2.5 1436923361
## 21243    3.0 1437092078
## 21244    3.5 1436923701
## 21248    3.0 1436923336
## 21250    2.0 1436920748
## 21251    3.5 1437092289
## 21252    3.5 1436923731
## 21253    3.5 1436919662
## 21256    3.0 1436923311
## 21258    2.0 1436924332
## 21259    3.5 1436921212
## 21263    3.5 1436921174
## 21264    3.0 1436921241
## 21265    3.5 1436923694
## 21266    3.0 1436921204
## 21268    3.5 1436924169
## 21269    3.5 1436923770
## 21271    2.5 1436923897
## 21273    2.0 1436921198
## 21274    2.5 1436924129
## 21275    0.5 1436923433
## 21276    3.5 1436923904
## 21278    3.0 1436922147
## 21279    3.5 1436924098
## 21282    3.0 1436920788
## 21283    3.5 1436924086
## 21285    1.0 1436924457
## 21286    2.5 1436924064
## 21290    3.5 1436923292
## 21291    3.5 1436923452
## 21292    3.5 1436920698
## 21293    3.5 1437092382
## 21294    1.0 1436923801
## 21296    3.5 1436923718
## 21297    1.5 1436923984
## 21298    3.5 1436920875
## 21300    3.0 1436924288
## 21303    3.5 1436921220
## 21304    3.0 1437092225
## 21305    3.5 1436921237
## 21307    3.5 1437092060
## 21309    3.5 1436924140
## 21310    3.5 1436924164
## 21311    1.5 1436920426
## 21312    3.5 1436922210
## 21313    3.5 1436923619
## 21314    3.5 1436924295
## 21316    2.0 1436921197
## 21317    3.0 1436921489
## 21320    2.5 1436923970
## 21321    3.0 1436924006
## 21322    3.5 1436923949
## 21324    1.5 1436920434
## 21331    3.0 1436920430
## 21332    3.5 1436923611
## 21333    3.5 1437092098
## 21335    3.5 1436920411
## 21336    2.5 1436920881
## 21337    3.5 1436920417
## 21339    3.5 1436919763
## 21340    3.5 1436920406
## 21341    3.5 1436924283
## 21344    3.0 1436923971
## 21345    3.0 1436924285
## 21349    3.0 1436924293
## 21351    1.0 1436922011
## 21352    3.5 1436924083
## 21354    3.0 1437092283
## 21355    3.0 1437092038
## 21356    3.0 1437092357
## 21357    3.0 1436922181
## 21359    3.5 1436924372
## 21362    3.5 1436920649
## 21363    3.5 1436921076
## 21364    3.0 1436924009
## 21365    3.5 1436923816
## 21366    2.0 1436920701
## 21367    1.0 1436920763
## 21368    3.5 1436923666
## 21369    3.5 1436921688
## 21370    3.0 1436920657
## 21371    3.5 1437092374
## 21373    3.0 1436920699
## 21377    3.0 1437092345
## 21378    3.0 1436921599
## 21381    3.0 1436920647
## 21388    2.0 1436920889
## 21389    2.0 1436922387
## 21390    2.0 1436921750
## 21393    2.0 1436921752
## 21396    2.5 1436920661
## 21399    3.5 1436921332
## 21403    3.0 1436920652
## 21404    1.5 1436920644
## 21406    3.5 1436921987
## 21410    3.5 1437091813
## 21419    1.5 1436919773
## 21420    2.0 1436920459
## 21421    3.5 1436920672
## 21422    1.5 1436922811
## 21428    3.5 1436921034
## 21429    3.0 1436920450
## 21431    3.0 1436919888
## 21432    3.5 1436920456
## 21434    3.0 1114306148
## 21435    3.0 1114306834
## 21436    2.5 1114308628
## 21438    3.0 1114305732
## 21439    3.5 1338710602
## 21440    2.0 1114307220
## 21442    2.5 1130905954
## 21443    2.5 1114306777
## 21444    1.0 1114308273
## 21445    1.5 1113906883
## 21447    2.5 1114309836
## 21448    2.5 1114307227
## 21449    2.5 1113906876
## 21450    3.0 1114310004
## 21451    3.0 1116309622
## 21455    2.5 1116309027
## 21456    3.0 1114306717
## 21457    3.5 1113907638
## 21458    2.5 1140424747
## 21459    1.0 1113906767
## 21460    3.0 1114307200
## 21461    3.0 1114306408
## 21462    3.5 1114306762
## 21463    1.5 1113907546
## 21464    0.5 1114306763
## 21466    2.5 1114307190
## 21467    3.0 1114306739
## 21468    2.0 1113907543
## 21470    3.0 1114306793
## 21471    3.0 1116309076
## 21475    2.0 1114307194
## 21476    3.0 1114307088
## 21477    1.5 1130906351
## 21478    1.0 1113906795
## 21479    3.5 1113907646
## 21482    3.0 1114306733
## 21483    3.0 1114306743
## 21485    3.5 1114306710
## 21487    2.0 1114309590
## 21488    2.5 1114309597
## 21489    1.5 1140424503
## 21491    3.5 1114306136
## 21492    1.5 1113907512
## 21493    2.5 1113907507
## 21494    0.5 1114305827
## 21495    1.5 1130906332
## 21496    3.5 1114306799
## 21497    2.5 1114309144
## 21498    3.0 1114309149
## 21499    2.5 1116309673
## 21500    3.5 1113907403
## 21501    3.5 1113907611
## 21502    3.0 1114305997
## 21503    3.0 1114306681
## 21504    3.5 1116308883
## 21505    3.5 1113907841
## 21508    3.0 1113907501
## 21509    3.5 1113907509
## 21510    2.5 1113907499
## 21511    3.0 1114306821
## 21512    3.0 1116309174
## 21514    3.0 1114309361
## 21515    1.0 1114309340
## 21516    3.5 1113907497
## 21517    3.0 1140424715
## 21518    3.5 1113907486
## 21519    3.5 1113907480
## 21521    0.5 1114309343
## 21522    3.0 1114308357
## 21525    2.5 1116309093
## 21526    3.0 1114306312
## 21527    3.0 1114305646
## 21528    2.0 1130906339
## 21529    3.0 1114306755
## 21530    3.0 1140424695
## 21534    3.5 1113907614
## 21535    3.0 1114308753
## 21537    3.5 1114306439
## 21541    3.5 1116309029
## 21542    2.5 1114308250
## 21543    2.5 1114309788
## 21544    2.5 1114306405
## 21545    2.5 1113907467
## 21546    3.0 1140424472
## 21547    1.0 1113907471
## 21548    3.5 1114308253
## 21549    3.5 1114306247
## 21551    3.0 1114305651
## 21552    3.0 1114307068
## 21553    3.5 1114310411
## 21554    3.5 1116308716
## 21555    3.5 1114309780
## 21556    2.0 1130905926
## 21557    2.0 1140424671
## 21558    3.0 1114306438
## 21559    3.5 1114309794
## 21561    3.0 1114305802
## 21562    3.5 1113907463
## 21564    2.5 1113907470
## 21566    1.0 1114309118
## 21568    3.5 1113907173
## 21569    3.0 1114308258
## 21571    3.0 1130906048
## 21572    3.0 1114306474
## 21575    3.5 1113907621
## 21576    2.5 1114305644
## 21578    2.0 1113907429
## 21579    2.5 1114309570
## 21580    3.0 1113906862
## 21581    0.5 1114308962
## 21582    3.0 1113907620
## 21586    3.0 1140424835
## 21587    3.5 1114310162
## 21589    3.0 1114309965
## 21591    2.5 1114308739
## 21592    3.5 1114308327
## 21593    2.5 1114308323
## 21594    3.0 1140424655
## 21596    2.5 1114309121
## 21597    2.0 1140424652
## 21598    3.0 1114309099
## 21599    3.0 1116309060
## 21601    3.5 1114309094
## 21602    3.0 1113907434
## 21604    3.0 1114308749
## 21605    3.0 1140424926
## 21606    3.5 1113907755
## 21607    3.0 1113906820
## 21608    3.0 1114309102
## 21609    2.0 1114305796
## 21610    3.0 1114306506
## 21614    1.5 1114309314
## 21615    1.0 1113906789
## 21616    3.5 1114306170
## 21617    2.0 1114309106
## 21618    1.5 1114306418
## 21621    2.0 1114309083
## 21622    3.5 1114309756
## 21623    2.5 1114309081
## 21624    2.0 1114308243
## 21625    2.5 1140425276
## 21627    3.0 1130906021
## 21629    2.5 1114305999
## 21630    3.0 1114309068
## 21631    1.5 1130905942
## 21632    3.5 1116309062
## 21633    3.0 1140424614
## 21634    3.5 1130906013
## 21635    1.5 1114309074
## 21636    2.5 1140424609
## 21637    3.5 1116309095
## 21638    3.5 1130906025
## 21639    3.5 1114306322
## 21640    3.0 1114308297
## 21641    2.5 1116309105
## 21642    1.0 1114305779
## 21644    2.5 1116309128
## 21645    3.0 1114306340
## 21646    2.5 1140425211
## 21648    3.5 1116308629
## 21649    2.5 1116309195
## 21650    3.0 1116309037
## 21651    3.5 1114307128
## 21652    2.0 1140424450
## 21653    3.5 1113907439
## 21654    3.0 1114310351
## 21655    2.0 1114306803
## 21656    2.5 1114308289
## 21658    3.5 1114306436
## 21659    2.0 1114307063
## 21660    3.5 1114306285
## 21661    3.5 1113907596
## 21663    3.0 1113907447
## 21665    2.5 1114306272
## 21666    2.5 1114306338
## 21667    2.5 1114306349
## 21668    1.5 1130906007
## 21669    3.5 1114306253
## 21670    2.5 1116309776
## 21671    2.5 1114306511
## 21672    3.0 1114309060
## 21673    3.0 1114306459
## 21674    2.5 1114306295
## 21675    3.5 1140424443
## 21676    3.0 1130905997
## 21677    3.5 1114306175
## 21678    2.0 1114306402
## 21680    3.5 1116308763
## 21683    2.0 1114309274
## 21684    3.5 1114308255
## 21685    3.5 1114309045
## 21687    3.0 1116309257
## 21688    3.5 1114310328
## 21689    2.5 1140424586
## 21690    2.5 1114306379
## 21692    2.5 1114309258
## 21693    3.0 1140424569
## 21694    3.0 1114309532
## 21695    3.5 1114306035
## 21696    3.0 1114307344
## 21697    3.0 1116309150
## 21700    3.0 1113907405
## 21701    3.0 1114306306
## 21702    2.5 1114307106
## 21703    2.5 1114306483
## 21704    3.0 1140424875
## 21705    3.5 1113907398
## 21707    2.5 1114309035
## 21708    2.0 1114305883
## 21709    2.5 1114309231
## 21710    0.5 1114307111
## 21714    2.5 1114309032
## 21715    1.5 1114308565
## 21716    2.0 1113906866
## 21717    3.5 1114306448
## 21718    2.5 1140425267
## 21719    3.0 1114308424
## 21720    2.0 1114309026
## 21721    3.5 1114307255
## 21722    2.5 1114309029
## 21723    2.5 1114308990
## 21724    0.5 1130905933
## 21725    2.0 1114305880
## 21726    3.0 1140425059
## 21727    3.5 1114308399
## 21728    2.0 1114309224
## 21729    3.0 1114306129
## 21731    2.0 1113907418
## 21732    2.5 1114308408
## 21733    3.5 1114309507
## 21734    3.5 1130905973
## 21735    0.5 1114307260
## 21736    2.5 1114308268
## 21737    3.5 1114307108
## 21739    3.0 1116309087
## 21740    3.5 1114305764
## 21741    3.5 1114306435
## 21743    2.5 1114308411
## 21744    3.5 1116309199
## 21745    3.5 1114306196
## 21746    2.0 1114309000
## 21747    3.5 1116309074
## 21749    2.0 1116308745
## 21750    3.0 1114305746
## 21751    1.0 1114307240
## 21752    3.5 1140425035
## 21754    2.0 1116309045
## 21756    1.5 1114306226
## 21757    3.5 1114306208
## 21758    3.0 1114309217
## 21760    3.0 1116308752
## 21762    3.0 1114308733
## 21763    3.0 1114308377
## 21764    2.5 1114308518
## 21765    2.5 1114309202
## 21766    2.0 1114309198
## 21767    2.5 1114308375
## 21768    3.0 1140425335
## 21769    3.5 1130905875
## 21770    2.5 1114309192
## 21771    2.5 1114306144
## 21772    3.0 1114306442
## 21773    3.5 1114309684
## 21776    0.5 1113906878
## 21777    3.5 1114307235
## 21778    2.5 1113907675
## 21779    2.0 1130905878
## 21780    3.5 1140425041
## 21781    1.5 1114306240
## 21784    3.0 1114308996
## 21785    3.0 1116309023
## 21787    3.0 1140425340
## 21788    2.5 1114307223
## 21789    3.0 1114308502
## 21791    3.0 1140425023
## 21792    3.0 1130905862
## 21793    3.0 1114306263
## 21794    3.0 1113907846
## 21796    3.5 1116309020
## 21798    2.5 1140425017
## 21800    3.5 1116309048
## 21802    2.5 1140425226
## 21803    3.5 1140424531
## 21805    3.5 1114306451
## 21807    3.0 1114308384
## 21808    3.0 1130906087
## 21809    2.5 1114308481
## 21811    3.0 1140425006
## 21814    3.5 1114309184
## 21816    3.5 1140425002
## 21817    3.0 1114309640
## 21819    3.0 1114306250
## 21820    3.5 1114310030
## 21821    2.0 1140425213
## 21823    2.0 1114306190
## 21825    3.0 1114306172
## 21827    2.5 1114310016
## 21830    3.5 1140424514
## 21832    3.0 1140425194
## 21834    3.0 1233053797
## 21835    3.0 1114306375
## 21836    3.0 1140424985
## 21838    2.5 1140424802
## 21849    3.0  847296838
## 21852    3.0  847296802
## 21853    3.0  847296863
## 21855    3.0  847296838
## 21856    3.0  847297041
## 21859    1.0  847296625
## 21860    3.0  847296891
## 21863    1.0  847296918
## 21864    3.0  847296716
## 21866    3.0  847296838
## 21868    3.0  847296748
## 21869    3.0  847296891
## 21873    3.0  847296802
## 21874    2.0  847296945
## 21876    3.0  847296891
## 21878    3.0  847296716
## 21879    3.0  847296625
## 21885    3.0  847296774
## 21888    3.0  847296802
## 21889    3.0  847296863
## 21890    2.0  847296918
## 21893    3.0  847296891
## 21900    3.0  847296945
## 21902    3.0  847296838
## 21903    3.0  847297041
## 21905    3.0  847296624
## 21907    3.0  847296584
## 21908    3.0  847296583
## 21909    3.0  847296653
## 21910    3.0  847296802
## 21911    3.5 1335947960
## 21913    1.5 1335948177
## 21914    3.5 1335948369
## 21915    0.5 1335948417
## 21919    3.5 1335948357
## 21920    0.5 1335947944
## 21921    3.5 1335948381
## 21922    1.5 1335899920
## 21923    3.5 1335947956
## 21925    1.5 1335948277
## 21926    1.5 1335948220
## 21927    2.0 1335948114
## 21928    2.0 1335948227
## 21930    2.0 1335948404
## 21935    3.0 1335948140
## 21936    3.0 1335900437
## 21937    3.5 1335948229
## 21939    3.5 1335948034
## 21940    3.5 1335947993
## 21941    1.5 1335948250
## 21942    3.5 1335948259
## 21944    3.0 1335947928
## 21945    2.5 1335948104
## 21947    2.5 1335948233
## 21948    2.5 1335948190
## 21949    3.5 1335947977
## 21951    2.0 1335948123
## 21953    2.5 1335948136
## 21954    1.0 1335948087
## 21955    3.0 1335900366
## 21956    2.0 1335948451
## 21959    3.5 1335899984
## 21960    3.5 1335948212
## 21961    3.5 1335948295
## 21962    3.5 1335900642
## 21963    2.5 1335948126
## 21966    3.0 1335948194
## 21968    3.5 1335948027
## 21970    3.5 1335948427
## 21973    3.0 1335900442
## 21974    3.5 1335948146
## 21975    3.5 1335900563
## 21977    3.5 1335948037
## 21978    2.5 1335900548
## 21979    1.0 1335899988
## 21980    2.0 1335900032
## 21981    3.5 1335949082
## 21982    1.5 1335948429
## 21983    3.5 1335948270
## 21986    0.5 1335900055
## 21988    3.5 1335899930
## 21989    3.5 1335948443
## 21990    2.0 1335948255
## 21991    1.5 1335948097
## 21994    3.5 1335948291
## 21996    3.0 1335900376
## 21997    3.5 1335948379
## 21998    2.0 1335900014
## 22001    2.0 1335948728
## 22002    3.5 1335948421
## 22003    2.5 1335948068
## 22005    3.0 1335899937
## 22008    2.5 1335899940
## 22009    3.0 1335900020
## 22011    2.5 1335949482
## 22013    2.0 1335899953
## 22014    3.0 1335900864
## 22016    3.0 1335901749
## 22018    1.0 1335899914
## 22019    3.0 1335901184
## 22021    3.5 1335902247
## 22023    2.0 1335902212
## 22024    3.0 1335900931
## 22025    3.5 1335902192
## 22026    3.5 1335947708
## 22028    3.5 1335901317
## 22030    3.0 1335901901
## 22033    3.0 1335900924
## 22034    3.5 1335947578
## 22035    2.5 1335900026
## 22036    1.5 1335900702
## 22037    2.0 1335948558
## 22043    3.0 1335900942
## 22044    2.0 1335901802
## 22047    3.0 1335901347
## 22050    3.5 1335901818
## 22051    3.5 1335902114
## 22052    2.0 1335901696
## 22055    3.5 1335902217
## 22059    1.5 1335902266
## 22061    2.5 1335901682
## 22062    3.5 1335948549
## 22065    3.5 1335901169
## 22066    3.5 1335947549
## 22068    2.5 1335900800
## 22069    3.5 1335900784
## 22072    3.0 1335901270
## 22076    3.0 1335901666
## 22077    3.5 1335901976
## 22078    3.5 1335901772
## 22079    2.5 1335901278
## 22081    3.0 1335901584
## 22082    3.5 1335947593
## 22083    3.5 1335902045
## 22084    2.0 1335900892
## 22085    3.0 1335900898
## 22089    3.0 1335902209
## 22090    2.0 1335901071
## 22091    3.0 1335948539
## 22095    3.5 1335901202
## 22102    3.5 1335901035
## 22103    3.0 1335901274
## 22106    3.0 1335901427
## 22107    3.5 1335902094
## 22110    3.5 1335947842
## 22111    3.0 1335900445
## 22116    3.5 1335901210
## 22119    3.5 1335947751
## 22120    3.5 1335947573
## 22121    3.5 1335947706
## 22123    3.5 1335947732
## 22125    2.5 1335947556
## 22132    3.0 1046738981
## 22135    3.0 1046739844
## 22139    3.0 1046739156
## 22140    1.0 1046739765
## 22153    3.0 1046739028
## 22165    2.0 1046739622
## 22167    3.0 1046739925
## 22168    1.0 1046739925
## 22169    3.0 1046739825
## 22171    2.0 1046739622
## 22177    2.0 1046739947
## 22182    3.0  850917346
## 22183    3.0  850917346
## 22186    3.0  850917310
## 22188    3.0  850917507
## 22191    3.0  850917416
## 22196    3.0  850917383
## 22197    3.0  850917460
## 22200    3.0  850917383
## 22206    3.0  943350048
## 22210    2.0  943350184
## 22215    3.0  943350048
## 22216    2.0  943350327
## 22222    3.0  943350327
## 22225    3.0  943350140
## 22230    3.0  943350140
## 22235    3.0  943350572
## 22236    3.0  943350366
## 22237    3.0  943350292
## 22238    2.0  943350366
## 22240    3.0  943350687
## 22241    3.0  943350789
## 22242    1.0  943350292
## 22243    2.0  943350250
## 22244    2.0  943350184
## 22247    3.0  943350687
## 22249    3.0  943350101
## 22250    3.0  943350101
## 22253    3.0  943350250
## 22254    3.0  943350749
## 22256    3.0  943350250
## 22259    3.5 1277429506
## 22261    0.5 1277429585
## 22269    0.5 1277429539
## 22273    1.5 1277429575
## 22279    0.5 1277429624
## 22301    0.5 1277430461
## 22302    3.5 1291598726
## 22303    2.5 1291654669
## 22304    3.5 1291598989
## 22305    2.0 1291598164
## 22307    1.0 1323623560
## 22308    3.5 1292893066
## 22310    3.0 1293113893
## 22311    3.0 1291598753
## 22312    2.0 1365940346
## 22314    3.5 1291598691
## 22315    2.5 1291598182
## 22318    3.0 1365939855
## 22319    1.0 1365940218
## 22320    1.0 1365940267
## 22321    2.5 1292452031
## 22322    3.0 1292893321
## 22323    2.5 1292452011
## 22324    3.0 1365940159
## 22325    2.5 1293113928
## 22326    3.0 1291599281
## 22327    3.5 1362937775
## 22329    3.0 1292893387
## 22331    3.5 1291598930
## 22332    3.0 1291598910
## 22333    2.5 1291598746
## 22336    3.0 1291598762
## 22337    3.5 1291654589
## 22338    3.0 1292893393
## 22339    3.0 1291598808
## 22340    3.5 1293016236
## 22341    3.5 1291598784
## 22342    3.5 1291598908
## 22346    3.5 1291598625
## 22351    3.5 1365893094
## 22352    3.0 1292893377
## 22355    3.5 1320685313
## 22356    3.5 1293113883
## 22357    3.0 1291654595
## 22358    2.5 1291665492
## 22359    3.5 1291599035
## 22360    3.5 1292893137
## 22361    3.0 1293109610
## 22362    2.5 1291654674
## 22363    3.0 1291598819
## 22364    3.5 1323617866
## 22366    2.5 1292893513
## 22368    3.0 1292451944
## 22369    3.0 1291599080
## 22371    2.0 1294526056
## 22372    3.5 1292893076
## 22373    3.0 1291598335
## 22374    3.0 1292521972
## 22375    3.5 1291654575
## 22376    3.0 1365939990
## 22377    3.0 1295793889
## 22378    3.0 1344510238
## 22379    3.5 1292893361
## 22380    2.5 1291598407
## 22381    2.5 1365941887
## 22384    3.0 1291599023
## 22385    3.0 1291598299
## 22386    2.0 1365941508
## 22387    2.0 1365941511
## 22388    2.5 1291598091
## 22390    2.5 1292451929
## 22391    3.0 1365939927
## 22393    2.5 1323618008
## 22394    3.0 1365940395
## 22396    3.0 1291598945
## 22397    3.5 1344510213
## 22398    3.5 1291598880
## 22402    3.5 1293109639
## 22404    3.0 1292451917
## 22406    3.5 1323649448
## 22407    1.0 1365941844
## 22408    3.5 1292893831
## 22409    3.0 1291598272
## 22410    3.5 1291654702
## 22412    1.5 1291599091
## 22413    3.5 1291598864
## 22414    3.5 1291598320
## 22415    1.0 1344510369
## 22417    3.5 1294526030
## 22418    3.0 1291598302
## 22419    3.0 1291598172
## 22421    3.0 1291598859
## 22422    2.5 1292451959
## 22423    2.0 1344510529
## 22424    3.5 1291665526
## 22426    3.0 1291598243
## 22427    2.5 1292451971
## 22429    3.5 1291598976
## 22430    3.5 1295749296
## 22433    3.5 1292893258
## 22434    3.5 1293016263
## 22436    2.5 1365941890
## 22437    3.0 1365939875
## 22438    2.5 1323618006
## 22439    3.5 1362938388
## 22440    3.5 1293016283
## 22442    2.5 1344510472
## 22443    3.5 1291600250
## 22444    3.5 1292893873
## 22445    3.5 1291598877
## 22447    1.5 1344510189
## 22449    3.0 1323623646
## 22450    3.0 1365939971
## 22451    2.5 1291665485
## 22452    3.5 1291598862
## 22455    3.0 1293016287
## 22456    3.0 1365939907
## 22457    3.5 1291665403
## 22458    3.5 1323617840
## 22459    2.5 1365939958
## 22462    3.5 1291598673
## 22466    2.5 1291598696
## 22467    1.5 1365941863
## 22468    3.5 1292499258
## 22472    3.0 1291599019
## 22473    2.0 1365941322
## 22475    3.0 1291598711
## 22476    2.5 1365940004
## 22477    3.5 1362938408
## 22478    2.0 1291598416
## 22479    3.5 1365939715
## 22482    3.0 1291598639
## 22483    2.0 1365941516
## 22484    1.0 1365941909
## 22485    3.5 1291644796
## 22489    3.5 1292893101
## 22490    3.5 1291644922
## 22491    3.0 1291654728
## 22494    3.5 1344509648
## 22495    3.0 1344510654
## 22498    3.0 1292452004
## 22499    2.5 1323618003
## 22501    2.0 1291665551
## 22502    2.0 1365941993
## 22503    3.5 1293109672
## 22504    3.0 1293016154
## 22509    3.0 1293016163
## 22510    3.0 1365939913
## 22513    3.0 1291599363
## 22514    3.5 1295576379
## 22515    3.5 1293016134
## 22519    3.5 1292893280
## 22520    3.0 1295662855
## 22521    3.5 1292893170
## 22522    3.0 1297193695
## 22526    2.0 1365942000
## 22527    3.0 1292893998
## 22528    3.5 1362938651
## 22529    2.5 1365941359
## 22530    3.5 1362938391
## 22531    3.5 1308343647
## 22532    3.0 1362938622
## 22533    3.5 1362938345
## 22534    3.5 1362937651
## 22536    2.5 1365940028
## 22539    3.0 1355865379
## 22541    3.5 1365891207
## 22542    3.5 1292893005
## 22544    3.0 1291598709
## 22547    3.5 1323617792
## 22548    2.0 1291598421
## 22550    2.5 1323617992
## 22552    0.5 1365941829
## 22556    3.5 1344509879
## 22557    3.5 1323965285
## 22564    3.5 1330113001
## 22566    3.5 1355865641
## 22568    2.5 1293212820
## 22569    3.5 1291665385
## 22571    3.0 1292521924
## 22572    3.5 1291598631
## 22574    3.5 1365939711
## 22575    3.0 1293016250
## 22578    2.5 1291654739
## 22582    0.5 1291599117
## 22585    3.5 1292893081
## 22586    3.5 1369334448
## 22589    1.5 1365942027
## 22593    3.5 1320684703
## 22594    0.5 1344510080
## 22595    3.0 1365940034
## 22596    3.5 1323620427
## 22599    3.0 1323622974
## 22601    3.5 1369334443
## 22603    2.0 1344510027
## 22605    3.5 1344509886
## 22606    3.0 1355865600
## 22610    1.5 1365941495
## 22617    1.5 1344510618
## 22618    3.5 1355865522
## 22619    2.5 1365941277
## 22626    3.5 1369334582
## 22629    2.0 1231502691
## 22630    3.5 1231502746
## 22631    2.5 1231502784
## 22634    3.5 1231502801
## 22635    2.5 1231502861
## 22637    3.0 1231502866
## 22638    2.0 1231502844
## 22639    1.5 1231502789
## 22640    3.5 1231502682
## 22643    3.5 1231502773
## 22645    1.5 1231502994
## 22646    1.5 1231503042
## 22647    3.5 1231503157
## 22649    2.5 1183519921
## 22651    2.0 1183519883
## 22652    3.5 1183519855
## 22654    3.5 1183519692
## 22655    0.5 1183519180
## 22656    3.0 1183518573
## 22659    3.5 1183519814
## 22660    3.5 1183519849
## 22661    3.0 1183519514
## 22662    1.5 1183519900
## 22663    1.5 1183519943
## 22668    2.5 1183519918
## 22669    2.0 1183519845
## 22670    2.0 1183519867
## 22672    3.5 1183519399
## 22673    1.5 1183519905
## 22674    3.0 1183519839
## 22675    3.0 1183519821
## 22676    0.5 1183519940
## 22677    3.0 1183519802
## 22679    1.5 1183518385
## 22680    3.5 1183519707
## 22681    2.0 1183519898
## 22683    2.0 1183519929
## 22685    2.5 1183519923
## 22686    3.5 1183519818
## 22687    3.0 1183519807
## 22689    3.0 1183519890
## 22691    2.5 1183519887
## 22692    3.5 1183519013
## 22693    3.5 1183519823
## 22694    3.0 1183518371
## 22704    3.5 1183519667
## 22705    3.0 1183519916
## 22726    3.5 1183519595
## 22727    3.0 1183518377
## 22729    3.5 1183519710
## 22730    1.0 1183518395
## 22731    3.5 1183519612
## 22732    3.5 1183519234
## 22734    3.5 1183518591
## 22738    3.5 1183519734
## 22742    3.5 1183518403
## 22743    3.0 1183519914
## 22745    3.5 1183518768
## 22746    3.5 1183518894
## 22748    3.5 1183518778
## 22750    3.5 1183518550
## 22751    3.5 1183518696
## 22753    2.5 1183519617
## 22754    3.5 1183519611
## 22756    3.0 1183518491
## 22758    3.0 1183518579
## 22760    3.5 1183518849
## 22761    3.5 1183518670
## 22762    2.0 1183519684
## 22764    3.0 1183519713
## 22768    3.0 1183519658
## 22772    3.5 1183518857
## 22773    3.5 1183518733
## 22775    2.5 1183519466
## 22776    2.5 1183519224
## 22777    3.5 1183519665
## 22780    3.0 1183519269
## 22784    3.5 1183519681
## 22785    1.5 1183519215
## 22786    3.5 1183519761
## 22788    2.5 1183519282
## 22790    1.0 1183519374
## 22791    1.5 1183519243
## 22792    3.0 1183519455
## 22794    3.5 1183518878
## 22795    3.5 1183518740
## 22796    3.5 1183518799
## 22797    2.0  974256306
## 22808    3.0  974255503
## 22810    3.0  974257089
## 22812    3.0  974256051
## 22815    3.0  974258948
## 22816    3.0  974257297
## 22822    3.0  974256205
## 22826    3.0  974257259
## 22832    3.0  974257516
## 22833    3.0  974256830
## 22834    3.0  974256784
## 22836    3.0  974256864
## 22837    3.0  974258079
## 22842    3.0  974256416
## 22853    3.0  974257475
## 22857    3.0  974257547
## 22860    2.0  974258881
## 22863    2.0  974257362
## 22867    3.0  974255599
## 22868    3.0  974255556
## 22869    3.0  974258728
## 22873    2.0  974255556
## 22877    2.0  974257056
## 22885    3.0  974259106
## 22887    3.0  974257297
## 22888    3.0  974256661
## 22889    3.0  974257516
## 22892    3.0  974257600
## 22893    2.0  974257630
## 22901    3.0  837629516
## 22902    3.0  837629819
## 22903    3.0  837629820
## 22904    3.0  837629562
## 22906    3.0  837629544
## 22907    3.0  837629757
## 22909    3.0  837629866
## 22913    3.0  837630800
## 22915    3.0  837629381
## 22917    3.0  837629544
## 22920    3.0  837629381
## 22922    3.0  837629586
## 22923    3.0  837630800
## 22925    3.0  837629733
## 22926    3.0  837629820
## 22928    3.0  837629973
## 22929    3.0  837629407
## 22930    3.0  837629615
## 22931    3.0  837629940
## 22933    3.0  837629757
## 22934    3.0  837629733
## 22936    3.0  837629896
## 22938    3.0  837629711
## 22939    3.0  837629353
## 22941    3.0  837629586
## 22942    3.0  837629406
## 22943    3.0  837629516
## 22945    3.0  837629406
## 22946    3.0  837629692
## 22947    3.0  837629446
## 22949    3.0  837629381
## 22953    3.0  837629516
## 22954    3.0  837629516
## 22956    3.0  837630800
## 22960    3.0  837629544
## 22961    3.0  837629427
## 22963    3.0  837629711
## 22968    3.0  837630094
## 22972    3.0  837629973
## 22973    3.0  837629615
## 22975    3.0  837629925
## 22976    3.0  837629659
## 22978    3.0  837629381
## 22980    3.0  837629353
## 22981    3.0  837629353
## 22983    3.0  837629407
## 22984    3.0  837629659
## 22985    3.0  837630040
## 22986    3.0  837630094
## 22987    2.0  852791965
## 22989    3.0  852791965
## 22990    3.0  852791965
## 22992    3.0  852791965
## 22995    3.0  852792308
## 22996    3.0  852792221
## 22997    3.0  852792392
## 23001    3.0  852792107
## 23002    3.0  852792452
## 23004    3.0  852792019
## 23005    3.0  852792058
## 23006    3.0  852792354
## 23007    3.0  852792246
## 23008    3.0  852791994
## 23009    3.0  852792246
## 23010    2.0  852792058
## 23011    3.0  852792058
## 23012    3.0  852791994
## 23013    3.0  852792221
## 23014    3.0  852792272
## 23015    3.0  852792392
## 23017    3.0 1390767736
## 23018    0.5 1390776289
## 23021    0.5 1390767109
## 23023    3.0 1390766954
## 23025    1.5 1390767810
## 23027    2.0 1390767129
## 23029    3.5 1390766825
## 23031    3.5 1390776274
## 23032    2.5 1390767042
## 23033    2.0 1390766869
## 23034    2.5 1390766860
## 23036    3.0 1390776270
## 23037    0.5 1294063848
## 23038    3.0 1390766855
## 23040    3.5 1294063744
## 23044    1.5 1390776630
## 23046    3.5 1390767124
## 23048    3.5 1294063913
## 23049    1.5 1294063829
## 23050    3.5 1390767684
## 23053    3.0 1294158283
## 23054    0.5 1294159272
## 23055    0.5 1294063996
## 23057    2.0 1390766977
## 23060    2.0 1294063921
## 23061    3.5 1390767582
## 23062    2.0 1294064126
## 23063    3.5 1390776583
## 23064    3.5 1390776260
## 23065    2.5 1390776566
## 23067    3.5 1390767117
## 23068    2.5 1390776249
## 23069    0.5 1294064112
## 23071    3.0 1294158525
## 23072    2.5 1390776545
## 23073    3.5 1390776540
## 23074    3.5 1390767791
## 23075    1.5 1294158761
## 23078    3.0 1294158232
## 23079    0.5 1390767164
## 23081    2.5 1320602141
## 23082    2.5 1294158583
## 23083    2.5 1294064035
## 23084    2.5 1294064607
## 23085    1.5 1320618115
## 23087    3.5 1390776168
## 23091    3.5 1390767498
## 23092    3.0 1390775312
## 23094    3.5 1390775955
## 23098    3.5 1179531301
## 23101    3.0 1182619735
## 23104    2.0 1179531233
## 23105    3.0 1179531305
## 23108    1.0 1178927026
## 23112    3.0 1182620144
## 23114    2.0 1178926978
## 23115    2.5 1178926928
## 23116    3.5 1179031670
## 23123    3.5 1179533887
## 23128    2.5 1182619757
## 23129    2.5 1182620184
## 23133    3.5 1179530356
## 23134    3.0 1178926883
## 23136    3.5 1178926971
## 23137    3.5 1182619909
## 23138    3.0 1178926953
## 23139    3.5 1179530384
## 23147    3.5 1178926925
## 23148    3.5 1179890296
## 23149    3.5 1179890318
## 23153    3.0 1178926889
## 23157    3.0 1179531357
## 23158    3.5 1182619938
## 23160    3.5 1178926870
## 23161    2.5 1179531309
## 23164    3.5 1179891094
## 23165    3.5 1179530369
## 23166    3.5 1182619905
## 23167    3.0 1178927037
## 23168    2.5 1182620196
## 23171    3.0 1182619936
## 23172    3.5 1179531245
## 23174    3.5 1178927070
## 23177    3.5 1182287590
## 23178    3.0 1182619927
## 23180    2.5 1111482682
## 23181    3.0 1111981462
## 23182    2.5 1111981538
## 23183    2.5 1111482847
## 23184    1.0 1111482570
## 23185    2.5 1111479425
## 23186    3.5 1111479044
## 23187    3.5 1111981801
## 23189    3.5 1111479971
## 23190    2.0 1111482816
## 23191    3.5 1111981437
## 23193    3.0 1111482441
## 23197    2.0 1111981621
## 23198    3.5 1111981751
## 23199    2.0 1111479041
## 23202    1.5 1111981610
## 23203    1.0 1111482443
## 23204    2.5 1111482873
## 23205    2.0 1111981642
## 23206    3.0 1111479127
## 23207    3.5 1111981940
## 23208    2.0 1111981559
## 23210    3.0 1111980924
## 23211    2.0 1111982099
## 23212    3.5 1111982190
## 23213    3.0 1111482854
## 23215    3.5 1111480525
## 23216    2.5 1111981484
## 23219    2.0 1111982333
## 23220    2.5 1111482645
## 23222    3.0 1111482557
## 23223    3.5 1111480611
## 23224    3.5 1111482824
## 23225    3.5 1111482856
## 23226    3.0 1111981697
## 23227    3.0 1111480633
## 23229    1.0 1111611009
## 23230    3.0 1111982342
## 23231    3.5 1111610567
## 23232    3.0 1111480423
## 23233    2.0 1111981613
## 23234    2.0 1111482554
## 23235    2.5 1111981478
## 23236    3.0 1111479900
## 23238    3.0 1111612047
## 23239    3.0 1111480613
## 23240    3.5 1111482300
## 23241    3.0 1111482850
## 23242    1.5 1111479498
## 23244    3.0 1111479736
## 23246    3.0 1111982109
## 23248    3.5 1111482724
## 23249    3.5 1111982281
## 23250    2.0 1111981315
## 23252    1.0 1111611453
## 23254    3.0 1111482864
## 23258    3.0 1111480609
## 23259    3.0 1111482813
## 23260    3.0 1111612353
## 23261    3.0 1111480631
## 23262    3.5 1111482809
## 23263    1.0 1111482551
## 23264    3.5 1111482370
## 23265    1.5 1111981824
## 23266    3.0 1111482833
## 23267    2.5 1111482822
## 23268    1.0 1112679125
## 23270    2.0 1111981662
## 23271    2.5 1111482731
## 23273    2.5 1111483539
## 23274    2.5 1111981626
## 23275    3.0 1111544586
## 23276    3.0 1111982104
## 23277    3.5 1111482179
## 23279    3.0 1111981968
## 23280    3.0 1111482392
## 23281    3.0 1111982266
## 23282    2.5 1111479916
## 23283    3.0 1111981835
## 23285    2.5 1111610189
## 23287    2.5 1111981773
## 23290    3.5 1111981454
## 23291    3.0 1111981544
## 23292    3.5 1111482290
## 23293    2.0 1111981603
## 23294    3.0 1111609894
## 23295    1.5 1111479962
## 23296    1.0 1111981565
## 23297    3.5 1111479987
## 23299    3.5 1111481917
## 23300    3.0 1111480417
## 23301    2.5 1111482635
## 23302    3.5 1111479101
## 23303    2.5 1111981816
## 23305    2.5 1111480080
## 23307    2.0 1111479020
## 23308    3.0 1111481945
## 23311    2.5 1111544609
## 23312    3.5 1111544605
## 23314    0.5 1111611335
## 23316    2.5 1111481904
## 23318    2.5 1111544615
## 23319    3.0 1111482601
## 23320    2.5 1111482228
## 23321    0.5 1111982007
## 23322    3.5 1111482648
## 23323    2.5 1111609797
## 23324    2.5 1111482168
## 23325    3.0 1111481213
## 23326    3.0 1111479081
## 23327    2.5 1111544629
## 23329    2.5 1111482162
## 23330    1.5 1111544643
## 23331    0.5 1111611428
## 23332    3.0 1111482297
## 23334    3.0 1111482007
## 23335    2.0 1111981828
## 23336    0.5 1111481183
## 23337    1.0 1111482560
## 23339    3.5 1111482502
## 23340    3.0 1111481912
## 23341    2.0 1111982193
## 23342    3.0 1111479764
## 23343    3.5 1111610272
## 23344    3.0 1111482039
## 23345    1.0 1111982294
## 23346    1.5 1111611940
## 23348    3.5 1111982185
## 23349    3.5 1111482007
## 23350    3.0 1112679242
## 23351    3.5 1111482343
## 23352    2.5 1111481937
## 23353    3.5 1111981798
## 23354    3.5 1111479677
## 23355    2.5 1111481863
## 23356    3.0 1111982351
## 23357    2.5 1111612199
## 23359    3.0 1111479052
## 23360    3.0 1111982010
## 23361    2.0 1111479088
## 23362    3.0 1111982307
## 23363    3.0 1111482251
## 23364    3.0 1111612190
## 23365    3.5 1111479770
## 23366    3.0 1111610238
## 23368    2.0 1111980163
## 23369    3.5 1111480641
## 23370    1.0 1111981918
## 23371    3.0 1111481853
## 23372    3.0 1111481929
## 23374    2.0 1111482351
## 23376    3.5 1111482199
## 23379    3.0 1111479385
## 23380    3.0 1111981819
## 23381    3.0 1111610900
## 23382    3.0 1111981837
## 23383    3.0 1111481241
## 23384    0.5 1111981929
## 23385    3.0 1111479056
## 23389    3.5 1111481985
## 23390    2.5 1111482668
## 23391    2.0 1111482591
## 23392    2.5 1111482027
## 23394    3.5 1111481961
## 23395    3.0 1111479011
## 23397    3.5 1111481975
## 23398    0.5 1111482114
## 23399    3.5 1111981451
## 23400    3.0 1111482574
## 23402    3.0 1111981616
## 23404    2.5 1111481181
## 23405    2.5 1111482692
## 23406    3.0 1111610514
## 23407    0.5 1111544698
## 23408    3.5 1111481873
## 23409    1.0 1111982102
## 23410    2.5 1111482060
## 23411    3.0 1111481989
## 23413    3.5 1111482608
## 23415    2.0 1111544701
## 23417    3.0 1111482042
## 23418    3.5 1111609915
## 23421    2.0 1111544716
## 23422    2.0 1111481749
## 23423    2.0 1111482099
## 23424    2.5 1111479106
## 23426    3.5 1111482598
## 23427    3.5 1111981804
## 23428    3.5 1111479715
## 23429    3.0 1111482585
## 23430    2.0 1111479356
## 23431    3.0 1111479931
## 23432    1.5 1111612105
## 23433    3.5 1111482407
## 23434    3.0 1120068354
## 23435    0.5 1111982354
## 23437    3.0 1111611097
## 23439    2.5 1111611103
## 23440    2.5 1111482158
## 23441    3.0 1111481949
## 23442    3.0 1111480425
## 23443    2.0 1111982349
## 23445    3.0 1111982299
## 23446    3.5 1111479902
## 23447    0.5 1111610943
## 23448    2.5 1111982357
## 23449    0.5 1111479113
## 23451    2.0 1111482054
## 23452    2.0 1111982324
## 23453    2.5 1111976030
## 23454    3.0 1111612043
## 23455    3.5 1111612045
## 23456    3.5 1111982301
## 23458    1.5 1111544774
## 23459    2.5 1111982128
## 23460    3.5 1111482367
## 23461    3.5 1111479994
## 23462    1.0 1111544796
## 23463    3.0 1111610539
## 23465    2.0 1111482140
## 23466    2.5 1111980153
## 23467    0.5 1111611914
## 23468    1.0 1111482127
## 23470    1.0 1111609765
## 23471    3.5 1111609772
## 23472    2.5 1111482063
## 23473    1.5 1111479360
## 23474    3.5 1111479094
## 23475    3.5 1111974579
## 23476    3.5 1111612079
## 23477    3.0 1111609926
## 23479    2.5 1120068379
## 23480    3.5 1111479248
## 23482    3.0 1111611899
## 23483    2.0 1111609900
## 23485    2.0 1111482425
## 23486    1.0 1111982123
## 23487    3.5 1111482418
## 23488    2.5 1120068461
## 23491    3.0 1111610138
## 23492    2.5 1111610270
## 23494    2.5 1111544905
## 23495    3.5 1111610250
## 23496    2.5 1111544926
## 23497    2.5 1111482568
## 23498    2.0 1111481171
## 23499    1.5 1111481174
## 23500    3.0 1111544922
## 23501    2.0 1111481159
## 23502    1.0 1111610955
## 23503    3.5 1111479322
## 23504    3.0 1111480753
## 23505    3.0 1112862161
## 23506    1.5 1111544939
## 23507    3.5 1111610361
## 23508    3.0 1111611965
## 23509    2.5 1111609693
## 23510    1.0 1111611733
## 23511    3.0 1111612120
## 23512    3.5 1111479713
## 23513    1.5 1111611419
## 23514    1.0 1111610214
## 23515    3.5 1111480053
## 23516    2.5 1111544956
## 23517    1.5 1111610103
## 23518    3.5 1111611803
## 23519    2.0 1111545166
## 23521    0.5 1111981923
## 23522    1.0 1111544973
## 23523    2.0 1111479893
## 23524    2.0 1111610890
## 23525    3.5 1111479887
## 23526    2.5 1111611144
## 23527    1.0 1111483124
## 23528    3.0 1111545003
## 23530    1.0 1111482454
## 23531    2.5 1111544994
## 23532    1.0 1111611741
## 23533    2.0 1111544998
## 23534    2.0 1111545007
## 23535    3.0 1111612163
## 23537    0.5 1111611730
## 23538    1.5 1111545018
## 23539    1.0 1111479721
## 23540    2.0 1111545012
## 23541    3.0 1111480432
## 23543    3.5 1111609738
## 23545    0.5 1111611312
## 23546    2.0 1111611979
## 23547    2.5 1111545046
## 23548    0.5 1111980416
## 23549    3.5 1111480402
## 23550    2.5 1111482091
## 23553    0.5 1111611889
## 23554    3.5 1111480414
## 23555    3.0 1111479653
## 23556    2.5 1111545061
## 23558    3.0 1112679205
## 23560    2.5 1111611955
## 23561    2.5 1111609912
## 23562    2.0 1111979893
## 23563    0.5 1111479753
## 23565    3.5 1111479877
## 23566    2.0 1111982019
## 23567    1.5 1111610528
## 23568    2.0 1111483520
## 23569    0.5 1111611916
## 23570    3.5 1111482107
## 23571    0.5 1111481156
## 23572    1.5 1111980536
## 23575    2.0 1111481221
## 23576    1.0 1111980432
## 23577    3.0 1111980126
## 23578    0.5 1111610819
## 23580    3.0 1111912447
## 23581    2.5 1111482460
## 23583    1.0 1111482458
## 23584    1.0 1111610395
## 23585    3.5 1111609775
## 23586    3.5 1111610377
## 23587    3.0 1111611208
## 23588    2.5 1111610228
## 23589    3.0 1111980236
## 23591    1.5 1111479295
## 23592    1.5 1111483453
## 23593    3.5 1111479987
## 23594    2.5 1111480374
## 23595    2.0 1111611968
## 23596    1.5 1112176029
## 23599    1.5 1111480042
## 23602    2.5 1111479400
## 23604    3.0 1111610107
## 23605    3.0 1111544466
## 23606    2.5 1111480022
## 23608    1.0 1111611403
## 23609    2.0 1111979070
## 23610    2.0 1112095574
## 23611    1.0 1111611905
## 23612    2.0 1111479699
## 23613    3.5 1112078947
## 23614    2.0 1111912388
## 23615    2.5 1113813088
## 23617    2.5 1111479407
## 23619    3.5 1111479979
## 23620    2.0 1111610219
## 23621    2.5 1111611992
## 23622    3.0 1111479704
## 23623    1.5 1111479377
## 23626    3.5 1111479419
## 23627    1.0 1111479349
## 23628    1.5 1111610198
## 23629    1.5 1111479362
## 23630    0.5 1111479487
## 23631    2.5 1111481229
## 23632    1.0 1111479436
## 23633    0.5 1111479388
## 23634    3.5 1111479342
## 23635    1.5 1111479431
## 23638    2.0 1111912408
## 23639    1.0 1111479466
## 23640    1.5 1111479442
## 23641    2.5 1113813097
## 23642    2.5 1111479446
## 23644    1.0 1111912422
## 23646    3.5 1120068362
## 23647    3.0 1111479242
## 23648    2.5 1112679141
## 23649    1.0 1112862150
## 23651    2.5 1112078957
## 23652    3.0 1111610390
## 23653    2.0 1113411108
## 23655    3.0 1112679214
## 23656    0.5 1111479464
## 23657    3.0 1112679117
## 23658    3.0 1113167865
## 23659    1.0 1120068332
## 23660    2.5 1112982315
## 23661    3.5 1112679197
## 23662    2.0 1111479484
## 23663    2.5 1111479578
## 23664    1.0 1111479503
## 23666    3.5 1120068275
## 23669    3.5 1064888606
## 23674    0.5 1064886959
## 23675    3.5 1064889111
## 23678    3.0 1064888510
## 23679    3.0 1064887021
## 23680    2.0 1064887460
## 23681    2.0 1064888582
## 23686    3.0 1064889007
## 23688    1.0 1064887367
## 23689    3.0 1064887265
## 23696    3.0 1064888661
## 23700    3.0 1064887383
## 23704    2.5 1064888102
## 23706    3.5 1064887933
## 23713    2.5 1064889000
## 23714    3.0 1064888682
## 23716    2.0 1064888685
## 23719    2.5 1064887823
## 23721    2.5 1064887827
## 23722    2.0 1064888366
## 23727    3.0  954114958
## 23735    2.0  954053165
## 23737    2.0  954115062
## 23741    2.0  954114904
## 23742    3.0  954114998
## 23743    3.0  954115524
## 23744    3.0  954114978
## 23748    3.0  848879299
## 23749    2.0  848879311
## 23751    3.0  848866720
## 23754    2.0  848879389
## 23755    3.0  848866642
## 23757    3.0  848879277
## 23758    3.0  848879177
## 23760    3.0  848879076
## 23761    3.0  848866602
## 23762    3.0  848879158
## 23763    3.0  848879389
## 23764    3.0  848866602
## 23765    1.0  848866744
## 23766    3.0  848879449
## 23767    2.0  848879076
## 23768    2.0  848879256
## 23769    3.0  848879090
## 23770    3.0  848879608
## 23771    3.0  848866720
## 23772    2.0  848879167
## 23773    2.0  848879242
## 23775    3.0  848879151
## 23776    3.0  848879090
## 23777    1.0  848879412
## 23778    3.0  848879449
## 23781    3.0  848879874
## 23782    3.0  848866666
## 23783    3.0  848866631
## 23788    3.0  848866631
## 23789    2.0  848879115
## 23791    3.0  848866720
## 23792    2.0  848879527
## 23794    3.0  848879231
## 23796    3.0  848879424
## 23797    3.0  848866570
## 23798    3.0  848879761
## 23799    3.0  848879900
## 23800    3.0  848866683
## 23802    1.0  848879222
## 23803    1.0  848866720
## 23804    3.0  848879364
## 23805    3.0  848879256
## 23806    3.0  848879489
## 23807    3.0  848866744
## 23808    3.0  848866631
## 23810    3.0  848866757
## 23811    3.0  848879489
## 23812    2.0  848879449
## 23813    3.0  848866653
## 23816    2.0  848879115
## 23817    2.0  848879333
## 23819    3.0  848879030
## 23820    2.0  848879570
## 23821    3.0  848866772
## 23822    3.0  848866757
## 23823    2.0  848879661
## 23824    3.0  848879318
## 23826    3.0  848879396
## 23827    1.0  848879299
## 23828    3.0  848879333
## 23829    3.0  848879349
## 23830    3.0  848879389
## 23831    2.0  848879201
## 23833    3.0  848866772
## 23835    3.0  848879585
## 23836    3.0  848866683
## 23839    3.0  848866570
## 23841    3.0  848866683
## 23843    3.0  848879799
## 23844    3.0  848866900
## 23849    3.0  848879822
## 23851    3.0  848879553
## 23856    3.0  848879886
## 23858    2.0  848879730
## 23864    1.5 1234227391
## 23865    3.5 1234228429
## 23866    2.0 1234227686
## 23867    3.5 1234227478
## 23870    3.5 1234228513
## 23871    3.5 1234228764
## 23872    3.0 1234227487
## 23874    3.5 1234228754
## 23876    1.0 1234227572
## 23877    3.5 1234227474
## 23882    3.0 1234228370
## 23883    3.5 1234228773
## 23884    3.5 1234227692
## 23885    2.5 1234227497
## 23888    2.0 1234227463
## 23891    3.5 1234228309
## 23894    3.5 1234228640
## 23897    3.5 1234228295
## 23906    1.0 1234227698
## 23907    3.5 1234227565
## 23911    3.5 1234227812
## 23914    3.0 1234228925
## 23915    2.5 1234227650
## 23917    3.0 1234228162
## 23920    3.0 1234228178
## 23923    3.5 1234228391
## 23924    3.5 1234228341
## 23925    3.0 1234227608
## 23932    3.0 1234228242
## 23934    3.0 1234228944
## 23936    2.0 1234228185
## 23941    2.5 1234229002
## 23948    3.5 1234228981
## 23952    3.5 1234228417
## 23955    3.0 1234228913
## 23957    3.5 1234228263
## 23969    3.5 1234228849
## 23974    3.5 1234228257
## 23975    3.5 1234228939
## 23976    2.5 1220532219
## 23977    2.5 1220532237
## 23978    2.0 1220532233
## 23979    1.0 1220532210
## 23980    2.0 1220532230
## 23981    3.0 1263219169
## 23982    1.0 1263219174
## 23983    3.0 1220532208
## 23984    3.5 1220532234
## 23986    2.0 1263219159
## 23987    3.0 1263219164
## 23989    1.5 1220532200
## 23990    3.0 1220532223
## 23991    2.0 1220532202
## 23992    3.0 1220532233
## 23993    2.5 1263219154
## 23994    2.5 1220532222
## 23995    2.5 1220532231
## 23996    1.5 1220532229
## 23997    3.0 1220532245
## 23998    2.0 1220532233
## 23999    3.0 1220532228
## 24000    3.0 1220532205
## 24001    3.0 1263219135
## 24013    3.0  950556231
## 24014    3.0  950996333
## 24022    3.0  950556329
## 24023    3.0  950996381
## 24032    3.0  950556889
## 24034    3.0  950556611
## 24036    2.0  951139528
## 24041    2.0  950556652
## 24042    3.0  950556751
## 24047    3.0  950556705
## 24048    3.0  950556960
## 24049    3.0  950556231
## 24051    3.0  843290818
## 24052    3.0  843290717
## 24055    3.0  843291407
## 24060    3.0  843290566
## 24061    3.0  843290717
## 24062    3.0  843290752
## 24064    3.0  843290645
## 24067    3.0  843290844
## 24069    3.0  843290496
## 24070    3.0  843290451
## 24071    3.0  843290451
## 24080    3.0  875357448
## 24086    3.0  876821405
## 24088    3.0  876821338
## 24092    3.0  876823420
## 24100    3.0  876821773
## 24101    3.0  876821498
## 24106    3.0  875356096
## 24110    3.0  876822114
## 24113    3.0  876821028
## 24115    1.5 1109621187
## 24117    2.0 1109621197
## 24118    3.5 1109621215
## 24119    1.0 1109621190
## 24120    2.5 1109621247
## 24121    3.5 1109621206
## 24122    3.0 1109621260
## 24124    2.0 1109621184
## 24125    0.5 1109621175
## 24129    2.5 1109621251
## 24130    3.5 1109621233
## 24131    3.0 1109621170
## 24133    3.5 1109621201
## 24134    3.0 1109623540
## 24137    3.0 1052884607
## 24145    2.0 1052836139
## 24147    3.0 1052884351
## 24150    3.0 1052884328
## 24152    3.0 1052835782
## 24153    3.0 1052884580
## 24166    3.0 1052884237
## 24167    3.0 1052835731
## 24169    3.0 1052883909
## 24171    3.0 1052835996
## 24172    3.0 1052884607
## 24175    2.0 1052836139
## 24181    3.0 1052883663
## 24186    1.0 1052835797
## 24192    2.0 1052884607
## 24196    3.0 1052835757
## 24199    2.0 1052835824
## 24202    3.0 1052836299
## 24205    3.0 1052835680
## 24207    2.0 1052836058
## 24213    3.0 1052883579
## 24214    2.0 1052835996
## 24217    2.0 1052883487
## 24218    2.0 1052883562
## 24219    3.0 1052836544
## 24221    3.0 1052836125
## 24222    3.0 1052883600
## 24226    2.0 1052836656
## 24240    2.0 1052836299
## 24245    2.0 1052884713
## 24254    3.0 1052883635
## 24256    3.0 1052836408
## 24257    1.0 1052883562
## 24258    3.0 1052836572
## 24260    2.0 1340720798
## 24261    3.0 1341047637
## 24262    2.0 1340915742
## 24263    2.0 1341001737
## 24264    1.0 1341002026
## 24265    3.0 1341050021
## 24266    2.0 1340720267
## 24269    2.5 1341051741
## 24270    2.0 1340915739
## 24271    3.0 1341048908
## 24272    2.5 1340915680
## 24273    3.0 1364721985
## 24274    2.5 1340717480
## 24275    3.5 1341001015
## 24278    0.5 1341001883
## 24279    2.5 1340916038
## 24280    2.5 1340713490
## 24281    3.5 1341049379
## 24282    2.0 1341048898
## 24284    3.0 1340913798
## 24286    3.0 1340720756
## 24288    0.5 1340715213
## 24289    3.5 1340715420
## 24290    2.0 1340715553
## 24291    3.0 1340720595
## 24292    3.0 1341050757
## 24293    1.5 1340721359
## 24294    2.0 1341047743
## 24295    3.0 1341047497
## 24296    1.5 1341001785
## 24298    3.5 1340713303
## 24299    2.5 1340720372
## 24300    3.0 1340715465
## 24301    2.0 1341000961
## 24302    0.5 1340721274
## 24303    3.5 1341048915
## 24304    3.0 1364722231
## 24305    1.0 1341002141
## 24306    2.5 1341056101
## 24307    2.0 1341050051
## 24308    1.5 1341047061
## 24309    2.0 1341050029
## 24310    3.0 1341049365
## 24311    2.0 1341048783
## 24312    2.0 1341050036
## 24313    2.0 1341048925
## 24314    3.0 1340720823
## 24316    1.5 1341002882
## 24318    2.5 1342857564
## 24319    1.0 1341001087
## 24320    1.0 1341002755
## 24321    1.5 1340713142
## 24322    1.5 1341001492
## 24323    2.5 1340720739
## 24324    3.5 1340912716
## 24325    2.0 1340902346
## 24327    2.0 1340713347
## 24328    1.0 1340721399
## 24330    3.5 1341002809
## 24331    0.5 1340713193
## 24332    0.5 1340721192
## 24333    2.5 1340747831
## 24334    0.5 1341002119
## 24335    2.0 1343335492
## 24337    1.0 1340713554
## 24338    3.5 1340914843
## 24339    3.5 1340916569
## 24341    3.0 1340913211
## 24342    2.0 1340721222
## 24343    2.0 1364722317
## 24344    1.0 1340713233
## 24345    3.5 1340914405
## 24346    1.0 1340914730
## 24347    3.5 1340715834
## 24348    0.5 1341002155
## 24349    3.0 1340715346
## 24351    3.5 1340714662
## 24353    2.5 1340716670
## 24354    0.5 1340713734
## 24355    2.0 1343335570
## 24356    3.0 1340918054
## 24357    3.0 1340715341
## 24359    3.5 1378384744
## 24360    3.0 1341047860
## 24362    3.0 1340713498
## 24363    3.0 1341002040
## 24364    3.5 1340917181
## 24367    3.0 1340715530
## 24369    3.0 1340720444
## 24370    1.5 1341003081
## 24372    3.5 1340917301
## 24373    3.5 1340716737
## 24375    2.0 1340721386
## 24376    2.5 1340720299
## 24377    0.5 1340747921
## 24378    3.5 1340715623
## 24379    2.5 1340917347
## 24380    1.5 1340916972
## 24386    3.5 1340715612
## 24387    2.5 1341055462
## 24388    3.5 1340713901
## 24389    3.5 1341056045
## 24390    3.5 1340715337
## 24391    3.5 1341001212
## 24392    0.5 1340721882
## 24393    3.5 1340914846
## 24394    3.5 1345915332
## 24395    3.0 1341055400
## 24396    1.5 1340746374
## 24398    3.5 1340715128
## 24400    3.5 1340720451
## 24401    1.0 1364722311
## 24403    3.0 1340748665
## 24404    2.5 1340717676
## 24405    3.5 1340914509
## 24408    3.5 1343335486
## 24409    3.5 1340916558
## 24410    2.5 1340720656
## 24411    2.0 1343335392
## 24412    3.5 1340913567
## 24414    2.5 1340811802
## 24415    2.0 1341047338
## 24416    3.0 1340715333
## 24417    2.5 1340748142
## 24418    3.0 1340720952
## 24419    2.0 1342949753
## 24420    3.5 1340715546
## 24423    3.5 1340917675
## 24424    3.0 1343335399
## 24425    2.0 1340914687
## 24426    3.0 1340916181
## 24427    2.0 1344347678
## 24428    3.5 1340748640
## 24434    3.5 1340913756
## 24435    2.0 1343335247
## 24437    3.0 1340747499
## 24438    3.5 1340714267
## 24439    3.5 1340916173
## 24440    2.5 1340748506
## 24441    3.0 1340716832
## 24442    3.5 1340747539
## 24443    3.5 1341002428
## 24444    2.5 1341056232
## 24445    3.0 1340913712
## 24446    3.0 1340915519
## 24447    3.0 1343335280
## 24448    3.5 1345237994
## 24450    2.5 1340912864
## 24451    3.0 1340714650
## 24452    2.0 1340912969
## 24453    3.0 1341056136
## 24455    3.5 1340914801
## 24456    3.5 1368312386
## 24458    3.5 1340916711
## 24459    3.0 1343333689
## 24460    1.0 1340720312
## 24461    2.5 1340747587
## 24462    2.5 1347306212
## 24463    3.0 1340720957
## 24464    1.0 1368307751
## 24465    3.0 1340918200
## 24467    1.5 1344167211
## 24468    3.5 1340916241
## 24469    3.0 1340914244
## 24472    3.5 1343333718
## 24473    2.5 1341047285
## 24474    3.0 1340915442
## 24476    2.0 1366545291
## 24478    2.5 1364722469
## 24480    2.5 1340715537
## 24481    3.0 1341001174
## 24484    3.0 1366545246
## 24485    2.5 1340914719
## 24486    2.5 1378384504
## 24487    3.0 1343334260
## 24488    3.0 1340916679
## 24489    2.5 1340911697
## 24490    2.0 1368307787
## 24493    2.0 1340916326
## 24494    3.0 1340714765
## 24495    3.5 1340911985
## 24496    3.5 1345237982
## 24497    2.5 1340714469
## 24499    2.0 1340917043
## 24500    3.5 1343334119
## 24502    3.5 1340912551
## 24503    2.5 1340717602
## 24504    1.0 1340915855
## 24505    3.0 1340720332
## 24506    3.5 1366545262
## 24507    3.0 1378384538
## 24508    3.0 1368307805
## 24509    3.5 1378384885
## 24511    2.0 1368307727
## 24512    3.5 1384107215
## 24513    3.5 1377799692
## 24514    3.0 1377799432
## 24515    3.0 1384107175
## 24522    3.0  907380781
## 24526    1.0  907380378
## 24528    2.0  907380055
## 24531    3.0  907380964
## 24534    2.0  907380369
## 24541    3.0  907380056
## 24543    3.0  907380056
## 24547    3.0  907381025
## 24549    3.0  907381064
## 24550    3.0  907380138
## 24551    2.0  907380138
## 24552    3.0  907381132
## 24557    3.0  907380138
## 24567    3.0  907380203
## 24568    2.0  907380203
## 24569    2.0  907381096
## 24572    3.0  907380203
## 24574    3.0  907380203
## 24581    3.0  907381132
## 24583    3.0  907380321
## 24585    2.0  907380369
## 24586    3.0  907381218
## 24588    3.0  907380138
## 24589    1.0  907381218
## 24597    3.0  907380369
## 24604    3.0  907380246
## 24610    3.0  907381218
## 24611    3.0  907380138
## 24613    2.0  907380369
## 24614    3.0  907380964
## 24615    3.0  907381264
## 24616    3.0  907380964
## 24618    3.0  907380203
## 24620    3.0  907381243
## 24626    3.0  907380544
## 24642    3.0  907380253
## 24643    3.0  907380321
## 24644    3.0  907380964
## 24648    3.0  907380567
## 24655    3.0  907381025
## 24656    3.0  907381243
## 24658    1.0  907380918
## 24660    2.0  907381064
## 24661    1.0  907381218
## 24663    3.0  907380918
## 24670    1.0  907380246
## 24671    3.0  907380138
## 24674    2.0  907380246
## 24684    3.0  907381064
## 24689    3.0  907380884
## 24690    2.0  907381064
## 24691    3.0  907380203
## 24695    3.0  907380000
## 24696    2.0  907380203
## 24700    2.0  907380246
## 24707    3.0  907380321
## 24709    3.0  907379242
## 24717    3.0  907516093
## 24722    3.0  907380435
## 24723    3.0  907380567
## 24724    3.0  907380544
## 24726    3.0  907379359
## 24728    3.0  907381312
## 24738    3.0  907380544
## 24741    3.5 1437422963
## 24744    3.5 1437422890
## 24747    3.0 1437422880
## 24749    3.5 1437428256
## 24750    3.0 1437428180
## 24752    3.5 1437428338
## 24754    3.0 1437422818
## 24757    3.0 1437424656
## 24758    3.0 1437424660
## 24760    2.5 1437422833
## 24761    3.0 1437428244
## 24762    3.0 1437424756
## 24765    2.5 1437428108
## 24767    3.0 1437422776
## 24769    3.5 1437422824
## 24773    3.0 1437422775
## 24777    3.5 1437424537
## 24778    3.5 1437424542
## 24779    3.0 1437424658
## 24783    3.5 1437424710
## 24784    2.0 1437424514
## 24788    2.5 1437428325
## 24789    3.5 1437428224
## 24790    3.5 1437428238
## 24793    3.5 1437422848
## 24794    2.5 1437428133
## 24797    3.5 1437428222
## 24800    3.5 1437428391
## 24801    3.0 1437425881
## 24803    3.0 1437422802
## 24804    3.0 1437428178
## 24805    1.5 1437424699
## 24811    3.5 1437425865
## 24812    2.5 1437424594
## 24813    3.5 1437428230
## 24814    3.0 1437428385
## 24815    3.0 1437424701
## 24816    1.5 1437428200
## 24817    3.0 1437428141
## 24818    2.5 1437428389
## 24819    3.0 1437424533
## 24820    3.5 1437424506
## 24822    3.5 1437424649
## 24823    2.5 1437425897
## 24824    2.5 1437425829
## 24825    2.5 1437424604
## 24827    2.5 1437428346
## 24828    2.0 1437425794
## 24829    3.5 1437428144
## 24830    2.5 1437425868
## 24832    3.0 1437428365
## 24833    3.0 1437428328
## 24834    3.0 1437425811
## 24835    3.5 1437428168
## 24836    2.5 1437422884
## 24837    3.0 1437424588
## 24839    3.5 1437422956
## 24841    3.0 1437428336
## 24842    3.0 1437424520
## 24845    3.0 1437428208
## 24846    3.0 1437427724
## 24848    3.0 1437422958
## 24849    3.0 1437424530
## 24850    3.5 1437428189
## 24851    3.5 1437428372
## 24853    2.5 1437428278
## 24854    3.5 1437428153
## 24856    2.5 1437424590
## 24858    2.0 1437424624
## 24859    2.0 1437425808
## 24860    3.0 1437424758
## 24861    1.5 1437424684
## 24862    3.0 1437424582
## 24864    2.0 1437424600
## 24865    3.5 1437422854
## 24866    2.5 1437425871
## 24867    3.5 1437425856
## 24869    3.5 1437428138
## 24872    3.0 1436669953
## 24873    3.0 1436670038
## 24874    3.0 1436670351
## 24876    3.0 1436670156
## 24877    2.5 1436670105
## 24878    3.5 1436670189
## 24883    3.5 1436670118
## 24886    3.5 1436670323
## 24887    0.5 1436670174
## 24888    2.5 1436670145
## 24893    3.5 1436670234
## 24894    2.0 1436670152
## 24897    3.5 1436670163
## 24899    3.5 1436670449
## 24907    2.0 1436670023
## 24909    3.0  945446726
## 24912    3.0  945446980
## 24920    3.0  945446829
## 24921    3.0  945446462
## 24922    3.0  945446462
## 24924    2.0  945446804
## 24925    3.0  945446740
## 24927    2.0  945446708
## 24928    2.0  945446845
## 24929    1.0  945446726
## 24934    3.5 1154542675
## 24940    3.0 1154542755
## 24942    3.5 1154542746
## 24944    3.5 1154542815
## 24961    3.0  845745077
## 24965    3.0  845746347
## 24967    3.0  845745917
## 24968    3.0  845744218
## 24969    3.0  845744047
## 24970    1.0  845744316
## 24972    3.0  845744347
## 24973    3.0  845744430
## 24975    3.0  845746546
## 24977    3.0  845745516
## 24978    3.0  845744218
## 24981    3.0  845745742
## 24983    3.0  845745457
## 24986    3.0  845743728
## 24988    3.0  845744976
## 24989    3.0  845745373
## 24991    3.0  845746300
## 24996    3.0  845744545
## 24998    1.0  845743763
## 24999    3.0  845744218
## 25000    3.0  845744603
## 25004    3.0  845746126
## 25005    3.0  845744347
## 25006    3.0  845744141
## 25008    3.0  845745685
## 25011    3.0  845744191
## 25013    3.0  845743924
## 25015    3.0  845743763
## 25017    2.0  845744250
## 25019    3.0  845744805
## 25020    3.0  845745671
## 25021    1.0  845743728
## 25025    3.0  845744575
## 25027    3.0  845744141
## 25028    3.0  845745613
## 25033    3.0  845744545
## 25036    3.0  845744842
## 25038    3.0  845743924
## 25042    3.0  845744864
## 25045    3.0  845744545
## 25046    3.0  845745440
## 25049    3.0  845745289
## 25050    3.0  845744250
## 25052    3.0  845744864
## 25055    3.0  845745077
## 25056    3.0  845744218
## 25057    3.0  845745757
## 25061    3.0  845743728
## 25065    3.0  845745770
## 25069    3.0  845746928
## 25071    3.0  845745742
## 25078    3.0  845746773
## 25080    2.0  845745856
## 25082    3.0  845746155
## 25088    2.0  845745804
## 25089    3.0  845745838
## 25095    3.0  983096240
## 25108    2.0  983096892
## 25111    3.0  983096695
## 25113    3.0  983096806
## 25116    3.0  983096843
## 25125    1.0  983096472
## 25126    3.0  983096370
## 25127    1.0  983096431
## 25128    3.0  983096541
## 25130    3.0  983096505
## 25132    3.0  833524819
## 25134    3.0  833525271
## 25136    3.0  833524803
## 25137    3.0  833524952
## 25138    2.0  833524925
## 25145    2.0  833525355
## 25148    3.0  833525056
## 25151    3.0  833525154
## 25153    3.0  833524768
## 25154    3.0  833525000
## 25155    2.0  833525223
## 25157    3.0  833524818
## 25159    3.0  833524911
## 25163    3.0  833525100
## 25164    2.0  833525330
## 25166    3.0  833525233
## 25169    3.0  833525249
## 25174    3.0  833525212
## 25180    3.0 1019787132
## 25183    3.0 1003524274
## 25184    2.0 1019787488
## 25186    2.0 1003523380
## 25187    2.0 1019787467
## 25188    3.0 1003523818
## 25189    3.0 1003524153
## 25196    3.0 1003523305
## 25198    3.0 1003523129
## 25199    3.0 1003524606
## 25207    3.0 1003523305
## 25209    3.0 1003523305
## 25213    3.0 1003523419
## 25220    3.0 1003523359
## 25221    2.0 1003523752
## 25222    3.0 1003524426
## 25224    3.0 1019787199
## 25225    3.0 1003523597
## 25227    3.0 1003523323
## 25228    3.0 1003523380
## 25229    3.0 1003524590
## 25230    3.0 1019787095
## 25231    3.0 1019787081
## 25232    3.0 1003523404
## 25234    3.0 1019787475
## 25239    2.0 1003524153
## 25245    3.0 1003523115
## 25249    3.0 1003523140
## 25252    3.0 1003524548
## 25257    3.0 1003524369
## 25261    3.0 1019787081
## 25262    2.0 1003524190
## 25264    3.0 1003524299
## 25265    3.0 1003523715
## 25272    2.0 1003523741
## 25273    3.0 1003523338
## 25275    3.0 1003523576
## 25276    2.0 1003523766
## 25278    3.0 1003523404
## 25279    3.0 1003523716
## 25280    3.0 1003523930
## 25282    3.0 1003524699
## 25283    3.0 1003523597
## 25284    2.0 1003524616
## 25289    3.0 1003523622
## 25291    3.0 1003523195
## 25294    3.0 1019787081
## 25295    3.0 1003523646
## 25296    3.0 1003523195
## 25297    3.0 1003523404
## 25298    3.0 1003523767
## 25299    3.0 1003523305
## 25300    3.0 1003523305
## 25301    3.0 1003524637
## 25302    2.0 1003523380
## 25303    3.0 1019787081
## 25306    3.0 1003523788
## 25307    3.0 1003523727
## 25308    3.0 1003523305
## 25309    3.0 1003523848
## 25310    2.0 1003524415
## 25311    3.0 1019787081
## 25312    3.0 1003523323
## 25313    3.0 1019787107
## 25314    3.0 1019787132
## 25316    3.0 1003523848
## 25318    3.0 1019787081
## 25321    3.0 1003524637
## 25323    2.0 1019787502
## 25325    3.0 1019787180
## 25327    3.0 1003524397
## 25328    3.0 1003523891
## 25329    3.0 1003523669
## 25334    3.0 1003524508
## 25335    3.0 1003524753
## 25338    2.0 1003524144
## 25341    3.0 1003523305
## 25346    3.0 1019787143
## 25347    3.0 1003524249
## 25350    3.0 1019787278
## 25351    3.0 1003524691
## 25353    3.0 1003523891
## 25356    3.0 1003523830
## 25357    3.0 1003523863
## 25358    2.0 1019787199
## 25359    3.0 1019787199
## 25362    3.0 1003523634
## 25363    2.0 1019787577
## 25365    3.0 1003523268
## 25366    3.0 1003523658
## 25367    2.0 1003523777
## 25369    3.0 1003524743
## 25370    3.0 1003523848
## 25373    3.0 1003524096
## 25377    2.0 1019787456
## 25379    3.0 1019787132
## 25380    3.0 1276205768
## 25382    1.5 1295458775
## 25384    2.5 1295458745
## 25387    1.0 1276205530
## 25390    2.0 1276205797
## 25391    3.5 1295458819
## 25395    1.0 1295458718
## 25397    3.5 1295460021
## 25400    2.5 1276205604
## 25402    1.5 1276205429
## 25408    2.0 1295460254
## 25412    3.0 1295459509
## 25416    2.0 1276205381
## 25417    3.0 1295459570
## 25418    3.0 1295459523
## 25423    3.0 1237164142
## 25432    2.5 1241388856
## 25434    3.5 1228072708
## 25435    3.0 1228071856
## 25436    2.0 1241225088
## 25437    3.0 1241225489
## 25441    1.0 1228072734
## 25443    3.0 1228072670
## 25445    3.0 1237164136
## 25447    3.5 1228072720
## 25448    3.0 1233449807
## 25450    2.0 1233450000
## 25451    3.5 1233448869
## 25452    3.0 1233449697
## 25454    3.5 1228072634
## 25455    3.5 1228072703
## 25459    2.5 1237164197
## 25460    3.5 1228073327
## 25465    3.5 1233458937
## 25467    3.5 1237164040
## 25469    2.5 1237164098
## 25470    2.5 1233449634
## 25473    3.5 1230417334
## 25475    2.5 1237164243
## 25478    3.0 1230361942
## 25480    3.5 1233449627
## 25481    3.5 1237164038
## 25485    3.5 1233458848
## 25486    3.0 1233449906
## 25487    3.5 1237160042
## 25492    3.5 1228072722
## 25494    3.5 1228072739
## 25495    3.5 1228072190
## 25496    3.0 1233458483
## 25500    0.5 1228083634
## 25502    0.5 1230417324
## 25503    3.5 1237163986
## 25504    3.5 1230417235
## 25505    3.5 1230417226
## 25506    2.0 1233449963
## 25508    3.5 1228073319
## 25511    3.0 1241225002
## 25512    3.5 1233459023
## 25516    3.5 1241388444
## 25523    2.5 1241225070
## 25525    3.5 1233516622
## 25526    3.5 1230417187
## 25527    0.5 1230417281
## 25530    2.5 1230417250
## 25532    3.5 1228071707
## 25534    3.5 1233448914
## 25535    2.5 1233458858
## 25538    3.5 1237164292
## 25540    3.5 1241415892
## 25543    2.5 1228071867
## 25544    3.0 1233449374
## 25546    3.5 1230360941
## 25547    3.0 1241931401
## 25556    1.0 1228072412
## 25561    2.5 1233515950
## 25562    3.5 1230417185
## 25564    2.5 1233516579
## 25568    3.5 1228071763
## 25571    2.5 1230360779
## 25572    3.5 1241388583
## 25573    3.5 1233449591
## 25574    3.0 1233449947
## 25583    3.0 1241388448
## 25588    3.5 1233459015
## 25589    3.0 1233447535
## 25590    0.5 1233459107
## 25591    3.0 1233449767
## 25592    3.0 1230417193
## 25596    2.5 1228073359
## 25598    3.0 1259371717
## 25601    2.0 1233450060
## 25602    3.5 1237164365
## 25607    1.0 1228072764
## 25609    1.0 1230417287
## 25613    3.5 1233516041
## 25614    1.5 1241388829
## 25616    3.0 1241388385
## 25617    2.5 1228083856
## 25623    1.0 1228073314
## 25625    3.5 1228073156
## 25626    2.5 1241388598
## 25631    2.5 1237159334
## 25633    3.0 1228083851
## 25634    0.5 1233515977
## 25637    2.0 1241388736
## 25638    3.0 1230416982
## 25639    3.0 1241388708
## 25640    3.5 1230361184
## 25641    3.5 1241415977
## 25642    3.0 1230360839
## 25643    3.0 1237159319
## 25644    3.5 1241225260
## 25645    0.5 1233516626
## 25647    3.5 1237163983
## 25648    3.0 1228072912
## 25649    3.5 1233447509
## 25650    3.5 1237161336
## 25651    3.5 1230362003
## 25652    1.0 1233515881
## 25656    3.5 1237163844
## 25658    3.0 1230360841
## 25661    3.0 1237162916
## 25663    2.0 1233449745
## 25665    3.5 1233516741
## 25666    3.5 1241388511
## 25668    3.5 1228073344
## 25671    3.0 1233449875
## 25673    3.0 1237162835
## 25674    2.0 1241388789
## 25675    3.5 1233515791
## 25676    3.5 1230361472
## 25678    3.5 1230361622
## 25679    2.5 1230361340
## 25681    3.5 1228072339
## 25682    3.5 1233449779
## 25683    3.5 1230360607
## 25684    3.0 1233459123
## 25685    3.0 1230416400
## 25692    3.5 1241388495
## 25694    1.5 1241388807
## 25695    3.0 1230362102
## 25696    3.5 1233516607
## 25698    3.5 1233516986
## 25700    1.0 1259371730
## 25701    2.0 1241388761
## 25704    2.0 1241225435
## 25706    3.5 1230361530
## 25708    3.0 1230361558
## 25716    2.5 1241388565
## 25717    3.5 1230361482
## 25720    3.5 1230416949
## 25721    3.5 1228071900
## 25722    3.5 1233449569
## 25723    3.0 1233516732
## 25725    3.0 1230360964
## 25726    3.5 1237163378
## 25731    3.0 1233449888
## 25734    2.5 1241388628
## 25736    2.5 1230361868
## 25738    3.0 1259371668
## 25739    3.0 1233516540
## 25743    3.5 1259371684
## 25748    3.0  841064493
## 25752    3.0  841063654
## 25753    3.0  841063606
## 25754    3.0  841063983
## 25756    3.0  841063743
## 25757    3.0  841064610
## 25761    3.0  841063511
## 25762    3.0  841064649
## 25763    3.0  841063654
## 25764    2.0  841063510
## 25765    3.0  841064943
## 25766    3.0  841064894
## 25767    2.0  841063568
## 25769    3.0  841063527
## 25770    3.0  841063568
## 25771    3.0  841064705
## 25772    3.0  841063901
## 25775    3.0  841063550
## 25778    2.0  841063527
## 25779    3.0  841063637
## 25781    3.0  841063550
## 25782    3.0  841063569
## 25785    3.0  841064111
## 25788    3.0  841064171
## 25790    3.0  841063623
## 25792    3.0  841064862
## 25793    3.0  841063623
## 25795    3.0  841063606
## 25796    3.0  841063637
## 25797    3.0  841063691
## 25798    3.0  841063586
## 25799    3.0  841063527
## 25805    3.0  841064089
## 25806    3.0  841064871
## 25808    3.0  841063691
## 25810    3.0  841064601
## 25811    3.0  841064758
## 25817    3.0  841063489
## 25823    3.0  841064202
## 25824    3.0  841064171
## 25826    3.0  841064493
## 25829    3.0  841063954
## 25830    3.0  841064551
## 25832    3.0  841064894
## 25833    3.0  841065073
## 25835    3.0  841065046
## 25836    3.0  841065032
## 25837    3.0  841065015
## 25839    3.0  841065015
## 25840    3.0  841065015
## 25841    3.0  841065046
## 25844    3.0  841065046
## 25845    3.0  841065064
## 25846    2.0  968095049
## 25847    1.0  968095225
## 25848    2.0  968094991
## 25851    2.0  968095164
## 25852    3.0  968095141
## 25856    1.0  968095189
## 25857    2.0  968095141
## 25858    1.0  968095281
## 25859    3.0  968095112
## 25861    3.0  968094971
## 25862    3.0  968093184
## 25863    3.0  968093248
## 25864    1.0  968094971
## 25870    2.0  968094876
## 25874    1.0  968094876
## 25875    2.0  968094946
## 25876    2.0  968092650
## 25877    1.0  968094946
## 25879    2.0  968093299
## 25880    3.0  968093403
## 25883    3.0  968094971
## 25884    2.0  968092938
## 25885    1.0  968093248
## 25886    3.0  968094946
## 25888    1.0  968092883
## 25890    3.0  968092318
## 25891    2.0  968095015
## 25892    2.0  968094991
## 25893    1.0  968092318
## 25895    2.0  968093085
## 25896    3.0  968092976
## 25897    1.0  968094971
## 25898    1.0  968092883
## 25899    1.0  968092913
## 25900    1.0  968093150
## 25901    3.0  968092976
## 25902    2.0  968092883
## 25903    3.0  968093248
## 25905    1.0  968095112
## 25906    1.0  968095189
## 25907    1.0  968095113
## 25908    1.0  968095049
## 25909    2.0  968092913
## 25910    2.0  968093210
## 25912    1.0  968093248
## 25914    2.0  968093248
## 25915    1.0  968095281
## 25916    3.0  968093274
## 25917    2.0  968092976
## 25918    1.0  968095164
## 25919    2.0  968093385
## 25920    3.0  968093150
## 25922    3.0  968093299
## 25923    3.0  968093049
## 25926    1.0  968093332
## 25927    1.0  968093403
## 25928    3.0  968093358
## 25930    3.0  968092795
## 25933    1.0  968093150
## 25934    3.0  968093049
## 25935    1.0  968093085
## 25936    1.0  968093150
## 25937    3.0  968092913
## 25938    2.0  968093299
## 25940    1.0  968092913
## 25942    3.0  968093385
## 25943    2.0  968092827
## 25944    1.0  968092883
## 25945    1.0  968092913
## 25946    3.0  968093211
## 25947    2.0  968093358
## 25948    2.0  968092747
## 25949    1.0  968092795
## 25950    3.0  968093358
## 25953    1.0  968093049
## 25954    1.0  968092938
## 25955    1.0  968093150
## 25956    1.0  968092938
## 25957    3.0  968092976
## 25959    2.0  968093385
## 25960    1.0  968093085
## 25962    2.0  968092318
## 25963    1.0  968092795
## 25964    2.0  968092827
## 25965    3.0  968092913
## 25967    2.0  968092976
## 25968    1.0  968094657
## 25969    2.0  968094603
## 25971    2.0  968093049
## 25973    1.0  968094682
## 25974    1.0  968094603
## 25976    2.0  968094632
## 25979    1.0  968092976
## 25981    2.0  968095113
## 25982    3.0  968093332
## 25983    3.0  968092795
## 25984    3.0  968092827
## 25985    1.0  968094657
## 25986    3.0  968094657
## 25987    3.0  968094657
## 25988    2.0  968094682
## 25989    1.0  968092976
## 25990    2.0  968093049
## 25991    2.0  968095024
## 25992    3.0  968092318
## 25993    2.0  968094632
## 25995    3.0  968093049
## 25996    1.0  968093049
## 25998    3.0  968093211
## 26000    2.0  968093085
## 26001    1.0  968093525
## 26004    3.0  968094971
## 26005    2.0  968095141
## 26006    2.0  968095225
## 26007    3.0  968095257
## 26008    1.0  968094946
## 26009    3.0  968093403
## 26011    2.0  968095281
## 26012    1.0  968094946
## 26013    3.0  968095015
## 26014    1.0  968095049
## 26015    3.0  968094902
## 26016    2.0  968095189
## 26017    2.0  968095113
## 26019    2.0  968093525
## 26021    3.0  968095141
## 26031    3.0  975693159
## 26034    3.0  975694137
## 26036    3.0  975694955
## 26039    3.0  975693787
## 26045    3.0  975695042
## 26047    3.0  975695345
## 26050    3.0  975694648
## 26052    3.0  975693352
## 26059    3.0  975695150
## 26060    3.0  975694759
## 26063    3.0  975693657
## 26065    3.0  975694309
## 26066    3.0  975694030
## 26072    2.0  975693352
## 26074    3.0  978110441
## 26078    3.0  975693657
## 26081    3.0  978110391
## 26082    2.0  839925608
## 26083    2.0  839925667
## 26084    3.0  839925667
## 26085    3.0  839925631
## 26087    2.0  839925540
## 26089    3.0  839925540
## 26090    3.0  839925608
## 26091    3.0  839925608
## 26092    2.0  839925563
## 26093    2.0  839925587
## 26098    1.0  839925540
## 26099    3.0  839925540
## 26101    3.0  839925515
## 26102    2.0  839925587
## 26103    3.0  839925667
## 26105    3.0  839925631
## 26106    2.0  839925540
## 26108    2.0  839925515
## 26110    2.0  839925563
## 26112    3.0  843633899
## 26114    3.0  843633926
## 26115    3.0  843634056
## 26116    3.0  843633842
## 26117    3.0  843634125
## 26119    3.0  843634056
## 26120    3.0  843633946
## 26121    2.0  843634228
## 26122    3.0  843633784
## 26123    2.0  843633809
## 26126    3.0  843634056
## 26129    3.0  843633696
## 26133    3.0  843633967
## 26134    2.0  843634211
## 26138    3.0  843633842
## 26139    3.0  843634211
## 26140    2.0  843634385
## 26141    3.0  843633865
## 26142    3.0  843633612
## 26144    3.0  843633747
## 26145    2.0  843634025
## 26146    3.0  843633842
## 26147    3.0  843634419
## 26149    3.0  843634025
## 26154    3.0  843633926
## 26155    1.0  843634056
## 26160    3.0  843633612
## 26161    3.0  843633696
## 26164    2.0  843633926
## 26165    3.0  843634105
## 26171    3.0  971215907
## 26185    3.0  971215428
## 26186    3.0  971215449
## 26187    3.0  971215624
## 26194    3.0  971216851
## 26197    3.0  971216596
## 26206    3.0  971217336
## 26222    3.0  971215982
## 26226    3.0  971216680
## 26228    3.0  971215849
## 26232    3.0  848098383
## 26234    3.0  848098576
## 26235    3.0  848098479
## 26238    3.0  848098528
## 26239    3.0  848098576
## 26240    3.0  848098427
## 26242    3.0  848098592
## 26243    3.0  848098445
## 26244    3.0  848098500
## 26246    3.0  848098284
## 26248    3.0  848098235
## 26249    3.0  848098310
## 26250    3.0  848098264
## 26251    3.0  848098173
## 26253    3.0  848098427
## 26256    3.0  848098205
## 26258    3.0  848098576
## 26262    3.0  848098555
## 26263    3.0  848098339
## 26265    3.0  848098405
## 26266    3.0  848098445
## 26268    3.0  848098464
## 26269    3.0  848098310
## 26270    3.0  848098205
## 26271    3.0  848098264
## 26272    3.0  848098339
## 26274    3.0  848098555
## 26275    3.0  848098362
## 26279    3.0  848098362
## 26283    3.0  977756074
## 26285    3.0  976288703
## 26286    2.0  975419204
## 26287    2.0  975416589
## 26288    3.0  975418995
## 26289    1.0  976289312
## 26290    3.0  975417183
## 26291    2.0  977743492
## 26292    1.0  977724281
## 26293    3.0  977743614
## 26295    1.0  975418855
## 26296    2.0  978700402
## 26297    1.0  975419204
## 26299    2.0  977724593
## 26300    2.0  975416759
## 26302    3.0  977755886
## 26303    3.0  975417426
## 26304    3.0  977723922
## 26305    2.0  975418810
## 26306    3.0  977725027
## 26307    1.0  976288108
## 26308    3.0  975418706
## 26309    2.0  976289373
## 26310    3.0  975418706
## 26311    3.0  975417396
## 26312    2.0  975419267
## 26313    3.0  975418616
## 26314    1.0  975419407
## 26315    1.0  975419174
## 26316    3.0  978700358
## 26317    2.0  977724768
## 26319    3.0  976289176
## 26321    2.0  975419174
## 26323    3.0  977743659
## 26324    3.0  975416263
## 26325    2.0  976289373
## 26326    3.0  975416970
## 26329    3.0  975748393
## 26330    3.0  976289451
## 26334    2.0  978700358
## 26335    2.0  975419080
## 26336    1.0  975416589
## 26338    3.0  977723786
## 26339    3.0  978700526
## 26340    3.0  978700555
## 26342    3.0  977743568
## 26343    2.0  976288256
## 26347    3.0  976288882
## 26348    2.0  976288064
## 26351    2.0  976288703
## 26357    3.0  977755609
## 26358    3.0  977755742
## 26359    3.0  976287942
## 26360    3.0  977723565
## 26361    2.0  975763311
## 26364    3.0  977755525
## 26366    3.0  977754744
## 26368    3.0  977754812
## 26370    3.0  978700625
## 26371    1.0  975417065
## 26372    3.0  975416496
## 26374    3.0  976288189
## 26375    3.0  976289149
## 26378    3.0  977743706
## 26380    2.0  977755782
## 26381    3.0  975416496
## 26382    2.0  975418661
## 26383    3.0  977754744
## 26385    1.0  976289451
## 26386    1.0  975417321
## 26387    3.0  976287996
## 26389    3.0  977724593
## 26392    3.0  976288064
## 26393    3.0  975416836
## 26395    3.0  975416922
## 26399    3.0  977723922
## 26406    3.0  976288931
## 26407    2.0  977743531
## 26409    3.0  977754695
## 26412    3.0  976288143
## 26413    3.0  975417022
## 26414    2.0  975416922
## 26421    3.0  976288064
## 26422    2.0  976288779
## 26423    3.0  977723884
## 26425    3.0  977743659
## 26426    2.0  976288515
## 26427    3.0  975416263
## 26429    3.0  976288228
## 26431    2.0  975763348
## 26438    3.0  975417065
## 26439    2.0  976288189
## 26441    3.0  977755058
## 26443    3.0  976288703
## 26444    3.0  975418888
## 26446    1.0  975417321
## 26447    2.0  975418706
## 26448    3.0  975417247
## 26449    3.0  975418661
## 26451    3.0  978700656
## 26453    3.0  975418855
## 26454    3.0  977750746
## 26456    2.0  976289485
## 26458    2.0  975418810
## 26459    2.0  975416759
## 26460    1.0  975419080
## 26461    3.0  975418810
## 26463    2.0  976288992
## 26464    3.0  975418810
## 26465    2.0  975416664
## 26466    3.0  976289064
## 26469    1.0  975419245
## 26470    3.0  976289402
## 26471    1.0  975419174
## 26473    3.0  977743706
## 26474    3.0  977754632
## 26476    3.0  977750706
## 26477    3.0  977755525
## 26478    3.0  978700555
## 26479    2.0  977750706
## 26481    3.0  975416970
## 26482    1.0  975417247
## 26483    3.0  977750615
## 26484    1.0  977755569
## 26487    3.0  977755609
## 26488    2.0  977755058
## 26489    2.0  976288779
## 26490    1.0  976288931
## 26491    1.0  975417350
## 26492    1.0  975419021
## 26493    1.0  978700358
## 26494    3.0  975418810
## 26497    2.0  975416545
## 26498    3.0  977724281
## 26501    2.0  975416616
## 26503    3.0  977755671
## 26504    3.0  977755165
## 26505    3.0  977743614
## 26506    2.0  975763348
## 26507    2.0  978700726
## 26508    2.0  978700726
## 26509    2.0  975419107
## 26510    1.0  975416545
## 26512    3.0  975416589
## 26513    3.0  976289269
## 26514    2.0  976289485
## 26515    2.0  976289269
## 26516    3.0  977724281
## 26517    3.0  975417321
## 26518    3.0  976288882
## 26519    3.0  977755058
## 26520    2.0  976289485
## 26521    3.0  978700681
## 26522    3.0  975748444
## 26523    3.0  976289095
## 26524    2.0  976289312
## 26525    2.0  975416496
## 26528    3.0  975416545
## 26529    3.0  975417183
## 26530    3.0  977755480
## 26532    3.0  976288846
## 26533    3.0  977724034
## 26534    3.0  975417022
## 26535    2.0  977756127
## 26537    3.0  976289241
## 26538    3.0  977755569
## 26539    3.0  977755058
## 26540    1.0  978700434
## 26542    3.0  975417426
## 26544    3.0  976288743
## 26546    3.0  975419080
## 26547    3.0  975418941
## 26549    1.0  975419204
## 26550    1.0  975419407
## 26551    1.0  975419141
## 26552    1.0  975417247
## 26553    3.0  976289485
## 26554    1.0  975419174
## 26555    1.0  975419367
## 26556    1.0  975419448
## 26557    2.0  975418763
## 26558    2.0  976289241
## 26559    3.0  975416589
## 26560    1.0  975419292
## 26561    2.0  975418973
## 26562    3.0  976289149
## 26563    3.0  975419141
## 26564    2.0  975417247
## 26565    3.0  975418661
## 26567    3.0  975419049
## 26568    3.0  975419049
## 26569    3.0  975418941
## 26570    1.0  975419351
## 26571    1.0  977724492
## 26572    3.0  976288143
## 26573    3.0  975418973
## 26574    3.0  975418661
## 26575    3.0  975416589
## 26576    2.0  975417396
## 26577    2.0  975418855
## 26578    3.0  978700656
## 26580    2.0  975748444
## 26581    1.0  975419351
## 26582    2.0  976289451
## 26583    1.0  978700274
## 26584    2.0  978700434
## 26585    1.0  975419049
## 26586    3.0  977743492
## 26587    2.0  977755058
## 26588    3.0  976289345
## 26589    3.0  976288883
## 26590    2.0  975418855
## 26591    3.0  976289451
## 26592    3.0  977723661
## 26594    2.0  975416496
## 26595    2.0  977723528
## 26596    3.0  975418763
## 26597    3.0  978700555
## 26599    3.0  976288189
## 26600    3.0  976289064
## 26603    2.0  976288779
## 26604    3.0  975763311
## 26606    1.0  976289027
## 26607    3.0  977755165
## 26608    3.0  978700625
## 26610    2.0  976289241
## 26611    3.0  975417022
## 26612    3.0  975417105
## 26613    3.0  975416496
## 26614    3.0  978700598
## 26615    2.0  975418661
## 26616    2.0  977724465
## 26618    3.0  977756127
## 26619    3.0  975418728
## 26620    2.0  978700402
## 26621    3.0  977725295
## 26626    1.0  976289095
## 26627    2.0  976289149
## 26628    3.0  976288846
## 26631    2.0  976288992
## 26632    3.0  976288649
## 26634    3.0  978700307
## 26637    3.0  977750746
## 26638    2.0  975415188
## 26639    3.0  977750831
## 26641    3.0  975418706
## 26642    3.0  977750661
## 26643    3.0  977755569
## 26644    3.0  977754632
## 26645    3.0  977750706
## 26646    2.0  977755525
## 26648    1.0  975417146
## 26649    3.0  977756127
## 26650    3.0  977743706
## 26651    3.0  975417321
## 26653    3.0  977743614
## 26654    3.0  976289027
## 26655    3.0  976289345
## 26656    1.0  976289118
## 26657    2.0  976289402
## 26659    3.0  975419327
## 26660    3.0  977754867
## 26661    3.0  976288064
## 26664    3.0  977743659
## 26665    2.0  977750706
## 26666    2.0  977755742
## 26667    3.0  977723728
## 26668    2.0  976288228
## 26669    3.0  976288703
## 26671    2.0  976289241
## 26673    3.0  975417065
## 26675    1.0  976288965
## 26676    1.0  977724066
## 26677    1.0  975419431
## 26679    3.0  975419141
## 26680    3.0  976289176
## 26681    3.0  976288550
## 26682    2.0  977755742
## 26686    3.0  976288703
## 26687    3.0  975763408
## 26688    3.0  977754867
## 26690    3.0  976288992
## 26691    3.0  976288743
## 26692    3.0  975418616
## 26693    1.0  976288965
## 26694    3.0  975417105
## 26695    3.0  977724314
## 26696    3.0  976288437
## 26697    3.0  977754974
## 26698    3.0  978700598
## 26699    2.0  976289373
## 26700    3.0  975417247
## 26702    1.0  976289402
## 26703    1.0  976288965
## 26705    3.0  975418810
## 26706    3.0  975417146
## 26707    3.0  975419174
## 26709    3.0  977750746
## 26711    3.0  975419141
## 26712    2.0  975418941
## 26713    2.0  975763348
## 26714    2.0  977724170
## 26715    3.0  975417183
## 26716    1.0  975419431
## 26717    1.0  977724346
## 26718    3.0  977750661
## 26719    3.0  977723922
## 26720    3.0  975417277
## 26721    3.0  977743492
## 26722    1.0  977724206
## 26723    3.0  975748444
## 26724    3.0  975763148
## 26725    2.0  975418888
## 26726    3.0  976289345
## 26727    3.0  975417396
## 26728    2.0  977743614
## 26729    3.0  975417022
## 26730    2.0  975419224
## 26731    3.0  975415696
## 26734    3.0  976289064
## 26735    1.0  975416759
## 26736    3.0  975415658
## 26738    3.0  976288108
## 26739    1.0  978700227
## 26740    3.0  975416174
## 26742    3.0  975415619
## 26743    2.0  978700114
## 26744    3.0  975415799
## 26745    1.0  975418973
## 26746    2.0  978700170
## 26747    1.0  975415731
## 26749    3.0  975417247
## 26750    2.0  978700199
## 26751    3.0  978700170
## 26752    3.0  978700199
## 26753    2.0  975416141
## 26754    2.0  978700170
## 26755    2.0  978700227
## 26757    2.0  978700114
## 26758    3.0  978700227
## 26759    2.0  978700114
## 26760    2.0  978700170
## 26761    2.0  978700170
## 26762    2.0  978700199
## 26763    3.0  978700135
## 26765    2.0  977743741
## 26766    3.0  976288143
## 26771    2.0  958511618
## 26772    3.0  958511618
## 26776    2.0  959224101
## 26779    3.0  959224001
## 26780    2.0  958511618
## 26784    3.0  959223885
## 26785    3.0  959223827
## 26790    3.0  959224001
## 26791    3.0  959224101
## 26794    3.0  959223757
## 26800    2.0  959223636
## 26801    2.0  958511618
## 26804    3.0  959224062
## 26809    3.0  958511826
## 26812    2.0  958511979
## 26813    3.0  958511889
## 26817    3.0  958511889
## 26818    3.0  958511826
## 26826    3.0  958511889
## 26828    3.0  958511738
## 26829    3.0  959224101
## 26831    1.0  959224101
## 26833    3.0  958511979
## 26835    2.0  958511949
## 26837    2.0  959223945
## 26838    2.0  959223469
## 26839    2.0  959223363
## 26848    2.0  959223506
## 26850    3.0  959223271
## 26855    3.0  959223406
## 26856    1.0  959223406
## 26857    1.0  959223406
## 26858    3.0  959223406
## 26864    3.0  959223183
## 26866    3.0  975429339
## 26868    2.0  975428980
## 26869    3.0  975429524
## 26871    3.0  975428956
## 26872    3.0  975429132
## 26880    3.0  975429568
## 26885    3.0  975429133
## 26886    2.0  975429619
## 26889    3.0  975429373
## 26901    3.0  975429391
## 26911    3.0  975429107
## 26912    3.0  975429481
## 26913    3.0  975429453
## 26917    1.0  975428980
## 26921    1.0  975429339
## 26922    3.0  975429133
## 26926    3.0  975429373
## 26927    3.0  975429317
## 26930    3.5 1068822866
## 26934    1.0 1068822226
## 26936    2.0 1068822632
## 26938    3.5 1068822207
## 26939    2.0 1068823363
## 26951    3.5 1068823099
## 26952    2.0 1068822696
## 26954    3.0 1068822233
## 26955    3.0 1068822980
## 26957    2.0 1068822200
## 26958    2.5 1068822968
## 26963    2.5 1068822148
## 26965    2.5 1068823216
## 26966    0.5 1068822629
## 26968    3.0 1068823218
## 26969    3.5 1068822174
## 26971    1.5 1068822131
## 26974    3.5 1068823036
## 26975    3.5 1068822701
## 26981    3.0 1068823004
## 26982    2.0 1068822719
## 26984    3.5 1068822933
## 26985    3.0 1068822149
## 26990    1.5 1068823056
## 26991    2.5 1068823126
## 26993    1.5 1068823188
## 26997    1.0 1068822709
## 26998    3.0 1068823111
## 27001    2.0 1068823353
## 27002    2.0 1068823183
## 27003    3.0 1068822990
## 27005    2.5 1214653475
## 27008    3.5 1214653088
## 27010    3.5 1214668938
## 27017    3.5 1214654817
## 27018    3.5 1214914943
## 27025    3.5 1344870428
## 27027    3.5 1219674129
## 27028    3.5 1214914983
## 27030    3.5 1214913846
## 27033    0.5 1214653017
## 27037    3.5 1398939437
## 27038    3.5 1214914642
## 27041    3.5 1214914176
## 27042    3.0 1214912828
## 27043    3.5 1214653527
## 27048    1.5 1214653422
## 27050    3.5 1214912760
## 27053    3.5 1214912898
## 27059    3.5 1214654850
## 27062    3.0 1214668969
## 27064    3.0 1399348624
## 27065    1.0 1214653024
## 27067    3.0 1214914617
## 27069    3.5 1214916040
## 27072    2.5 1214653125
## 27077    2.5 1214914513
## 27079    3.0 1214652862
## 27080    3.5 1232588864
## 27082    3.0 1214915000
## 27083    3.0 1214914523
## 27084    3.0 1214652997
## 27091    3.5 1214914147
## 27093    3.0 1246110925
## 27096    3.5 1214653082
## 27101    3.5 1232588784
## 27102    3.5 1214914653
## 27104    2.5 1214652894
## 27105    3.5 1242920789
## 27108    3.0 1214914182
## 27118    3.0 1242920809
## 27120    3.0 1228445275
## 27122    2.5 1214916659
## 27124    3.0 1214653145
## 27125    2.5 1214653104
## 27127    3.5 1214654864
## 27128    3.0 1214653162
## 27130    3.5 1244632094
## 27132    3.5 1242920817
## 27133    3.5 1399348891
## 27134    2.5 1244632077
## 27135    3.0 1242921062
## 27136    3.0 1244632053
## 27140    3.5 1244632046
## 27142    3.0 1244632038
## 27143    3.5 1244632033
## 27144    1.5 1242925353
## 27147    3.5 1214916646
## 27149    3.5 1214654473
## 27150    3.0 1214912934
## 27151    3.5 1252359427
## 27152    3.5 1214913137
## 27157    3.0 1214669163
## 27158    2.5 1214654885
## 27160    3.5 1214654560
## 27161    3.0 1214669044
## 27162    3.5 1244319714
## 27163    3.0 1242755992
## 27165    1.0 1214653280
## 27166    3.5 1228344928
## 27167    3.5 1215032354
## 27169    3.0 1399348760
## 27172    2.5 1214654894
## 27173    3.5 1309720217
## 27175    0.5 1214653717
## 27176    3.5 1230436803
## 27177    3.5 1309732737
## 27178    3.5 1215033850
## 27180    2.5 1214654811
## 27181    2.5 1214669134
## 27182    3.5 1242921088
## 27185    3.0 1242943352
## 27186    2.0 1214654439
## 27187    3.0 1214654799
## 27188    1.5 1242925370
## 27190    2.5 1242925364
## 27191    2.0 1214654443
## 27193    3.0 1219265793
## 27194    2.5 1244319357
## 27195    1.5 1244319344
## 27197    3.5 1309733825
## 27202    3.5 1214912837
## 27204    3.5 1214669042
## 27213    3.0 1229285008
## 27216    3.5 1317045321
## 27217    3.5 1214916710
## 27218    3.0 1242517942
## 27219    3.5 1214669077
## 27221    3.0 1304737195
## 27222    3.5 1219674675
## 27223    3.5 1214654578
## 27225    3.0 1228344863
## 27227    2.5 1230436250
## 27230    3.5 1214913769
## 27233    3.5 1228344915
## 27239    3.5 1228446268
## 27240    3.0 1215032108
## 27241    3.0 1242925102
## 27243    3.0 1242925393
## 27245    3.5 1245103026
## 27246    3.0 1230436330
## 27247    3.5 1228543860
## 27248    3.5 1269659223
## 27249    3.0 1400971299
## 27252    3.0 1244317633
## 27255    3.5 1309732614
## 27256    2.5 1244317650
## 27258    3.0 1252238104
## 27259    3.5 1256387894
## 27260    3.5 1214654749
## 27265    3.5 1214916053
## 27266    3.5 1214654411
## 27268    2.5 1244317641
## 27269    3.5 1242942789
## 27272    3.0 1256388498
## 27275    3.0 1214913351
## 27277    3.5 1227994813
## 27279    2.0 1214654359
## 27280    3.5 1228073545
## 27281    3.5 1242925340
## 27282    1.5 1214653266
## 27283    3.5 1248801345
## 27284    3.5 1317123305
## 27285    3.5 1238361169
## 27286    3.5 1317123283
## 27287    3.5 1231600156
## 27288    3.5 1230436294
## 27289    3.5 1252359503
## 27292    3.5 1256387874
## 27293    2.0 1256388597
## 27294    3.5 1248801342
## 27296    3.0 1256388477
## 27297    3.5 1340544965
## 27298    3.5 1317045887
## 27299    2.0 1256251935
## 27300    2.0 1256251907
## 27303    3.5 1309387306
## 27304    3.5 1309730663
## 27305    3.5 1256251926
## 27306    3.5 1265915291
## 27307    3.5 1256251923
## 27309    3.5 1263236080
## 27310    2.0 1256251949
## 27311    3.5 1265915315
## 27312    3.5 1256388120
## 27313    3.5 1258846542
## 27314    3.5 1400971273
## 27317    3.5 1264729899
## 27319    3.5 1260228448
## 27320    3.0 1272842839
## 27322    3.5 1317509465
## 27323    3.5 1268000977
## 27324    3.5 1283388975
## 27325    3.0 1269640369
## 27326    3.5 1282429810
## 27328    3.5 1272841758
## 27329    3.0 1283388485
## 27330    3.5 1283389030
## 27331    3.0 1283387901
## 27332    3.5 1310045044
## 27334    3.0 1310045181
## 27336    3.0 1283389041
## 27338    3.5 1317045882
## 27339    3.5 1309744461
## 27342    3.5 1282419759
## 27344    3.5 1310044703
## 27346    3.5 1286975960
## 27347    3.5 1340544998
## 27348    3.0 1286976021
## 27350    3.5 1309732970
## 27352    3.5 1310044387
## 27353    3.0 1291652381
## 27355    3.5 1309387345
## 27358    3.5 1309194331
## 27359    3.5 1309194348
## 27360    3.0 1309194435
## 27362    3.5 1310044279
## 27366    3.5 1309194419
## 27367    2.5 1303586336
## 27368    3.5 1309194343
## 27369    3.0 1317045017
## 27370    3.5 1309387767
## 27371    3.5 1309194365
## 27372    3.5 1309194439
## 27373    3.5 1304654795
## 27374    3.5 1304654784
## 27375    3.5 1309696063
## 27379    3.5 1309194324
## 27385    3.5 1314452550
## 27387    3.5 1398939852
## 27388    3.5 1317045456
## 27389    3.5 1320000245
## 27390    3.5 1320000267
## 27391    3.5 1320357301
## 27394    3.5 1327437812
## 27395    3.5 1399348480
## 27396    3.5 1327437822
## 27399    3.5 1327437817
## 27400    3.5 1340543452
## 27401    3.5 1340543463
## 27403    3.5 1340543440
## 27405    3.5 1398939563
## 27416    3.5 1399349123
## 27419    3.5 1401463668
## 27422    3.5 1398939846
## 27423    3.5 1398939907
## 27424    3.5 1398939855
## 27425    2.0 1403615167
## 27426    3.0 1437932719
## 27427    3.5 1457721108
## 27429    3.5 1438019199
## 27432    2.0 1438020091
## 27436    2.0 1438020132
## 27437    3.0 1438020001
## 27438    3.0 1457721047
## 27439    3.5 1438019501
## 27441    3.0 1438019776
## 27442    3.5 1438019480
## 27445    3.5 1438019530
## 27446    1.5 1438020304
## 27448    1.0 1438022848
## 27450    3.5 1438019541
## 27451    2.5 1457720765
## 27453    0.5 1438020533
## 27454    1.0 1438020434
## 27456    3.0 1438026859
## 27457    1.5 1438019794
## 27463    1.5 1457720512
## 27464    2.5 1438023863
## 27465    2.5 1438024193
## 27466    3.0 1438019687
## 27468    2.0 1438020073
## 27469    3.5 1438019190
## 27470    2.5 1438024517
## 27474    3.0 1438019694
## 27475    2.0 1438025229
## 27476    1.5 1438025258
## 27477    3.0 1438024391
## 27484    0.5 1457720591
## 27485    2.5 1438024000
## 27486    3.5 1438025534
## 27487    3.0 1438019650
## 27493    3.0 1438019826
## 27494    1.5 1438022681
## 27495    1.5 1438020327
## 27496    1.0 1438023546
## 27497    1.5 1438024902
## 27498    2.5 1438019988
## 27501    3.0 1438021867
## 27503    3.0 1438019677
## 27505    3.0 1438021130
## 27506    3.0 1438019610
## 27507    3.0 1438021228
## 27508    0.5 1438020482
## 27509    2.5 1438021572
## 27510    3.0 1438021425
## 27511    1.0 1438022765
## 27512    2.0 1438020041
## 27513    1.0 1438020390
## 27514    3.0 1438019702
## 27515    3.0 1438019663
## 27519    3.5 1438019300
## 27521    3.0 1438021180
## 27522    2.0 1438020103
## 27523    3.5 1438019437
## 27524    3.5 1438021327
## 27525    2.5 1438021196
## 27526    0.5 1438020494
## 27527    2.5 1438023811
## 27528    3.0 1438019763
## 27529    2.5 1438019912
## 27530    2.5 1438019883
## 27533    2.5 1438021417
## 27541    3.5 1438019427
## 27543    1.5 1438020284
## 27544    1.0 1438024335
## 27545    3.5 1438019509
## 27546    2.5 1438021323
## 27548    3.5 1438019420
## 27550    2.0 1438019621
## 27556    2.5 1438019902
## 27557    3.5 1438022656
## 27558    1.0 1437933444
## 27559    3.0 1438023475
## 27561    3.0 1437934203
## 27562    3.0 1438019736
## 27563    3.5 1438019343
## 27565    2.5 1438021370
## 27567    2.5 1438021349
## 27568    3.5 1438019285
## 27569    2.5 1438019943
## 27570    1.5 1438020315
## 27571    3.5 1437933517
## 27574    1.0 1438020444
## 27575    3.5 1438019161
## 27576    3.0 1438021109
## 27577    3.0 1438019594
## 27578    3.5 1438019333
## 27579    2.0 1438020152
## 27580    2.0 1438020062
## 27581    1.0 1438019854
## 27582    3.5 1459700798
## 27583    2.5 1438021386
## 27584    2.5 1438019979
## 27585    2.5 1438020017
## 27587    2.5 1438019970
## 27588    3.0 1438019744
## 27589    3.0 1438019713
## 27590    2.0 1438026597
## 27591    1.0 1438020362
## 27593    3.5 1438021715
## 27594    3.5 1438019312
## 27595    3.5 1438019394
## 27596    3.0 1438019808
## 27598    3.0 1438019273
## 27599    3.5 1438019470
## 27600    3.0 1438019838
## 27601    1.0 1438020402
## 27604    1.5 1438023151
## 27605    3.5 1438019237
## 27607    3.0 1438019818
## 27610    1.0 1438020422
## 27611    3.5 1438021635
## 27613    2.0 1438020116
## 27615    2.0 1438021378
## 27616    0.5 1438020523
## 27624    1.5 1457720604
## 27625    2.5 1438021457
## 27626    3.5 1451158627
## 27627    1.0 1438020378
## 27630    2.5 1438020010
## 27632    2.0 1438020183
## 27633    1.5 1451152938
## 27634    3.0 1438021219
## 27635    3.5 1438019495
## 27637    3.5 1438019382
## 27638    3.5 1457720434
## 27641    1.0 1438021278
## 27644    2.0 1438020053
## 27645    3.5 1438020823
## 27646    3.5 1457720880
## 27647    3.0 1457727550
## 27648    3.5 1438019548
## 27649    1.5 1460208561
## 27651    3.5 1438024241
## 27653    3.5 1438019406
## 27654    3.5 1438019180
## 27656    3.0 1451143950
## 27658    1.5 1438020234
## 27664    3.0 1459713788
## 27665    2.0 1438026480
## 27666    3.5 1457720927
## 27667    3.0 1438019599
## 27669    2.5 1457720226
## 27670    3.5 1438019151
## 27671    3.5 1438022807
## 27672    3.0 1438022132
## 27674    3.5 1438025417
## 27678    1.5 1438020227
## 27686    3.0 1110498315
## 27691    3.0 1110421287
## 27692    1.0 1110421168
## 27705    3.0 1110498312
## 27730    3.0 1110498492
## 27735    3.0 1110498479
## 27736    3.0 1110498317
## 27739    3.0 1110498433
## 27740    3.0 1110498308
## 27742    2.0 1110421795
## 27760    3.0 1110498495
## 27769    1.0 1110421747
## 27774    3.0 1110497605
## 27779    0.5 1110421498
## 27786    3.0 1110497762
## 27791    0.5 1110421623
## 27800    3.0 1110498310
## 27804    2.0 1046145872
## 27805    2.0 1046144383
## 27816    3.0 1046144150
## 27822    2.0 1046144283
## 27826    3.0 1046146457
## 27830    2.0 1046145496
## 27831    2.0 1046146097
## 27832    3.0 1046145518
## 27833    3.0 1046144576
## 27840    3.0 1046144087
## 27841    3.0 1046145724
## 27844    2.0 1046145613
## 27848    3.0 1046145766
## 27851    2.0 1046145766
## 27852    3.0 1046145833
## 27856    3.0 1046144310
## 27857    2.0 1046146200
## 27860    3.0 1046144468
## 27862    3.0 1046146054
## 27864    2.0 1046144283
## 27866    2.0 1046145496
## 27867    3.0 1046145833
## 27871    3.0 1046145766
## 27873    3.0 1046144059
## 27874    3.0 1046146311
## 27875    1.0 1046144205
## 27877    3.5 1226321189
## 27885    2.5 1226321225
## 27886    3.5 1226321147
## 27890    3.5 1226321950
## 27892    3.5 1226321471
## 27893    2.5 1226321160
## 27896    2.0 1226321078
## 27898    3.0 1226321175
## 27900    3.5 1226321071
## 27901    2.5 1226321194
## 27907    3.0 1226321171
## 27910    3.5 1226321658
## 27912    3.5 1226321680
## 27915    2.5 1096531266
## 27916    2.5 1096531212
## 27917    3.0 1096531207
## 27918    1.5 1096531189
## 27920    2.5 1096531463
## 27921    3.0 1096531447
## 27923    3.5 1096531281
## 27924    2.0 1096531241
## 27927    2.5 1096531246
## 27928    3.5 1096531218
## 27929    3.0 1096531273
## 27933    3.0 1096531254
## 27936    3.5 1096531277
## 27937    0.5 1096531676
## 27938    1.0 1096531631
## 27940    3.0 1096531444
## 27943    3.0 1096531437
## 27946    3.5 1442136824
## 27949    3.0 1442148308
## 27950    3.0 1442136902
## 27951    2.5 1442148305
## 27953    2.5 1442148495
## 27954    3.5 1442887009
## 27955    1.0 1442148501
## 27957    1.0 1442146219
## 27959    3.0 1442148413
## 27960    2.5 1442886992
## 27961    1.0 1442146198
## 27962    3.0 1442136904
## 27964    3.5 1442137496
## 27965    3.0 1442148354
## 27966    2.0 1442137072
## 27967    3.5 1442137491
## 27968    1.0 1442137206
## 27971    3.5 1442148357
## 27973    2.5 1442886844
## 27976    2.5 1442890213
## 27977    3.0 1442886871
## 27981    3.0 1442887018
## 27983    3.5 1442886850
## 27985    3.0 1442890297
## 27988    3.5 1442886842
## 27989    3.0 1442890231
## 27990    3.0 1442890292
## 27993    3.5 1442148664
## 27995    0.5 1442152615
## 27996    3.5 1442152212
## 27997    2.5 1442152533
## 27999    3.5 1442152274
## 28001    3.0 1442152434
## 28002    3.0 1442152668
## 28004    3.0 1442152295
## 28007    3.0 1442152221
## 28008    2.5 1442152658
## 28009    2.0 1442152205
## 28010    3.0 1442152464
## 28011    3.5 1442152387
## 28015    0.5 1442152372
## 28016    3.5 1442152678
## 28017    1.5 1442152333
## 28018    2.0 1442152633
## 28022    2.5 1442152486
## 28023    0.5 1442152472
## 28024    1.5 1442152594
## 28025    2.5 1442152349
## 28027    3.5 1442152326
## 28029    1.5 1442152495
## 28031    2.5 1442152542
## 28032    3.5 1442152374
## 28033    2.5 1442152291
## 28035    3.5 1442152596
## 28037    2.0 1442152448
## 28038    3.0 1442152355
## 28039    0.5 1442152600
## 28040    2.5 1442152210
## 28041    3.5 1442137089
## 28042    3.0 1442146184
## 28044    0.5 1442152465
## 28045    3.0 1442152621
## 28046    3.5 1442152179
## 28051    3.5 1442152483
## 28054    3.5 1442152421
## 28056    3.5 1442152262
## 28057    3.0 1442152247
## 28058    3.0 1442152396
## 28059    2.0 1442152403
## 28061    2.0 1442152480
## 28062    1.0 1442152636
## 28065    2.5 1442137180
## 28069    3.5 1442152485
## 28070    3.0 1442152494
## 28071    0.5 1442152640
## 28072    3.5 1442152645
## 28077    3.5 1442152190
## 28080    2.5 1442152301
## 28082    3.5 1442152378
## 28084    3.5 1442152604
## 28085    3.0 1442152418
## 28086    3.5 1442152619
## 28087    3.0 1442136802
## 28091    3.0 1442152264
## 28093    3.0 1442152527
## 28094    3.0 1442152545
## 28095    3.5 1442152339
## 28096    3.5 1442137080
## 28097    2.5 1442152312
## 28098    3.0 1442152441
## 28099    3.5 1442152507
## 28100    3.5 1442152303
## 28101    3.5 1442152277
## 28102    3.0 1442152587
## 28103    2.0 1442152590
## 28104    3.0 1442152310
## 28106    1.0 1442152368
## 28110    3.5 1442148329
## 28113    0.5 1442152558
## 28114    2.5 1442890229
## 28115    3.0 1442137446
## 28116    3.0 1442890222
## 28117    3.5 1442890281
## 28119    3.0 1442148370
## 28120    2.0 1442136916
## 28122    2.0 1442137442
## 28125    3.5 1442887011
## 28128    3.0 1442137155
## 28132    3.0 1442887273
## 28134    3.0 1442890241
## 28136    3.0 1442886996
## 28137    3.0 1442137370
## 28143    3.5 1442137390
## 28144    1.5 1442137409
## 28147    3.0 1442137383
## 28148    1.5 1442137397
## 28149    3.5 1442137354
## 28150    2.0 1442137400
## 28151    3.0  900784430
## 28152    3.0  900784342
## 28153    2.0  900784430
## 28156    2.0  900784384
## 28160    3.0  900784342
## 28163    3.0  900784097
## 28164    3.0  900784317
## 28166    3.0  900784282
## 28168    3.0  900784209
## 28170    3.0  900784317
## 28171    3.0  900784241
## 28172    3.0  900784476
## 28173    3.0  900784430
## 28174    3.0  900784430
## 28175    3.0  900784430
## 28177    3.0  900783718
## 28178    3.0  900783691
## 28181    3.0  900784384
## 28183    3.0  900784209
## 28184    3.0  900784209
## 28185    3.0  900784209
## 28186    3.0  900784317
## 28187    3.0  900784430
## 28188    3.0  900784137
## 28189    3.0  900784137
## 28190    0.5 1258439884
## 28191    0.5 1258439788
## 28193    3.0 1258439864
## 28195    3.0 1258439794
## 28196    0.5 1258439904
## 28198    0.5 1258439834
## 28199    0.5 1258440296
## 28200    0.5 1258439859
## 28201    0.5 1258439839
## 28202    0.5 1258439799
## 28203    0.5 1258439844
## 28204    0.5 1258439899
## 28205    3.0 1258439879
## 28207    0.5 1258440481
## 28208    0.5 1258439894
## 28211    0.5 1258440369
## 28212    0.5 1258439869
## 28213    2.5 1258439914
## 28214    3.5 1258439804
## 28215    0.5 1258439889
## 28216    0.5 1258440374
## 28217    0.5 1258439874
## 28218    0.5 1258440344
## 28219    2.0 1258439909
## 28220    2.0 1258439926
## 28221    3.0 1258439933
## 28222    0.5 1258440380
## 28223    0.5 1258440290
## 28226    3.5 1258440769
## 28227    0.5 1258440271
## 28228    0.5 1258440351
## 28229    0.5 1258440364
## 28230    3.0 1258440219
## 28232    0.5 1258440315
## 28233    0.5 1258440285
## 28234    0.5 1258440240
## 28235    0.5 1258440256
## 28240    3.5 1407812968
## 28244    2.0 1402191181
## 28247    2.0 1407896569
## 28250    3.5 1402191040
## 28254    3.0 1402190825
## 28256    3.0 1402598466
## 28259    3.0 1402601089
## 28261    3.0 1407896581
## 28263    2.5 1407896571
## 28273    3.0 1407896565
## 28275    3.0 1425253353
## 28285    2.0 1265780108
## 28286    3.0 1265780086
## 28287    2.0 1265780046
## 28288    3.0 1265780055
## 28290    3.0 1265780091
## 28291    3.0 1265780116
## 28292    3.0 1265780039
## 28293    3.0 1265780144
## 28295    3.0 1265780071
## 28296    2.0 1265780019
## 28297    1.0 1265780172
## 28299    3.0 1265780098
## 28300    2.0 1265780160
## 28301    3.0 1265780062
## 28302    2.0 1265780081
## 28303    3.0 1265780009
## 28304    2.5 1070591352
## 28305    2.5 1070591483
## 28306    2.5 1070591317
## 28307    3.5 1070591308
## 28308    3.5 1070591443
## 28309    2.5 1070591346
## 28310    3.0 1070591354
## 28311    3.0 1070591342
## 28312    2.5 1070591327
## 28314    3.0 1070591456
## 28315    2.5 1070591427
## 28317    3.5 1070591382
## 28318    3.0 1070591572
## 28319    3.0 1070591432
## 28320    3.0 1070591334
## 28321    2.5 1070591449
## 28322    2.5 1070591319
## 28323    2.5 1070591373
## 28324    2.5 1070591357
## 28325    2.5 1070591368
## 28326    3.5 1070591325
## 28327    2.0 1070591532
## 28328    2.5 1070591445
## 28329    2.5 1070591364
## 28330    3.5 1070591338
## 28331    2.5 1070591511
## 28332    2.5 1070591538
## 28333    2.5 1070591536
## 28343    3.0 1460811622
## 28380    3.0 1460811345
## 28381    2.0 1460811200
## 28384    3.0 1460811915
## 28387    3.0 1460810974
## 28391    3.0 1218405007
## 28392    3.0 1218404003
## 28393    2.5 1218955060
## 28394    3.5 1218403807
## 28396    3.5 1228789756
## 28397    1.5 1218404015
## 28399    3.5 1254008544
## 28400    3.0 1218402042
## 28402    2.0 1218403872
## 28403    2.0 1260705118
## 28404    3.5 1218399790
## 28405    3.5 1218954970
## 28406    3.5 1228783190
## 28407    3.5 1218403885
## 28408    3.0 1218404119
## 28410    2.5 1260705114
## 28411    2.0 1228784984
## 28413    3.0 1218955011
## 28414    2.5 1218404711
## 28415    3.0 1218955077
## 28416    2.5 1218410254
## 28417    3.0 1227937953
## 28418    3.0 1218955124
## 28419    2.0 1260705034
## 28420    1.5 1218954991
## 28421    3.5 1228788958
## 28422    3.0 1218407304
## 28423    2.5 1218408337
## 28424    1.0 1218403841
## 28425    3.0 1227938587
## 28427    3.0 1227938321
## 28428    1.0 1218403790
## 28432    2.5 1228789183
## 28434    3.5 1218403822
## 28436    2.5 1218403969
## 28437    3.0 1218955383
## 28438    3.0 1218404202
## 28440    2.0 1218955809
## 28441    3.5 1218404165
## 28442    3.5 1218401641
## 28443    3.5 1218402777
## 28444    1.0 1218403754
## 28445    2.5 1218403136
## 28446    3.0 1260704788
## 28448    2.5 1218403826
## 28450    1.0 1218403792
## 28451    3.5 1218402737
## 28452    1.5 1218408333
## 28453    3.0 1227938492
## 28454    1.5 1218408458
## 28456    1.5 1218399009
## 28457    0.5 1218408383
## 28458    1.5 1260704800
## 28459    2.5 1260704021
## 28460    3.5 1228789202
## 28461    1.5 1227938061
## 28462    2.5 1227938597
## 28463    3.0 1218403664
## 28464    2.5 1228789067
## 28465    3.0 1218403623
## 28466    3.0 1218401907
## 28467    3.0 1218954867
## 28468    2.5 1218403787
## 28473    2.5 1218401241
## 28474    1.0 1218408479
## 28476    2.5 1218955161
## 28477    3.0 1218955112
## 28478    2.5 1218403867
## 28479    2.5 1218403811
## 28480    3.0 1218407218
## 28481    3.0 1218405143
## 28482    2.0 1218404771
## 28483    3.0 1218403706
## 28485    3.0 1218401253
## 28486    3.5 1218401003
## 28487    3.0 1218401957
## 28488    3.5 1218403778
## 28489    3.0 1228789330
## 28490    3.0 1218403759
## 28491    2.0 1228788753
## 28492    2.5 1218954782
## 28493    3.0 1227936989
## 28494    2.5 1253930188
## 28495    3.0 1218405291
## 28496    3.5 1218399346
## 28497    2.5 1218955732
## 28499    3.0 1218403727
## 28500    3.5 1218955418
## 28501    1.5 1218408385
## 28502    3.5 1227938232
## 28503    2.0 1218398895
## 28504    3.5 1218401491
## 28507    3.0 1227938309
## 28508    3.5 1227936983
## 28509    3.0 1218954935
## 28511    3.0 1254009228
## 28512    3.5 1218399029
## 28513    3.5 1218403980
## 28514    3.5 1218402653
## 28515    3.5 1227938077
## 28516    3.0 1218401138
## 28517    3.0 1218407459
## 28520    3.0 1218402149
## 28521    3.0 1228798783
## 28522    2.0 1218402317
## 28523    3.0 1218401208
## 28524    3.0 1218400944
## 28525    3.0 1218401992
## 28527    3.0 1218401487
## 28528    3.0 1218402033
## 28530    3.0 1218403860
## 28532    3.5 1218955782
## 28535    3.0 1218399632
## 28536    3.5 1218955664
## 28538    3.0 1218954790
## 28539    3.0 1218955372
## 28540    3.0 1218404037
## 28542    3.5 1218398950
## 28543    3.5 1218399629
## 28544    3.5 1260704851
## 28545    2.5 1218399700
## 28547    2.5 1218399677
## 28549    3.0 1218399748
## 28550    3.0 1260704783
## 28551    3.0 1218399417
## 28552    3.5 1218955696
## 28553    3.0 1218954979
## 28554    3.5 1218399293
## 28556    3.5 1218399201
## 28557    0.5 1218403266
## 28558    3.0 1218404073
## 28561    2.5 1228791147
## 28564    3.5 1218403814
## 28567    3.0 1218399423
## 28568    2.5 1228792019
## 28569    3.5 1227936978
## 28570    3.0 1218404048
## 28571    1.0 1227938686
## 28572    3.0 1218399439
## 28573    2.0 1218403838
## 28574    3.0 1218954889
## 28575    3.0 1218403561
## 28580    3.5 1227938478
## 28581    3.5 1218401260
## 28582    3.0 1218399488
## 28584    3.5 1218955118
## 28586    2.5 1218403985
## 28587    3.5 1227938591
## 28588    2.5 1218954862
## 28589    2.5 1218954975
## 28591    3.0 1218404023
## 28592    3.0 1218404250
## 28594    2.0 1227938069
## 28595    3.5 1218954892
## 28599    3.5 1218955584
## 28600    2.0 1218404208
## 28601    3.5 1270703248
## 28602    1.5 1218403299
## 28603    3.0 1260704117
## 28604    2.5 1218955589
## 28605    3.0 1218399067
## 28606    3.0 1218955343
## 28607    3.0 1218404181
## 28608    1.5 1218402257
## 28609    2.5 1228785044
## 28610    3.0 1253930686
## 28611    2.5 1218955043
## 28612    3.0 1260704070
## 28613    3.5 1218404008
## 28614    3.5 1218402361
## 28616    2.5 1227938713
## 28618    3.0 1228793816
## 28619    3.0 1218954785
## 28622    1.5 1218408353
## 28623    2.5 1218403801
## 28624    2.5 1218954814
## 28625    3.5 1253929366
## 28626    3.5 1228789417
## 28627    2.5 1218403271
## 28630    3.5 1218400972
## 28631    3.0 1218404021
## 28632    2.5 1218408312
## 28633    2.0 1218403962
## 28634    2.0 1218399167
## 28635    2.5 1228786974
## 28637    2.5 1218399598
## 28638    3.0 1218402839
## 28639    3.0 1227938183
## 28640    2.5 1228788452
## 28641    2.5 1228785018
## 28642    3.0 1228792393
## 28644    3.0 1218955612
## 28646    3.5 1218404219
## 28647    2.5 1218408176
## 28648    3.0 1253929766
## 28649    2.5 1229146351
## 28650    3.0 1218409983
## 28652    2.5 1218404169
## 28653    2.5 1218404097
## 28654    3.5 1227938635
## 28655    2.5 1218954953
## 28657    2.5 1218405004
## 28658    2.5 1218955449
## 28659    3.0 1218401037
## 28660    2.0 1228789218
## 28661    2.5 1218400982
## 28663    3.0 1218398999
## 28664    2.0 1218954729
## 28665    3.0 1260704942
## 28666    2.5 1228798687
## 28667    3.0 1218404116
## 28668    3.0 1218409955
## 28669    3.5 1228789115
## 28671    2.5 1218399052
## 28672    3.0 1253932400
## 28673    2.0 1218399037
## 28674    3.5 1270703235
## 28675    3.5 1218401981
## 28676    3.0 1218398900
## 28677    3.0 1218401934
## 28678    3.0 1218955346
## 28679    2.5 1218404076
## 28680    2.5 1260705000
## 28682    2.5 1218401235
## 28684    3.5 1218401589
## 28685    3.5 1218955174
## 28686    3.5 1218404162
## 28687    2.5 1218955199
## 28688    1.0 1218408016
## 28689    3.0 1218405425
## 28690    2.0 1228788637
## 28694    3.0 1218955558
## 28695    3.0 1218402519
## 28696    2.5 1218401720
## 28697    3.5 1253930047
## 28698    0.5 1218408476
## 28699    3.0 1228789780
## 28700    3.5 1228789729
## 28701    3.0 1228798125
## 28702    2.0 1218401966
## 28703    2.5 1218410207
## 28704    3.5 1218955760
## 28705    2.0 1253932268
## 28706    2.5 1218954837
## 28708    2.5 1253932306
## 28710    2.0 1260704992
## 28711    1.0 1218955052
## 28712    1.5 1218408359
## 28713    3.5 1260705039
## 28714    3.5 1227938730
## 28715    1.5 1218399669
## 28716    2.5 1218954964
## 28717    3.0 1218955244
## 28718    3.5 1218955728
## 28723    2.5 1227938706
## 28724    3.0 1218955026
## 28725    3.0 1218955497
## 28726    3.0 1218955209
## 28727    3.5 1218403836
## 28728    3.0 1218404959
## 28729    2.5 1253930414
## 28730    2.0 1228087088
## 28731    3.0 1218405307
## 28732    3.0 1218401936
## 28733    2.5 1218403960
## 28735    3.0 1253930511
## 28737    3.5 1218955279
## 28738    2.0 1260703978
## 28739    2.0 1218408481
## 28740    2.5 1218404000
## 28741    3.0 1218404090
## 28742    2.5 1218403888
## 28743    2.0 1218408266
## 28744    2.5 1253933128
## 28745    1.0 1227938612
## 28746    3.0 1218955564
## 28747    3.0 1228792230
## 28748    3.5 1227938642
## 28749    3.5 1227938032
## 28750    2.0 1218404192
## 28751    2.5 1218402054
## 28752    3.0 1218399280
## 28753    3.5 1228113385
## 28756    3.0 1218407484
## 28757    3.0 1218408077
## 28759    3.0 1218955438
## 28761    3.0 1218955789
## 28762    2.0 1218408397
## 28764    2.5 1218403988
## 28765    2.0 1227937089
## 28767    3.0 1253930439
## 28768    3.5 1218955272
## 28769    3.0 1218408159
## 28770    3.0 1218401584
## 28772    2.0 1228113377
## 28773    2.5 1218955016
## 28776    3.0 1218955314
## 28777    2.0 1253932411
## 28778    2.5 1228113256
## 28779    2.5 1228798064
## 28780    3.5 1218955427
## 28781    2.5 1218404018
## 28783    3.0 1218399442
## 28785    3.5 1218401107
## 28786    3.0 1228794509
## 28787    2.0 1260704012
## 28788    3.5 1218405309
## 28792    0.5 1218408394
## 28793    2.5 1228784385
## 28794    2.0 1218955724
## 28796    1.5 1218408381
## 28797    3.5 1218401457
## 28798    3.5 1218409693
## 28799    2.0 1253930535
## 28800    1.0 1218408370
## 28801    2.5 1228113367
## 28802    2.5 1218398992
## 28804    3.5 1253929903
## 28805    3.0 1253929789
## 28806    1.5 1218398958
## 28807    2.5 1218955472
## 28808    3.0 1218955793
## 28809    2.5 1218955485
## 28810    3.5 1218401770
## 28811    2.5 1227938253
## 28812    1.5 1218403236
## 28813    3.0 1218954772
## 28814    2.0 1227937069
## 28818    2.5 1218410080
## 28820    3.5 1218402179
## 28821    1.0 1218955135
## 28825    1.0 1218408348
## 28826    3.0 1218405030
## 28827    2.0 1218398904
## 28828    2.5 1218954775
## 28829    3.0 1218955023
## 28830    2.5 1218408887
## 28831    3.0 1218404819
## 28832    2.0 1260705006
## 28833    3.5 1218402875
## 28834    1.5 1218408351
## 28837    2.5 1253931197
## 28838    1.5 1218408215
## 28839    1.5 1218408331
## 28840    2.0 1253932869
## 28841    1.0 1229149491
## 28843    3.5 1218955225
## 28844    2.5 1228788649
## 28845    3.5 1218402747
## 28846    3.0 1218955255
## 28848    2.5 1218956840
## 28849    3.0 1218955743
## 28850    3.5 1218403966
## 28851    3.0 1260704969
## 28854    0.5 1218408391
## 28856    2.5 1218954925
## 28858    2.5 1218404830
## 28859    3.0 1218954850
## 28860    2.5 1218404802
## 28862    3.5 1218401568
## 28863    2.0 1228113530
## 28864    2.5 1253933889
## 28865    2.5 1228798710
## 28866    3.5 1228791761
## 28868    2.5 1253932200
## 28869    2.0 1228113519
## 28870    2.5 1218409777
## 28871    3.0 1218404408
## 28875    2.5 1218407891
## 28876    2.5 1218408326
## 28881    2.5 1260705071
## 28882    2.0 1228787611
## 28883    2.5 1218955606
## 28884    3.0 1218955127
## 28887    3.0 1228113510
## 28888    1.5 1218408460
## 28889    3.0 1228797160
## 28890    2.5 1218408315
## 28892    1.0 1218408367
## 28893    1.0 1218402512
## 28894    3.5 1218401890
## 28895    2.5 1260704980
## 28896    3.0 1228794614
## 28897    3.5 1218954747
## 28898    3.5 1218955688
## 28899    2.5 1260705010
## 28901    3.5 1218955359
## 28902    1.0 1229149482
## 28903    3.0 1218955171
## 28904    2.0 1218408004
## 28905    3.0 1227937025
## 28906    3.0 1218955641
## 28911    3.0 1227936446
## 28912    2.5 1218401159
## 28913    3.0 1218955364
## 28915    3.5 1218399180
## 28920    3.5 1218409554
## 28921    3.5 1227937020
## 28922    3.5 1218955712
## 28923    3.0 1228798876
## 28924    0.5 1218408441
## 28925    2.5 1228798654
## 28928    3.5 1227936287
## 28929    3.0 1228788778
## 28931    3.0 1253930577
## 28932    2.5 1218955741
## 28933    3.0 1260704868
## 28934    1.5 1218408464
## 28935    3.5 1218401197
## 28936    1.5 1218408364
## 28937    3.5 1218401767
## 28939    3.5 1228789865
## 28941    3.0 1218404733
## 28942    2.0 1260704974
## 28943    3.5 1218408878
## 28944    3.0 1227937018
## 28946    3.5 1228784651
## 28947    3.0 1218402230
## 28949    2.0 1218408296
## 28950    3.0 1253933167
## 28951    2.5 1253928645
## 28952    3.0 1227936946
## 28953    2.0 1253930330
## 28954    3.5 1227936195
## 28955    3.5 1228113759
## 28957    3.0 1218402980
## 28958    1.0 1218404871
## 28959    3.5 1260704173
## 28960    2.5 1228786347
## 28961    3.0 1218955647
## 28962    2.5 1218401155
## 28963    2.5 1218955155
## 28964    2.5 1228788465
## 28966    1.5 1218408243
## 28967    3.0 1218955083
## 28968    3.5 1228787560
## 28970    3.0 1260704859
## 28971    3.5 1227938227
## 28972    2.0 1228794021
## 28973    3.5 1228789810
## 28975    3.0 1218402334
##  [ reached 'max' / getOption("max.print") -- omitted 34151 rows ]